/* ============================================================
   Franchise Opportunity — Landing Page
   ────────────────────────────────────────────────────────────
   HERO — layered assets in assets/images/franchise/
     bg.jpg   → park background (full cover)
     kids.jpg → children foreground (bottom overlay)
   Headline floats over bg (logo slot left). Form bottom-right. Kids overlay.
   ────────────────────────────────────────────────────────────
   Other assets: Building 1050×450 | Map 600×400 | Video thumbs 640×360 | Logo nav 480×130
   bg.jpg → 1920×960 (single file, CSS cover)
   ============================================================ */

:root {
    --fo-red: #e30613;
    --fo-red-dark: #c4121a;
    --fo-red-darker: #9e0e15;
    --fo-yellow: #ffde00;
    --fo-cream: #fff8d6;
    --fo-video-almond: #f8f3ed;
    --fo-video-almond-soft: #f2ebe3;
    --fo-gray-bg: #f5f5f5;
    --fo-text: #1a1a1a;
    --fo-muted: #666;
    --fo-section-y: clamp(20px, 2.5vw, 36px);

    /* Hero + stats */
    --fo-stats-overlap: clamp(40px, 3.5vw, 52px);
    --fo-hero-pad-bottom: var(--fo-stats-overlap);
    --fo-hero-bg: url('../images/franchise/bg.jpg');
    --fo-hero-bg-position: 50% 45%;
    --fo-hero-bg-scale: 1.05;
    --fo-hero-kids-width: clamp(480px, 65vw, 880px);
    --fo-hero-kids-left: clamp(-12px, -1vw, 0px);
    --fo-hero-kids-feet-nudge: 0px;
    --fo-hero-kids-scale: 1;
    --fo-hero-kids-fill: 100%;
    --fo-hero-kids-anchor-x: left;
    --fo-hero-logo-space: clamp(100px, 12vw, 180px);
    --fo-hero-form-width: min(380px, 30vw);

    /* Nav logo — swap assets/images/franchise/srk-logo-nav.png (see FRANCHISE-ASSETS.txt) */
    --fo-nav-ease: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --fo-nav-logo-height-hero: clamp(80px, 10vw, 108px);
    --fo-nav-logo-height-compact: clamp(44px, 5vw, 52px);
    --fo-nav-logo-breakout: clamp(32px, 4vw, 48px);
    --fo-nav-logo-height: var(--fo-nav-logo-height-hero);
    --fo-nav-logo-offset: calc(-1 * var(--fo-nav-logo-breakout));
    --fo-nav-logo-max-w: min(320px, 46vw);
}

/* Hide default site chrome on this page */
body.franchise-opportunity .header,
body.franchise-opportunity .footer-first-section,
body.franchise-opportunity .footer-second-section,
body.franchise-opportunity .footer-third-section {
    display: none !important;
}
body.franchise-opportunity .floating {
    position: fixed;
    bottom: clamp(16px, 3vw, 28px);
    right: clamp(16px, 3vw, 28px);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #25d366;
    color: #fff;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
    z-index: 1010;
    transition: background-color 0.2s ease, transform 0.2s ease;
}
body.franchise-opportunity .floating:hover {
    background-color: #128c7e;
    color: #fff;
    transform: scale(1.05);
}
body.franchise-opportunity .floating .fab-icon {
    font-size: 28px;
    line-height: 1;
}
body.franchise-opportunity {
    padding-top: 0 !important;
    font-family: 'Montserrat', 'Poppins', sans-serif;
    overflow-x: clip;
    max-width: 100%;
}

/* Keep Bootstrap container widths — only enforce centre alignment */
body.franchise-opportunity .container {
    margin-left: auto !important;
    margin-right: auto !important;
}

body.franchise-opportunity footer.footer {
    display: none !important;
}

/* ── NAV ── */
.fo-nav {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 8px 0 10px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: visible;
    transition: overflow var(--fo-nav-ease);
}
.fo-nav.is-scrolled {
    overflow: hidden;
    --fo-nav-logo-height: var(--fo-nav-logo-height-compact);
    --fo-nav-logo-offset: 0px;
    --fo-nav-logo-max-w: min(220px, 38vw);
}
.fo-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    min-height: 52px;
    overflow: visible;
}
.fo-nav-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
    position: relative;
    z-index: 1002;
    align-self: flex-start;
    margin-bottom: var(--fo-nav-logo-offset);
    transition:
        margin-bottom var(--fo-nav-ease),
        align-self var(--fo-nav-ease);
}
.fo-nav.is-scrolled .fo-nav-logo {
    align-self: center;
}
.fo-nav-logo img {
    height: var(--fo-nav-logo-height);
    width: auto;
    max-width: var(--fo-nav-logo-max-w);
    object-fit: contain;
    object-position: left center;
    display: block;
    transition: height var(--fo-nav-ease), max-width var(--fo-nav-ease);
    filter:
        drop-shadow(0 0 0.25px rgba(0, 0, 0, 0.75))
        drop-shadow(0 0 0.5px rgba(0, 0, 0, 0.35));
}
.fo-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--fo-red);
    cursor: pointer;
    padding: 4px 8px;
}
.fo-nav-links {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 28px);
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}
.fo-nav-links a {
    color: var(--fo-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    white-space: nowrap;
    transition: color 0.2s;
}
.fo-nav-links a:hover { color: var(--fo-red); }
.fo-nav-cta {
    background: var(--fo-red);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
}
.fo-nav-cta:hover { background: var(--fo-red-darker); color: #fff; }

/* ── HERO ── */
.fo-hero {
    position: relative;
    background-color: #2d5a27;
    padding: 0 0 var(--fo-hero-pad-bottom);
    overflow: hidden;
}
.fo-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.fo-hero-bg {
    position: absolute;
    inset: 0;
    background-image: var(--fo-hero-bg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: var(--fo-hero-bg-position);
    transform: scale(var(--fo-hero-bg-scale));
    transform-origin: center center;
    will-change: transform;
}
.fo-hero .container {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.fo-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--fo-hero-form-width);
    grid-template-rows: 1fr;
    column-gap: clamp(16px, 2vw, 24px);
    align-items: end;
    height: clamp(460px, 52vw, 580px);
    min-height: 0;
    max-height: clamp(460px, 52vw, 580px);
    position: relative;
    overflow: hidden;
}
.fo-hero-kids-col {
    position: absolute;
    left: var(--fo-hero-kids-left);
    top: 0;
    bottom: 0;
    width: var(--fo-hero-kids-width);
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    pointer-events: none;
    overflow: hidden;
}
.fo-hero-kids {
    width: auto;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: bottom var(--fo-hero-kids-anchor-x);
    display: block;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.18));
    transform: none;
}
.fo-hero-logo-slot {
    display: none;
}
.fo-hero-form-col {
    grid-column: 2;
    grid-row: 1;
    z-index: 5;
    align-self: end;
    width: 100%;
    max-width: var(--fo-hero-form-width);
    margin: 0 0 8px;
}

/* Laptop+ — feet align stats, kite fills height */
@media (min-width: 1200px) {
    .fo-hero-grid {
        grid-template-columns: minmax(0, 1fr) var(--fo-hero-form-width);
        height: clamp(480px, 50vw, 560px);
        max-height: clamp(480px, 50vw, 560px);
    }
    .fo-hero-kids-col {
        z-index: 25;
    }
    .fo-form-modal {
        display: none !important;
    }
}

@media (max-width: 1199px) {
    .fo-hero-grid {
        grid-template-columns: 1fr;
        height: auto;
        max-height: none;
        min-height: clamp(320px, 56vw, 480px);
    }
    .fo-hero-kids-col {
        position: static;
        top: auto;
        bottom: auto;
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
        justify-content: center;
        box-sizing: border-box;
        overflow: hidden;
    }
    .fo-hero-kids {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: clamp(300px, 56vw, 480px);
        object-fit: contain;
        object-position: bottom center;
    }
    .fo-hero .container {
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
        box-sizing: border-box;
        overflow: hidden;
    }
}

/* ── FORM MODAL (tablet / mobile) ── */
.fo-form-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}
.fo-form-modal.is-open {
    opacity: 1;
    visibility: visible;
}
.fo-form-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 20, 15, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.fo-form-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(420px, 100%);
    max-height: min(92vh, 720px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.fo-form-modal__close {
    position: absolute;
    top: -42px;
    right: 0;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #111;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: background 0.2s;
}
.fo-form-modal__close:hover {
    background: #f5f5f5;
}
.fo-form-modal__sr-title {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.fo-form-modal__body .fo-hero-form-col {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}
.fo-form-modal__body .fo-form-wrap {
    max-width: none;
    margin: 0;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}
body.fo-form-modal-open {
    overflow: hidden;
}

/* ── FORM (visual only — logic unchanged) ── */
.fo-form-wrap {
    background: var(--fo-red);
    border-radius: 15px;
    padding: 0;
    width: 100%;
    max-width: 400px;
    margin-left: 0;
    box-sizing: border-box;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    overflow: hidden;
}
.fo-form-header {
    padding: clamp(16px, 2.5vw, 22px) clamp(14px, 2vw, 18px) clamp(10px, 1.5vw, 12px);
}
.fo-form-title {
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    text-align: center;
    line-height: 1.3;
    margin: 0;
}
/* Cream promo strip — like mockup banner */
.fo-form-banner {
    background: linear-gradient(180deg, #f8f0dc 0%, #efe3c8 100%);
    padding: clamp(10px, 1.6vw, 14px) clamp(10px, 2vw, 16px);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
.fo-form-banner-line {
    margin: 0;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 700;
    font-size: clamp(0.92rem, 1.35vw, 1.08rem);
    color: #1a1a1a;
    line-height: 1.35;
    letter-spacing: 0.01em;
}
.fo-form-banner-line + .fo-form-banner-line {
    margin-top: 2px;
}
.fo-form-body {
    padding: clamp(14px, 2vw, 18px) clamp(14px, 2vw, 18px) clamp(16px, 2.5vw, 20px);
    container-type: inline-size;
    container-name: fo-form;
}
.fo-input {
    background: #fff !important;
    color: #000 !important;
    border: 1px solid #bbb !important;
    border-radius: 5px !important;
    padding: 10px 12px !important;
    font-size: 0.88rem;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
}
.fo-input::placeholder { color: #888; }
.fo-input:focus {
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.5) !important;
}
.fo-error { color: #ffe0e0; font-size: 0.75rem; margin-top: -6px; margin-bottom: 6px; display: none; }
.fo-submit {
    background: linear-gradient(180deg, #ff1a28 0%, var(--fo-red-dark) 100%);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    width: 100%;
    transition: transform 0.15s, box-shadow 0.15s;
    cursor: pointer;
    margin-top: 6px;
    box-shadow: 0 4px 0 #8a0a10;
}
.fo-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 0 #8a0a10;
}
.fo-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}
.fo-recaptcha-wrap {
    width: 100%;
    max-width: 304px;
    margin: 8px auto 4px;
    display: flex;
    justify-content: center;
    overflow: visible;
    min-height: 78px;
}
.fo-recaptcha-wrap > div {
    width: 304px;
    max-width: 100%;
    transform-origin: top center;
}
@container fo-form (max-width: 303px) {
    .fo-recaptcha-wrap {
        max-width: 100%;
        min-height: calc(78px * (100cqw / 304px));
        overflow: hidden;
        align-items: flex-start;
    }
    .fo-recaptcha-wrap > div {
        transform: scale(calc(100cqw / 304px));
    }
}

/* ── STATS BAR (floating card — matches mockup) ── */
.fo-stats {
    position: relative;
    z-index: 20;
    margin-top: calc(-1 * var(--fo-stats-overlap));
    padding: 0;
    background: transparent;
}
.fo-stats-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    padding: clamp(18px, 2.5vw, 26px) clamp(12px, 2vw, 20px);
}
.fo-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}
.fo-stat {
    text-align: center;
    padding: 4px clamp(8px, 1.5vw, 20px);
    border-right: 1px solid #e8e8e8;
}
.fo-stat:last-child {
    border-right: none;
}
.fo-stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 2.8vw, 1.75rem);
    font-weight: 800;
    color: #d31018;
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.fo-stat-number.is-counting {
    opacity: 0.92;
}
.fo-stat-number.is-counted {
    opacity: 1;
}
.fo-stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.75rem, 1.2vw, 0.875rem);
    font-weight: 400;
    color: #555;
    letter-spacing: 0.02em;
    margin-top: 6px;
    line-height: 1.35;
}

/* Tagline below stats */
.fo-stats-tagline {
    padding: clamp(20px, 3vw, 36px) 0 clamp(12px, 2vw, 24px);
    background: #fff;
    text-align: center;
}
.fo-stats-tagline .fo-section-title {
    margin-bottom: clamp(6px, 1vw, 10px);
}
.fo-stats-tagline-sub {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    font-weight: 700;
    color: var(--fo-muted);
    line-height: 1.4;
    margin: 0;
}

/* ── SCROLL REVEAL (benefits → videos) ── */
@media (prefers-reduced-motion: no-preference) {
    .fo-scroll-reveal {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
        transition:
            opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
        transition-delay: var(--fo-reveal-delay, 0ms);
        will-change: opacity, transform;
    }
    .fo-scroll-reveal--left {
        transform: translate3d(-48px, 0, 0);
    }
    .fo-scroll-reveal--right {
        transform: translate3d(48px, 0, 0);
    }
    .fo-scroll-reveal--scale {
        transform: translate3d(0, 48px, 0) scale(0.94);
    }
    .fo-scroll-reveal.is-revealed {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
    .fo-benefit-card.fo-scroll-reveal,
    .fo-video-card.fo-scroll-reveal {
        transition:
            opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
            box-shadow 0.2s ease;
        transition-delay: var(--fo-reveal-delay, 0ms);
    }
}

/* ── BENEFITS ── */
.fo-benefits {
    padding: clamp(16px, 2vw, 24px) 0 0;
    background: #f9f9f9;
}
.fo-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(12px, 1.5vw, 20px);
}
.fo-benefit-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 14px;
    padding: clamp(20px, 2.5vw, 28px) clamp(18px, 2vw, 24px);
    text-align: left;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    height: 100%;
}
.fo-benefit-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}
.fo-benefit-icon {
    width: 48px;
    height: 48px;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.fo-benefit-icon img {
    width: 48px;
    height: 48px;
    display: block;
    object-fit: contain;
}
.fo-benefit-card h3 {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    line-height: 1.35;
    letter-spacing: -0.01em;
}
.fo-benefit-card p {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #555;
    line-height: 1.65;
    margin: 0;
    letter-spacing: 0;
}

/* ── SECTION LABELS ── */
.fo-section-label {
    color: var(--fo-red);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.fo-section-title {
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    font-weight: 800;
    color: var(--fo-text);
    line-height: 1.25;
    margin-bottom: 10px;
}

/* ── BUSINESS MODEL ── */
.fo-business-model {
    padding: clamp(12px, 1.5vw, 20px) 0 0;
    background: #f5f5f5;
}
.fo-business-model-box {
    background: #fff;
    border-radius: 16px;
    padding: clamp(24px, 3vw, 36px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.fo-business-model-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    gap: clamp(20px, 3vw, 36px);
    align-items: start;
}
.fo-business-model-text p:not(.fo-section-label) {
    font-size: 0.9rem;
    color: var(--fo-muted);
    line-height: 1.6;
    margin-bottom: 0;
}
.fo-business-model-media {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.fo-check-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
}
.fo-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--fo-text);
}
.fo-check-list li i {
    color: var(--fo-red);
    margin-top: 3px;
    flex-shrink: 0;
}
.fo-business-model-img {
    width: 100%;
    height: auto;
    aspect-ratio: 21 / 9;
    object-fit: cover;
    object-position: center 42%;
    display: block;
    border-radius: 14px;
}

/* ── INVESTMENT ── */
.fo-investment {
    padding: 12px 0 12px;
    background: #f5f5f5;
}
.fo-investment-box {
    background: #fff;
    border-radius: 14px;
    padding: clamp(28px, 3.5vw, 40px) clamp(24px, 3vw, 36px);
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 8fr);
    gap: 0;
    align-items: stretch;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}
.fo-investment-left {
    padding-right: clamp(24px, 3vw, 36px);
    border-right: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.fo-investment-left .fo-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
    line-height: 1.3;
}
.fo-investment-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #222;
    line-height: 1.55;
    margin: 0 0 24px;
}
.fo-investment-right {
    padding-left: clamp(24px, 3vw, 36px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(16px, 2.5vw, 28px);
}
.fo-investment-details {
    text-align: left;
    flex: 1;
    min-width: 0;
}
.fo-investment-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 6px;
}
.fo-investment-amount {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.4rem, 4.8vw, 3.25rem);
    font-weight: 800;
    color: #111;
    line-height: 1;
    margin: 0 0 16px;
    letter-spacing: -0.03em;
}
.fo-investment-range-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #222;
    margin: 0 0 2px;
}
.fo-investment-range-value {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #111;
    line-height: 1.45;
    margin: 0 0 14px;
}
.fo-investment-disclaimer {
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    color: #444;
    line-height: 1.55;
    margin: 0;
    max-width: 360px;
}
.fo-investment-chart-wrap {
    flex-shrink: 0;
    align-self: center;
}
.fo-investment-chart-svg {
    display: block;
    width: clamp(240px, 26vw, 340px);
    height: auto;
    aspect-ratio: 220 / 145;
}
.fo-btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #333;
    border: 1px solid #d0d0d0;
    border-radius: 30px;
    padding: 10px 22px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    margin-top: 4px;
    width: fit-content;
}
.fo-btn-outline-light i {
    color: var(--fo-red);
    font-size: 0.8rem;
}
.fo-btn-outline-light:hover {
    border-color: #aaa;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    color: #111;
}
.fo-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--fo-red);
    border: 2px solid var(--fo-red);
    border-radius: 30px;
    padding: 10px 22px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    margin-top: 12px;
}
.fo-btn-outline:hover {
    background: var(--fo-red);
    color: #fff;
}

/* ── LOCATIONS & AWARDS ── */
.fo-locations-awards {
    padding: 0;
    background: #fff;
}
.fo-la-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: stretch;
}
.fo-la-col {
    min-height: 100%;
    padding: clamp(20px, 3vw, 36px);
}
.fo-la-col:first-child {
    padding-right: clamp(28px, 4vw, 52px);
    border-right: 1px solid #ececec;
}
.fo-la-col--awards {
    display: flex;
    flex-direction: column;
    padding-left: clamp(28px, 4vw, 52px);
}
.fo-la-col--awards .fo-section-title {
    margin-bottom: 0;
}
.fo-la-inner {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.5vw, 32px);
    height: 100%;
    min-height: 100%;
}
.fo-la-text {
    flex: 0 1 42%;
    min-width: 0;
}
.fo-la-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--fo-muted);
    line-height: 1.65;
    margin: 0;
}
.fo-la-btn {
    margin-top: 14px;
    margin-bottom: 0;
}
.fo-la-media {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.fo-map-img {
    width: 100%;
    max-width: clamp(240px, 32vw, 420px);
    height: auto;
    object-fit: contain;
    display: block;
}
.fo-awards-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: clamp(8px, 1.2vw, 14px);
    width: 100%;
    margin-top: clamp(24px, 3.5vw, 40px);
}
.fo-award-item {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    cursor: default;
}
.fo-award-icon {
    width: clamp(44px, 4.5vw, 56px);
    height: clamp(44px, 4.5vw, 56px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a227;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    line-height: 1;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.35s ease,
        filter 0.35s ease;
    transform-origin: center center;
}
.fo-award-item:hover .fo-award-icon,
.fo-award-item:focus-within .fo-award-icon {
    color: var(--fo-red);
    transform: scale(1.35);
    filter: drop-shadow(0 6px 14px rgba(227, 6, 19, 0.28));
}
.fo-award-heart {
    color: var(--fo-red);
    font-size: 0.55rem;
    line-height: 1;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.fo-award-item:hover .fo-award-heart,
.fo-award-item:focus-within .fo-award-heart {
    transform: scale(1.35);
}
.fo-award-item:hover .fo-award-year,
.fo-award-item:focus-within .fo-award-year {
    color: var(--fo-red);
}
@media (prefers-reduced-motion: reduce) {
    .fo-award-icon,
    .fo-award-heart {
        transition: color 0.2s ease;
    }
    .fo-award-item:hover .fo-award-icon,
    .fo-award-item:focus-within .fo-award-icon,
    .fo-award-item:hover .fo-award-heart,
    .fo-award-item:focus-within .fo-award-heart {
        transform: none;
        filter: none;
    }
}
.fo-award-year {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.68rem, 0.9vw, 0.78rem);
    font-weight: 700;
    color: var(--fo-text);
    line-height: 1.2;
    transition: color 0.35s ease;
}
.fo-award-name {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.58rem, 0.78vw, 0.68rem);
    font-weight: 400;
    color: var(--fo-muted);
    line-height: 1.35;
}

/* ── VIDEO TESTIMONIALS ── */
.fo-videos {
    padding: 5px 0;
    background: #fff;
}
.fo-videos-box {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 2.28fr);
    gap: 5px;
    align-items: center;
    background: linear-gradient(135deg, var(--fo-video-almond) 0%, var(--fo-video-almond-soft) 100%);
    border: 1px solid rgba(210, 192, 172, 0.45);
    border-radius: 20px;
    padding: clamp(28px, 3.5vw, 44px);
    box-shadow: 0 4px 20px rgba(160, 130, 100, 0.08);
}
.fo-videos-intro .fo-section-title {
    margin-bottom: 10px;
}
.fo-videos-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--fo-muted);
    line-height: 1.65;
    margin: 0 0 18px;
}
.fo-videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    width: 100%;
}
.fo-video-card {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
    text-decoration: none;
    background: #111;
    border: none;
    padding: 0;
    width: 100%;
    text-align: left;
    font: inherit;
    color: inherit;
}
.fo-video-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #222;
    border-radius: 10px 10px 0 0;
}
.fo-video-thumb--placeholder {
    background: linear-gradient(145deg, #4a4a4a 0%, #2c2c2c 45%, #1a1a1a 100%);
}
.fo-video-thumb--placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 35%, rgba(227, 6, 19, 0.18) 0%, transparent 55%),
        radial-gradient(circle at 70% 65%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}
.fo-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    display: block;
}
.fo-video-card:hover .fo-video-thumb img { transform: scale(1.04); }
.fo-video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.2s;
    pointer-events: none;
}
.fo-video-card:hover .fo-video-play { background: rgba(0, 0, 0, 0.32); }
.fo-video-play-icon {
    width: clamp(52px, 5.5vw, 68px);
    height: clamp(52px, 5.5vw, 68px);
    background: var(--fo-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s;
}
.fo-video-card:hover .fo-video-play-icon { transform: scale(1.06); }
.fo-video-play-icon::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: clamp(9px, 1vw, 12px) solid transparent;
    border-bottom: clamp(9px, 1vw, 12px) solid transparent;
    border-left: clamp(14px, 1.6vw, 18px) solid #fff;
    margin-left: 4px;
}
.fo-video-label {
    background: var(--fo-red);
    color: #fff;
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    gap: 1px;
    line-height: 1.25;
    text-align: left;
}
.fo-video-label strong {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.65rem, 0.88vw, 0.75rem);
    font-weight: 700;
}
.fo-video-label span {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.55rem, 0.75vw, 0.65rem);
    font-weight: 400;
    opacity: 0.95;
}
.fo-btn-red {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--fo-red);
    color: #fff;
    border-radius: 30px;
    padding: 10px 22px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.2s;
}
.fo-btn-red:hover { background: var(--fo-red-darker); color: #fff; }

/* ── VIDEO MODAL ── */
.fo-video-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}
.fo-video-modal.is-open {
    opacity: 1;
    visibility: visible;
}
.fo-video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
}
.fo-video-modal-dialog {
    position: relative;
    width: min(920px, 100%);
    z-index: 1;
}
.fo-video-modal-close {
    position: absolute;
    top: -44px;
    right: 0;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #111;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.fo-video-modal-close:hover { background: #f0f0f0; }
.fo-video-modal-body {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}
.fo-video-modal-body iframe,
.fo-video-modal-body video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.fo-video-modal-body video { display: none; }
.fo-video-modal-body.is-local iframe { display: none; }
.fo-video-modal-body.is-local video { display: block; }

/* ── FAQ ── */
.fo-faq {
    padding: 5px 0 var(--fo-section-y);
    background: #fff;
}
.fo-faq > .container > .fo-section-label {
    margin-bottom: 5px;
}
.fo-faq-heading {
    margin-bottom: 12px !important;
}
.fo-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 28px;
}
.fo-faq-item { border-bottom: 1px solid #eee; }
.fo-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--fo-text);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}
.fo-faq-question .num {
    color: var(--fo-red);
    font-weight: 700;
    margin-right: 4px;
}
.fo-faq-question .toggle {
    color: var(--fo-red);
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: transform 0.2s;
    line-height: 1;
}
.fo-faq-item.open .fo-faq-question .toggle { transform: rotate(45deg); }
.fo-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 0.85rem;
    color: var(--fo-muted);
    line-height: 1.6;
}
.fo-faq-item.open .fo-faq-answer {
    max-height: 520px;
    padding-bottom: 14px;
}
.fo-faq-answer p {
    margin: 0 0 8px;
}
.fo-faq-answer p:last-child,
.fo-faq-answer ul:last-child {
    margin-bottom: 0;
}
.fo-faq-answer ul {
    margin: 0;
    padding-left: 1.2em;
}
.fo-faq-answer li {
    margin-bottom: 4px;
}
.fo-faq-answer li:last-child {
    margin-bottom: 0;
}

/* ── FINAL CTA ── */
.fo-final-cta {
    background: var(--fo-red);
    padding: clamp(24px, 3vw, 36px) 0;
}
.fo-final-cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.fo-final-cta-text {
    color: #fff;
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    font-weight: 500;
    max-width: 680px;
    margin: 0;
    line-height: 1.5;
}
.fo-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: var(--fo-red);
    border-radius: 30px;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}
.fo-btn-white:hover { background: var(--fo-cream); color: var(--fo-red); }

/* ── CUSTOM FOOTER ── */
.fo-footer {
    position: relative;
    background: linear-gradient(180deg, #353535 0%, #2e2e2e 45%, #282828 100%);
    color: #fff;
    padding: 0;
    overflow: hidden;
}
.fo-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255, 255, 255, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 100% 100%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}
.fo-footer > .container,
.fo-footer-bottom {
    position: relative;
    z-index: 1;
}
.fo-footer-top-bar {
    height: 8px;
    background: var(--fo-red);
}
.fo-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(4, minmax(0, 0.85fr)) 1.25fr;
    gap: clamp(16px, 2vw, 32px);
    padding: clamp(28px, 3vw, 44px) 0 clamp(24px, 2.5vw, 36px);
}
.fo-footer-brand {
    padding-right: 8px;
}
.fo-footer-logo {
    display: block;
    margin-bottom: 0;
    line-height: 0;
}
.fo-footer-logo img {
    width: auto;
    height: auto;
    max-height: 150px;
    max-width: min(200px, 100%);
    object-fit: contain;
    display: block;
    filter:
        drop-shadow(0 0 0.5px rgba(255, 255, 255, 1))
        drop-shadow(0 0 1px rgba(255, 255, 255, 0.85))
        drop-shadow(0 0 2px rgba(255, 255, 255, 0.45));
}
.fo-footer-tagline {
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 18px;
    max-width: 220px;
}
.fo-footer-social {
    display: flex;
    gap: 14px;
}
.fo-footer-social a {
    color: #fff;
    font-size: 1.15rem;
    transition: color 0.2s, opacity 0.2s;
}
.fo-footer-social a:hover {
    color: var(--fo-red);
    opacity: 0.9;
}
.fo-footer-col h4,
.fo-footer-contact h4 {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 14px;
}
.fo-footer-col ul,
.fo-footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.fo-footer-col li { margin-bottom: 8px; }
.fo-footer-col a,
.fo-footer-contact a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 0.8rem;
    line-height: 1.5;
    transition: color 0.2s, opacity 0.2s;
}
.fo-footer-col a:hover,
.fo-footer-contact a:hover {
    color: #fff;
    opacity: 1;
}
.fo-footer-contact p {
    font-size: 0.8rem;
    line-height: 1.65;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.78);
}
.fo-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, #242424 0%, #1f1f1f 100%);
    padding: 14px 0;
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.55);
}
.fo-footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.fo-footer-legal {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.fo-footer-bottom a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s;
}
.fo-footer-bottom a:hover { color: #fff; }
.fo-footer-sep {
    color: rgba(255, 255, 255, 0.35);
    user-select: none;
}

/* ── RESPONSIVE ── */
/* Laptop: 992px – 1599px */
@media (max-width: 1599px) {
    :root {
        --fo-hero-bg-position: 50% 42%;
        --fo-hero-kids-width: clamp(480px, 66vw, 860px);
        --fo-hero-kids-fill: 97%;
        --fo-hero-form-width: min(360px, 31vw);
    }
    .fo-hero-grid {
        height: clamp(440px, 50vw, 560px);
        max-height: clamp(440px, 50vw, 560px);
    }
}

/* Laptop form compact — 992px to 1366px only */
@media (min-width: 992px) and (max-width: 1366px) {
    :root {
        --fo-hero-form-width: clamp(320px, 28vw, 340px);
    }
    .fo-hero-form-col,
    .fo-form-wrap {
        max-width: var(--fo-hero-form-width);
    }
    .fo-form-header {
        padding: 10px 12px 8px;
    }
    .fo-form-body {
        padding: 10px 12px 12px;
    }
    .fo-form-title {
        font-size: clamp(0.88rem, 1.1vw, 1rem);
        line-height: 1.25;
    }
    .fo-form-banner {
        padding: 8px 10px;
    }
    .fo-form-banner-line {
        font-size: clamp(0.72rem, 0.9vw, 0.82rem);
        line-height: 1.3;
    }
    .fo-form-body .mb-2 {
        margin-bottom: 0.3rem !important;
    }
    .fo-input {
        padding: 7px 10px !important;
        font-size: 0.8rem;
        margin-bottom: 5px;
    }
    .fo-submit {
        padding: 9px 10px;
        font-size: 0.82rem;
        margin-top: 2px;
    }
    .fo-error {
        font-size: 0.65rem;
        margin-top: -3px;
        margin-bottom: 3px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .fo-nav-links { gap: 14px; font-size: 0.82rem; }
    :root {
        --fo-hero-bg-position: 48% 40%;
        --fo-hero-kids-width: clamp(460px, 64vw, 760px);
        --fo-hero-kids-fill: 96%;
    }
    .fo-hero-grid {
        min-height: clamp(360px, 44vw, 460px);
    }
}

@media (min-width: 1200px) and (max-width: 1366px) {
    :root {
        --fo-hero-form-width: clamp(320px, 26vw, 340px);
        --fo-hero-kids-width: clamp(520px, 68vw, 880px);
    }
    .fo-hero-form-col,
    .fo-form-wrap {
        max-width: var(--fo-hero-form-width);
    }
}

@media (min-width: 1367px) {
    :root {
        --fo-hero-form-width: 400px;
    }
    .fo-hero-form-col,
    .fo-form-wrap {
        max-width: var(--fo-hero-form-width);
    }
}

@media (max-width: 1199px) {
    .fo-benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .fo-videos-box {
        grid-template-columns: 1fr;
        align-items: start;
    }
    .fo-videos-grid { grid-template-columns: repeat(3, 1fr); gap: 5px; }
}

/* iPad / tablet: 768px – 991px */
@media (min-width: 1600px) {
    :root {
        --fo-hero-bg-position: 52% 44%;
        --fo-hero-kids-width: clamp(540px, 66vw, 960px);
        --fo-hero-kids-fill: 100%;
    }
    .fo-hero-grid {
        height: clamp(500px, 54vw, 620px);
        max-height: clamp(500px, 54vw, 620px);
    }
}

@media (max-width: 1199px) {
    :root {
        --fo-hero-bg-position: 50% 40%;
        --fo-hero-kids-width: 100%;
        --fo-hero-kids-left: 0;
        --fo-hero-kids-anchor-x: center;
        --fo-stats-overlap: 20px;
        --fo-hero-pad-bottom: 14px;
    }
    .fo-hero {
        padding: 8px 0 14px;
        overflow: hidden;
    }
    .fo-hero-bg {
        transform: none;
    }
    .fo-hero-kids-col {
        width: 100%;
        max-width: 100%;
    }
    .fo-hero-kids {
        filter: none;
        max-height: clamp(360px, 60vw, 540px);
    }
    .fo-nav .container {
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }
    .fo-stats {
        margin-top: calc(-1 * var(--fo-stats-overlap));
    }
    .fo-nav-toggle { display: block; }
    .fo-nav .container { flex-wrap: wrap; }
    .fo-nav-logo {
        flex: 1;
        --fo-nav-logo-height-hero: clamp(64px, 16vw, 84px);
        --fo-nav-logo-height-compact: clamp(40px, 10vw, 48px);
        --fo-nav-logo-breakout: clamp(22px, 5vw, 32px);
        --fo-nav-logo-max-w: min(260px, 58vw);
    }
    .fo-nav.is-scrolled .fo-nav-logo {
        --fo-nav-logo-max-w: min(180px, 46vw);
    }
    .fo-nav-cta {
        order: 3;
        padding: 8px 16px;
        font-size: 0.78rem;
    }
    .fo-nav-links {
        display: none;
        order: 4;
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        gap: 12px;
        padding: 12px 0 4px;
        border-top: 1px solid #eee;
    }
    .fo-nav-links.is-open { display: flex; }
}

@media (max-width: 991px) {
    .fo-form-wrap {
        margin: 0 auto;
        max-width: min(400px, 92vw);
    }
    .fo-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .fo-stat {
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
        padding: 14px 12px;
    }
    .fo-stat:nth-child(odd) { border-right: 1px solid #e8e8e8; }
    .fo-stat:nth-last-child(-n+2) { border-bottom: none; }
    .fo-investment-box { grid-template-columns: 1fr; }
    .fo-investment-left {
        padding-right: 0;
        padding-bottom: 20px;
        border-right: none;
        border-bottom: 1px solid #ececec;
    }
    .fo-investment-right {
        padding-left: 0;
        padding-top: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .fo-investment-chart-wrap {
        align-self: center;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .fo-investment-chart-svg {
        width: min(340px, 100%);
    }
    .fo-business-model-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .fo-la-grid { grid-template-columns: 1fr; gap: 0; }
    .fo-la-col:first-child {
        padding-right: clamp(20px, 3vw, 36px);
        border-right: none;
        border-bottom: 1px solid #ececec;
    }
    .fo-la-col--awards {
        padding-left: clamp(20px, 3vw, 36px);
    }
    .fo-la-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .fo-la-text {
        flex: none;
        width: 100%;
        max-width: 100%;
    }
    .fo-la-media {
        width: 100%;
        justify-content: center;
    }
    .fo-map-img {
        max-width: min(420px, 100%);
    }
    .fo-awards-row {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 20px;
    }
    .fo-award-item {
        flex: 0 1 calc(33.333% - 12px);
    }
    .fo-faq-grid { grid-template-columns: 1fr; }
    .fo-videos-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .fo-footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .fo-footer-brand {
        grid-column: 1 / -1;
    }
    .fo-footer-contact {
        grid-column: 1 / -1;
    }
}

/* iPad: 768px – 1199px — kids almost full width */
@media (min-width: 768px) and (max-width: 1199px) {
    .fo-hero-grid {
        min-height: clamp(380px, 60vw, 520px);
        height: auto;
        max-height: none;
    }
    .fo-hero-kids {
        max-height: clamp(360px, 58vw, 500px);
    }
}

/* Phone: ≤767px */
@media (max-width: 767px) {
    :root {
        --fo-stats-overlap: 16px;
    }
    .fo-hero {
        padding: 8px 0 12px;
    }
    .fo-hero-grid {
        min-height: clamp(300px, 78vw, 460px);
        row-gap: 8px;
    }
    .fo-hero-kids {
        max-height: clamp(280px, 78vw, 460px);
    }
    .fo-form-wrap {
        max-width: 100%;
    }
    .fo-stats {
        margin-top: calc(-1 * var(--fo-stats-overlap));
    }
    .fo-form-body {
        padding: 14px 14px 16px;
    }
    .fo-stats-grid { grid-template-columns: 1fr; }
    .fo-stat {
        border-right: none !important;
        border-bottom: 1px solid #e8e8e8;
        padding: 16px 8px;
    }
    .fo-stat:last-child { border-bottom: none; }
    .fo-benefits-grid { grid-template-columns: 1fr; }
    .fo-videos-grid { grid-template-columns: 1fr; }
    .fo-awards-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .fo-award-item {
        flex: none;
        width: 100%;
        max-width: 280px;
    }
    .fo-final-cta .container { flex-direction: column; text-align: center; }
    .fo-footer-grid { grid-template-columns: 1fr 1fr; }
    .fo-footer-brand,
    .fo-footer-contact { grid-column: 1 / -1; }
    .fo-footer-bottom .container { flex-direction: column; text-align: center; }
    .fo-footer-legal { justify-content: center; }
}

/* Small phone: ≤479px */
@media (max-width: 479px) {
    .fo-hero-grid {
        min-height: clamp(260px, 82vw, 400px);
    }
    .fo-hero-kids {
        max-height: clamp(250px, 82vw, 400px);
    }
    .fo-footer-grid {
        grid-template-columns: 1fr;
    }
}

/* 1920px laptop / QHD — medium compact form (not full 380px) */
@media (min-width: 1920px) and (max-width: 2559px) {
    .fo-hero-form-col,
    .fo-form-wrap {
        max-width: clamp(320px, 15vw, 340px);
    }
    .fo-form-body {
        padding: 12px 14px 14px;
    }
    .fo-form-header {
        padding: 14px 14px 10px;
    }
    .fo-form-title {
        font-size: 1.05rem;
    }
    .fo-input {
        padding: 9px 11px !important;
        font-size: 0.85rem;
    }
}

/* 4K / Smart TV: 2560px+ */
@media (min-width: 2560px) {
    :root {
        --fo-hero-bg-position: 58% 56%;
        --fo-hero-bg-scale: 1.08;
        --fo-stats-overlap: clamp(64px, 4vw, 80px);
        --fo-hero-pad-bottom: var(--fo-stats-overlap);
        --fo-hero-kids-width: clamp(680px, 70vw, 1200px);
    }
    .fo-hero-grid {
        height: clamp(540px, 56vw, 680px);
        max-height: clamp(540px, 56vw, 680px);
    }
    .fo-hero-form-col,
    .fo-form-wrap {
        max-width: 440px;
    }
    .fo-form-title {
        font-size: 1.35rem;
    }
    .fo-form-banner-line {
        font-size: 1rem;
    }
    .fo-input {
        padding: 14px 16px !important;
        font-size: 1rem;
    }
    .fo-submit {
        font-size: 1.05rem;
        padding: 14px 20px;
    }
    .fo-nav-links {
        gap: 28px;
        font-size: 1rem;
    }
    .fo-nav-cta {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
    .fo-section-title {
        font-size: clamp(1.75rem, 2vw, 2.25rem);
    }
    .fo-stat-number {
        font-size: clamp(2rem, 2.5vw, 2.75rem);
    }
    .fo-footer-grid {
        gap: clamp(24px, 2vw, 48px);
    }
}

/* True 4K UHD: 3840px+ */
@media (min-width: 3840px) {
    :root {
        --fo-hero-kids-width: min(70vw, 1400px);
    }
    .fo-hero-form-col,
    .fo-form-wrap {
        max-width: 520px;
    }
    .fo-nav-links {
        gap: 36px;
        font-size: 1.05rem;
    }
    .fo-benefits-grid {
        gap: clamp(20px, 1.5vw, 32px);
    }
}
