/* ========================================================
   Briea MHP Landing Page — Stylesheet
   Brand: thebriea.com
   ======================================================== */

/* ===== RESET ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

/* ===== BRAND VARIABLES ===== */
:root {
    /* Hero overlay colour — matched to uploaded swatch */
    --hero-purple: #726ac1;
    --hero-purple-dark: #5a53a8;
    --hero-purple-light: #8f89d4;
    /* Brand gradient — matches thebriea.com CTA buttons */
    --brand-gradient: linear-gradient(90deg, rgba(19,138,245,1) 0%, rgba(68,23,215,1) 16%, rgba(110,3,223,1) 32%, rgba(160,0,198,1) 47%, rgba(212,0,89,1) 100%);
    --brand-purple: #6E03DF;
    --brand-pink: #D40059;
    --brand-blue: #138AF5;
    /* Page palette — light, matching thebriea.com */
    --bg-page: #f7f8fc;
    --bg-white: #ffffff;
    --bg-light: #f0f1f8;
    --text-dark: #1a1a2e;
    --text-mid: #3d3d5c;
    --text-muted: #7b7b9a;
    --border: #e2e3ef;
    --shadow-soft: 0 4px 24px rgba(110,3,223,0.09);
    --shadow-card: 0 2px 16px rgba(26,26,46,0.08);
    --radius: 12px;
    --radius-sm: 8px;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--bg-page);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid var(--border);
    padding: 0 40px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 16px rgba(114,106,193,0.10);
    backdrop-filter: blur(8px); 
    transition: box-shadow 0.3s;
}

    .navbar.scrolled {
        box-shadow: 0 4px 24px rgba(114,106,193,0.18);
    }

.logo-wrap {
    display: flex;
    align-items: center;
/*    gap: 10px;
*/    text-decoration: none;
}

.logo-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-tagline {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.3px;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.logo-sub {
    font-size: 9px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.4px;
    text-align: center;
}

.nav-cta {
    background: var(--brand-gradient);
    color: white;
    font-weight: 800;
    font-size: 13px;
    padding: 10px 26px;
    border-radius: 60px;
    text-decoration: none;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 16px rgba(114,106,193,0.35);
    transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
    white-space: nowrap;
}

    .nav-cta:hover {
        opacity: 0.92;
        transform: translateY(-1px);
        box-shadow: 0 7px 22px rgba(114,106,193,0.45);
    }

/* =====================================================
   HERO BANNER — Glossy Premium Foreground Design
   ===================================================== */
.hero-banner {
    position: relative;
    width: 100%;
    margin-top: 68px;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: #0d2b1e; /* fallback while image loads */
}

/* ── Full vivid image — foreground, not watermark ── */
.hero-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    z-index: 0;
}

/* ── Dark gradient left→right: dark on left (text area), clear on right (photo) ── */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient( 105deg, rgba(5, 20, 50, 0.82) 0%, rgba(8, 30, 65, 0.72) 25%, rgba(8, 30, 65, 0.45) 50%, rgba(5, 15, 40, 0.10) 72%, rgba(0, 0, 0, 0.00) 100% );
}

/* ── Glossy sheen: bright streak across the top ── */
.hero-gloss {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    height: 4px;
    background: linear-gradient( 90deg, transparent 0%, rgba(255,255,255,0.0) 10%, rgba(255,255,255,0.70) 38%, rgba(255,255,255,1.00) 50%, rgba(255,255,255,0.70) 62%, rgba(255,255,255,0.0) 90%, transparent 100% );
}

/* Second glossy layer — subtle inner glow at top */
.hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    height: 120px;
    background: linear-gradient( to bottom, rgba(255,255,255,0.07) 0%, transparent 100% );
    pointer-events: none;
}

/* ── Bottom page-blend fade ── */
.hero-fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    height: 38%;
    background: linear-gradient( to bottom, transparent 0%, rgba(247,248,252,0.60) 60%, rgba(247,248,252,1.00) 100% );
    pointer-events: none;
}

/* ── TEXT CONTENT — positioned over left side ── */
.hero-content {
    position: relative;
    z-index: 4;
    padding: 52px 52px 44px;
    max-width: 660px;
}

/* Eyebrow tag */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 60px;
    padding: 6px 16px;
    font-size: 11.5px;
    font-weight: 700;
    color: rgba(255,255,255,0.90);
    letter-spacing: 0.5px;
    margin-bottom: 22px;
}

.hero-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #f5d98a;
    box-shadow: 0 0 6px 2px rgba(245,217,138,0.6);
    animation: glow-pulse 2s infinite;
    flex-shrink: 0;
}

@keyframes glow-pulse {
    0%,100% {
        box-shadow: 0 0 6px 2px rgba(245,217,138,0.6);
    }

    50% {
        box-shadow: 0 0 12px 4px rgba(245,217,138,0.9);
    }
}

/* Main headline — BOLD, large, sharp */
.hero-headline {
    font-family: 'Merriweather', serif;
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.10;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    /* Crisp text shadow for depth and legibility */
    text-shadow: 0 2px 4px rgba(0,0,0,0.6), 0 4px 16px rgba(0,0,0,0.4), 0 8px 32px rgba(0,0,0,0.25);
}
/* Gold accent word */
.hero-gold {
    color: #f5d272;
    text-shadow: 0 0 20px rgba(245,210,114,0.5), 0 2px 4px rgba(0,0,0,0.5);
}

/* Sub-tagline */
.hero-tagline {
    font-size: clamp(14px, 1.6vw, 18px);
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.4px;
    margin-bottom: 20px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

/* Gold divider line */
.hero-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #f5d272, rgba(245,210,114,0.2));
    border-radius: 2px;
    margin-bottom: 22px;
}

/* Bullet rows */
.hero-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.hero-bullet {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.88);
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

    .hero-bullet strong {
        color: #f5d272;
        font-weight: 800;
    }

.hb-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.20);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    /* Glossy button shine */
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 2px 8px rgba(0,0,0,0.2);
}

/* CTA Button — glossy pill */
.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient( 135deg, rgba(255,255,255,0.95) 0%, rgba(235,235,255,0.92) 100% );
    color: #2b3190;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 0.3px;
    padding: 13px 28px;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.2s;
    /* Glossy shine effect */
    box-shadow: inset 0 1px 0 rgba(255,255,255,1), inset 0 -1px 0 rgba(0,0,0,0.08), 0 4px 20px rgba(0,0,0,0.25), 0 1px 4px rgba(0,0,0,0.15);
}

    .hero-cta-btn:hover {
        background: #ffffff;
        transform: translateY(-2px);
        box-shadow: inset 0 1px 0 rgba(255,255,255,1), 0 8px 28px rgba(0,0,0,0.30), 0 2px 8px rgba(0,0,0,0.15);
    }

/* Contact bar — mirrors original slide footer */
.hero-contact-bar {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 13px 40px;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,0.90);
    letter-spacing: 0.3px;
}

.hcb-sep {
    color: rgba(255,255,255,0.35);
    font-weight: 300;
}

.hero-contact-bar a {
    color: inherit;
    text-decoration: none;
}

/* Legacy classes no longer used — keep empty to avoid errors */
.hero-banner-img {
}

.hero-color-overlay {
    display: none;
}

.hero-banner-fade {
    display: none;
}

.hero-banner-strip {
    display: none;
}

.hero-banner-badge {
    display: none;
}

/* ===== PAGE WRAPPER ===== */
.page-main {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px 64px;
}

/* ===== FORM HERO CARD ===== */
.form-hero {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 48px rgba(114,106,193,0.15);
    overflow: hidden;
    margin-top: -52px;
    position: relative;
    z-index: 10;
    border: 1.5px solid rgba(114,106,193,0.12);
}

    .form-hero::before {
        content: '';
        display: block;
        height: 4px;
        background: var(--brand-gradient);
    }

.form-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    min-height: 520px;
}

/* Left welcome panel */
.form-hero-left {
    padding: 44px 40px;
    background: linear-gradient(150deg, #fafaff 0%, #eeebff 100%);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

    .form-hero-left::after {
        content: '';
        position: absolute;
        bottom: -70px;
        left: -70px;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(114,106,193,0.08) 0%, transparent 70%);
        pointer-events: none;
    }

.welcome-badge {
    display: inline-block;
    background: rgba(114,106,193,0.10);
    border: 1px solid rgba(114,106,193,0.20);
    color: var(--hero-purple-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 60px;
    margin-bottom: 20px;
}

.welcome-title {
    font-family: 'Merriweather', serif;
    font-size: clamp(20px, 2.6vw, 28px);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 16px;
}

    .welcome-title .grad {
        background: var(--brand-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.welcome-desc {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 24px;
}

    .welcome-desc strong {
        color: var(--text-dark);
        font-weight: 700;
    }

.welcome-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 26px;
}

.wp {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.5;
}

.wp-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 1px;
    background: var(--brand-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: white;
    font-weight: 800;
}

.contact-strip {
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.cs-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-mid);
}

    .cs-item a {
        color: var(--hero-purple-dark);
        text-decoration: none;
        font-weight: 700;
    }

        .cs-item a:hover {
            color: var(--brand-pink);
        }

.cs-dot {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    flex-shrink: 0;
    background: rgba(114,106,193,0.10);
    border: 1px solid rgba(114,106,193,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Right form panel */
.form-hero-right {
    padding: 44px 40px;
    background: white;
}

.form-heading {
    font-family: 'Merriweather', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.form-subhead {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 26px;
    line-height: 1.5;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.fg {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .fg.full {
        grid-column: 1 / -1;
    }

    .fg label {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        color: var(--text-muted);
    }

    .fg input, .fg select, .fg textarea {
        background: var(--bg-light);
        border: 1.5px solid transparent;
        border-radius: var(--radius-sm);
        padding: 11px 14px;
        font-family: 'Nunito', sans-serif;
        font-size: 14px;
        font-weight: 500;
        color: var(--text-dark);
        outline: none;
        transition: all 0.2s;
        width: 100%;
        -webkit-appearance: none;
    }

        .fg input::placeholder, .fg textarea::placeholder {
            color: var(--text-muted);
            font-weight: 400;
        }

        .fg input:focus, .fg select:focus, .fg textarea:focus {
            border-color: var(--hero-purple);
            background: #f5f3ff;
            box-shadow: 0 0 0 3px rgba(114,106,193,0.12);
        }

        .fg select option {
            background: white;
            color: var(--text-dark);
        }

    .fg textarea {
        resize: vertical;
        min-height: 80px;
    }
/*
.consent-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 2px;
}

    .consent-row input[type="checkbox"] {
        width: 16px;
        height: 16px;
        margin-top: 2px;
        flex-shrink: 0;
        accent-color: var(--hero-purple);
    }
*/

.consent-row label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}
.consent-row {
    position: relative;
    display: flex;
    align-items: flex-start;
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 2px;
}

    .consent-row input[type="checkbox"] {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
    }

    /* THIS was missing — draws the grey box */
    .consent-row label::before {
        content: '';
        display: flex;
        align-items: center;
        justify-content: center;
        width: 18px;
        height: 18px;
        min-width: 18px;
        border: 2px solid #aaa;
        border-radius: 4px;
        background: #fff;
        margin-top: 1px;
        font-size: 13px;
        font-weight: bold;
        color: #fff;
        transition: background 0.2s, border-color 0.2s;
    }

    /* Checked — purple box with tick */
    .consent-row input[type="checkbox"]:checked + label::before {
        content: '✓';
        background: var(--hero-purple);
        border-color: var(--hero-purple);
    }
.btn-submit {
    width: 100%;
    margin-top: 16px;
    background: var(--brand-gradient);
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.2px;
    padding: 15px 24px;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(114,106,193,0.35);
    transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .btn-submit:hover {
        opacity: 0.92;
        transform: translateY(-2px);
        box-shadow: 0 10px 32px rgba(114,106,193,0.45);
    }

    .btn-submit:active {
        transform: translateY(0);
    }

.form-note {
    text-align: center;
    font-size: 11.5px;
    color: var(--text-muted);
    margin-top: 11px;
}

.success-box {
    display: none;
    background: linear-gradient(135deg, #f0ebff, #fff0f6);
    border: 1.5px solid rgba(114,106,193,0.20);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    margin-top: 16px;
}

    .success-box .s-icon {
        font-size: 34px;
        margin-bottom: 10px;
        display: block;
    }

    .success-box .s-title {
        font-family: 'Merriweather', serif;
        font-size: 17px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 7px;
    }

    .success-box .s-sub {
        font-size: 13px;
        color: var(--text-mid);
        line-height: 1.65;
    }

/* ===== SHARED SECTION LABELS ===== */
.sec-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.sec-title {
    font-family: 'Merriweather', serif;
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 10px;
}

.sec-sub {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.72;
    margin-bottom: 28px;
    max-width: 789px;
}

/* ===== RESOURCES ===== */
.resources-section {
    margin-top: 36px;
}

.res-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.res-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.22s;
    position: relative;
    overflow: hidden;
}

    .res-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-soft);
        border-color: rgba(114,106,193,0.25);
    }

.res-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(114,106,193,0.10), rgba(212,0,89,0.07));
    border: 1px solid rgba(114,106,193,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.res-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3px;
}

.res-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.res-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.45;
}

.res-arrow {
    margin-left: auto;
    font-size: 18px;
    color: var(--hero-purple);
    flex-shrink: 0;
    transition: transform 0.2s;
}

.res-card:hover .res-arrow {
    transform: translateX(4px);
}

/* ===== SCALE STATS ===== */
.info-section {
    margin-top: 36px;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.info-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: box-shadow 0.2s, transform 0.2s;
}

    .info-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-soft);
    }

.info-card-top {
    height: 3px;
    border-radius: 2px;
    background: var(--brand-gradient);
    margin-bottom: 20px;
}

.info-num {
    font-family: 'Merriweather', serif;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.info-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.info-desc {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ===== SC GUIDELINES TABLE ===== */
.sc-section {
    margin-top: 36px;
}

.sc-box {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.sc-box-header {
    background: var(--brand-gradient);
    padding: 22px 28px;
    color: white;
    display: flex;
    align-items: center;
    gap: 14px;
}

.sc-icon {
    font-size: 26px;
}

.sc-heading {
    font-family: 'Merriweather', serif;
    font-size: 17px;
    font-weight: 700;
}

.sc-subhead {
    font-size: 12px;
    opacity: 0.85;
    margin-top: 3px;
    line-height: 1.5;
}

.sc-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.sc-table {
    width: 100%;
    border-collapse: collapse;
}

    .sc-table th {
        background: #f7f8fc;
        padding: 11px 20px;
        text-align: left;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        color: var(--text-muted);
        border-bottom: 1px solid var(--border);
    }

    .sc-table td {
        padding: 14px 20px;
        font-size: 13.5px;
        color: var(--text-mid);
        border-bottom: 1px solid var(--border);
        vertical-align: top;
        line-height: 1.55;
    }

    .sc-table tr:last-child td {
        border-bottom: none;
    }

    .sc-table tr:hover td {
        background: #fafaff;
    }

.sc-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--brand-gradient);
    color: white;
    font-weight: 800;
    font-size: 13px;
    flex-shrink: 0;
}

.sc-table td strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* ===== GROWTH STAGES ===== */
.growth-section {
    margin-top: 36px;
}

.growth-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stage-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}

    .stage-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-soft);
    }

.stage-num {
    font-family: 'Merriweather', serif;
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    opacity: 0.07;
    position: absolute;
    top: 14px;
    right: 18px;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stage-tag {
    display: inline-block;
    margin-bottom: 12px;
    background: rgba(114,106,193,0.09);
    border: 1px solid rgba(114,106,193,0.15);
    color: var(--hero-purple-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 60px;
}

.stage-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.stage-desc {
    font-size: 13.5px;
    color: var(--text-mid);
    line-height: 1.65;
}

.stage-arrow {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 14px;
    font-size: 12px;
    font-weight: 800;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--text-dark);
    padding: 30px 40px;
    text-align: center;
    font-size: 12.5px;
    color: rgba(255,255,255,0.45);
    margin-top: 60px;
}

    .site-footer a {
        color: rgba(255,255,255,0.72);
        text-decoration: none;
    }

        .site-footer a:hover {
            color: white;
        }

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
}

    .footer-logo img {
        width: 36px;
        height: 36px;
        border-radius: 50%;
    }

    .footer-logo span {
        font-size: 18px;
        font-weight: 800;
        background: var(--brand-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s, transform 0.65s;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ===== RESPONSIVE MEDIA: img/media safety ===== */
img, video {
    max-width: 100%;
    height: auto;
}

/* =========================================================
   RESPONSIVE BREAKPOINTS
   - Large desktop:        > 1160px  (base styles, content capped at 1160)
   - Small desktop / iPad landscape: 961–1160px
   - iPad portrait / tablet:         769–960px
   - Large phones:                   481–768px
   - Small phones:                   ≤ 480px
   ========================================================= */

/* ---- Small desktop & iPad landscape (≤ 1160px) ---- */
@media (max-width: 1160px) {
    .page-main {
        padding: 0 28px 60px;
    }

    .hero-content {
        padding: 48px 44px 40px;
    }
}

/* ---- iPad portrait / tablets (≤ 960px) ---- */
@media (max-width: 960px) {
    .navbar {
        padding: 0 28px;
    }

    .hero-content {
        max-width: 78%;
    }

    .form-hero-inner {
        grid-template-columns: 1fr;
    }

    .form-hero-left {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    /* On tablets the form can comfortably keep two columns */
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }

    .info-cards {
        grid-template-columns: 1fr 1fr;
    }

    .growth-inner {
        grid-template-columns: 1fr 1fr;
    }
}

/* ---- Large phones / small tablets (≤ 768px) ---- */
@media (max-width: 768px) {
    .navbar {
        padding: 0 16px;
        height: 60px;
        gap: 12px;
    }

    .logo-sub {
        display: none;
    }

    .hero-banner {
        margin-top: 60px;
        min-height: 360px;
    }

    .hero-content {
        padding: 36px 20px 32px;
        max-width: 100%;
    }

    .hero-bullets {
        margin-bottom: 24px;
    }

    .hero-contact-bar {
        padding: 11px 18px;
        font-size: 12px;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .hcb-sep {
        display: none;
    }

    .page-main {
        padding: 0 16px 48px;
    }

    .form-hero {
        margin-top: -28px;
    }

    .form-hero-left, .form-hero-right {
        padding: 28px 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .growth-inner {
        grid-template-columns: 1fr;
    }

    /* Collapse the narrow "No." column; keep the rest readable */
    .sc-box-header {
        padding: 18px 20px;
    }

    .sc-table th:first-child, .sc-table td:first-child {
        display: none;
    }

    .sc-table th, .sc-table td {
        padding: 12px 14px;
    }

    .site-footer {
        padding: 24px 16px;
    }

    .footer-links {
        gap: 14px;
        font-size: 11px;
    }
}

/* ---- Small phones (≤ 480px) ---- */
@media (max-width: 480px) {
    .navbar {
        padding: 0 12px;
    }

    .nav-cta {
        font-size: 12px;
        padding: 8px 16px;
    }

    .logo-img {
        width: 38px;
        height: 38px;
    }

    .hero-banner {
        min-height: 300px;
    }

    .hero-content {
        padding: 26px 16px 26px;
    }

    .hero-eyebrow {
        font-size: 10.5px;
        padding: 5px 12px;
    }

    .hero-headline {
        font-size: clamp(24px, 7.5vw, 30px);
    }

    .hero-bullets {
        gap: 9px;
    }

    .hero-bullet {
        font-size: 13px;
    }

    .hero-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .welcome-title {
        font-size: 20px;
    }

    .form-heading {
        font-size: 18px;
    }

    .form-hero-left, .form-hero-right {
        padding: 22px 16px;
    }

    .btn-submit {
        font-size: 14px;
        padding: 14px 18px;
    }

    .info-num {
        font-size: 36px;
    }

    .sc-table th, .sc-table td {
        padding: 11px 12px;
        font-size: 12.5px;
    }

    .sc-heading {
        font-size: 15px;
    }

    .stage-num {
        font-size: 44px;
    }

    .footer-links {
        flex-direction: column;
        gap: 8px;
    }
}

/* ---- Very small phones (≤ 360px) ---- */
@media (max-width: 360px) {
    .logo-tagline {
        font-size: 15px;
    }

    .nav-cta {
        font-size: 11px;
        padding: 7px 12px;
        letter-spacing: 0;
    }

    .hero-headline {
        font-size: 23px;
    }
}
