
:root {
    --blue: #1565C0;
    --blue-mid: #1976D2;
    --blue-light: #42A5F5;
    --blue-pale: #E3F2FD;
    --orange: #FF6D00;
    --orange-lt: #FFF3E0;
    --teal: #00ACC1;
    --white: #ffffff;
    --bg: #F7FAFF;
    --text: #1A2340;
    --muted: #5C6E8A;
    --border: #D8E6F7;
    --card-bg: #ffffff;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #181866 0%, #373788 45%, #31315a 100%);
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 40%);
    }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 100px;
    padding: 6px 20px;
    margin-bottom: 24px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
}

    .hero-badge .star {
        color: #FFD54F;
    }

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin: 0 auto 20px;
}

.hero h1 em {
    font-style: normal;
    color: #ff4737;
}

.hero-sub {
    max-width: 580px;
    margin: 0 auto 36px;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.82);
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--orange);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 13px 32px;
    border-radius: 7px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

    .btn-hero-primary:hover {
        background: #e65100;
        transform: translateY(-2px);
    }

.btn-hero-ghost {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.4);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 13px 32px;
    border-radius: 7px;
    text-decoration: none;
    transition: background 0.2s;
}

    .btn-hero-ghost:hover {
        background: rgba(255,255,255,0.22);
    }

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 56px;
    margin-top: 56px;
    flex-wrap: wrap;
}

.h-stat {
    text-align: center;
}

.h-stat-num {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: #FFD54F;
}

.h-stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 4px;
    color: rgba(255,255,255,0.7);
}

/* SHARED */
.section {
    padding: 88px 64px;
}

.section-alt {
    background: var(--bg);
}

.inner {
    max-width: 1240px;
    margin: 0 auto;
}

.section-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text);
}

.section-sub {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--muted);
    margin-top: 12px;
    font-weight: 300;
}

.section-head {
    margin-bottom: 56px;
}

/* FEATURE CARDS */
.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feat-card {
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 36px 32px;
    transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
    position: relative;
    overflow: hidden;
}

    .feat-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--blue), var(--teal));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .feat-card:hover {
        box-shadow: 0 12px 40px rgba(21,101,192,0.12);
        border-color: var(--blue-light);
        transform: translateY(-4px);
    }

        .feat-card:hover::after {
            transform: scaleX(1);
        }

.feat-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .feat-icon-wrap .material-icons {
        font-size: 26px;
        color: var(--blue);
    }

.feat-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.feat-card p {
    font-size: 0.85rem;
    line-height: 1.75;
    color: var(--muted);
    font-weight: 300;
}

.feat-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 18px;
}

.tag {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 11px;
    border-radius: 100px;
    background: var(--blue-pale);
    color: var(--blue-mid);
}

    .tag.orange {
        background: var(--orange-lt);
        color: var(--orange);
    }

/* WHY BAND */
.why-band {
    background: linear-gradient(135deg, #181866 0%, #373788 45%, #31315a 100%);
    padding: 80px 64px;
}

.why-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.why-left h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

    .why-left h2 em {
        font-style: normal;
        color: #FFD54F;
    }

.why-left p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 18px 20px;
    transition: background 0.2s;
}

    .why-item:hover {
        background: rgba(255,255,255,0.14);
    }

    .why-item .material-icons {
        color: #FFD54F;
        font-size: 22px;
        flex-shrink: 0;
        margin-top: 1px;
    }

    .why-item h4 {
        font-size: 0.9rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: 4px;
    }

    .why-item p {
        font-size: 0.82rem;
        color: rgba(255,255,255,0.7);
        line-height: 1.6;
        font-weight: 300;
    }

/* UPSELL */
.upsell-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.upsell-card {
    border-radius: 14px;
    padding: 32px 28px;
    background: var(--white);
    border: 1.5px solid var(--border);
    transition: transform 0.25s, box-shadow 0.25s;
}

    .upsell-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 32px rgba(21,101,192,0.1);
    }

.upsell-emoji {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
}

.upsell-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.upsell-card p {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
}

.upsell-badge {
    display: inline-block;
    margin-top: 14px;
    background: var(--orange-lt);
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 3px 12px;
    border-radius: 100px;
    text-transform: uppercase;
}

/* TWO COL */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.two-col-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.two-col-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 0 0;
    border-radius: 10px;
    transition: background 0.2s;
    cursor: default;
}


    .two-col-item .material-icons {
        color: var(--blue);
        font-size: 22px;
        flex-shrink: 0;
        margin-top: 1px;
    }

    .two-col-item h4 {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--text);
        margin-bottom: 4px;
    }

    .two-col-item p {
        font-size: 0.82rem;
        color: var(--muted);
        line-height: 1.6;
        font-weight: 300;margin:0;
    }

.feature-visual {
    background: linear-gradient(145deg, #E3F2FD 0%, #F7FAFF 100%);
    border: 1.5px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
}

.fv-header {
    background: var(--blue);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .fv-header span.material-icons {
        color: #FFD54F;
        font-size: 20px;
    }

    .fv-header .fv-title {
        color: #fff;
        font-size: 0.85rem;
        font-weight: 600;
    }

.fv-body {
    padding: 28px 24px;
}

.fv-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.83rem;
}

    .fv-row:last-child {
        border-bottom: none;
    }

.fv-row-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-weight: 500;
}

    .fv-row-left .material-icons {
        font-size: 18px;
        color: var(--blue-light);
    }

.fv-val {
    font-weight: 700;
    color: var(--blue);
}

    .fv-val.green {
        color: #2E7D32;
    }

    .fv-val.orange {
        color: var(--orange);
    }

.fv-progress-wrap {
    margin-top: 16px;
}

.fv-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 6px;
}

.fv-bar {
    height: 8px;
    border-radius: 100px;
    background: var(--border);
}

.fv-bar-fill {
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--blue), var(--teal));
}

/* PARTNER */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.partner-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 28px;
    border-radius: 14px;
    background: var(--white);
    border: 1.5px solid var(--border);
    transition: border-color 0.25s, box-shadow 0.25s;
}

    .partner-card:hover {
        border-color: var(--blue-light);
        box-shadow: 0 8px 28px rgba(21,101,192,0.09);
    }

.partner-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--blue-pale);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .partner-card-icon .material-icons {
        color: var(--blue);
        font-size: 24px;
    }

.partner-card h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.partner-card p {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.65;
    font-weight: 300;
}

/* INFRA */
.infra-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.infra-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    transition: border-color 0.25s, transform 0.25s;
}

    .infra-card:hover {
        border-color: var(--blue-light);
        transform: translateY(-4px);
    }

    .infra-card .material-icons {
        font-size: 32px;
        color: var(--blue);
        margin-bottom: 14px;
        display: block;
    }

.infra-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

    .infra-num span {
        color: var(--blue);
    }

.infra-label {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 8px;
    line-height: 1.5;
}

/* STEPS */
.steps-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
    margin-top: 60px;
}

    .steps-row::before {
        content: '';
        position: absolute;
        top: 28px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: var(--border);
    }

.step {
    text-align: center;
    padding: 0 12px;
}

.step-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 2.5px solid var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: var(--blue);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.step:hover .step-circle {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.step h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
    margin: 18px 0 6px;
}

.step p {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 300;
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, #181866 0%, #373788 45%, #31315a 100%);
    padding: 100px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: -120px;
        left: 50%;
        transform: translateX(-50%);
        width: 700px;
        height: 400px;
        background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 70%);
    }

    .cta-section h2 {
        font-size: clamp(1.8rem, 4vw, 3rem);
        font-weight: 800;
        color: #fff;
        max-width: 640px;
        margin: 0 auto 16px;
        line-height: 1.2;
    }

        .cta-section h2 em {
            font-style: normal;
            color: #FFD54F;
        }

    .cta-section p {
        max-width: 440px;
        margin: 0 auto 36px;
        color: rgba(255,255,255,0.8);
        font-size: 0.95rem;
        line-height: 1.8;
        font-weight: 300;
    }

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: #fff;
    color: var(--blue);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 13px 32px;
    border-radius: 7px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

    .btn-white:hover {
        background: #E3F2FD;
        transform: translateY(-2px);
    }

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.5);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 13px 32px;
    border-radius: 7px;
    text-decoration: none;
    transition: background 0.2s;
}

    .btn-outline-white:hover {
        background: rgba(255,255,255,0.1);
    }

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: none;
    }

/* RESPONSIVE */
@media (max-width: 960px) {
    nav {
        padding: 0 24px;
    }

    .nav-links {
        display: none;
    }

    .section {
        padding: 64px 24px;
    }

    .hero {
        padding: 110px 24px 70px;
    }

    .why-band {
        padding: 64px 24px;
    }

    .cta-section {
        padding: 80px 24px;
    }

    footer {
        padding: 24px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .feat-grid, .upsell-grid {
        grid-template-columns: 1fr;
    }

    .two-col, .why-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .partner-grid {
        grid-template-columns: 1fr;
    }

    .infra-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-row {
        grid-template-columns: 1fr;
    }

        .steps-row::before {
            display: none;
        }

    .hero-stats {
        gap: 28px;
    }
}
