 /* ══ RESET ══════════════════════════════════════════════════════════════ */
    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    :root {
        --blue: #003B5C;
        --blue-dark: #073F6E;
        --blue-deep: #042440;
        --gold: #FFBD59;
        --gold-dark: #E0A23E;
        --red: #E70931;
        --bg: #F7F9FC;
        --white: #FFFFFF;
        --charcoal: #1C2333;
        --gray-700: #374151;
        --gray-500: #6B7280;
        --gray-200: #E5E8EE;
        --radius-sm: 6px;
        --radius: 12px;
        --radius-lg: 20px;
        --shadow-sm: 0 1px 4px rgba(10, 88, 153, .06);
        --shadow: 0 4px 20px rgba(10, 88, 153, .09);
        --shadow-lg: 0 16px 48px rgba(10, 88, 153, .14);
        --transition: .25s ease;
    }

    html {
        scroll-behavior: smooth;
        font-size: 16px;
    }

    body {
        font-family: "Plus Jakarta Sans", sans-serif;
        background: var(--bg);
        color: var(--charcoal);
        line-height: 1.6;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
    }

    img {
        display: block;
        max-width: 100%;
    }

    a {
        text-decoration: none;
        color: inherit;
    }

    ul {
        list-style: none;
    }

    /* ══ UTILITIES ══════════════════════════════════════════════════════════ */
    .container {
        max-width: 1180px;
        margin: 0 auto;
        padding: 0 24px;
    }

    .section {
        padding: 96px 0;
    }

    .section--alt {
        background: var(--white);
    }

    .eyebrow {
        display: inline-block;
        font-size: .72rem;
        font-weight: 700;
        letter-spacing: .16em;
        text-transform: uppercase;
        color: var(--red);
        margin-bottom: 14px;
    }

    .section-title {
        font-family: "DM Serif Display", serif;
        font-size: clamp(1.8rem, 3.5vw, 2.9rem);
        font-weight: 400;
        color: var(--blue-deep);
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .section-title em {
        font-style: italic;
        color: var(--blue);
    }

    .section-sub {
        font-size: 1.05rem;
        color: var(--gray-500);
        max-width: 600px;
        line-height: 1.75;
    }

    .section-header--center {
        text-align: center;
    }

    .section-header--center .section-sub {
        margin: 0 auto;
    }

    /* ══ BUTTONS ═══════════════════════════════════════════════════════════ */
    .btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: .92rem;
        font-weight: 700;
        border-radius: var(--radius-sm);
        cursor: pointer;
        border: 2px solid transparent;
        transition: background var(--transition), transform var(--transition), box-shadow var(--transition), border-color var(--transition);
        padding: 13px 26px;
        letter-spacing: .02em;
    }

    .btn--primary {
        background: var(--gold);
        color: var(--charcoal);
        border-color: var(--gold);
    }

    .btn--primary:hover {
        background: var(--gold-dark);
        border-color: var(--gold-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(255, 189, 89, .35);
    }

    .btn--outline {
        background: transparent;
        color: var(--white);
        border-color: rgba(255, 255, 255, .5);
    }

    .btn--outline:hover {
        background: rgba(255, 255, 255, .1);
        border-color: var(--white);
    }

    .btn--blue {
        background: var(--blue);
        color: var(--white);
        border-color: var(--blue);
    }

    .btn--blue:hover {
        background: var(--blue-dark);
        border-color: var(--blue-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(10, 88, 153, .3);
    }

    .btn--ghost {
        background: transparent;
        color: var(--blue);
        border-color: var(--blue);
    }

    .btn--ghost:hover {
        background: var(--blue);
        color: var(--white);
        transform: translateY(-1px);
    }

    .btn svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

    /* ══ NAV ════════════════════════════════════════════════════════════════ */
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, .95);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--gray-200);
        transition: box-shadow var(--transition);
    }

    .nav.scrolled {
        box-shadow: var(--shadow);
    }

    .nav-inner {
        max-width: 1180px;
        margin: 0 auto;
        padding: 0 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 68px;
    }

    .nav-brand {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        flex-shrink: 0;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-logo-box {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        /* background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
        border: 1px solid rgba(10, 88, 153, .2); */
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        flex-shrink: 0;
        transition: box-shadow .25s;
    }

    .nav-brand:hover .nav-logo-box {
        box-shadow: 0 4px 16px rgba(10, 88, 153, .25);
    }

    .nav-logo-box img {
        width: 40px;
        height: 40px;
        object-fit: contain;
        display: block;
        pointer-events: none;
        -webkit-user-drag: none;
        user-select: none;
        -webkit-user-select: none;
    }

    .nav-logo-box .nav-logo-svg {
        width: 26px;
        height: 26px;
        fill: none;
        stroke: #fff;
        stroke-width: 1.6;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .nav-brand-text {
        display: flex;
        flex-direction: column;
        line-height: 1.15;
    }

    .nav-brand-text .name {
        font-family: "DM Serif Display", serif;
        font-weight: 400;
        font-size: .98rem;
        color: var(--blue);
        letter-spacing: -.2px;
        white-space: nowrap;
    }

    .nav-brand-text .tagline {
        font-size: .62rem;
        color: var(--gray-500);
        font-weight: 600;
        letter-spacing: .07em;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .nav-links a {
        font-size: .875rem;
        font-weight: 600;
        color: var(--gray-700);
        padding: 7px 14px;
        border-radius: var(--radius-sm);
        transition: color var(--transition), background var(--transition);
    }

    .nav-links a:hover {
        color: var(--blue);
        background: rgba(10, 88, 153, .06);
    }

    .nav-links .nav-cta {
        background: var(--gold);
        color: var(--charcoal);
        padding: 8px 18px;
    }

    .nav-links .nav-cta:hover {
        background: var(--gold-dark);
    }

    .nav-learn-badge {
        background: rgba(255, 189, 89, .1) !important;
        border: 1px solid rgba(255, 189, 89, .3) !important;
        color: var(--gold-dark) !important;
        border-radius: 20px !important;
        padding: 6px 14px !important;
        font-weight: 600 !important;
    }

    .nav-ham {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px;
    }

    .nav-ham span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--blue);
        margin: 5px 0;
        border-radius: 2px;
        transition: .3s;
    }

    .nav-ham.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-ham.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .nav-ham.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-mobile {
        display: none;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--gray-200);
        padding: 20px 24px;
        z-index: 999;
        box-shadow: var(--shadow);
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition: transform .28s ease, opacity .28s ease;
    }

    .nav-mobile.open {
        display: block;
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-mobile a {
        display: block;
        padding: 12px 0;
        font-weight: 600;
        color: var(--charcoal);
        border-bottom: 1px solid var(--gray-200);
    }

    .nav-mobile a:last-child {
        border: none;
        margin-top: 8px;
    }

    /* ══ HERO ═══════════════════════════════════════════════════════════════ */
    .hero {
        position: relative;
        background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 60%, #1a6fa8 100%);
        padding: 180px 24px 120px;
        overflow: hidden;
        text-align: center;
    }

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, .06) 1px, transparent 0);
        background-size: 36px 36px;
    }

    .hero::after {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 0;
        right: 0;
        height: 80px;
        background: var(--bg);
        clip-path: ellipse(55% 100% at 50% 100%);
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 189, 89, .15);
        border: 1px solid rgba(255, 189, 89, .4);
        border-radius: 100px;
        padding: 6px 18px;
        margin-bottom: 28px;
        font-size: .72rem;
        font-weight: 700;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: var(--gold);
    }

    /*.hero-badge .pulse {*/
    /*    width: 7px;*/
    /*    height: 7px;*/
    /*    border-radius: 50%;*/
    /*    background: var(--gold);*/
    /*    animation: pulse 2s infinite;*/
    /*}*/

    @keyframes pulse {

        0%,
        100% {
            opacity: 1;
            transform: scale(1)
        }

        50% {
            opacity: .5;
            transform: scale(.8)
        }
    }

    .hero-title {
        font-family: "DM Serif Display", serif;
        font-size: clamp(2.4rem, 5.5vw, 4.2rem);
        color: var(--white);
        line-height: 1.1;
        margin-bottom: 24px;
        position: relative;
    }

    .hero-title em {
        font-style: italic;
        color: var(--gold);
    }

    .hero-sub {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, .82);
        max-width: 580px;
        margin: 0 auto 40px;
        line-height: 1.78;
        position: relative;
    }

    .hero-btns {
        display: flex;
        gap: 14px;
        justify-content: center;
        flex-wrap: wrap;
        position: relative;
    }

    .hero-stats {
        display: flex;
        justify-content: center;
        gap: 48px;
        flex-wrap: wrap;
        margin-top: 72px;
        position: relative;
        padding-top: 40px;
    }

    .hero-stats::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 2px;
        background: rgba(255, 189, 89, .5);
    }

    .stat {
        text-align: center;
        color: var(--white);
    }

    .stat-num {
        font-family: "DM Serif Display", serif;
        font-size: 2.4rem;
        color: var(--gold);
        line-height: 1;
    }

    .stat-label {
        font-size: .75rem;
        opacity: .7;
        margin-top: 6px;
        letter-spacing: .06em;
        text-transform: uppercase;
    }

    /* ══ TRUST BAR ══════════════════════════════════════════════════════════ */
    .trust-bar {
        background: var(--white);
        border-bottom: 1px solid var(--gray-200);
        padding: 24px;
    }

    .trust-bar-inner {
        max-width: 1180px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
    }

    .trust-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: .85rem;
        font-weight: 600;
        color: var(--gray-500);
    }

    .trust-item svg {
        width: 20px;
        height: 20px;
        stroke: var(--blue);
        flex-shrink: 0;
    }

    /* ══ MARQUEE SCHOOLS SECTION ════════════════════════════════════════════ */
    .marquee-showcase {
        padding: 80px 0 72px;
        background: var(--white);
        border-bottom: 1px solid var(--gray-200);
        overflow: hidden;
    }

    .marquee-showcase .section-header--center {
        padding: 0 24px;
        margin-bottom: 52px;
    }

    .marquee-showcase .section-title {
        font-size: clamp(1.6rem, 3vw, 2.4rem);
        margin-bottom: 12px;
    }

    /* Fade masks on left/right edges */
    .marquee-container {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .marquee-container::before,
    .marquee-container::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 120px;
        z-index: 2;
        pointer-events: none;
    }

    .marquee-container::before {
        left: 0;
        background: linear-gradient(90deg, var(--white) 0%, transparent 100%);
    }

    .marquee-container::after {
        right: 0;
        background: linear-gradient(270deg, var(--white) 0%, transparent 100%);
    }

    /* Each row track */
    .marquee-track {
        display: flex;
        gap: 10px;
        width: max-content;
        animation: scrollLeft 40s linear infinite;
    }

    .marquee-track.reverse {
        animation: scrollRight 46s linear infinite;
    }

    .marquee-track:nth-child(3) {
        animation-duration: 52s;
    }

    .marquee-track:nth-child(4) {
        animation-duration: 36s;
    }

    /* Pause on hover */
    .marquee-container:hover .marquee-track {
        animation-play-state: paused;
    }

    @keyframes scrollLeft {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    @keyframes scrollRight {
        0% {
            transform: translateX(-50%);
        }

        100% {
            transform: translateX(0);
        }
    }

    /* Individual school pill */
    .school-pill {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 18px;
        background: var(--bg);
        border: 1.5px solid var(--gray-200);
        border-radius: 100px;
        font-size: .75rem;
        font-weight: 700;
        color: var(--blue-deep);
        white-space: nowrap;
        letter-spacing: .04em;
        text-transform: uppercase;
        cursor: default;
        transition: background .22s, border-color .22s, color .22s, transform .22s, box-shadow .22s;
        flex-shrink: 0;
    }

    .school-pill:hover {
        background: var(--blue);
        border-color: var(--blue);
        color: var(--white);
        transform: translateY(-3px) scale(1.04);
        box-shadow: 0 8px 20px rgba(0, 59, 92, .2);
    }

    /* .school-pill-logo {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
        opacity: .6;
        transition: opacity .22s;
    } */

    .school-pill:hover .school-pill-logo {
        opacity: 1;
    }

    /* CTA row below the cloud */
    .marquee-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
        margin-top: 48px;
        padding: 0 24px;
    }

    .marquee-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(0, 59, 92, .05);
        border: 1px solid rgba(0, 59, 92, .12);
        border-radius: 100px;
        padding: 10px 20px;
        font-size: .78rem;
        font-weight: 700;
        color: var(--blue);
    }

    .marquee-badge strong {
        font-size: 1.15rem;
        font-weight: 800;
        color: var(--blue);
    }

    .btn--join-now {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        padding: 13px 28px;
        background: var(--blue);
        color: var(--white);
        border: 2px solid var(--blue);
        border-radius: 10px;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: .92rem;
        font-weight: 700;
        letter-spacing: .025em;
        cursor: pointer;
        transition: background .22s, transform .22s, box-shadow .22s;
        text-decoration: none;
    }

    .btn--join-now:hover {
        background: var(--blue-dark);
        border-color: var(--blue-dark);
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(0, 59, 92, .28);
    }

    .btn--join-now svg {
        width: 17px;
        height: 17px;
        flex-shrink: 0;
    }

    .btn--see-how {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        padding: 13px 28px;
        background: transparent;
        color: var(--blue);
        border: 2px solid var(--blue);
        border-radius: 10px;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: .92rem;
        font-weight: 700;
        cursor: pointer;
        transition: background .22s, color .22s, transform .22s;
        text-decoration: none;
    }

    .btn--see-how:hover {
        background: var(--blue);
        color: var(--white);
        transform: translateY(-2px);
    }

    .btn--see-how svg {
        width: 17px;
        height: 17px;
        flex-shrink: 0;
    }

    /* ══ MODULES ════════════════════════════════════════════════════════════ */
    .modules-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 56px;
    }

    .module-card {
        background: var(--white);
        border: 1px solid var(--gray-200);
        border-radius: var(--radius);
        padding: 32px 28px;
        transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
        position: relative;
        overflow: hidden;
    }

    .module-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--blue);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform var(--transition);
    }

    .module-card.gold-accent::before {
        background: var(--gold);
    }

    .module-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
        border-color: var(--blue);
    }

    .module-card:hover::before {
        transform: scaleX(1);
    }

    .module-card.gold-accent:hover {
        border-color: var(--gold);
    }

    .module-icon {
        width: 52px;
        height: 52px;
        background: rgba(10, 88, 153, .07);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 18px;
    }

    .module-icon svg {
        width: 26px;
        height: 26px;
        stroke: var(--blue);
        fill: none;
        stroke-width: 1.5;
    }

    .module-card.gold-accent .module-icon {
        background: rgba(255, 189, 89, .12);
    }

    .module-card.gold-accent .module-icon svg {
        stroke: var(--gold-dark);
    }

    .module-tag {
        display: inline-block;
        font-size: .65rem;
        font-weight: 700;
        letter-spacing: .1em;
        text-transform: uppercase;
        padding: 3px 10px;
        border-radius: 100px;
        margin-bottom: 12px;
        background: rgba(10, 88, 153, .08);
        color: var(--blue);
    }

    .module-card.gold-accent .module-tag {
        background: rgba(255, 189, 89, .2);
        color: var(--gold-dark);
    }

    .module-card h3 {
        font-family: "DM Serif Display", serif;
        font-size: 1.25rem;
        color: var(--blue-deep);
        margin-bottom: 10px;
    }

    .module-card p {
        font-size: .875rem;
        color: var(--gray-500);
        line-height: 1.72;
        margin-bottom: 20px;
    }

    .module-features {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .module-features li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: .83rem;
        color: var(--gray-700);
    }

    .module-features li::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--red);
        flex-shrink: 0;
        margin-top: 6px;
    }

    .modules-grid--5 {
        grid-template-columns: repeat(6, 1fr);
    }

    .modules-grid--5 .module-card {
        grid-column: span 2;
    }

    .modules-grid--5 .module-card:nth-child(4) {
        grid-column: 2/4;
    }

    .modules-grid--5 .module-card:nth-child(5) {
        grid-column: 4/6;
    }

    /* ══ TIMELINE ═══════════════════════════════════════════════════════════ */
    .timeline {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-top: 56px;
        position: relative;
    }

    .timeline::before {
        content: "";
        position: absolute;
        left: 72px;
        top: 28px;
        bottom: 28px;
        width: 2px;
        background: var(--gray-200);
    }

    .timeline-item {
        display: flex;
        align-items: flex-start;
        gap: 28px;
        position: relative;
        padding-bottom: 36px;
    }

    .timeline-item:last-child {
        padding-bottom: 0;
    }

    .timeline-week {
        flex-shrink: 0;
        width: 72px;
        text-align: right;
        font-size: .72rem;
        font-weight: 700;
        color: var(--blue);
        letter-spacing: .06em;
        padding-top: 4px;
    }

    .timeline-dot {
        flex-shrink: 0;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: var(--blue);
        border: 3px solid var(--bg);
        box-shadow: 0 0 0 2px var(--blue);
        margin-top: 2px;
        position: relative;
        z-index: 1;
    }

    .timeline-content {
        background: var(--white);
        border: 1px solid var(--gray-200);
        border-radius: var(--radius);
        padding: 20px 24px;
        flex: 1;
        transition: box-shadow var(--transition);
    }

    .timeline-content:hover {
        box-shadow: var(--shadow);
    }

    .timeline-content h4 {
        font-weight: 700;
        color: var(--blue-deep);
        margin-bottom: 6px;
    }

    .timeline-content p {
        font-size: .875rem;
        color: var(--gray-500);
        line-height: 1.65;
    }

    /* ══ SUPPORT ════════════════════════════════════════════════════════════ */
    .support-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        margin-top: 56px;
    }

    .support-card {
        display: flex;
        gap: 20px;
        padding: 28px;
        background: var(--white);
        border: 1px solid var(--gray-200);
        border-radius: var(--radius);
        transition: box-shadow var(--transition);
    }

    .support-card:hover {
        box-shadow: var(--shadow);
    }

    .support-icon {
        flex-shrink: 0;
        width: 48px;
        height: 48px;
        background: rgba(10, 88, 153, .07);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .support-icon svg {
        width: 24px;
        height: 24px;
        stroke: var(--blue);
        fill: none;
        stroke-width: 1.5;
    }

    .support-card h4 {
        font-weight: 700;
        color: var(--blue-deep);
        margin-bottom: 6px;
    }

    .support-card p {
        font-size: .875rem;
        color: var(--gray-500);
        line-height: 1.65;
    }

    /* ══ FAQ ════════════════════════════════════════════════════════════════ */
    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
        max-width: 780px;
        margin: 56px auto 0;
    }

    .faq-item {
        background: var(--white);
        border: 1px solid var(--gray-200);
        border-radius: var(--radius-sm);
        overflow: hidden;
    }

    .faq-question {
        width: 100%;
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 24px;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: .95rem;
        font-weight: 600;
        color: var(--blue-deep);
        text-align: left;
        transition: background var(--transition);
    }

    .faq-question:hover {
        background: var(--bg);
    }

    .faq-chevron {
        flex-shrink: 0;
        transition: transform .3s;
    }

    .faq-chevron svg {
        width: 18px;
        height: 18px;
        stroke: var(--blue);
        fill: none;
        stroke-width: 2;
    }

    .faq-item.open .faq-chevron {
        transform: rotate(180deg);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease, padding .35s;
        padding: 0 24px;
        font-size: .9rem;
        color: var(--gray-500);
        line-height: 1.75;
    }

    .faq-item.open .faq-answer {
        max-height: 200px;
        padding: 0 24px 20px;
    }

    /* ══ CTA BANNER ═════════════════════════════════════════════════════════ */
    .cta-banner {
        background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 100%);
        padding: 96px 24px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .cta-banner::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, .05) 1px, transparent 0);
        background-size: 30px 30px;
    }

    .cta-banner h2 {
        font-family: "DM Serif Display", serif;
        font-size: clamp(1.9rem, 4vw, 3rem);
        color: var(--white);
        margin-bottom: 16px;
        position: relative;
    }

    .cta-banner h2 em {
        font-style: italic;
        color: var(--gold);
    }

    .cta-banner p {
        color: rgba(255, 255, 255, .78);
        max-width: 500px;
        margin: 0 auto 36px;
        line-height: 1.75;
        position: relative;
    }

    .cta-banner .cta-btns {
        display: flex;
        gap: 14px;
        justify-content: center;
        flex-wrap: wrap;
        position: relative;
    }

    /* ══ FOOTER ═════════════════════════════════════════════════════════════ */
    footer {
        background: var(--blue-deep);
        padding: 64px 24px 32px;
    }

    .footer-inner {
        max-width: 1180px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 48px;
    }

    .footer-brand .name {
        font-family: "DM Serif Display", serif;
        font-size: 1.25rem;
        color: var(--white);
        margin-bottom: 12px;
    }

    .footer-brand p {
        font-size: .855rem;
        color: rgba(255, 255, 255, .55);
        line-height: 1.7;
        max-width: 280px;
    }

    .footer-col h5 {
        font-size: .68rem;
        font-weight: 700;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, .45);
        margin-bottom: 18px;
    }

    .footer-col ul {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer-col ul li a {
        font-size: .875rem;
        color: rgba(255, 255, 255, .65);
        transition: color var(--transition);
    }

    .footer-col ul li a:hover {
        color: var(--gold);
    }

    .footer-bottom {
        max-width: 1180px;
        margin: 48px auto 0;
        padding-top: 24px;
        border-top: 1px solid rgba(255, 255, 255, .1);
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: .8rem;
        color: rgba(255, 255, 255, .35);
        flex-wrap: wrap;
        gap: 8px;
    }

    /* ══ REVEAL ═════════════════════════════════════════════════════════════ */
    .reveal {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity .65s ease, transform .65s ease;
    }

    .reveal.visible {
        opacity: 1;
        transform: none;
    }

    .reveal-delay-1 {
        transition-delay: .1s;
    }

    .reveal-delay-2 {
        transition-delay: .2s;
    }

    .reveal-delay-3 {
        transition-delay: .3s;
    }

    .reveal-delay-4 {
        transition-delay: .4s;
    }

    /* ══ PAGE LOADER ════════════════════════════════════════════════════════ */
    #page-loader {
        position: fixed;
        inset: 0;
        z-index: 99999;
        background: #042440;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        transition: opacity .7s ease, visibility .7s ease;
    }

    #page-loader.hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    #page-loader::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 80% 60% at 20% 30%, rgba(10, 88, 153, .45) 0%, transparent 60%), radial-gradient(ellipse 60% 80% at 80% 70%, rgba(231, 9, 49, .12) 0%, transparent 60%), radial-gradient(ellipse 100% 80% at 50% 100%, rgba(255, 189, 89, .08) 0%, transparent 55%);
        animation: loaderBg 4s ease-in-out infinite alternate;
    }

    @keyframes loaderBg {
        0% {
            opacity: .7;
            transform: scale(1)
        }

        100% {
            opacity: 1;
            transform: scale(1.06)
        }
    }

    .particles {
        position: absolute;
        inset: 0;
        overflow: hidden;
        pointer-events: none;
    }

    .particle {
        position: absolute;
        border-radius: 50%;
        opacity: 0;
        animation: particleFloat linear infinite;
    }

    @keyframes particleFloat {
        0% {
            opacity: 0;
            transform: translateY(0) scale(0)
        }

        10% {
            opacity: 1
        }

        90% {
            opacity: .6
        }

        100% {
            opacity: 0;
            transform: translateY(-100vh) scale(1.5)
        }
    }

    .loader-ring-outer {
        position: relative;
        width: 140px;
        height: 140px;
        margin-bottom: 40px;
    }

    .loader-ring-outer::before,
    .loader-ring-outer::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 50%;
    }

    .loader-ring-outer::before {
        border: 2px solid rgba(255, 189, 89, .15);
        border-top-color: #FFBD59;
        border-right-color: rgba(255, 189, 89, .5);
        animation: spinOuter 1.6s cubic-bezier(.4, 0, .2, 1) infinite;
    }

    .loader-ring-outer::after {
        inset: 14px;
        border: 2px solid rgba(10, 88, 153, .2);
        border-bottom-color: #4fa8e0;
        border-left-color: rgba(79, 168, 224, .5);
        animation: spinInner 1.1s cubic-bezier(.4, 0, .2, 1) infinite reverse;
    }

    @keyframes spinOuter {
        to {
            transform: rotate(360deg)
        }
    }

    @keyframes spinInner {
        to {
            transform: rotate(360deg)
        }
    }

    .loader-logo-mark {
        position: absolute;
        inset: 28px;
        border-radius: 50%;
        background: linear-gradient(135deg, #0A5899 0%, #073F6E 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 0 0 1px rgba(255, 189, 89, .25), 0 0 30px rgba(10, 88, 153, .6), 0 0 60px rgba(10, 88, 153, .3);
        animation: logoGlow 2s ease-in-out infinite alternate;
    }

    @keyframes logoGlow {
        0% {
            box-shadow: 0 0 0 1px rgba(255, 189, 89, .2), 0 0 20px rgba(10, 88, 153, .5), 0 0 40px rgba(10, 88, 153, .2);
        }

        100% {
            box-shadow: 0 0 0 1px rgba(255, 189, 89, .5), 0 0 40px rgba(10, 88, 153, .8), 0 0 80px rgba(10, 88, 153, .4);
        }
    }

    .loader-logo-mark svg {
        width: 38px;
        height: 38px;
        fill: none;
        stroke: #FFBD59;
        stroke-width: 1.5;
        stroke-linecap: round;
        stroke-linejoin: round;
        animation: iconPulse 2s ease-in-out infinite;
    }

    @keyframes iconPulse {

        0%,
        100% {
            transform: scale(1);
            opacity: 1
        }

        50% {
            transform: scale(.88);
            opacity: .75
        }
    }

    .loader-brand {
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .loader-brand-name {
        font-family: "DM Serif Display", serif;
        font-size: 1.45rem;
        color: #fff;
        letter-spacing: .02em;
        margin-bottom: 4px;
        animation: fadeSlideUp .8s ease .2s both;
    }

    .loader-brand-tag {
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: .68rem;
        font-weight: 600;
        letter-spacing: .22em;
        text-transform: uppercase;
        color: #FFBD59;
        margin-bottom: 36px;
        animation: fadeSlideUp .8s ease .35s both;
    }

    @keyframes fadeSlideUp {
        from {
            opacity: 0;
            transform: translateY(16px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    .loader-progress-wrap {
        width: 240px;
        position: relative;
        animation: fadeSlideUp .8s ease .5s both;
    }

    .loader-progress-track {
        width: 100%;
        height: 3px;
        background: rgba(255, 255, 255, .08);
        border-radius: 100px;
        overflow: hidden;
        margin-bottom: 14px;
    }

    .loader-progress-fill {
        height: 100%;
        width: 0%;
        border-radius: 100px;
        background: linear-gradient(90deg, #0A5899 0%, #FFBD59 60%, #E70931 100%);
        background-size: 200% 100%;
        animation: progressGrow 2.4s cubic-bezier(.4, 0, .2, 1) .3s forwards, shimmer 1.5s linear infinite;
        box-shadow: 0 0 12px rgba(255, 189, 89, .6);
    }

    @keyframes progressGrow {
        0% {
            width: 0%
        }

        30% {
            width: 35%
        }

        60% {
            width: 68%
        }

        85% {
            width: 88%
        }

        100% {
            width: 100%
        }
    }

    @keyframes shimmer {
        0% {
            background-position: 200% center
        }

        100% {
            background-position: -200% center
        }
    }

    .loader-status {
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: .72rem;
        font-weight: 500;
        color: rgba(255, 255, 255, .45);
        letter-spacing: .06em;
        text-align: center;
        min-height: 18px;
        transition: opacity .3s;
    }

    .loader-burst {
        position: absolute;
        inset: 0;
        pointer-events: none;
        opacity: 0;
    }

    .loader-burst.fire {
        animation: burstFlash .5s ease forwards;
    }

    @keyframes burstFlash {
        0% {
            opacity: 0
        }

        40% {
            opacity: 1
        }

        100% {
            opacity: 0
        }
    }

    .loader-footer {
        position: absolute;
        bottom: 32px;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: .7rem;
        color: rgba(255, 255, 255, .22);
        letter-spacing: .1em;
        text-transform: uppercase;
        animation: fadeSlideUp 1s ease .8s both;
    }

    /* ══ RESPONSIVE — TABLET ≤1024px ════════════════════════════════════════ */
    @media(max-width:1024px) {
        .modules-grid--5 {
            grid-template-columns: repeat(2, 1fr);
        }

        .modules-grid--5 .module-card {
            grid-column: span 1 !important;
        }

        #timeline .container>div {
            grid-template-columns: 1fr !important;
            gap: 48px !important;
        }

        .contact-wrap {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .footer-inner {
            grid-template-columns: 1fr 1fr;
            gap: 36px;
        }

        .hero-stats {
            gap: 32px 48px;
        }

        .trust-bar-inner {
            gap: 20px 32px;
        }

        .marquee-container::before,
        .marquee-container::after {
            width: 60px;
        }
    }

    /* ══ RESPONSIVE — MOBILE ≤768px ═════════════════════════════════════════ */
    @media(max-width:768px) {
        html {
            font-size: 15px;
        }

        .section {
            padding: 64px 0;
        }

        .container {
            padding: 0 18px;
        }

        .section-title {
            font-size: clamp(1.5rem, 6vw, 2rem);
        }

        .section-sub {
            font-size: .95rem;
        }

        .nav-links {
            display: none;
        }

        .nav-ham {
            display: block;
        }

        .nav-inner {
            height: 64px;
        }

        .nav-logo-box {
            width: 38px;
            height: 38px;
        }

        .nav-logo-box img,
        .nav-logo-box .nav-logo-svg {
            width: 24px;
            height: 24px;
        }

        .nav-brand-text .name {
            font-size: .88rem;
        }

        .nav-brand-text .tagline {
            font-size: .58rem;
        }

        .nav-mobile {
            top: 64px;
            padding: 16px 18px;
        }

        .nav-mobile a {
            font-size: .95rem;
            padding: 14px 0;
        }

        .hero {
            padding: 110px 18px 80px;
        }

        .hero::after {
            height: 48px;
        }

        .hero-badge {
            font-size: .65rem;
            padding: 5px 14px;
        }

        .hero-title {
            font-size: clamp(1.9rem, 8vw, 2.6rem);
        }

        .hero-sub {
            font-size: .95rem;
            margin-bottom: 28px;
        }

        .hero-btns {
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .hero-btns .btn {
            width: 100%;
            max-width: 320px;
            justify-content: center;
        }

        .hero-stats {
            gap: 20px 32px;
            margin-top: 48px;
            padding-top: 32px;
        }

        .stat-num {
            font-size: 2rem;
        }

        .stat-label {
            font-size: .7rem;
        }

        .trust-bar {
            padding: 18px;
        }

        .trust-bar-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px 20px;
            justify-items: start;
        }

        .trust-item {
            font-size: .78rem;
            gap: 7px;
        }

        .trust-item svg {
            width: 16px;
            height: 16px;
        }

        /* Marquee mobile */
        .marquee-showcase {
            padding: 56px 0 52px;
        }

        .marquee-showcase .section-title {
            font-size: clamp(1.4rem, 5.5vw, 1.9rem);
        }

        .school-pill {
            font-size: .68rem;
            padding: 8px 13px;
        }

        .school-pill-logo {
            width: 13px;
            height: 13px;
        }

        .marquee-container::before,
        .marquee-container::after {
            width: 32px;
        }

        .marquee-cta {
            flex-direction: column;
            align-items: stretch;
            padding: 0 18px;
        }

        .btn--join-now,
        .btn--see-how {
            justify-content: center;
        }

        .marquee-badge {
            justify-content: center;
        }

        /* Modules */
        .modules-grid--5 {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .module-card {
            padding: 24px 20px;
        }

        .module-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            margin-bottom: 14px;
        }

        .module-card h3 {
            font-size: 1.1rem;
        }

        .module-card p {
            font-size: .855rem;
        }

        .module-features li {
            font-size: .8rem;
        }

        #timeline .container>div {
            grid-template-columns: 1fr !important;
            gap: 36px !important;
        }

        .timeline {
            margin-top: 0;
        }

        .timeline::before {
            left: 48px;
        }

        .timeline-item {
            gap: 14px;
            padding-bottom: 24px;
        }

        .timeline-week {
            width: 48px;
            font-size: .65rem;
        }

        .timeline-dot {
            width: 12px;
            height: 12px;
        }

        .timeline-content {
            padding: 14px 16px;
        }

        .timeline-content h4 {
            font-size: .9rem;
        }

        .timeline-content p {
            font-size: .82rem;
        }

        #timeline .btn {
            width: 100%;
            justify-content: center;
            margin-top: 24px;
        }

        .support-grid {
            grid-template-columns: 1fr;
            gap: 14px;
        }

        .support-card {
            padding: 20px;
            gap: 14px;
        }

        .support-icon {
            width: 42px;
            height: 42px;
            border-radius: 8px;
            flex-shrink: 0;
        }

        .support-icon svg {
            width: 20px;
            height: 20px;
        }

        .support-card h4 {
            font-size: .92rem;
        }

        .support-card p {
            font-size: .83rem;
        }

        .faq-list {
            margin-top: 36px;
        }

        .faq-question {
            font-size: .88rem;
            padding: 15px 18px;
        }

        .faq-answer {
            font-size: .85rem;
            padding: 0 18px;
        }

        .faq-item.open .faq-answer {
            padding: 0 18px 16px;
        }

        .faq-chevron svg {
            width: 16px;
            height: 16px;
        }

        .cta-banner {
            padding: 64px 18px;
        }

        .cta-banner h2 {
            font-size: clamp(1.5rem, 6vw, 2.2rem);
        }

        .cta-banner p {
            font-size: .95rem;
            margin-bottom: 28px;
        }

        .cta-btns {
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .cta-btns .btn {
            width: 100%;
            max-width: 320px;
            justify-content: center;
        }

        .footer-inner {
            grid-template-columns: 1fr;
            gap: 28px;
        }

        .footer-brand .name {
            font-size: 1.1rem;
        }

        .footer-brand p {
            max-width: 100%;
            font-size: .83rem;
        }

        .footer-col h5 {
            margin-bottom: 12px;
        }

        .footer-col ul {
            gap: 8px;
        }

        .footer-col ul li a {
            font-size: .85rem;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 6px;
            margin-top: 32px;
            padding-top: 20px;
            font-size: .75rem;
        }

        .btn {
            font-size: .88rem;
            padding: 12px 22px;
        }

        .btn svg {
            width: 16px;
            height: 16px;
        }

        .eyebrow {
            font-size: .68rem;
        }

        .nav-ham.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .nav-ham.active span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        .nav-ham.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }
    }

    /* ══ RESPONSIVE — SMALL MOBILE ≤430px ══════════════════════════════════ */
    @media(max-width:430px) {
        html {
            font-size: 14px;
        }

        .container {
            padding: 0 14px;
        }

        .nav-inner {
            height: 60px;
            padding: 0 14px;
        }

        .nav-mobile {
            top: 60px;
            padding: 14px;
        }

        .nav-logo-box {
            width: 34px;
            height: 34px;
        }

        .nav-logo-box img,
        .nav-logo-box .nav-logo-svg {
            width: 22px;
            height: 22px;
        }

        .nav-brand-text .name {
            font-size: .82rem;
        }

        .nav-brand-text .tagline {
            font-size: .55rem;
        }

        .hero {
            padding: 100px 14px 72px;
        }

        .hero-title {
            font-size: clamp(1.7rem, 9vw, 2.2rem);
        }

        .hero-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px 16px;
        }

        .stat-num {
            font-size: 1.8rem;
        }

        .trust-bar-inner {
            grid-template-columns: 1fr;
            gap: 10px;
        }

        .school-pill {
            font-size: .62rem;
            padding: 7px 10px;
        }

        .school-pill-logo {
            width: 11px;
            height: 11px;
        }

        .marquee-container::before,
        .marquee-container::after {
            width: 20px;
        }

        .module-card {
            padding: 20px 16px;
        }

        .timeline::before {
            display: none;
        }

        .timeline-week {
            display: none;
        }

        .timeline-item {
            gap: 12px;
        }

        .timeline-dot {
            margin-top: 6px;
        }

        .timeline-content {
            padding: 12px 14px;
        }

        footer {
            padding: 48px 14px 24px;
        }

        .hero-btns .btn,
        .cta-btns .btn {
            max-width: 100%;
        }

        .section {
            padding: 52px 0;
        }
    }

    /* Nav mobile slide */
    .nav-mobile {
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition: transform .28s ease, opacity .28s ease;
    }

    .nav-mobile.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    /* ══ PRICING ════════════════════════════════════════════════════════════ */
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 56px;
    }

    .pricing-card {
        background: var(--white);
        border: 1px solid var(--gray-200);
        border-radius: var(--radius);
        overflow: hidden;
        transition: transform var(--transition), box-shadow var(--transition);
    }

    .pricing-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

    .pricing-card.featured {
        border-color: var(--blue);
        box-shadow: var(--shadow);
    }

    .pricing-header {
        padding: 30px 28px;
        background: var(--bg);
        border-bottom: 1px solid var(--gray-200);
        text-align: center;
    }

    .pricing-card.featured .pricing-header {
        background: var(--blue);
    }

    .pricing-label {
        font-size: .65rem;
        font-weight: 700;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--blue);
        margin-bottom: 10px;
        display: block;
    }

    .pricing-card.featured .pricing-label {
        color: var(--gold);
    }

    .pricing-name {
        font-family: "DM Serif Display", serif;
        font-size: 1.4rem;
        color: var(--blue-deep);
        margin-bottom: 6px;
    }

    .pricing-card.featured .pricing-name {
        color: var(--white);
    }

    .pricing-desc {
        font-size: .83rem;
        color: var(--gray-500);
    }

    .pricing-card.featured .pricing-desc {
        color: rgba(255, 255, 255, .7);
    }

    .pricing-body {
        padding: 28px;
    }

    .pricing-price {
        font-family: "DM Serif Display", serif;
        font-size: 2rem;
        color: var(--blue);
        margin-bottom: 4px;
        line-height: 1;
    }

    .pricing-basis {
        font-size: .78rem;
        color: var(--gray-500);
        margin-bottom: 24px;
    }

    .pricing-features {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 28px;
    }

    .pricing-features li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: .875rem;
        color: var(--gray-700);
    }

    .pricing-features li .check {
        flex-shrink: 0;
        margin-top: 2px;
    }

    .pricing-features li .check svg {
        width: 16px;
        height: 16px;
        stroke: var(--blue);
        fill: none;
    }

    .pricing-note {
        font-size: .78rem;
        color: var(--gray-500);
        font-style: italic;
        margin-top: 16px;
        line-height: 1.6;
        border-top: 1px solid var(--gray-200);
        padding-top: 16px;
    }

    @media(max-width:1024px) {
        .pricing-grid {
            grid-template-columns: 1fr;
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
        }
    }

    @media(max-width:768px) {
        .pricing-grid {
            max-width: 100%;
        }
    }

    /* ══ CONTACT ════════════════════════════════════════════════════════════ */
    .contact-wrap {
        display: grid;
        grid-template-columns: 1fr 1.55fr;
        gap: 60px;
        align-items: start;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 22px;
    }

    .contact-info-item {
        display: flex;
        gap: 14px;
        align-items: flex-start;
    }

    .contact-info-icon {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
        background: rgba(10, 88, 153, .07);
        border: 1px solid var(--gray-200);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-info-icon svg {
        width: 20px;
        height: 20px;
        stroke: var(--blue);
        fill: none;
        stroke-width: 1.5;
    }

    .contact-info-item h5 {
        font-size: .72rem;
        font-weight: 700;
        letter-spacing: .07em;
        text-transform: uppercase;
        color: var(--blue);
        margin-bottom: 3px;
    }

    .contact-info-item p,
    .contact-info-item a {
        font-size: .9rem;
        color: var(--gray-700);
    }

    .contact-info-item a:hover {
        color: var(--blue);
        text-decoration: underline;
    }

    .contact-form-box {
        background: var(--white);
        border: 1px solid var(--gray-200);
        border-radius: var(--radius-lg);
        padding: 40px;
        box-shadow: var(--shadow-lg);
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 6px;
        margin-bottom: 16px;
    }

    .form-group label {
        font-size: .78rem;
        font-weight: 700;
        color: var(--charcoal);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 11px 14px;
        border: 1.5px solid var(--gray-200);
        border-radius: var(--radius-sm);
        background: var(--bg);
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: .9rem;
        color: var(--charcoal);
        outline: none;
        transition: border-color var(--transition), box-shadow var(--transition);
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--blue);
        box-shadow: 0 0 0 3px rgba(10, 88, 153, .09);
        background: var(--white);
    }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

    .form-success {
        background: rgba(40, 167, 69, .08);
        border: 1px solid rgba(40, 167, 69, .3);
        border-radius: var(--radius-sm);
        padding: 14px 18px;
        color: #155724;
        font-size: .9rem;
        font-weight: 600;
        margin-bottom: 18px;
    }

    .form-error {
        background: rgba(231, 9, 49, .07);
        border: 1px solid rgba(231, 9, 49, .3);
        border-radius: var(--radius-sm);
        padding: 12px 16px;
        color: #c0392b;
        font-size: .875rem;
        margin-bottom: 14px;
    }

    @media(max-width:1024px) {
        .contact-wrap {
            grid-template-columns: 1fr;
            gap: 36px;
        }
    }

    @media(max-width:768px) {
        .contact-form-box {
            padding: 24px 18px;
            border-radius: var(--radius);
        }

        .form-row {
            grid-template-columns: 1fr;
            gap: 0;
        }

        .contact-info {
            gap: 18px;
        }
    }

    @media(max-width:430px) {
        .contact-form-box {
            padding: 20px 14px;
        }
    }