﻿body {
    background: radial-gradient(circle at top left, rgba(13, 110, 253, .14), transparent 32%), linear-gradient(135deg, #eef4ff 0%, #f8fafc 50%, #e9f2ff 100%);
}

.home-hero {
    padding: 1rem 0 0.75rem;
}

.home-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem .85rem;
    border-radius: 999px;
    background: #eff6ff;
    color: #0d6efd;
    font-size: .9rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.home-hero-title {
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    line-height: 1.08;
    font-weight: 900;
    color: #111827;
    letter-spacing: -.05em;
    margin-bottom: 1.5rem;
}

.home-hero-description {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 620px;
    margin-bottom: 2rem;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin-bottom: 1.5rem;
}

.home-main-btn,
.home-secondary-btn {
    border-radius: 14px;
    font-weight: 800;
    padding-inline: 1.3rem;
}

.home-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1.25rem;
    color: #475569;
    font-size: .95rem;
    font-weight: 700;
}

    .home-hero-features div {
        display: flex;
        align-items: center;
        gap: .45rem;
    }

    .home-hero-features i {
        color: #198754;
    }

.home-platform-card {
    position: relative;
    padding: 1.25rem;
    border-radius: 28px;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.22), transparent 28%), linear-gradient(145deg, #0d6efd 0%, #084298 100%);
    box-shadow: 0 24px 70px rgba(15, 23, 42, .18);
    overflow: hidden;
}

    .home-platform-card::before {
        content: "";
        position: absolute;
        width: 240px;
        height: 240px;
        border-radius: 50%;
        right: -70px;
        top: -70px;
        background: rgba(255,255,255,.10);
    }

    .home-platform-card::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        left: -60px;
        bottom: -60px;
        background: rgba(255,255,255,.08);
    }

    .home-platform-card > * {
        position: relative;
        z-index: 2;
    }

.home-platform-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.home-window-dot {
    display: inline-block;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255,255,255,.45);
    margin-right: .25rem;
}

.home-platform-status {
    color: #fff;
    font-weight: 800;
    font-size: .9rem;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.18);
    padding: .4rem .7rem;
    border-radius: 999px;
}

.home-module-card {
    min-height: 92px;
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.20);
    color: #fff;
    backdrop-filter: blur(10px);
    transition: all .22s ease;
}

    .home-module-card:hover {
        transform: translateY(-4px);
        background: rgba(255,255,255,.22);
        border-color: rgba(255,255,255,.35);
        box-shadow: 0 14px 30px rgba(0,0,0,.16);
    }

    .home-module-card i {
        width: 42px;
        height: 42px;
        min-width: 42px;
        border-radius: 14px;
        background: rgba(255,255,255,.16);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
    }

    .home-module-card:hover i {
        background: #fff;
        color: #0d6efd;
    }

    .home-module-card strong {
        display: block;
        font-size: .98rem;
    }

    .home-module-card span {
        display: block;
        color: rgba(255,255,255,.78);
        font-size: .78rem;
        margin-top: .2rem;
    }

.home-platform-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
    margin-top: 1rem;
}

    .home-platform-footer div {
        padding: .85rem;
        border-radius: 16px;
        background: rgba(255,255,255,.14);
        border: 1px solid rgba(255,255,255,.18);
        color: #fff;
    }

    .home-platform-footer small {
        display: block;
        color: rgba(255,255,255,.72);
        font-size: .75rem;
    }

    .home-platform-footer strong {
        display: block;
        margin-top: .25rem;
        font-size: .95rem;
    }

.home-section {
    padding: 4.5rem 0;
    background: #fff;
}

.home-modules-section {
    background: #f8fafc;
}

.home-section-header {
    max-width: 760px;
    margin: 0 auto 2.5rem;
}

    .home-section-header span {
        color: #0d6efd;
        font-weight: 900;
        font-size: .9rem;
    }

    .home-section-header h2 {
        margin-top: .5rem;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 900;
        color: #111827;
        letter-spacing: -.03em;
    }

    .home-section-header p {
        color: #64748b;
        line-height: 1.8;
        margin-bottom: 0;
    }

.home-feature-card,
.home-large-module-card {
    height: 100%;
    padding: 1.5rem;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 40px rgba(15, 23, 42, .06);
    transition: all .22s ease;
}

    .home-feature-card:hover,
    .home-large-module-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(15, 23, 42, .10);
        border-color: rgba(13, 110, 253, .28);
    }

    .home-feature-card i,
    .home-large-module-card i {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #eff6ff;
        color: #0d6efd;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .home-feature-card h5,
    .home-large-module-card h5 {
        font-weight: 900;
        color: #111827;
        margin-bottom: .6rem;
    }

    .home-feature-card p,
    .home-large-module-card p {
        color: #64748b;
        line-height: 1.7;
        margin-bottom: 0;
    }

.home-cta {
    padding: 4.5rem 0;
    background: #fff;
}

.home-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    border-radius: 28px;
    color: #fff;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.20), transparent 30%), linear-gradient(145deg, #0d6efd 0%, #084298 100%);
    box-shadow: 0 24px 70px rgba(13, 110, 253, .25);
}

    .home-cta-box h2 {
        font-weight: 900;
        margin-bottom: .5rem;
    }

    .home-cta-box p {
        color: rgba(255,255,255,.82);
        margin-bottom: 0;
    }

    .home-cta-box .btn {
        border-radius: 14px;
        font-weight: 900;
        white-space: nowrap;
    }

@media (max-width: 991.98px) {
    .home-hero {
        padding: 3rem 0;
    }

    .home-platform-footer {
        grid-template-columns: 1fr;
    }

    .home-cta-box {
        flex-direction: column;
        text-align: center;
        align-items: stretch;
    }
}

@media (max-width: 575.98px) {
    .home-platform-card {
        padding: 1rem;
        border-radius: 22px;
    }

    .home-module-card {
        min-height: 82px;
        padding: .85rem;
    }

        .home-module-card i {
            width: 36px;
            height: 36px;
            min-width: 36px;
        }

    .home-section {
        padding: 3rem 0;
    }
}
.home-large-module-card {
    position: relative;
}

.home-module-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: .3rem .65rem;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 900;
}

.home-large-module-card.is-active .home-module-status {
    background: #dcfce7;
    color: #15803d;
}

.home-large-module-card.is-coming-soon .home-module-status {
    background: #f1f5f9;
    color: #64748b;
}

.home-large-module-card.is-coming-soon {
    opacity: .78;
}

    .home-large-module-card.is-coming-soon i {
        background: #f1f5f9;
        color: #64748b;
    }

.home-module-card.is-coming-soon {
    opacity: .72;
}

    .home-module-card.is-coming-soon:hover {
        transform: none;
        box-shadow: none;
    }

.home-module-card.is-active {
    border-color: rgba(255,255,255,.38);
}