/* ═══ VIEW TRANSITIONS (smooth page navigation) ═══ */
        @view-transition { navigation: auto; }
        ::view-transition-old(root) { animation: fade-out 0.15s ease-out; }
        ::view-transition-new(root) { animation: fade-in 0.2s ease-in; }
        @keyframes fade-out { from { opacity: 1; } to { opacity: 0; } }
        @keyframes fade-in  { from { opacity: 0; } to { opacity: 1; } }

/* ═══════════════════════════════════════════
           PRODYNAMIQ — "BLUE ENERGY" DESIGN SYSTEM
           ═══════════════════════════════════════════ */
        :root {
            --blue-deep: #1A3A6B;
            --blue: #2B5AA6;
            --blue-bright: #3D7BE8;
            --blue-electric: #4F94FF;
            --blue-10: rgba(43,90,166,0.1);
            --blue-05: rgba(43,90,166,0.05);
            --green-lime: #8BC53F;
            --green-neon: #A4E03B;
            --green-10: rgba(139,197,63,0.12);
            --gold: #FFA726;
            --gold-light: #FFD54F;
            --dark: #0A0F1A;
            --dark-mid: #111827;
            --off-white: #F4F6FA;
            --white: #FFFFFF;
            --text: #1A2338;
            --text-muted: #374151;
            --border: rgba(0,0,0,0.06);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        html { background: var(--off-white, #F4F6FA); }
        body {
            font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--text);
            line-height: 1.7;
            background: var(--off-white, #F4F6FA);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            font-size: 16px;
        }

        ::selection { background: var(--blue); color: white; }

        /* ═══ ACCENT / HIGHLIGHT CLASSES ═══ */
        .brand-tagline {
            display: inline-block;
            font-family: 'Libre Baskerville', serif;
            font-size: 1.15em; font-weight: 700; font-style: italic;
            color: var(--green-lime);
        }

        .power-phrase {
            color: var(--blue); font-weight: 700;
        }

        .highlight-lime {
            color: var(--green-lime); font-weight: 700;
        }

        .accent-underline {
            position: relative; font-weight: 700; color: var(--text);
        }
        .accent-underline::after {
            content: ''; position: absolute; bottom: -2px; left: 0; width: 100%;
            height: 2px; background: var(--green-lime); border-radius: 1px;
        }

        /* For dark backgrounds */
        .power-phrase-light {
            color: var(--green-lime); font-weight: 700;
        }

        /* ═══ "THE PRODYNAMIQ WAY" — Hero brand phrase ═══ */
        .pdq-way {
            display: inline-block;
            font-family: 'Libre Baskerville', serif;
            font-size: 1.6em; font-weight: 700;
            color: var(--blue-deep);
            letter-spacing: 0.02em;
            margin-top: 0.75rem;
            padding: 0.4rem 1.25rem;
            background: linear-gradient(135deg, rgba(139,197,63,0.15) 0%, rgba(43,90,166,0.08) 100%);
            border-left: 4px solid var(--green-lime);
            border-radius: 0 8px 8px 0;
            position: relative;
        }
        .brand-tagline-light {
            display: inline-block;
            font-family: 'Libre Baskerville', serif;
            font-size: 1.1em; font-weight: 700; font-style: italic;
            color: #FFFFFF;
            position: relative;
        }
        .brand-tagline-light::after {
            content: ''; position: absolute; bottom: -2px; left: 0; width: 100%;
            height: 3px; background: var(--green-lime); border-radius: 2px;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 clamp(1.5rem, 4vw, 3rem);
        }

        /* ═══ NAVIGATION ═══ */
        nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            background: #FFFFFF;
            height: 100px; display: flex; align-items: center;
            border-bottom: 3px solid var(--blue);
            box-shadow: 0 2px 12px rgba(43,90,166,0.08);
            transition: all 0.3s;
        }
        nav.scrolled {
            background: #FFFFFF;
            box-shadow: 0 4px 20px rgba(43,90,166,0.12);
            height: 80px;
        }

        .nav-inner {
            display: flex; justify-content: space-between; align-items: center;
            width: 100%; max-width: 1280px; margin: 0 auto;
            padding: 0 clamp(1.5rem, 4vw, 3rem);
        }

        .nav-brand { display: flex; align-items: center; text-decoration: none; }
        .logo-mark { height: 70px; width: auto; transition: all 0.3s; }
        nav.scrolled .logo-mark { height: 58px; }
        @media (min-width: 768px) { .logo-mark { height: 90px; } nav.scrolled .logo-mark { height: 68px; } }

        .nav-menu {
            display: flex; align-items: center;
            gap: clamp(1.5rem, 3vw, 2.5rem);
            list-style: none;
        }
        .nav-menu a {
            text-decoration: none; color: #1A2338;
            font-size: 0.875rem; font-weight: 600;
            position: relative; transition: color 0.2s;
        }
        .nav-menu a:hover { color: var(--blue); }
        .nav-menu a:not(.nav-cta)::after {
            content: ''; position: absolute; bottom: -4px; left: 0;
            width: 0; height: 2px; background: var(--blue);
            transition: width 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
        }
        .nav-menu a:not(.nav-cta):hover::after, .nav-menu a.active::after { width: 100%; }
        .nav-menu a.active { color: var(--blue); font-weight: 700; }
        .nav-menu a:not(.nav-cta):hover::after { width: 100%; }

        .nav-cta {
            background: var(--blue); color: white !important;
            padding: 0.6rem 1.5rem; border-radius: 100px;
            font-weight: 700; font-size: 0.82rem; text-transform: uppercase;
            letter-spacing: 0.06em; transition: all 0.25s;
        }
        .nav-cta:hover {
            background: var(--blue-deep); transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(43,90,166,0.3);
        }

        .mobile-menu-toggle {
            display: none; flex-direction: column; gap: 5px;
            background: none; border: none; cursor: pointer; padding: 8px;
        }
        .mobile-menu-toggle span {
            width: 24px; height: 2px; background: #1A2338; transition: all 0.3s;
        }
        .mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
        .mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

        /* ═══ HERO ═══ */
        .hero {
            min-height: 100vh;
            background: var(--dark);
            display: flex; align-items: center;
            padding: 100px 0 120px;
            position: relative; overflow: hidden;
        }

        /* Full-bleed venue photo */
        .hero::after {
            content: ''; position: absolute; inset: 0;
            background-image: url('images/hero-aerial.jpg');
            background-image: -webkit-image-set(url('images/hero-aerial.webp') 1x);
            background-image: image-set(url('images/hero-aerial.webp') type('image/webp'), url('images/hero-aerial.jpg') type('image/jpeg'));
            background-size: cover;
            background-position: center 40%;
            background-repeat: no-repeat;
            z-index: 0;
        }
        /* Gradient overlay for text readability */
        .hero::before {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(to right, rgba(10,18,42,0.92) 0%, rgba(10,18,42,0.7) 50%, rgba(10,18,42,0.3) 100%);
            z-index: 1;
        }

        .ai-link { text-decoration: none; color: inherit; cursor: pointer; transition: opacity 0.3s; }
        .ai-link:hover { opacity: 0.85; }

        /* Inner page hero (shorter) */
        .hero.hero-inner {
            min-height: auto;
            padding: 160px 0 80px;
        }
        .hero.hero-inner::after {
            display: none;
        }
        .hero.hero-inner::before {
            display: none;
        }
        @media (max-width: 768px) {
            .hero.hero-inner { padding: 120px 0 50px; }
            .hero.hero-inner .hero-title { font-size: clamp(1.8rem, 5vw, 3rem); }
            .hero.hero-inner .hero-subtitle { font-size: 1rem; }
        }
        @media (max-width: 480px) {
            .hero.hero-inner { padding: 100px 0 40px; }
        }

        .hero-diag {
            display: none;
        }

        .hero-content {
            position: relative; z-index: 2; color: white;
            max-width: 640px;
        }

        .hero-badge {
            display: inline-flex; align-items: center; gap: 0.5rem;
            padding: 0.4rem 1rem; border-radius: 100px;
            background: rgba(139,197,63,0.15); border: 1px solid rgba(139,197,63,0.3);
            font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
            letter-spacing: 0.08em; color: var(--green-lime);
            margin-bottom: 2rem;
            opacity: 0; animation: slideIn 0.6s ease 0.2s forwards;
        }

        .hero-title {
            font-family: 'Libre Baskerville', serif;
            font-size: clamp(2.8rem, 5.5vw, 4.5rem);
            font-weight: 700; line-height: 1.15;
            color: #FFFFFF;
            letter-spacing: -0.02em;
            margin-bottom: 1.5rem;
            opacity: 0; animation: slideIn 0.6s ease 0.4s forwards;
        }
        .hero-title .accent { color: var(--green-lime); }
        .hero-title .blue-text { color: var(--blue-electric); }

        .hero-subtitle {
            font-size: 1.15rem; color: rgba(255,255,255,0.85);
            margin-bottom: 2.5rem; font-weight: 400; max-width: 500px;
            opacity: 0; animation: slideIn 0.6s ease 0.6s forwards;
        }

        .hero-actions {
            display: flex; gap: 1rem; flex-wrap: wrap;
            opacity: 0; animation: slideIn 0.6s ease 0.8s forwards;
        }

        .hero-image {
            position: absolute; z-index: 2;
            right: 6%; top: 50%; transform: translateY(-50%);
            width: 420px; border-radius: 20px; overflow: hidden;
            box-shadow: 0 30px 80px rgba(0,0,0,0.5);
            border: 2px solid rgba(255,255,255,0.1);
            opacity: 0; animation: slideInRight 0.8s ease 0.5s forwards;
        }
        .hero-image img { width: 100%; display: block; }
        .hero-image-label {
            background: rgba(10,15,26,0.85); backdrop-filter: blur(8px);
            padding: 1rem 1.25rem; display: flex; justify-content: space-between; align-items: center;
        }
        .hero-image-label h4 { font-size: 0.82rem; font-weight: 700; color: white; }
        .hero-image-label span { font-size: 0.72rem; color: var(--green-lime); font-weight: 600; }

        @keyframes slideIn {
            from { opacity: 0; transform: translateX(-30px); }
            to { opacity: 1; transform: translateX(0); }
        }
        @keyframes slideInRight {
            from { opacity: 0; transform: translate(30px, -50%); }
            to { opacity: 1; transform: translate(0, -50%); }
        }
        @keyframes fadeSlideUp {
            from { opacity: 0; transform: translateY(24px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ═══ BUTTONS ═══ */
        .btn {
            display: inline-flex; align-items: center; gap: 0.5rem;
            padding: 0.9rem 2rem;
            font-size: 0.9rem; font-weight: 700;
            text-decoration: none; border-radius: 100px;
            transition: all 0.25s; border: none; cursor: pointer;
            font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }
        .btn-lime {
            background: var(--green-lime); color: var(--dark);
            text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.82rem;
        }
        .btn-lime:hover {
            background: var(--green-neon); transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(139,197,63,0.4);
        }
        .btn-wire {
            background: transparent; color: white;
            border: 2px solid rgba(255,255,255,0.3);
            text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.82rem;
        }
        .btn-wire:hover { border-color: white; }
        .btn-blue {
            background: var(--blue); color: white;
            text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.82rem;
        }
        .btn-blue:hover {
            background: var(--blue-bright); transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(43,90,166,0.4);
        }
        .btn-blue-outline {
            background: transparent; color: var(--blue); border: 2px solid var(--blue);
            text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.82rem;
        }
        .btn-blue-outline:hover { background: var(--blue); color: white; }

        /* ═══ STATS STRIP ═══ */
        .stats-strip {
            background: var(--blue);
            padding: 0; color: white;
            overflow: hidden;
        }
        .stats-row {
            display: flex;
            justify-content: stretch;
            text-align: center;
        }
        .stats-row > div {
            flex: 1;
            padding: 2.5rem 1rem;
            border-right: 1px solid rgba(255,255,255,0.15);
        }
        .stats-row > div:last-child {
            border-right: none;
        }
        .stat-val {
            font-family: 'Libre Baskerville', serif;
            font-size: clamp(2rem, 3.5vw, 2.75rem);
            font-weight: 700; line-height: 1;
            display: block; margin-bottom: 0.5rem;
            color: #FFFFFF;
        }
        .stat-label {
            font-size: 0.78rem; text-transform: uppercase;
            letter-spacing: 0.1em; color: #FFFFFF;
            font-weight: 700; display: block; margin-bottom: 0.4rem;
        }
        .stat-sub {
            font-size: 0.85rem; color: rgba(255,255,255,0.9);
            font-weight: 400; display: block;
        }

        /* ═══ SECTION HELPERS ═══ */
        .section-eyebrow {
            font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
            letter-spacing: 0.15em; color: var(--blue);
            display: flex; align-items: center; gap: 0.75rem;
            margin-bottom: 1rem;
        }
        .section-eyebrow::before {
            content: ''; width: 32px; height: 3px;
            background: var(--green-lime); border-radius: 2px;
        }
        .section-title {
            font-family: 'Libre Baskerville', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700; 
            color: var(--dark); margin-bottom: 0.75rem;
            letter-spacing: -0.01em; line-height: 1.1;
        }
        .section-desc {
            font-size: 1.1rem; color: var(--text-muted); max-width: 580px;
            line-height: 1.8;
        }
        .section-header { margin-bottom: 3rem; }

        /* ═══ ATHLETIC INTELLIGENCE ═══ */
        .intelligence {
            padding: 100px 0;
            background: var(--off-white);
        }

        .values-grid {
            display: grid; grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem; margin-bottom: 4rem;
        }
        .value-card {
            display: flex; gap: 1.25rem; align-items: flex-start;
            padding: 1.75rem; background: var(--white);
            border: 1px solid var(--border); border-radius: 14px;
            transition: all 0.3s;
            opacity: 0; transform: translateY(20px);
            transition: opacity 0.6s, transform 0.6s, box-shadow 0.3s, border-color 0.3s;
        }
        .value-card.visible { opacity: 1; transform: translateY(0); }
        .value-card:hover {
            box-shadow: 0 8px 32px rgba(0,0,0,0.06);
            border-color: var(--blue-10);
        }
        .value-card::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0;
            height: 3px; background: var(--blue); border-radius: 14px 14px 0 0;
            transform: scaleX(0); transform-origin: left;
            transition: transform 0.3s;
        }
        .value-card { position: relative; }
        .value-card:hover::before { transform: scaleX(1); }

        .value-icon {
            width: 52px; height: 52px; min-width: 52px;
            background: var(--blue-10); border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
        }
        .value-icon svg { width: 28px; height: 28px; }
        .value-card h3 {
            font-family: 'Libre Baskerville', serif;
            font-size: 1.1rem; font-weight: 700;
            color: var(--text); margin-bottom: 0.4rem;
        }
        .value-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; }

        /* Comparison */
        .comparison-section { margin-top: 2rem; }
        .comparison-title {
            font-family: 'Libre Baskerville', serif;
            font-size: clamp(1.25rem, 3vw, 1.75rem);
            font-weight: 700; 
            text-align: center; margin-bottom: 2rem;
        }
        .comparison-title .ai-hl { color: var(--green-lime); }

        .comparison-grid { display: flex; flex-direction: column; gap: 1.25rem; }
        .comparison-row {
            display: grid; grid-template-columns: 1fr auto 1fr;
            gap: 1.5rem; align-items: stretch;
        }
        .comparison-card {
            padding: 1.5rem; border-radius: 12px;
            display: flex; flex-direction: column; justify-content: center;
        }
        .comparison-card.traditional {
            background: var(--white); border: 1px solid var(--border);
        }
        .comparison-card.prodynamiq {
            background: linear-gradient(135deg, var(--dark) 0%, #0F1F3A 100%);
            color: white; border: 1px solid rgba(139,197,63,0.2);
        }
        .comparison-label {
            font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
            letter-spacing: 0.1em; margin-bottom: 0.5rem;
        }
        .traditional .comparison-label { color: var(--text-muted); }
        .prodynamiq .comparison-label { color: var(--green-lime); }
        .comparison-quote {
            font-size: 1.1rem; font-weight: 500; line-height: 1.65;
            font-style: italic; color: var(--text);
        }
        .prodynamiq .comparison-quote { color: rgba(255,255,255,0.95); }
        .comparison-vs {
            display: flex; align-items: center; justify-content: center;
            width: 48px; min-width: 48px;
            font-family: 'Libre Baskerville', serif;
            font-weight: 700; font-size: 0.78rem;
            color: var(--blue); text-transform: uppercase;
        }

        /* ═══ FACILITIES ═══ */
        .facilities {
            padding: 100px 0; background: var(--white);
        }
        .facility-grid {
            display: grid; grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        .facility-card {
            background: white; border-radius: 16px; overflow: hidden;
            border: 1px solid var(--border);
            transition: all 0.3s; position: relative;
            opacity: 0; transform: translateY(20px);
            transition: opacity 0.6s, transform 0.6s, box-shadow 0.3s;
        }
        .facility-card.visible { opacity: 1; transform: translateY(0); }
        .facility-card::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0;
            height: 4px; background: var(--blue); z-index: 2;
            transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
        }
        .facility-card:hover::before { transform: scaleX(1); }
        .facility-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(0,0,0,0.1);
        }
        .facility-img {
            height: 280px; background-size: cover; background-position: center;
            position: relative;
        }
        .facility-img::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(10,15,26,0.25) 0%, transparent 50%);
        }
        .facility-body { padding: 1.5rem; }
        .facility-body h3 {
            font-family: 'Libre Baskerville', serif;
            font-size: 1.25rem; font-weight: 700;
            color: var(--text); margin-bottom: 0.6rem;
        }
        .facility-body p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.75; }
        .facility-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
        .tag {
            padding: 0.35rem 0.85rem; background: var(--blue-10);
            color: var(--blue); font-size: 0.78rem; font-weight: 700;
            border-radius: 100px; text-transform: uppercase; letter-spacing: 0.04em;
        }

        /* ═══ ACADEMY / PROGRAMS ═══ */
        .academy {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--dark) 0%, #0F1F3A 100%);
            color: white; position: relative; overflow: hidden;
        }
        .academy::before {
            content: ''; position: absolute; top: -10%; right: -5%;
            width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(139,197,63,0.08) 0%, transparent 60%);
        }
        .academy .section-eyebrow { color: var(--green-lime); }
        .academy .section-eyebrow::before { background: var(--green-lime); }
        .academy .section-title { color: white; }
        .academy .section-desc { color: rgba(255,255,255,0.85); }

        .programs-grid {
            display: grid; grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem; position: relative; z-index: 1;
        }
        .program-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 14px; padding: 1.5rem 1.5rem 1.5rem 1.75rem;
            transition: all 0.25s; cursor: default;
            position: relative; overflow: hidden;
        }
        .program-card::before {
            content: ''; position: absolute; left: 0; top: 0; bottom: 0;
            width: 5px; border-radius: 14px 0 0 14px;
        }
        .program-card.ball-red::before { background: linear-gradient(to bottom, #EF4444 50%, #CCFF00 50%); }
        .program-card.ball-orange::before { background: linear-gradient(to bottom, #F97316 50%, #CCFF00 50%); }
        .program-card.ball-green::before { background: linear-gradient(to bottom, #CCFF00 50%, #22C55E 50%); }
        .program-card.ball-yellow::before { background: #CCFF00; }
        .program-card.ball-blue::before { background: linear-gradient(to bottom, #2B5AA6 100%, #2B5AA6 100%); }
        .program-card.ball-navy::before { background: linear-gradient(to bottom, #1A2338 100%, #1A2338 100%); }
        .program-card:hover {
            background: rgba(255,255,255,0.09);
            border-color: rgba(139,197,63,0.3);
            transform: translateY(-3px);
        }
        .program-ball { display: none; }
        .program-ball::after {
            width: 32px; height: 18px; top: 5px; right: -10px;
            transform: rotate(30deg);
        }
        .program-card h4 {
            font-family: 'Libre Baskerville', serif;
            font-size: 1.05rem; font-weight: 700;
            color: #FFFFFF; margin-bottom: 0.3rem;
        }
        .program-meta {
            font-size: 0.82rem; color: var(--green-lime);
            font-weight: 600; margin-bottom: 0.6rem;
        }
        .program-features {
            font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.55;
        }

        /* Pro strip (homepage) */
        .pro-strip {
            position: relative; z-index: 1;
            margin-top: 1.75rem;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            padding: 1.25rem 1.75rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .pro-strip-title {
            font-family: 'Libre Baskerville', serif;
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            white-space: nowrap;
        }
        .pro-strip-text {
            font-size: 0.88rem;
            color: rgba(255,255,255,0.65);
            flex: 1;
            min-width: 200px;
        }
        .pro-strip-link {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--green-lime);
            text-decoration: none;
            white-space: nowrap;
            transition: color 0.2s;
        }
        .pro-strip-link:hover { color: var(--green-neon); }
        @media (max-width: 768px) {
            .pro-strip {
                flex-direction: column;
                text-align: center;
                gap: 0.5rem;
                padding: 1.25rem;
            }
            .pro-strip-text { min-width: 0; }
        }

        /* ═══ CTA ═══ */
        .cta-section {
            padding: 80px 0; text-align: center;
            background: var(--blue);
            position: relative; overflow: hidden;
        }
        .cta-section::before {
            content: ''; position: absolute; top: -50%; right: -20%;
            width: 600px; height: 200%; background: var(--blue-bright);
            transform: skewX(-12deg); opacity: 0.3;
        }
        .cta-section h2 {
            font-family: 'Libre Baskerville', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700; color: white;
            
            position: relative; z-index: 1; margin-bottom: 0.5rem;
        }
        .cta-section p {
            color: rgba(255,255,255,0.85); font-size: 1.1rem;
            margin-bottom: 2rem; position: relative; z-index: 1;
        }
        .cta-section .cta-sub {
            font-size: 0.9rem; font-weight: 600; color: white;
            margin-bottom: 2rem;
        }

        /* ═══ FOOTER ═══ */
        footer {
            padding: 60px 0 30px;
            background: var(--dark); color: rgba(255,255,255,0.75);
        }
        .footer-grid {
            display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem; margin-bottom: 3rem;
        }
        .footer-brand h4 {
            font-family: 'Libre Baskerville', serif;
            color: white; font-size: 1.2rem; font-weight: 700;
            margin-bottom: 0.75rem;
        }
        .footer-brand p { font-size: 0.92rem; line-height: 1.7; color: rgba(255,255,255,0.8); }
        .social-links { display: flex; gap: 0.75rem; margin-top: 1rem; }
        .social-link {
            width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
            background: rgba(255,255,255,0.1); border-radius: 8px;
            text-decoration: none; font-size: 1.1rem;
            transition: all 0.2s;
        }
        .social-link:hover { background: rgba(139,197,63,0.3); }
        footer h4:not(.footer-brand h4) {
            color: var(--blue-electric); font-size: 0.78rem;
            text-transform: uppercase; letter-spacing: 0.12em;
            margin-bottom: 1rem; font-weight: 700;
        }
        .footer-links { list-style: none; }
        .footer-links a {
            display: block; color: rgba(255,255,255,0.75);
            text-decoration: none; font-size: 0.92rem;
            margin-bottom: 0.6rem; transition: color 0.2s;
        }
        .footer-links a:hover { color: var(--green-lime); }
        .footer-contact { font-size: 0.92rem; color: rgba(255,255,255,0.8); }
        .contact-item { margin-bottom: 0.6rem; }
        .contact-item a { color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.2s; }
        .contact-item a:hover { color: var(--green-lime); }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem; font-size: 0.82rem; text-align: center;
            color: rgba(255,255,255,0.5);
        }

        /* ═══ QUOTE BANNER ═══ */
        .quote-banner {
            position: fixed; bottom: -120px; left: 50%;
            transform: translateX(-50%); z-index: 900;
            transition: bottom 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
            width: 90%; max-width: 600px;
        }
        .quote-banner.show { bottom: 24px; }
        @media (max-width: 768px) {
            .quote-banner { z-index: 1000; width: 96%; }
            .quote-banner.show { bottom: 24px; }
            body.quote-active .book-court-float,
            body.quote-active .whatsapp-float { opacity: 0; pointer-events: none; transition: opacity 0.3s; }
        }
        .quote-content {
            background: var(--dark); color: white;
            border: 1px solid rgba(139,197,63,0.2);
            border-radius: 14px; padding: 1.25rem 1.5rem;
            display: flex; align-items: center; gap: 1rem;
            box-shadow: 0 12px 40px rgba(0,0,0,0.3);
        }
        .quote-icon { font-size: 1.5rem; min-width: 32px; }
        .quote-text { flex: 1; }
        .quote-text .quote { font-size: 0.88rem; font-weight: 500; font-style: italic; line-height: 1.4; }
        .quote-text .quote-author { font-size: 0.72rem; color: var(--green-lime); margin-top: 0.25rem; font-weight: 600; }
        .quote-avatar {
            width: 40px; height: 40px; min-width: 40px;
            background: var(--blue); border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            font-weight: 700; font-size: 0.72rem; color: white;
        }
        .quote-close {
            background: none; border: none; color: rgba(255,255,255,0.4);
            cursor: pointer; font-size: 1rem; padding: 4px;
            transition: color 0.2s;
        }
        .quote-close:hover { color: white; }

        /* ═══ RESPONSIVE ═══ */
        @media (max-width: 1024px) {
            .hero-image { width: 300px; right: 4%; }
            .stats-row { flex-wrap: wrap; }
            .stats-row > div { flex: 1 1 33.33%; min-width: 33.33%; border-bottom: 1px solid rgba(255,255,255,0.1); }
            .stats-row > div:nth-child(3) { border-right: none; }
            .programs-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .nav-menu { display: none; }
            .mobile-menu-toggle { display: flex; }

            .nav-menu.active {
                display: flex; flex-direction: column; gap: 0;
                position: absolute; top: 100%; left: 0; right: 0;
                background: #FFFFFF;
                border-bottom: 3px solid var(--blue);
                box-shadow: 0 8px 24px rgba(0,0,0,0.1);
                padding: 1rem 0;
            }
            .nav-menu.active li { width: 100%; }
            .nav-menu.active a {
                display: block; padding: 0.75rem 2rem; width: 100%;
            }
            .nav-menu.active a::after { display: none; }
            .nav-menu.active .nav-cta {
                margin: 0.5rem 2rem; display: inline-flex; width: auto;
                text-align: center; border-radius: 100px;
            }

            .hero { padding: 120px 0 80px; }
            .hero-diag { display: none; }
            .hero-image { display: none; }
            .hero::before {
                background: linear-gradient(to bottom, rgba(10,18,42,0.85) 0%, rgba(10,18,42,0.6) 50%, rgba(10,18,42,0.85) 100%);
            }
            .hero-title { font-size: 2.5rem; }

            .stats-row { flex-wrap: wrap; }
            .stats-row > div { flex: 1 1 50%; min-width: 50%; padding: 1.5rem 1rem; }
            .stats-row > div:nth-child(2n) { border-right: none; }

            .values-grid { grid-template-columns: 1fr; }
            .comparison-row { grid-template-columns: 1fr; gap: 0.5rem; }
            .comparison-vs {
                width: auto; min-width: auto;
                padding: 0.25rem 0; font-size: 0.72rem;
            }

            .facility-grid { grid-template-columns: 1fr; }
            .programs-grid { grid-template-columns: 1fr; }

            .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
        }

        @media (max-width: 480px) {
            .hero-title { font-size: 2.5rem; }
            .hero-actions { flex-direction: column; }
            .stats-row > div { flex: 1 1 50%; min-width: 50%; }
        }

        /* ═══ PRICING STRIP ═══ */
        .pricing-strip {
            background: white;
            padding: 2.5rem 0;
            border-bottom: 1px solid var(--border);
        }
        .pricing-strip-inner {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
        }
        .pricing-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex: 1;
            max-width: 340px;
        }
        .pricing-sport-icon {
            font-size: 2rem;
            flex-shrink: 0;
        }
        .pricing-info h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 2px;
        }
        .pricing-info p {
            font-size: 0.78rem;
            color: var(--text-muted);
            margin: 0;
        }
        .pricing-value {
            font-size: 0.85rem;
            color: var(--text-muted);
            white-space: nowrap;
        }
        .pricing-value strong {
            font-size: 1.1rem;
            color: var(--blue);
            font-weight: 800;
        }
        .coming-soon-tag {
            font-size: 0.8rem;
            color: var(--text-muted);
            opacity: 0.6;
        }
        .pricing-book {
            background: var(--blue);
            color: white;
            text-decoration: none;
            padding: 0.5rem 1.2rem;
            border-radius: 100px;
            font-size: 0.78rem;
            font-weight: 700;
            white-space: nowrap;
            transition: all 0.25s;
        }
        .pricing-book:hover {
            background: var(--blue-deep);
            transform: translateY(-1px);
        }
        .pricing-divider {
            width: 1px;
            height: 48px;
            background: var(--border);
            flex-shrink: 0;
        }

        @media (max-width: 768px) {
            .pricing-strip-inner {
                flex-direction: column;
                gap: 1.5rem;
            }
            .pricing-item {
                width: 100%;
                max-width: none;
                justify-content: space-between;
            }
            .pricing-divider {
                width: 100%;
                height: 1px;
            }
        }

        /* ═══ FLOATING BUTTONS ═══ */
        .book-court-float {
            position: fixed;
            bottom: 90px;
            right: 20px;
            z-index: 999;
            background: var(--blue);
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 20px;
            border-radius: 50px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 0.85rem;
            box-shadow: 0 4px 20px rgba(26,58,107,0.4);
            transition: all 0.3s;
        }
        .book-court-float:hover {
            background: var(--blue-deep);
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(26,58,107,0.5);
        }
        .book-court-float svg { flex-shrink: 0; }

        .whatsapp-float {
            position: fixed;
            bottom: 24px;
            right: 20px;
            z-index: 999;
            background: #25D366;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            box-shadow: 0 4px 16px rgba(37,211,102,0.4);
            transition: all 0.3s;
        }
        .whatsapp-float:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37,211,102,0.5);
        }

        @media (min-width: 769px) {
            .book-court-float { display: none; }
        }
