/* =====================================================
   Kidz2Biz — static site stylesheet (v2)
   Premium light theme, Inter everywhere, transparent
   glass nav, photo-right hero. No framework JS, no SCSS.
   Bootstrap 5 grid (CDN) only for responsive columns.
   ===================================================== */

:root {
    --navy: #0a3672;
    --navy-700: #082b5c;
    --navy-900: #051c3f;
    --navy-soft: #e6ecf5;
    --teal: #0d9488;
    --teal-soft: #7dae31;
    --orange: #ea580c;
    --orange-soft: #feede0;
    --gold: #d97706;
    --gold-soft: #fdf2db;
    --ink: #171717;
    --ink-soft: #4b5563;
    --paper: #fafafa;
    --border: #e5e7eb;
    --header-h: 76px;
    --shadow-card: 0 1px 2px rgba(10, 54, 114, 0.04),
        0 16px 40px -16px rgba(10, 54, 114, 0.18);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 16px);
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: "Inter", ui-sans-serif, system-ui, -apple-system,
        BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--ink);
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.55;
    font-feature-settings: "cv11", "ss01", "ss03";
    overflow-x: clip;
}

img {
    max-width: 100%;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
    letter-spacing: -0.022em;
    margin: 0;
    color: var(--navy);
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--navy); color: #fff; }



/* ----- Accessibility: focus + skip link ----- */
:focus { outline: none; }
:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 3px;
    border-radius: 8px;
}
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    padding: 0.75rem 1.25rem;
    background: var(--navy);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    z-index: 100;
    transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }

/* ----- Layout ----- */
.container-page {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}
@media (min-width: 768px) {
    .container-page { padding: 0 2rem; }
}

.section { padding: 5.5rem 0; }
@media (min-width: 768px) {
    .section { padding: 7.5rem 0; }
}
.section-paper { background: var(--paper); }
.section-white { background: #fff; }

/* ----- Colors / utilities ----- */
.c-navy { color: var(--navy) !important; }
.c-teal { color: var(--teal) !important; }
.c-orange { color: var(--orange) !important; }
.c-gold { color: var(--gold) !important; }
.muted { color: rgba(10, 54, 114, 0.32); }
.muted-ink { color: var(--ink-soft); }
.text-white { color: #fff !important; }
.text-white-70 { color: rgba(255, 255, 255, 0.78); }

.bg-teal-soft { background: var(--teal-soft); }
.bg-orange-soft { background: var(--orange-soft); }
.bg-gold-soft { background: var(--gold-soft); }
.bg-navy-soft { background: var(--navy-soft); }
.bg-teal-15 { background: rgba(13, 148, 136, 0.2); }
.bg-orange-15 { background: rgba(234, 88, 12, 0.2); }
.bg-gold-15 { background: rgba(217, 119, 6, 0.2); }

/* ----- Type ----- */
.overline {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
}
.section-head .h2 { margin-top: 0.85rem; }
.h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -0.024em;
}
@media (min-width: 768px) { .h2 { font-size: 2.5rem; } }
@media (min-width: 1024px) { .h2 { font-size: 3rem; } }

.lead {
    margin-top: 1.25rem;
    font-size: 1rem;
    color: var(--ink-soft);
    line-height: 1.7;
}
@media (min-width: 768px) { .lead { font-size: 1.125rem; } }

/* ----- Buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.2;
    min-height: 44px;
    padding: 0.85rem 1.65rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease,
        transform 0.25s ease, border-color 0.25s ease,
        box-shadow 0.25s ease;
    text-align: center;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
}
.btn-pill { border-radius: 9999px; }
.btn-primary {
    background: var(--navy);
    color: #fff !important;
    box-shadow: 0 8px 24px -8px rgba(10, 54, 114, 0.4);
}
.btn-primary:hover {
    background: #0c4286;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -10px rgba(10, 54, 114, 0.5);
}
.btn-outline {
    background: transparent;
    color: var(--navy) !important;
    border-color: rgba(10, 54, 114, 0.22);
}
.btn-outline:hover {
    background: rgba(10, 54, 114, 0.05);
    border-color: rgba(10, 54, 114, 0.35);
}
.btn-light {
    background: #fff;
    color: var(--navy) !important;
}
.btn-light:hover {
    background: var(--teal);
    color: #fff !important;
    transform: translateY(-2px);
}
.btn-arrow svg { transition: transform 0.25s ease; }
.btn-arrow:hover svg { transform: translateX(4px); }

/* ----- Header (transparent glass) ----- */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-bottom: 1px solid rgba(10, 54, 114, 0.06);
    transition: background 0.3s ease, border-color 0.3s ease,
        box-shadow 0.3s ease;
}
.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.82);
    border-bottom-color: rgba(10, 54, 114, 0.1);
    box-shadow: 0 8px 30px -18px rgba(10, 54, 114, 0.18);
}

.nav-row {
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    font-family: "Inter", sans-serif;
    color: var(--navy);
    font-weight: 900;
    letter-spacing: -0.025em;
    font-size: 1.3rem;
}
@media (min-width: 768px) { .brand { font-size: 1.5rem; } }
.brand-accent { color: var(--teal); }

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}
.nav-links li a {
    color: var(--ink-soft);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}
.nav-links li a:hover { color: var(--navy); }
@media (min-width: 1024px) {
    .nav-links { display: flex; }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.nav-cta {
    display: none;
    padding: 0.6rem 1.15rem;
    min-height: 40px;
    font-size: 0.875rem;
}
@media (min-width: 640px) {
    .nav-cta { display: inline-flex; }
}

.nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    width: 44px;
    background: transparent;
    border: 0;
    color: var(--navy);
    border-radius: 10px;
    cursor: pointer;
}
.nav-toggle:hover { background: rgba(10, 54, 114, 0.08); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.mobile-nav {
    border-top: 1px solid rgba(10, 54, 114, 0.08);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.mobile-nav-list {
    padding: 1rem 1.25rem 1.25rem;
}
/* Plain nav links inside drawer */
.mobile-nav-list .mobile-link {
    display: block;
    padding: 0.85rem 0;
    min-height: 44px;
    color: var(--ink) !important;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(10, 54, 114, 0.06);
}
.mobile-nav-list .mobile-link:hover { color: var(--navy) !important; }

.mobile-cta-wrap {
    padding-top: 1rem;
}
/* Important: ensure CTA button text remains white (overrides any inherited link color) */
.mobile-nav-list .mobile-cta,
.mobile-nav-list .mobile-cta:hover {
    display: flex;
    width: 100%;
    color: #fff !important;
}
.mobile-nav-list .mobile-cta { background: var(--navy); }
.mobile-nav-list .mobile-cta:hover { background: var(--teal); }

/* ----- Hero (white, photo right) ----- */
.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #ffffff;
    padding-top: calc(var(--header-h) + 3rem);
    padding-bottom: 4rem;
}
@media (min-width: 768px) {
    .hero {
        padding-top: calc(var(--header-h) + 4rem);
        padding-bottom: 6rem;
    }
}
@media (min-width: 1024px) {
    .hero {
        padding-top: calc(var(--header-h) + 5rem);
        padding-bottom: 7rem;
    }
}

.bloom {
    position: absolute;
    border-radius: 9999px;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}
.bloom-teal-soft {
    background: rgba(13, 148, 136, 0.18);
    width: 420px; height: 420px;
    top: -6rem; right: 22%;
}
.bloom-orange-soft {
    background: rgba(234, 88, 12, 0.14);
    width: 360px; height: 360px;
    bottom: -4rem; left: 6%;
}
.bloom-gold-soft {
    background: rgba(217, 119, 6, 0.12);
    width: 320px; height: 320px;
    top: 38%; right: -3rem;
}
.bloom.small { width: 256px; height: 256px; filter: blur(60px); }

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
        gap: 3.5rem;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(10, 54, 114, 0.1);
    background: rgba(10, 54, 114, 0.04);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink);
}
@media (min-width: 768px) { .hero-badge { font-size: 0.825rem; } }

.hero-h1 {
    margin-top: 1.5rem;
    max-width: 38ch;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-size: 2.25rem;
    color: var(--navy);
}
@media (min-width: 640px) { .hero-h1 { font-size: 2.75rem; } }
@media (min-width: 768px) { .hero-h1 { font-size: 3.25rem; } }
@media (min-width: 1024px) { .hero-h1 { font-size: 3.75rem; } }
@media (min-width: 1280px) { .hero-h1 { font-size: 4.25rem; } }

.hero-h1 .hl { position: relative; display: inline-block; }
.hero-h1 .hl-text { position: relative; z-index: 1; color: var(--navy); }
.hero-h1 .hl-underline {
    position: absolute;
    inset: auto 0 4px 0;
    height: 12px;
    background: rgba(13, 148, 136, 0.35);
    border-radius: 2px;
    z-index: 0;
}
@media (min-width: 768px) {
    .hero-h1 .hl-underline { inset: auto 0 6px 0; height: 14px; }
}

.hero-sub {
    margin-top: 1.5rem;
    max-width: 36rem;
    color: var(--ink-soft);
    font-size: 1.05rem;
    line-height: 1.7;
}
@media (min-width: 768px) { .hero-sub { font-size: 1.18rem; } }
.hero-sub strong { color: var(--ink); font-weight: 700; }

.hero-cta-row {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-wrap: wrap;
}
@media (min-width: 640px) {
    .hero-cta-row { flex-direction: row; gap: 0.85rem; }
}

.hero-stats {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 32rem;
    border-top: 1px solid rgba(10, 54, 114, 0.1);
    padding-top: 1.5rem;
}
@media (min-width: 768px) { .hero-stats { gap: 2.25rem; padding-top: 2rem; } }
.hero-stats .num {
    font-family: "Inter", sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
}
@media (min-width: 768px) { .hero-stats .num { font-size: 2.15rem; } }
.hero-stats .lbl {
    margin-top: 0.25rem;
    font-size: 0.7rem;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

/* Hero photo (right side) */
.hero-right { position: relative; z-index: 1; }
.hero-photo {
    position: relative;
    max-width: 30rem;
    margin: 0 auto;
    aspect-ratio: 4 / 5;
    border-radius: 28px;
    overflow: visible;
}
@media (min-width: 1024px) {
    .hero-photo { margin-left: auto; margin-right: 0; max-width: 32rem; }
}
.hero-photo-aura {
    position: absolute;
    inset: -10% -10% -10% -10%;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(13,148,136,0.22), transparent 60%),
        radial-gradient(ellipse at 25% 80%, rgba(234,88,12,0.18), transparent 60%),
        radial-gradient(ellipse at 80% 90%, rgba(217,119,6,0.14), transparent 60%);
    filter: blur(40px);
    z-index: -1;
}
.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 28px;
    /* Soft mask: fade the left edge into the white hero on lg+ */
    -webkit-mask-image: linear-gradient(115deg, transparent 0%, black 22%);
    mask-image: linear-gradient(115deg, transparent 0%, black 22%);
}
@media (max-width: 1023.98px) {
    .hero-photo img {
        -webkit-mask-image: none;
        mask-image: none;
    }
}

/* Floating chips on the photo */
.hero-chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: var(--ink);
    padding: 0.55rem 0.95rem;
    border-radius: 9999px;
    border: 1px solid rgba(10, 54, 114, 0.08);
    box-shadow: 0 10px 30px -8px rgba(10, 54, 114, 0.2);
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
}
.hero-chip-dot {
    width: 8px; height: 8px; border-radius: 9999px;
    display: inline-block;
}
.hero-chip--tl { top: 8%; left: -6%; }
.hero-chip--br { bottom: 10%; right: -2%; }
@media (max-width: 639.98px) {
    .hero-chip--tl { top: 4%; left: 4%; }
    .hero-chip--br { bottom: 4%; right: 4%; }
}

/* ----- Why Now cards ----- */
.card-feat {
    height: 100%;
    background: #fff;
    border: 1px solid rgba(10, 54, 114, 0.06);
    border-radius: 1rem;
    padding: 1.75rem;
    box-shadow: 0 1px 2px rgba(10, 54, 114, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-feat:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px -16px rgba(10, 54, 114, 0.18);
}
.ico-tile {
    display: inline-flex;
    height: 3rem;
    width: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.85rem;
}
.card-feat-title {
    margin-top: 1.25rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.35;
}
.card-feat-copy {
    margin-top: 0.75rem;
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.65;
}

/* ----- Pull-quote (navy) ----- */
.pullquote-navy {
    position: relative;
    margin: 4rem 0 0;
    border-radius: 1.5rem;
    background: var(--navy);
    color: #fff;
    padding: 2.25rem;
    overflow: hidden;
}
@media (min-width: 768px) {
    .pullquote-navy { margin-top: 5rem; padding: 3.5rem; }
}
.pullquote-navy blockquote {
    position: relative;
    font-family: "Inter", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
    max-width: 56rem;
    margin: 0;
    letter-spacing: -0.01em;
}
@media (min-width: 768px) {
    .pullquote-navy blockquote { font-size: 2rem; }
}

/* ----- Journey (line centered on icons) ----- */
.journey-grid {
    list-style: none;
    margin: 4rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
}
@media (min-width: 1024px) {
    .journey-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    /* Dashed gradient line — centered on icons (icons are 96px → center at 48px) */
    .journey-grid::before {
        content: "";
        position: absolute;
        top: 48px;
        left: 14%;
        right: 14%;
        height: 2px;
        background-image: linear-gradient(
            to right,
            #0d9488 0%,
            #ea580c 50%,
            #d97706 100%
        );
        -webkit-mask-image: repeating-linear-gradient(
            to right,
            black 0 10px,
            transparent 10px 18px
        );
        mask-image: repeating-linear-gradient(
            to right,
            black 0 10px,
            transparent 10px 18px
        );
        z-index: 0;
        transform: translateY(-1px); /* visually align the 2px line on the icon center */
    }
}

.journey-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-ico {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 96px;
    width: 96px;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.ring-teal {
    box-shadow: 0 0 0 8px rgba(13, 148, 136, 0.32),
        0 1px 2px rgba(0, 0, 0, 0.04);
}
.ring-orange {
    box-shadow: 0 0 0 8px rgba(234, 88, 12, 0.32),
        0 1px 2px rgba(0, 0, 0, 0.04);
}
.ring-gold {
    box-shadow: 0 0 0 8px rgba(217, 119, 6, 0.32),
        0 1px 2px rgba(0, 0, 0, 0.04);
}

.step-body { margin-top: 2rem; }
.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border-radius: 9999px;
    padding: 0.3rem 0.85rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.chip-teal { background: var(--teal-soft); color: var(--teal); }
.chip-orange { background: var(--orange-soft); color: var(--orange); }
.chip-gold { background: var(--gold-soft); color: var(--gold); }

.dot { height: 7px; width: 7px; border-radius: 9999px; flex-shrink: 0; }
.dot-teal { background: var(--teal); }
.dot-orange { background: var(--orange); }
.dot-gold { background: var(--gold); }

.step-title {
    margin-top: 1rem;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.02em;
}
.step-sub {
    margin-top: 0.25rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ink-soft);
}
.step-copy {
    margin: 1rem auto 0;
    max-width: 24rem;
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.65;
}

.credential-pill-wrap {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}
.credential-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    border: 1px solid rgba(217, 119, 6, 0.3);
    background: var(--gold-soft);
    color: var(--gold);
    padding: 0.7rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
}

/* ----- Outcomes ----- */
.outcome-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.outcome-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1rem;
    color: var(--ink);
    line-height: 1.65;
}
@media (min-width: 768px) {
    .outcome-list li { font-size: 1.075rem; }
}
.check {
    margin-top: 3px;
    flex: 0 0 28px;
    height: 28px;
    width: 28px;
    border-radius: 9999px;
    background: var(--navy);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pitch-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    background: var(--navy);
    color: #fff;
    padding: 2rem;
}
@media (min-width: 768px) { .pitch-card { padding: 2.5rem; } }
.badge-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid rgba(217, 119, 6, 0.4);
    background: rgba(217, 119, 6, 0.15);
    color: var(--gold);
    padding: 0.3rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.pitch-title {
    margin-top: 1.25rem;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
    letter-spacing: -0.015em;
}
@media (min-width: 768px) { .pitch-title { font-size: 1.65rem; } }
.pitch-list {
    margin-top: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.88);
}
.pitch-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    line-height: 1.4;
}

/* =====================================================
   SCHEDULE — premium redesign
   ===================================================== */
.sched-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 768px) {
    .sched-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.sched-card {
    --accent: var(--teal);
    --accent-2: #34d8c4;
    position: relative;
    background: #fff;
    border: 1px solid rgba(10, 54, 114, 0.08);
    border-radius: 1.5rem;
    overflow: hidden;
    padding: 2rem 1.85rem 2.15rem;
    box-shadow: var(--shadow-card);
    transition: transform 0.35s ease, box-shadow 0.35s ease,
        border-color 0.35s ease;
    isolation: isolate;
}
.sched-card::after {
    content: "";
    position: absolute;
    inset: -50% -10% auto auto;
    width: 220px;
    height: 220px;
    background: radial-gradient(
        circle,
        rgba(var(--accent-rgb, 13, 148, 136), 0.14) 0%,
        transparent 70%
    );
    border-radius: 9999px;
    z-index: -1;
}
.sched-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 2px 0 rgba(10, 54, 114, 0.04),
        0 28px 56px -20px rgba(10, 54, 114, 0.26);
    border-color: rgba(10, 54, 114, 0.14);
}
.sched-card.sched-teal {
    --accent: var(--teal);
    --accent-2: #34d8c4;
    --accent-rgb: 13, 148, 136;
}
.sched-card.sched-orange {
    --accent: var(--orange);
    --accent-2: #fb923c;
    --accent-rgb: 234, 88, 12;
}
.sched-card.sched-gold {
    --accent: var(--gold);
    --accent-2: #f59e0b;
    --accent-rgb: 217, 119, 6;
}

.sched-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--accent), var(--accent-2));
}

.sched-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.sched-ico-tile {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--accent);
    background: linear-gradient(
        135deg,
        rgba(var(--accent-rgb), 0.18),
        rgba(var(--accent-rgb), 0.04)
    );
    border: 1px solid rgba(var(--accent-rgb), 0.12);
}
.sched-eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ink-soft);
}

.sched-stat {
    margin-top: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.55rem;
    line-height: 1;
}
.sched-stat .big {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.04em;
    line-height: 0.95;
}
@media (min-width: 768px) {
    .sched-stat .big { font-size: 4rem; }
}
.sched-stat .suffix {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink-soft);
}

.sched-title {
    margin-top: 0.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.sched-chips {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}
.sched-chips span {
    display: inline-flex;
    padding: 0.42rem 0.85rem;
    border-radius: 9999px;
    background: rgba(10, 54, 114, 0.06);
    font-size: 0.825rem;
    font-weight: 600;
    color: var(--ink);
}
.sched-detail {
    margin-top: 1.25rem;
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.6;
}

.sched-footnote {
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.75rem;
    color: var(--ink-soft);
    font-size: 0.875rem;
    font-weight: 500;
}
.sched-foot-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* =====================================================
   FRANCHISE — premium navy card, split layout
   ===================================================== */
.franchise-section {
    position: relative;
    overflow: hidden;
    background: var(--paper);
    padding: 5.5rem 0;
}
@media (min-width: 768px) {
    .franchise-section { padding: 7rem 0; }
}
.franchise-section .bloom-orange-soft {
    top: 6rem;
    left: -6rem;
    right: auto;
    width: 340px;
    height: 340px;
    background: rgba(234, 88, 12, 0.14);
}
.franchise-section .bloom-teal-soft {
    top: auto;
    bottom: 4rem;
    right: -4rem;
    width: 380px;
    height: 380px;
    background: rgba(13, 148, 136, 0.14);
}

.franchise-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-radius: 2rem;
    background: linear-gradient(135deg, #0a3672 0%, #082b5c 65%, #0a3672 100%);
    color: #fff;
    padding: 2.25rem 1.5rem;
    box-shadow: 0 30px 80px -30px rgba(10, 54, 114, 0.55);
}
@media (min-width: 768px) {
    .franchise-card { padding: 3rem 2.5rem; }
}
@media (min-width: 1024px) {
    .franchise-card { padding: 4rem; }
}

.franchise-shine {
    position: absolute;
    inset: -50% -30% auto auto;
    width: 520px;
    height: 520px;
    background: radial-gradient(
        circle,
        rgba(217, 119, 6, 0.35) 0%,
        rgba(217, 119, 6, 0.12) 35%,
        transparent 65%
    );
    filter: blur(30px);
    pointer-events: none;
    z-index: 0;
}
.franchise-card::before {
    content: "";
    position: absolute;
    inset: auto auto -30% -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(13, 148, 136, 0.28) 0%,
        transparent 65%
    );
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

.franchise-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}
@media (min-width: 1024px) {
    .franchise-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 4rem;
    }
}

/* Left */
.franchise-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.4rem 0.9rem;
    border-radius: 9999px;
    border: 1px solid rgba(217, 119, 6, 0.35);
    background: rgba(217, 119, 6, 0.14);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}
.franchise-title {
    margin-top: 1.25rem;
    font-family: "Inter", sans-serif;
    font-size: 2rem;
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #fff;
    max-width: 22ch;
}
@media (min-width: 768px) { .franchise-title { font-size: 2.75rem; } }
@media (min-width: 1024px) { .franchise-title { font-size: 3.15rem; } }
.franchise-copy {
    margin-top: 1.25rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 34rem;
}
@media (min-width: 768px) { .franchise-copy { font-size: 1.075rem; } }
.franchise-copy--small {
    margin-top: 0.85rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.95rem;
}

.franchise-cta-row {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.franchise-cta-row .btn-primary {
    background: #ffffff;
    color: var(--navy) !important;
    box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.28);
}
.franchise-cta-row .btn-primary:hover {
    background: var(--gold);
    color: #ffffff !important;
    box-shadow: 0 16px 30px -10px rgba(217, 119, 6, 0.55);
}
.franchise-cta-row .btn-outline {
    background: transparent;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.28);
    font-weight: 500;
    font-size: 0.9rem;
}
.franchise-cta-row .btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
}

.franchise-badges {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.franchise-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.95rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
}

/* Right — checklist card */
.franchise-right {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.25rem;
    padding: 1.75rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
@media (min-width: 768px) {
    .franchise-right { padding: 2rem; }
}
.franchise-list-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.55);
}
.franchise-list {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.franchise-item {
    display: flex;
    align-items: flex-start;
    gap: 0.95rem;
    padding: 0.4rem 0;
}
.fi-ico {
    display: inline-flex;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.fi-title {
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: -0.01em;
}
.fi-copy {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.55;
}

/* ----- About ----- */
.pull-about {
    margin: 2.25rem 0 0;
    padding-left: 1.25rem;
    border-left: 4px solid var(--gold);
    font-family: "Inter", sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
    letter-spacing: -0.015em;
}
@media (min-width: 768px) { .pull-about { font-size: 1.65rem; } }

.about-photo {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 1.5rem;
    background: var(--navy);
    max-width: 28rem;
    margin: 0 auto;
}
.about-photo img {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0.95;
}
.about-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        var(--navy) 0%,
        rgba(10, 54, 114, 0.3) 50%,
        transparent 100%
    );
}
.about-photo-caption {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    color: #fff;
}
.about-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    color: var(--gold);
    font-weight: 700;
}
.about-tag {
    margin-top: 0.5rem;
    font-family: "Inter", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.015em;
}
@media (min-width: 768px) { .about-tag { font-size: 1.35rem; } }

/* ----- FAQ ----- */
.faq-accordion { display: flex; flex-direction: column; }
.faq-item {
    border-bottom: 1px solid rgba(10, 54, 114, 0.1);
}
.faq-trigger {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 1.25rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--navy);
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    min-height: 56px;
    letter-spacing: -0.005em;
}
@media (min-width: 768px) { .faq-trigger { font-size: 1.075rem; } }
.faq-chev {
    flex: 0 0 18px;
    transition: transform 0.25s ease;
    color: var(--navy);
}
.faq-trigger[aria-expanded="true"] .faq-chev { transform: rotate(180deg); }
.faq-panel {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
}
.faq-inner {
    padding: 0 0 1.25rem;
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.7;
}
@media (min-width: 768px) { .faq-inner { font-size: 1rem; } }

/* ----- Contact ----- */
.contact-section {
    position: relative;
    overflow: hidden;
    background: var(--navy);
    color: #fff;
}
.contact-section .grid-bg {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    background-image:
        linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 56px 56px;
}
.contact-section .bloom-orange {
    top: -8rem; right: 0;
    width: 384px; height: 384px;
    background: rgba(234, 88, 12, 0.22);
    filter: blur(80px);
}
.contact-section .bloom-teal {
    bottom: 0; left: 0; top: auto;
    width: 320px; height: 320px;
    background: rgba(13, 148, 136, 0.22);
    filter: blur(80px);
}
.contact-section .h2 { color: #fff; }
.contact-section .lead { color: rgba(255, 255, 255, 0.78); }

.contact-tile {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 1.25rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
    transition: background-color 0.25s ease, transform 0.25s ease;
    color: #fff;
    min-height: 56px;
}
.contact-tile:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-2px);
}
.contact-tile--static:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: none;
    cursor: default;
}
.contact-eyebrow {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
}
.contact-value {
    margin-top: 0.35rem;
    font-family: "Inter", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}
@media (min-width: 768px) { .contact-value { font-size: 1.18rem; } }
.contact-sub {
    margin-top: 0.3rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.55;
}
.map-frame {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    height: 100%;
    min-height: 360px;
}
.map-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.2) contrast(1.05);
}

/* ----- Footer ----- */
.site-footer {
    background: var(--navy-900);
    color: #fff;
    padding: 4.5rem 0 2.5rem;
    position: relative;
    overflow: hidden;
}
.brand-footer { font-size: 1.5rem; color: #fff; }
.footer-tagline {
    margin-top: 0.75rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gold);
    font-weight: 700;
}
.footer-blurb {
    margin-top: 1.25rem;
    max-width: 28rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}
.social-row {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.6rem;
}
.social {
    display: inline-flex;
    height: 40px;
    width: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.78);
    transition: color 0.2s ease, border-color 0.2s ease,
        background-color 0.2s ease;
}
.social:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}
.footer-h {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
}
.footer-links {
    margin-top: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}
.footer-links a { transition: color 0.2s ease; }
.footer-links a:hover { color: #fff; }
.footer-addr { line-height: 1.65; }
.footer-bottom {
    margin-top: 3.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
}
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (min-width: 768px) { .mega-wordmark { font-size: 14vw; } }

/* ----- Reveal animation ----- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    will-change: opacity, transform;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
    html { scroll-behavior: auto; }
    .btn-arrow:hover svg,
    .btn:hover,
    .card-feat:hover,
    .sched-card:hover,
    .contact-tile:hover { transform: none; }
}

/* Tap-friendly link sizing inside footer */
.footer-links a { min-height: 32px; display: inline-block; }

/* Bootstrap-grid display helpers we still use */
.d-none { display: none !important; }
@media (min-width: 768px) {
    .d-md-inline { display: inline !important; }
}
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
/* 1. Header Logo */
.site-header .brand-logo {
    height: 32px !important;
    width: auto !important;
    max-width: 100% !important;
    display: block !important;
    
    /* Safari/Mobile specific fixes */
    flex-shrink: 0 !important; 
    object-fit: contain !important; 
}
@media (min-width: 768px) {
    .site-header .brand-logo {
        height: 40px !important;
    }
}

/* 2. Footer Logo */
.site-footer .footer-logo {
    height: 40px !important;
    width: auto !important;
    max-width: 100% !important;
    display: block !important;
    
    /* Safari/Mobile specific fixes */
    flex-shrink: 0 !important;
    object-fit: contain !important;
}
@media (min-width: 768px) {
    .site-footer .footer-logo {
        height: 48px !important;
    }
}
/* 3. Mega Background Logo (Full Screen Width) */
.mega-logo-container {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    pointer-events: auto;
    overflow: hidden;
    
    /* Forces the container to break out and span 100% of the screen */
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.mega-logo-container .mega-logo {
    width: 100% !important; 
    max-width: none !important;
    height: auto !important;
    opacity: 1 !important; 
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease !important;
    will-change: transform, opacity;
}

/* Mega Logo Hover State */
.mega-logo-container:hover .mega-logo {
    opacity: 1 !important; 
    transform: scale(1.03) !important;
}
