﻿/* ============================================================
   SAAS LANDING – Dark Blue · White · Green · Orange Rust
   Centralized Institute Portal – Final Version
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
    --dark-blue: #0b2a4a;
    --dark-blue-light: #1a3a5f;
    --white: #ffffff;
    --green: #2e7d32;
    --green-light: #43a047;
    --orange-rust: #c95c2e;
    --orange-rust-light: #e67e3a;
    --bg-start: #f4f7fc;
    --bg-end: #e9edf4;
    --text-dark: #0b2a4a;
    --text-muted: #4a5a6e;
    --shadow-glow: 0 8px 32px rgba(11, 42, 74, 0.15);
    --radius-xl: 2rem;
    --card-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

/* ---------- Reset ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-start);
    color: var(--text-dark);
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ---------- Animated Background ---------- */
.landing-wrapper {
    position: relative;
    background: linear-gradient(135deg, #f4f7fc 0%, #e9edf4 100%);
    min-height: 100vh;
    overflow: hidden;
}

    .landing-wrapper::before,
    .landing-wrapper::after {
        content: '';
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        opacity: 0.25;
        z-index: 0;
        animation: floatOrb 12s ease-in-out infinite alternate;
    }

    .landing-wrapper::before {
        width: 400px;
        height: 400px;
        background: var(--dark-blue);
        top: -100px;
        right: -100px;
    }

    .landing-wrapper::after {
        width: 500px;
        height: 500px;
        background: var(--orange-rust-light);
        bottom: -150px;
        left: -150px;
        animation-delay: -6s;
    }

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(40px, 30px) scale(1.1);
    }
}

.grid-pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: linear-gradient(rgba(11, 42, 74, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 42, 74, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* ---------- Navbar ---------- */
.navbar {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    padding: 0.8rem 1.5rem;
    position: relative;
    z-index: 10;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--dark-blue);
    letter-spacing: -0.02em;
}

    .navbar-brand i {
        color: var(--orange-rust);
        margin-right: 0.3rem;
    }

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.2s;
    padding: 0.5rem 1rem !important;
}

    .nav-link:hover {
        color: var(--dark-blue) !important;
    }

.btn-nav-cta {
    background: var(--orange-rust);
    color: #fff !important;
    padding: 0.5rem 1.8rem !important;
    border-radius: 2rem !important;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(201, 92, 46, 0.3);
    transition: 0.25s;
}

    .btn-nav-cta:hover {
        transform: scale(1.04) translateY(-2px);
        box-shadow: 0 8px 24px rgba(201, 92, 46, 0.35);
        color: #fff !important;
    }

/* ---------- Hero Section ---------- */
.hero-section {
    position: relative;
    z-index: 2;
    padding: 2rem 0 3rem;
    min-height: 85vh;
    display: flex;
    align-items: flex-start; /* Raises the login panel */
}

.hero-left {
    padding-right: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(11, 42, 74, 0.08);
    color: var(--dark-blue);
    padding: 0.3rem 1.2rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.8rem;
    border: 1px solid rgba(11, 42, 74, 0.12);
    margin-bottom: 1.5rem;
}

.hero-left h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}

    .hero-left h1 .gradient-text {
        background: linear-gradient(135deg, var(--dark-blue), var(--green), var(--orange-rust));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero-left .lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 560px;
    margin-bottom: 1.8rem;
}

.hero-tagline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: rgba(201, 92, 46, 0.06);
    border-left: 4px solid var(--orange-rust);
    padding: 0.5rem 1.2rem;
    border-radius: 0 0.8rem 0.8rem 0;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    gap: 0.5rem;
}

    .hero-tagline .btn-primary {
        background: linear-gradient(135deg, var(--dark-blue), var(--green));
        border: none;
        padding: 0.4rem 1.5rem;
        font-weight: 600;
        font-size: 0.85rem;
        border-radius: 2rem;
        color: #fff;
        box-shadow: 0 4px 12px rgba(11, 42, 74, 0.2);
        transition: 0.25s;
        white-space: nowrap;
    }

        .hero-tagline .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(11, 42, 74, 0.3);
        }

/* ---------- Stats ---------- */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin: 1rem 0 0.5rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(11, 42, 74, 0.06);
}

.stat-item .num {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.stat-item .label {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    font-weight: 500;
}

/* ---------- Glass Login ---------- */
.hero-right {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.glass-login {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

    .glass-login:hover {
        box-shadow: 0 30px 60px -12px rgba(11, 42, 74, 0.12);
    }

    .glass-login h3 {
        font-weight: 700;
        font-size: 1.6rem;
        margin-bottom: 0.3rem;
        color: var(--dark-blue);
    }

    .glass-login .sub {
        color: var(--text-muted);
        margin-bottom: 1.8rem;
        font-size: 0.95rem;
    }

    .glass-login .form-floating {
        margin-bottom: 1.2rem;
    }

        .glass-login .form-floating input {
            border: 2px solid #e2e8f0;
            border-radius: 1rem;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(4px);
            height: 58px;
            font-size: 1rem;
        }

            .glass-login .form-floating input:focus {
                border-color: var(--dark-blue);
                box-shadow: 0 0 0 4px rgba(11, 42, 74, 0.08);
            }

        .glass-login .form-floating label {
            color: #94a3b8;
            font-weight: 500;
        }

.btn-login {
    background: linear-gradient(135deg, var(--dark-blue), var(--green));
    border: none;
    padding: 0.9rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    width: 100%;
    transition: 0.25s;
    box-shadow: 0 4px 14px rgba(11, 42, 74, 0.2);
    margin-top: 0.5rem;
}

    .btn-login:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(11, 42, 74, 0.3);
        color: #fff;
    }

.glass-login .divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    color: #94a3b8;
    font-size: 0.85rem;
}

    .glass-login .divider::before,
    .glass-login .divider::after {
        content: "";
        flex: 1;
        height: 1px;
        background: #e2e8f0;
    }

.glass-login .register-link {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-muted);
}

    .glass-login .register-link a {
        color: var(--orange-rust);
        font-weight: 600;
    }

        .glass-login .register-link a:hover {
            text-decoration: underline;
        }

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1.5rem;
    color: #94a3b8;
    font-size: 0.75rem;
}

    .trust-badges i {
        color: var(--green);
        margin-right: 0.3rem;
    }

/* ---------- Dashboard Cards (Moved Up) ---------- */
.dashboard-features {
    padding: 4rem 0 3rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
}

    .dashboard-features h2 {
        font-weight: 700;
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 0.5rem;
        color: var(--dark-blue);
    }

    .dashboard-features .section-sub {
        text-align: center;
        color: var(--text-muted);
        max-width: 600px;
        margin: 0 auto 2.5rem;
        font-size: 1.05rem;
    }

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.dash-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    border-radius: 1.2rem;
    padding: 1.2rem 0.8rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: 0.3s;
    cursor: default;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

    .dash-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
    }

    .dash-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 28px rgba(11, 42, 74, 0.08);
    }

    .dash-card .dash-icon {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        display: block;
    }

    .dash-card .dash-label {
        font-weight: 600;
        font-size: 0.85rem;
        color: var(--text-dark);
        display: block;
    }

    /* Card Colors */
    .dash-card.blue::before {
        background: var(--dark-blue);
    }

    .dash-card.blue .dash-icon {
        color: var(--dark-blue);
    }

    .dash-card.green::before {
        background: var(--green);
    }

    .dash-card.green .dash-icon {
        color: var(--green);
    }

    .dash-card.orange::before {
        background: var(--orange-rust);
    }

    .dash-card.orange .dash-icon {
        color: var(--orange-rust);
    }

    .dash-card.teal::before {
        background: #14b8a6;
    }

    .dash-card.teal .dash-icon {
        color: #14b8a6;
    }

    .dash-card.purple::before {
        background: #8b5cf6;
    }

    .dash-card.purple .dash-icon {
        color: #8b5cf6;
    }

    .dash-card.pink::before {
        background: #ec4899;
    }

    .dash-card.pink .dash-icon {
        color: #ec4899;
    }

    .dash-card.red::before {
        background: #ef4444;
    }

    .dash-card.red .dash-icon {
        color: #ef4444;
    }

    .dash-card.cyan::before {
        background: #06b6d4;
    }

    .dash-card.cyan .dash-icon {
        color: #06b6d4;
    }

    .dash-card.rose::before {
        background: #f43f5e;
    }

    .dash-card.rose .dash-icon {
        color: #f43f5e;
    }

    .dash-card.amber::before {
        background: #d97706;
    }

    .dash-card.amber .dash-icon {
        color: #d97706;
    }

    .dash-card.emerald::before {
        background: #059669;
    }

    .dash-card.emerald .dash-icon {
        color: #059669;
    }

    .dash-card.sky::before {
        background: #0ea5e9;
    }

    .dash-card.sky .dash-icon {
        color: #0ea5e9;
    }

    .dash-card.violet::before {
        background: #7c3aed;
    }

    .dash-card.violet .dash-icon {
        color: #7c3aed;
    }

    .dash-card.fuchsia::before {
        background: #d946ef;
    }

    .dash-card.fuchsia .dash-icon {
        color: #d946ef;
    }

/* ---------- How It Works ---------- */
.how-it-works {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
}

    .how-it-works h2 {
        font-weight: 700;
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 0.5rem;
        color: var(--dark-blue);
    }

    .how-it-works .section-sub {
        text-align: center;
        color: var(--text-muted);
        max-width: 600px;
        margin: 0 auto 2.5rem;
    }

.step-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: 0.3s;
    height: 100%;
}

    .step-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-glow);
    }

.step-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--dark-blue), var(--green));
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 14px rgba(11, 42, 74, 0.25);
}

.step-card h4 {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark-blue);
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--orange-rust);
}

/* ---------- Expansion Banner (Today for ITIs) ---------- */
.expansion-banner {
    background: linear-gradient(135deg, var(--dark-blue), #0b1a2e);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    margin: 2rem auto;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(11, 42, 74, 0.15);
}

    .expansion-banner::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 70% 30%, rgba(201, 92, 46, 0.2), transparent 60%);
    }

.expansion-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.expansion-banner h3 {
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
}

.expansion-banner .highlight-it {
    color: #8bc34a;
}

.expansion-banner .highlight-tomorrow {
    color: var(--orange-rust-light);
}

.expansion-banner p {
    opacity: 0.9;
    max-width: 650px;
    margin: 0.5rem auto 1.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.btn-early-access {
    background: var(--orange-rust);
    color: #fff;
    padding: 0.7rem 2.2rem;
    border-radius: 3rem;
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    transition: 0.25s;
    box-shadow: 0 4px 14px rgba(201, 92, 46, 0.3);
}

    .btn-early-access:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 8px 24px rgba(201, 92, 46, 0.4);
        color: #fff;
    }

/* ---------- Why Choose ---------- */
.features-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
}

    .features-section h3 {
        text-align: center;
        font-weight: 700;
        color: var(--dark-blue);
    }

.feature-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-card-main {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    border-radius: 1.5rem;
    padding: 1.8rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: var(--card-shadow);
    transition: 0.3s;
}

    .feature-card-main:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 24px rgba(11, 42, 74, 0.06);
        border-color: var(--orange-rust);
    }

    .feature-card-main .icon {
        font-size: 2rem;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, var(--dark-blue), var(--green));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .feature-card-main h5 {
        font-weight: 700;
        font-size: 1.1rem;
        color: var(--dark-blue);
    }

    .feature-card-main p {
        color: var(--text-muted);
        font-size: 0.95rem;
        margin: 0;
    }

/* ---------- Quote ---------- */
.quote-section {
    padding: 4rem 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.3);
}

    .quote-section blockquote {
        font-size: 1.8rem;
        font-weight: 600;
        font-style: italic;
        color: var(--dark-blue);
        max-width: 750px;
        margin: 0 auto;
    }

        .quote-section blockquote::before {
            content: '\201C';
            font-size: 3rem;
            color: var(--orange-rust-light);
            margin-right: 0.3rem;
        }

        .quote-section blockquote::after {
            content: '\201D';
            font-size: 3rem;
            color: var(--orange-rust-light);
            margin-left: 0.3rem;
        }

/* ---------- CTA Banner ---------- */
.cta-banner {
    background: linear-gradient(135deg, var(--dark-blue), #0b1a2e);
    color: #fff;
    padding: 4rem 2rem;
    border-radius: var(--radius-xl);
    margin: 3rem auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-banner::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 30% 50%, rgba(201, 92, 46, 0.2), transparent 60%);
    }

    .cta-banner h2 {
        font-weight: 700;
        font-size: 2.2rem;
        position: relative;
        z-index: 2;
    }

    .cta-banner p {
        opacity: 0.8;
        max-width: 600px;
        margin: 0.5rem auto 2rem;
        font-size: 1.1rem;
        position: relative;
        z-index: 2;
    }

    .cta-banner .btn-cta {
        background: var(--orange-rust);
        color: #fff;
        padding: 0.8rem 2.8rem;
        border-radius: 2.5rem;
        font-weight: 700;
        font-size: 1.1rem;
        transition: 0.25s;
        position: relative;
        z-index: 2;
        display: inline-block;
    }

        .cta-banner .btn-cta:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 40px rgba(201, 92, 46, 0.3);
        }

/* ---------- Footer ---------- */
.footer-main {
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

    .footer-main .footer-title {
        font-weight: 700;
        font-size: 1.3rem;
        color: var(--dark-blue);
    }

    .footer-main .footer-desc {
        max-width: 600px;
        margin: 0.5rem auto 1rem;
    }

    .footer-main .footer-copy {
        font-size: 0.8rem;
        opacity: 0.7;
    }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .hero-section {
        align-items: center;
    }

    .hero-left {
        padding-right: 0;
    }

    .glass-login {
        max-width: 100%;
        margin-top: 2rem;
    }

    .step-arrow {
        transform: rotate(90deg);
        padding: 0.5rem 0;
    }

    .dashboard-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 1rem;
    }

    .hero-left h1 {
        font-size: 2.2rem;
    }

    .dashboard-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .dash-card {
        padding: 0.8rem 0.6rem;
    }

        .dash-card .dash-icon {
            font-size: 1.4rem;
        }

        .dash-card .dash-label {
            font-size: 0.75rem;
        }

    .feature-grid-main {
        grid-template-columns: 1fr 1fr;
    }

    .cta-banner {
        padding: 2.5rem 1.5rem;
    }

        .cta-banner h2 {
            font-size: 1.6rem;
        }

    .quote-section blockquote {
        font-size: 1.4rem;
    }

    .expansion-banner h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .hero-stats {
        gap: 1.5rem;
    }

    .glass-login {
        padding: 1.8rem 1.2rem;
    }

    .dashboard-cards {
        grid-template-columns: 1fr 1fr;
    }

    .feature-grid-main {
        grid-template-columns: 1fr;
    }

    .step-arrow {
        display: none;
    }

    .hero-tagline {
        flex-direction: column;
        align-items: flex-start;
    }

        .hero-tagline .btn-primary {
            width: 100%;
            text-align: center;
        }
}

/* ============================================================
   FREE DEMO SECTION – HIGHLIGHTED
   ============================================================ */

.demo-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(11, 42, 74, 0.04), rgba(46, 125, 50, 0.04));
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.demo-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 50px -12px rgba(11, 42, 74, 0.08);
    position: relative;
    overflow: hidden;
}

    .demo-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        background: linear-gradient(90deg, var(--dark-blue), var(--green), var(--orange-rust));
    }

    .demo-card .demo-badge {
        display: inline-block;
        background: var(--orange-rust);
        color: #fff;
        padding: 0.25rem 1.2rem;
        border-radius: 2rem;
        font-weight: 700;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        margin-bottom: 1rem;
    }

    .demo-card h2 {
        font-weight: 700;
        font-size: 2rem;
        color: var(--dark-blue);
        margin-bottom: 0.5rem;
    }

    .demo-card .lead-text {
        font-size: 1.1rem;
        color: var(--text-muted);
        max-width: 500px;
        margin-bottom: 1.8rem;
    }

.demo-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 2rem;
    margin-bottom: 2rem;
}

    .demo-features .feature-chip {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-weight: 500;
        font-size: 0.95rem;
        color: var(--text-dark);
    }

        .demo-features .feature-chip i {
            color: var(--green);
            font-size: 1.2rem;
        }

.demo-card .btn-demo {
    background: linear-gradient(135deg, var(--dark-blue), var(--green));
    color: #fff;
    padding: 0.9rem 2.8rem;
    border-radius: 3rem;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    display: inline-block;
    transition: 0.25s;
    box-shadow: 0 4px 16px rgba(11, 42, 74, 0.25);
}

    .demo-card .btn-demo i {
        margin-right: 0.6rem;
    }

    .demo-card .btn-demo:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 8px 28px rgba(11, 42, 74, 0.35);
        color: #fff;
    }

.demo-card .demo-note {
    margin-top: 1.2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

    .demo-card .demo-note i {
        color: var(--orange-rust);
        margin-right: 0.3rem;
    }

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .demo-card {
        padding: 1.8rem 1.2rem;
    }

        .demo-card h2 {
            font-size: 1.6rem;
        }

    .demo-features {
        gap: 0.8rem 1.2rem;
    }

        .demo-features .feature-chip {
            font-size: 0.85rem;
        }

    .demo-card .btn-demo {
        width: 100%;
        text-align: center;
    }
}
/* ============================================================
   EXPANSION HERO – TOP VISIBLE CALLOUT
   ============================================================ */

.expansion-hero {
    background: rgba(11, 42, 74, 0.04);
    border-radius: 1rem;
    padding: 0.8rem 1.2rem;
    margin: 1rem 0 1.2rem;
    border-left: 4px solid var(--orange-rust);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem 1.2rem;
}

.expansion-hero-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem 1.2rem;
    width: 100%;
}

.expansion-badge {
    background: var(--orange-rust);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.2rem 0.8rem;
    border-radius: 2rem;
    white-space: nowrap;
}

.expansion-text {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark-blue);
}

    .expansion-text .text-tomorrow {
        color: var(--orange-rust);
    }

.expansion-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.btn-early-access-hero {
    background: var(--green);
    color: #fff;
    padding: 0.6rem 2rem;
    border-radius: 3rem;
    font-weight: 700;
    font-size: 1.1rem; /* Bigger font */
    transition: 0.25s;
    white-space: nowrap;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.25);
}

    .btn-early-access-hero:hover {
        transform: translateY(-3px) scale(1.03);
        box-shadow: 0 8px 24px rgba(46, 125, 50, 0.35);
        color: #fff;
    }

/* ---- Responsive tweaks ---- */
@media (max-width: 576px) {
    .expansion-hero {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .expansion-hero-content {
        justify-content: center;
    }

    .btn-early-access-hero {
        width: 100%;
        text-align: center;
        white-space: normal;
        padding: 0.7rem 1.5rem;
        font-size: 1.2rem;
    }
}