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

        :root {
            --primary:        #13B7BE;
            --primary-dark:   #1192B3;
            --primary-light:  #E6FAFA;
            --accent:         #FF6B35;
            --yellow:         #FFC933;
            --mint:           #87CEEB;
            --dark:           #113153;
            --body:           #2D3C4B;
            --muted:          #4C8FB3;
            --bg:             #FFFFFF;
            --bg-alt:         #F3F9FA;
            --border:         #E1EBF0;
            --r:              20px;
            --r-sm:           12px;
            --shadow-h:       0 16px 40px rgba(19, 183, 190, .15);
            --ease:           .3s cubic-bezier(.4,0,.2,1);
        }

        html { scroll-behavior: smooth; overflow-x: hidden; }

        body {
            font-family: 'Manrope', sans-serif;
            background: var(--bg);
            color: var(--body);
            line-height: 1.65;
            overflow-x: hidden;
            width: 100%;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
        }

        img  { max-width: 100%; display: block; }
        a    { text-decoration: none; color: inherit; }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ─── BUTTONS ────────────────────────────────── */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            border-radius: 50px;
            font-family: 'Manrope', sans-serif;
            font-weight: 700;
            font-size: .95rem;
            cursor: pointer;
            border: none;
            transition: var(--ease);
            white-space: nowrap;
        }

        .btn-primary {
            background: var(--primary);
            color: #fff;
            box-shadow: 0 8px 24px rgba(19, 183, 190, .35);
        }
        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(19, 183, 190, .45);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        .btn-outline:hover {
            background: var(--primary);
            color: #fff;
        }

        .btn-ghost {
            background: rgba(255,255,255,.12);
            color: #fff;
            border: 1.5px solid rgba(255,255,255,.35);
            backdrop-filter: blur(10px);
        }
        .btn-ghost:hover {
            background: rgba(255,255,255,.22);
        }

        /* ─── HEADER ─────────────────────────────────── */
        header {
            position: fixed;
            top: 0; width: 100%;
            z-index: 1000;
            padding: 18px 0;
            transition: var(--ease);
        }
        header.scrolled {
            background: rgba(255,255,255,.92);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            padding: 12px 0;
            box-shadow: 0 2px 20px rgba(0,0,0,.06);
        }

        nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .logo {
            font-family: 'Syne', sans-serif;
            font-size: 38px;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.5px;
            transition: color var(--ease);
            flex-shrink: 0;
        }
        header.scrolled .logo { color: var(--primary); }
        .logo-accent { color: var(--accent); }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 20px;
            list-style: none;
        }
        .nav-links a {
            font-weight: 600;
            font-size: .8rem;
            color: rgba(255,255,255,.75);
            transition: color var(--ease);
            white-space: nowrap;
        }
        .nav-links a:hover { color: #fff; }
        header.scrolled .nav-links a { color: var(--body); }
        header.scrolled .nav-links a:hover { color: var(--primary); }

        header.scrolled .btn-ghost {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
            box-shadow: 0 8px 24px rgba(19, 183, 190, .35);
        }

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

        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(70px);
            pointer-events: none;
        }
        .blob-1 { width: 580px; height: 580px; background: var(--primary); top: -120px; right: -120px; opacity: .45; }
        .blob-2 { width: 320px; height: 320px; background: var(--accent);  bottom: -60px; left: 18%; opacity: .18; }
        .blob-3 { width: 220px; height: 220px; background: var(--yellow);  top: 30%;  right: 42%; opacity: .12; }

        .hero-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 64px;
            position: relative;
            z-index: 2;
            width: 100%;
            padding: 60px 0;
        }

        .hero-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,.1);
            border: 1px solid rgba(255,255,255,.18);
            color: rgba(255,255,255,.9);
            padding: 7px 16px;
            border-radius: 50px;
            font-size: .82rem;
            font-weight: 600;
            margin-bottom: 28px;
            backdrop-filter: blur(10px);
        }
        .pill-dot {
            width: 7px; height: 7px;
            background: var(--mint);
            border-radius: 50%;
            animation: blink 1.8s infinite;
        }
        @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

        .hero h1 {
            font-family: 'Syne', sans-serif;
            font-size: clamp(2.6rem, 4.5vw, 4.2rem);
            font-weight: 800;
            line-height: 1.05;
            color: #fff;
            margin-bottom: 24px;
            letter-spacing: -1px;
        }
        .hero h1 em {
            font-style: normal;
            color: var(--yellow);
        }

        .hero-sub {
            color: rgba(255,255,255,.6);
            font-size: 1.05rem;
            margin-bottom: 44px;
            max-width: 460px;
            line-height: 1.75;
        }

        .hero-cta {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        .hero-visual { position: relative; }

        .hero-img {
            width: 100%;
            aspect-ratio: 4/5;
            max-height: 540px;
            border-radius: 28px;
            background: url('../assets/images/hero.png') center/cover no-repeat,
                        linear-gradient(135deg, rgba(17, 49, 83, .4) 0%, rgba(19, 183, 190, .3) 100%);
            box-shadow: 0 40px 80px rgba(17, 49, 83, .25);
        }

        .hero-badge {
            position: absolute;
            background: #fff;
            border-radius: 16px;
            padding: 12px 18px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 8px 30px rgba(0,0,0,.14);
        }
        .badge-ico {
            width: 40px; height: 40px;
            border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.2rem;
        }
        .badge-main { font-weight: 700; font-size: .88rem; color: var(--dark); }
        .badge-sub  { font-size: .73rem; color: var(--muted); }

        .hb1 { top: 28px; left: -28px; animation: float 4s ease-in-out infinite; }
        .hb2 { bottom: 40px; right: -20px; animation: float 4s ease-in-out 2s infinite; }
        @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

        /* ─── STATS STRIP ────────────────────────────── */
        .stats-strip {
            background: var(--bg-alt);
            border-bottom: 1px solid var(--border);
            padding: 36px 0;
        }
        .stats-row {
            display: grid;
            grid-template-columns: repeat(4,1fr);
            gap: 20px;
            text-align: center;
        }
        .stat-num {
            font-family: 'Syne', sans-serif;
            font-size: 2.3rem;
            font-weight: 800;
            color: var(--dark);
            line-height: 1;
        }
        .stat-num sup { color: var(--primary); font-size: 1.4rem; }
        .stat-lbl {
            font-size: .83rem;
            color: var(--muted);
            font-weight: 500;
            margin-top: 5px;
        }

        /* ─── SECTION HELPERS ────────────────────────── */
        section { padding: 100px 0; }

        /* Плавные переходы между светлыми секциями */
        /* bg-alt → bg (светло-голубой → белый) */
        .features,
        .team-section,
        .quiz {
            background: linear-gradient(to bottom, var(--bg-alt) 0px, var(--bg) 80px);
        }
        /* bg → bg-alt (белый → светло-голубой) */
        .photo-section {
            background: linear-gradient(to bottom, var(--bg) 0px, var(--bg-alt) 80px);
        }
        /* bg-alt → dark (плавный вход в тёмную секцию) */
        .programs {
            background: linear-gradient(to bottom, #e8f5f7 0px, var(--dark) 100px);
            position: relative;
            overflow: hidden;
        }

        .stag {
            display: inline-block;
            background: var(--primary-light);
            color: var(--primary);
            padding: 5px 14px;
            border-radius: 50px;
            font-size: .78rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .6px;
            margin-bottom: 14px;
        }

        .sh {
            font-family: 'Syne', sans-serif;
            font-size: clamp(1.8rem, 3vw, 2.7rem);
            font-weight: 800;
            color: var(--dark);
            letter-spacing: -.5px;
            line-height: 1.1;
            margin-bottom: 14px;
        }

        .sd {
            color: var(--muted);
            font-size: 1rem;
            max-width: 560px;
            line-height: 1.7;
        }

        .section-hc {
            text-align: center;
            margin-bottom: 64px;
        }
        .section-hc .sd { margin: 0 auto; }

        /* ─── FEATURES ───────────────────────────────── */
        .features { background: var(--bg); }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 24px;
        }

        .fc {
            background: var(--bg-alt);
            border: 1px solid var(--border);
            border-radius: var(--r);
            padding: 36px 28px;
            transition: var(--ease);
            position: relative;
            overflow: hidden;
        }
        .fc::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: var(--ease);
        }
        .fc:hover::after { transform: scaleX(1); }
        .fc:hover {
            background: var(--bg);
            box-shadow: var(--shadow-h);
            transform: translateY(-5px);
            border-color: transparent;
        }
        .fc-icon {
            width: 54px; height: 54px;
            background: var(--primary-light);
            border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 22px;
        }
        .fc h3 {
            font-family: 'Syne', sans-serif;
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 10px;
        }
        .fc p { color: var(--muted); font-size: .92rem; line-height: 1.7; }

        /* ─── PROGRAMS ───────────────────────────────── */
        .programs {
            background: var(--dark);
            position: relative;
            overflow: hidden;
        }
        .prg-bg {
            position: absolute; inset: 0;
            background: radial-gradient(ellipse at 70% 50%, rgba(135, 206, 235, .15) 0%, transparent 60%);
            pointer-events: none;
        }
        .programs .stag { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); }
        .programs .sh   { color: #fff; }
        .programs .sd   { color: rgba(255,255,255,.5); }

        .programs-grid {
            display: grid;
            grid-template-columns: repeat(2,1fr);
            gap: 24px;
            position: relative; z-index: 2;
        }

        .pc {
            background: rgba(255,255,255,.05);
            border: 1px solid rgba(255,255,255,.1);
            border-radius: var(--r);
            overflow: hidden;
            transition: var(--ease);
        }
        .pc:hover {
            background: rgba(255,255,255,.08);
            border-color: rgba(255,255,255,.2);
            transform: translateY(-4px);
        }
        .pc-top {
            padding: 26px 28px 0;
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 12px;
        }
        .pc-emoji { font-size: 2.6rem; line-height: 1; }
        .pc-age {
            background: rgba(255,255,255,.12);
            color: rgba(255,255,255,.75);
            padding: 5px 14px;
            border-radius: 50px;
            font-size: .78rem;
            font-weight: 700;
        }
        .pc-body { padding: 16px 28px 28px; }
        .pc-body h3 {
            font-family: 'Syne', sans-serif;
            font-size: 1.45rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 16px;
        }
        .pc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
        .pc-list li {
            display: flex; align-items: center; gap: 10px;
            font-size: .88rem;
            color: rgba(255,255,255,.58);
        }
        .pc-list li::before {
            content: '';
            width: 6px; height: 6px;
            background: var(--yellow);
            border-radius: 50%;
            flex-shrink: 0;
        }
        .pc-foot {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid rgba(255,255,255,.08);
            padding-top: 20px;
        }
        .pc-price-lbl { font-size: .73rem; color: rgba(255,255,255,.4); }
        .pc-price {
            font-family: 'Syne', sans-serif;
            font-size: 1.25rem;
            font-weight: 800;
            color: #fff;
        }

        .pc-club {
            border-color: rgba(255,201,51,.25);
            background: rgba(255,201,51,.04);
        }
        .pc-club .pc-age { background: rgba(255,201,51,.18); color: var(--yellow); }
        .pc-club .pc-body h3 { color: var(--yellow); }
        .pc-club .pc-price { color: var(--yellow); }

        /* ─── TESTIMONIALS ───────────────────────────── */
        .testimonials { background: var(--bg-alt); }




        /* ─── CTA / CONTACT ──────────────────────────── */
        .cta {
            background: linear-gradient(135deg, var(--primary) 0%, #113153 100%);
            position: relative;
            overflow: hidden;
        }
        .cta-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            pointer-events: none;
        }
        .cta-b1 { width: 420px; height: 420px; background: var(--accent); top: -110px; right: -110px; opacity: .28; }
        .cta-b2 { width: 320px; height: 320px; background: var(--yellow); bottom: -110px; left: 8%; opacity: .14; }

        .cta-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 80px;
            position: relative; z-index: 2;
        }

        .cta-text .stag { background: rgba(255,255,255,.15); color: rgba(255,255,255,.9); }
        .cta-text .sh { color: #fff; }
        .cta-text .sd { color: rgba(255,255,255,.65); margin-bottom: 32px; }

        .perks { display: flex; flex-direction: column; gap: 12px; }
        .perk  { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 600; }
        .perk-check {
            width: 22px; height: 22px;
            border-radius: 50%;
            background: rgba(255,255,255,.18);
            display: flex; align-items: center; justify-content: center;
            font-size: .72rem; color: #fff; flex-shrink: 0;
        }

        .cta-form {
            background: #fff;
            border-radius: 24px;
            padding: 40px;
        }
        .cta-form h3 {
            font-family: 'Syne', sans-serif;
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 6px;
        }
        .form-sub {
            color: var(--muted);
            font-size: .88rem;
            margin-bottom: 28px;
        }
        .fg { display: flex; flex-direction: column; gap: 12px; margin-bottom: 14px; }

        .fi {
            width: 100%;
            padding: 14px 18px;
            border: 1.5px solid var(--border);
            border-radius: var(--r-sm);
            font-family: 'Manrope', sans-serif;
            font-size: .93rem;
            color: var(--dark);
            outline: none;
            transition: var(--ease);
            background: var(--bg);
        }
        .fi:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(19, 183, 190, .15);
        }
        .fi::placeholder { color: var(--muted); }

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

        /* ─── MAP ───────────────────────────────────── */
        .map-section { background: var(--bg-alt); }

        .map-widget { margin-top: 0; }

        .map-card {
            display: grid;
            grid-template-columns: 300px 1fr;
            border-radius: 24px;
            overflow: hidden;
            border: 1.5px solid var(--border);
            box-shadow: var(--shadow-h);
        }

        .map-info {
            background: #fff;
            padding: 36px 32px;
            display: flex;
            flex-direction: column;
            gap: 24px;
            border-right: 1.5px solid var(--border);
        }

        .map-info-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }

        .map-icon {
            font-size: 1.3rem;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .map-label {
            font-size: .75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .6px;
            color: var(--muted);
            margin-bottom: 4px;
        }

        .map-value {
            font-size: .95rem;
            font-weight: 600;
            color: var(--dark);
            line-height: 1.4;
        }

        .map-frame-wrap {
            position: relative;
            min-height: 420px;
        }

        .map-frame-wrap iframe {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
        }

        @media (max-width: 900px) {
            .map-card { grid-template-columns: 1fr; }
            .map-info { border-right: none; border-bottom: 1.5px solid var(--border); }
            .map-frame-wrap { min-height: 300px; }
        }

        /* ─── FOOTER ─────────────────────────────────── */
        footer {
            background: var(--dark);
            color: rgba(255,255,255,.45);
            padding: 64px 0 32px;
        }
        .footer-top {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 56px;
        }
        .f-logo {
            font-family: 'Syne', sans-serif;
            font-size: 24px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 14px;
        }
        .f-tagline { font-size: .88rem; line-height: 1.65; margin-bottom: 24px; }
        .f-social { display: flex; gap: 10px; }
        .soc {
            width: 40px; height: 40px;
            border-radius: 10px;
            background: rgba(255,255,255,.07);
            display: flex; align-items: center; justify-content: center;
            font-size: 1.05rem;
            transition: var(--ease);
        }
        .soc:hover { background: var(--primary); }

        .fc-col h5 {
            font-family: 'Syne', sans-serif;
            font-size: .82rem;
            font-weight: 700;
            color: rgba(255,255,255,.7);
            letter-spacing: .5px;
            text-transform: uppercase;
            margin-bottom: 18px;
        }
        .fl { list-style: none; display: flex; flex-direction: column; gap: 9px; }
        .fl li, .fl a { font-size: .88rem; transition: color var(--ease); }
        .fl a:hover { color: rgba(255,255,255,.9); }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 28px;
            border-top: 1px solid rgba(255,255,255,.06);
            font-size: .83rem;
        }

        /* ─── QUIZ ───────────────────────────────────── */
        .quiz { position: relative; padding: 100px 0; background: var(--bg); }
        .quiz-container { max-width: 800px; margin: 0 auto; text-align: center; }
        .quiz-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--r);
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0,0,0,.03);
            text-align: left;
            position: relative;
            overflow: hidden;
            transition: var(--ease);
        }
        .q-progress {
            width: 100%; height: 6px; background: var(--bg-alt);
            border-radius: 10px; margin-bottom: 24px; overflow: hidden;
        }
        .q-bar {
            height: 100%; background: linear-gradient(90deg, var(--primary), var(--mint));
            width: 0%; transition: width 0.4s ease;
        }
        .q-text {
            font-family: 'Syne', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 24px;
            white-space: pre-wrap;
        }
        .q-options { display: flex; flex-direction: column; gap: 12px; }
        .q-opt {
            padding: 16px 20px;
            border: 2px solid var(--border);
            border-radius: var(--r-sm);
            cursor: pointer;
            transition: var(--ease);
            font-weight: 600;
            color: var(--body);
            background: var(--bg);
        }
        .q-opt:hover {
            border-color: var(--primary);
            background: var(--primary-light);
        }
        .q-opt.correct { background: #E8F5E9; border-color: #4CAF50; color: #2E7D32; }
        .q-opt.wrong { background: #FFEBEE; border-color: #F44336; color: #C62828; }
        
        .quiz-result { text-align: center; display: none; }
        .qr-emoji { font-size: 4rem; margin-bottom: 16px; line-height: 1; }
        .qr-title { font-family: 'Syne', sans-serif; font-size: 2rem; color: var(--dark); margin-bottom: 12px; }
        .qr-desc { color: var(--muted); margin-bottom: 24px; line-height: 1.6; }
        .qr-rec { padding: 20px; background: var(--primary-light); border-radius: var(--r-sm); color: var(--primary-dark); font-weight: 600; margin-bottom: 30px; text-align:left;}

        /* ─── FEATURES 5 CARDS ───────────────────────── */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        .fc.fc-featured { grid-column: 1 / -1; }
        .fc.fc-featured h3 { font-size: 1.4rem; }
        .fc.fc-featured p  { font-size: 1rem; max-width: 700px; }
        .fc-compare {
            margin-top: 18px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .fc-compare-item {
            background: rgba(19,183,190,.08);
            border: 1px solid rgba(19,183,190,.2);
            border-radius: 8px;
            padding: 8px 14px;
            font-size: .82rem;
            color: var(--body);
        }
        .fc-compare-item strong { color: var(--dark); }

        /* ─── EXAM PREP BLOCK ────────────────────────── */
        .exam-prep { background: var(--bg-alt); }
        .exam-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 56px;
            align-items: stretch;
        }
        .exam-tag {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(255,107,53,.12);
            color: var(--accent);
            padding: 5px 14px; border-radius: 50px;
            font-size: .78rem; font-weight: 700;
            text-transform: uppercase; letter-spacing: .6px;
            margin-bottom: 16px;
        }
        .exam-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
        .exam-list li {
            display: flex; align-items: flex-start; gap: 12px;
            font-size: .93rem; color: var(--body); line-height: 1.6;
        }
        .exam-list li::before {
            content: '✓';
            min-width: 22px; height: 22px;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: .72rem; font-weight: 800;
        }
        .exam-card {
            background: var(--dark);
            border-radius: var(--r);
            padding: 36px;
        }
        .exam-stat-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-bottom: 28px; }
        .exam-stat { text-align: center; padding: 16px; background: rgba(255,255,255,.05); border-radius: 12px; }
        .exam-stat .num { font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--primary); }
        .exam-stat .lbl { font-size: .78rem; color: rgba(255,255,255,.45); margin-top: 4px; }

        /* ─── SPEAKING CLUB STANDALONE ───────────────── */
        .club-section { background: #0d2640; border-top: 1px solid rgba(255,255,255,.07); position: relative; overflow: hidden; }
        .club-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
            position: relative; z-index: 2;
        }
        .club-price {
            font-family: 'Syne', sans-serif;
            font-size: 3.2rem; font-weight: 800;
            color: var(--yellow); line-height: 1;
            margin: 16px 0 6px;
        }
        .club-price-sub { font-size: .88rem; color: rgba(255,255,255,.45); }
        .club-card {
            background: rgba(255,201,51,.06);
            border: 1px solid rgba(255,201,51,.2);
            border-radius: var(--r);
            padding: 36px;
        }
        .club-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 24px 0 32px; }
        .club-features li {
            display: flex; align-items: center; gap: 12px;
            color: rgba(255,255,255,.75); font-size: .93rem;
        }
        .club-features li::before {
            content: '';
            width: 8px; height: 8px;
            background: var(--yellow);
            border-radius: 50%;
            flex-shrink: 0;
        }

        /* ─── TEAM SECTION ───────────────────────────── */
        .team-section { background: var(--bg); }
        .team-grid { grid-template-columns: repeat(3, 1fr); }

        /* ─── PHOTO PLACEHOLDER ──────────────────────── */
        .photo-section { background: var(--bg-alt); }
        .photo-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 16px; height: 440px; }
        .photo-ph {
            background: var(--bg);
            border: 2px dashed var(--border);
            border-radius: var(--r);
            display: flex; flex-direction: column;
            align-items: center; justify-content: center;
            gap: 10px; color: var(--muted);
            font-size: .83rem; text-align: center; padding: 24px;
        }
        .photo-ph .ph-icon { font-size: 2rem; opacity: .45; }
        .photo-ph.ph-main { grid-row: 1 / -1; }

        /* ─── FAQ ───────────────────────────────────────── */
        .faq { background: var(--bg-alt); }
        .faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
        .faq-item {
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: var(--r);
            overflow: hidden;
            transition: var(--ease);
        }
        .faq-item.open { box-shadow: var(--shadow-h); border-color: transparent; }
        .faq-q {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 22px 28px;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            font-family: 'Manrope', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: var(--dark);
        }
        .faq-chevron {
            width: 28px; height: 28px;
            border-radius: 50%;
            background: var(--primary-light);
            color: var(--primary);
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
            font-size: .85rem;
            transition: transform var(--ease);
        }
        .faq-item.open .faq-chevron { transform: rotate(180deg); }
        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height .35s ease, padding .35s ease;
            padding: 0 28px;
            color: var(--muted);
            font-size: .93rem;
            line-height: 1.75;
        }
        .faq-item.open .faq-a { max-height: 300px; padding: 0 28px 22px; }

        /* ─── RESULT BADGE ON REVIEWS ────────────────── */
        .tc-result {
            display: inline-flex; align-items: center; gap: 6px;
            background: var(--primary-light);
            color: var(--primary-dark);
            padding: 5px 12px; border-radius: 50px;
            font-size: .78rem; font-weight: 700;
            margin-bottom: 12px;
        }

        /* ─── PC POPULAR / EXAM BADGES ───────────────── */
        .pc-popular {
            background: var(--accent); color: #fff;
            padding: 4px 12px; border-radius: 50px;
            font-size: .72rem; font-weight: 700;
        }
        .pc-exam {
            background: rgba(255,107,53,.2); color: #FF9A6C;
            padding: 5px 14px; border-radius: 50px;
            font-size: .78rem; font-weight: 700;
        }

        /* ─── RESPONSIVE ─────────────────────────────── */
        @media (max-width: 1024px) {
            .hero-inner { grid-template-columns: 1fr; text-align: center; }
            .hero-sub    { margin: 0 auto 44px; }
            .hero-cta    { justify-content: center; }
            .hero-visual { display: none; }
            .stats-row   { grid-template-columns: repeat(2,1fr); }
            .footer-top  { grid-template-columns: 1fr 1fr; gap: 32px; }
            .exam-grid   { grid-template-columns: 1fr; }
            .club-inner  { grid-template-columns: 1fr; gap: 40px; }
            .exam-bottom-row { grid-template-columns: 1fr !important; }
        }

        /* ─── HAMBURGER ─────────────────────────────── */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 40px;
            height: 40px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
            z-index: 1100;
            flex-shrink: 0;
        }
        .hamburger span {
            display: block;
            height: 2px;
            background: #fff;
            border-radius: 2px;
            transition: var(--ease);
            transform-origin: center;
        }
        header.scrolled .hamburger span { background: var(--dark); }
        .hamburger { background: rgba(0,0,0,.25); border-radius: 8px; }
        .hamburger.open { opacity: 0; pointer-events: none; }

        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: var(--dark);
            z-index: 1050;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 80px 32px 40px;
            transform: translateX(100%);
            transition: transform .3s cubic-bezier(.4,0,.2,1);
        }
        .mobile-menu.open {
            transform: translateX(0);
        }
        .mobile-menu a {
            font-family: 'Syne', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: #fff;
            padding: 12px 0;
            width: 100%;
            text-align: center;
            border-bottom: 1px solid rgba(255,255,255,.08);
            transition: color var(--ease);
        }
        .mobile-menu a:last-child { border-bottom: none; }
        .mobile-menu a:hover { color: var(--primary); }
        .mm-close {
            position: absolute;
            top: 24px;
            right: 24px;
            background: none;
            border: none;
            color: rgba(255,255,255,.6);
            font-size: 1.6rem;
            cursor: pointer;
            padding: 8px;
            line-height: 1;
            transition: color var(--ease);
        }
        .mm-close:hover { color: #fff; }

        .mobile-menu .mm-cta {
            margin-top: 24px;
            border-bottom: none;
            background: var(--primary);
            border-radius: var(--r);
            padding: 16px 40px;
            font-size: 1rem;
            width: auto;
        }

        @media (max-width: 900px) {
            section { padding: 60px 0; }

            /* Nav */
            .nav-links        { display: none; }
            .hamburger        { display: flex; }
            header .btn       { display: none; }

            /* Layouts */
            .features-grid    { grid-template-columns: 1fr; }
            .fc.fc-featured   { grid-column: auto; }
            .programs-grid    { grid-template-columns: 1fr; }


            .cta-inner        { grid-template-columns: 1fr; gap: 40px; }
            .footer-top       { grid-template-columns: 1fr; }
            .footer-bottom    { flex-direction: column; gap: 10px; text-align: center; }
            .photo-grid       { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: auto; }
            .photo-ph.ph-main { grid-row: auto; }

            /* Hero */
            .hero             { padding-top: 80px; min-height: auto; padding-bottom: 60px; }
            .hero-cta         { flex-direction: column; align-items: center; }
            .hero-cta .btn    { width: 100%; justify-content: center; }

            /* Stats */
            .stats-row        { grid-template-columns: repeat(2, 1fr); gap: 16px; }

            /* Forms */
            .cta-form         { padding: 28px 20px; }
            .fg               { flex-direction: column; }

            /* Quiz */
            .quiz-container   { padding: 0; }
            .quiz-card        { padding: 28px 20px; }

            /* Sections with horizontal padding issues */
            .section-hc       { padding: 0 8px; }

            /* Team */
            .team-grid        { grid-template-columns: 1fr; }

            /* Exam */
            .exam-card        { padding: 24px 20px; }
            .exam-stat .num   { font-size: 1.4rem; }
            .exam-prep .btn   { width: 100%; justify-content: center; }

            /* Safari bottom bar */
            body              { padding-bottom: env(safe-area-inset-bottom); }
        }

        /* ─── FLOATING BUTTONS ───────────────────────────── */
        .fab-map,
        .fab-cta {
            position: fixed;
            right: 28px;
            z-index: 900;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #fff;
            border-radius: 50px;
            padding: 12px 20px 12px 14px;
            font-family: 'Manrope', sans-serif;
            font-weight: 700;
            font-size: .88rem;
            text-decoration: none;
            white-space: nowrap;
            transition: transform .25s ease, box-shadow .25s ease;
            overflow: hidden;
        }
        .fab-map {
            bottom: 28px;
            background: var(--primary);
            box-shadow: 0 8px 28px rgba(19,183,190,.45);
        }
        .fab-map:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 36px rgba(19,183,190,.55);
        }
        .fab-cta {
            bottom: 84px;
            background: var(--accent);
            box-shadow: 0 8px 28px rgba(255,107,53,.4);
        }
        .fab-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 36px rgba(255,107,53,.55);
        }
        .fab-map svg,
        .fab-cta svg { flex-shrink: 0; }
        .fab-label {
            max-width: 120px;
            overflow: hidden;
        }
        @media (max-width: 600px) {
            .fab-map,
            .fab-cta {
                width: 52px;
                height: 52px;
                padding: 0;
                border-radius: 50%;
                justify-content: center;
                right: 20px;
                gap: 0;
            }
            .fab-map  { bottom: calc(20px + env(safe-area-inset-bottom)); }
            .fab-cta  { bottom: calc(84px + env(safe-area-inset-bottom)); }
            .fab-label { display: none; }
        }

        .fab-dyn-container {
            display: none;
            position: fixed;
            left: 32px;
            bottom: calc(44px + env(safe-area-inset-bottom));
            z-index: 900;
            width: 52px;
            height: 52px;
        }
        @media (max-width: 600px) {
            .fab-dyn-container { display: block; }
        }
        .fab-dyn {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: white;
            opacity: 0; pointer-events: none;
            transform: scale(0.8) rotate(-15deg);
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 8px 24px rgba(0,0,0,0.2);
        }
        .fab-dyn.active {
            opacity: 1; pointer-events: auto;
            transform: scale(1) rotate(0deg);
        }
        .fab-dyn-tg { background-color: #2AABEE; }
        .fab-dyn-max { background-color: #1c182b; }

        @media (max-width: 480px) {
            section           { padding: 50px 0; }
            .container        { padding: 0 16px; }

            /* Stats → 1 column */
            .stats-row        { grid-template-columns: 1fr 1fr; }
            .stat-num         { font-size: 2rem; }

            /* Typography */
            .sh               { font-size: 1.6rem; }
            .hero h1          { font-size: 2.1rem; }

            /* Cards */
            .fc               { padding: 24px 20px; }
            .pc               { padding: 24px 20px; }
            .tc               { padding: 24px 20px; }
            .cta-form         { padding: 24px 16px; border-radius: 16px; }

            /* Exam */
            .exam-stat-row    { gap: 10px; }
            .exam-stat .num   { font-size: 1.2rem; }
            .exam-stat        { padding: 12px 8px; }

            /* Map */
            .map-frame-wrap   { min-height: 260px; }
            .map-info         { padding: 24px 20px; }
        }

        /* ─── LIGHTBOX ─── */
        .lightbox {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(11, 17, 32, 0.95); backdrop-filter: blur(8px);
            z-index: 99999; display: flex; align-items: center; justify-content: center;
            opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
        }
        .lightbox.active { opacity: 1; pointer-events: auto; }
        .lightbox img { max-width: 90%; max-height: 90vh; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.5); transform: scale(0.95); transition: transform 0.3s ease; }
        .lightbox.active img { transform: scale(1); }
        .lightbox-close { position: absolute; top: 30px; right: 40px; color: #fff; font-size: 40px; cursor: pointer; line-height: 1; transition: color 0.2s ease; z-index: 2; }
        .lightbox-close:hover { color: var(--primary); }
        .lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; font-size: 50px; cursor: pointer; padding: 20px; user-select: none; transition: color 0.2s ease, transform 0.2s ease; z-index: 2; }
        .lightbox-nav:hover { color: var(--primary); transform: translateY(-50%) scale(1.1); }
        .lightbox-prev { left: 20px; }
        .lightbox-next { right: 20px; }
        .lightbox-trigger { cursor: zoom-in; transition: transform 0.3s ease, filter 0.3s ease; }
        .lightbox-trigger:hover { transform: scale(1.02); filter: brightness(1.1); }