/* ════════════════════════════════════════════════
   VARIABLES & RESET
════════════════════════════════════════════════ */
:root {
    --gold:        #c8902a;
    --gold-bright: #f0b840;
    --gold-dark:   #7a5510;
    --gold-10:     rgba(200,144,42,0.10);
    --gold-20:     rgba(200,144,42,0.20);
    --gold-40:     rgba(200,144,42,0.40);
    --gold-glow:   rgba(200,144,42,0.30);
    --ink:         #040404;
    --panel:       #0c0c0c;
    --panel2:      #111111;
    --border:      rgba(200,144,42,0.14);
    --text:        #f2ede3;
    --muted:       #b0a080;
    --dim:         #60584a;
    --max:         1180px;
    --r:           16px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
    font-family: "Barlow", sans-serif;
    background: var(--ink);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }

/* grain overlay */
body::after {
    content: '';
    position: fixed; inset: 0; pointer-events: none; z-index: 9000;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    opacity: 0.55;
}

/* ════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════ */
.header {
    position: sticky; top: 0; z-index: 200;
    background: rgba(4,4,4,0.95);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(18px);
}
.header__inner {
    max-width: var(--max); margin: 0 auto;
    display: flex; align-items: center;
    padding: 0 28px; height: 80px; gap: 12px;
}
.brand {
    display: flex; align-items: center; gap: 13px;
    flex-shrink: 0; text-decoration: none;
}
.brand__logo {
    width: 50px; height: 50px; flex-shrink: 0;
    filter: drop-shadow(0 0 12px var(--gold-glow));
    transition: filter 0.3s;
}
.brand:hover .brand__logo { filter: drop-shadow(0 0 22px rgba(200,144,42,0.6)); }
.brand__text { line-height: 1.1; }
.brand__name {
    font-family: "Bebas Neue"; font-size: 1.65rem;
    letter-spacing: 0.1em; color: var(--text);
    font-weight: 700;
}
.brand__sub {
    font-family: "Barlow Condensed"; font-size: 0.68rem;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold); font-weight: 600;
}

nav { margin-left: auto; display: flex; align-items: center; gap: 2px; }
nav a {
    font-family: "Barlow Condensed"; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    font-size: 0.75rem; color: #9d8f79;
    padding: 10px 16px; border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    outline-offset: 2px;
}
nav a:focus-visible { outline: 2px solid var(--gold); }
nav a:hover { color: var(--gold); border-color: var(--border); background: var(--gold-10); }
.nav-cta {
    background: var(--gold) !important; color: #000 !important;
    border-radius: 999px !important; font-weight: 700 !important;
    padding: 10px 26px !important; margin-left: 12px;
    box-shadow: 0 0 22px var(--gold-glow);
    border: none !important;
    font-size: 0.75rem !important;
    transition: all 0.3s ease !important;
}
.nav-cta:hover { background: var(--gold-bright) !important; box-shadow: 0 0 38px rgba(200,144,42,0.7) !important; color: #000 !important; transform: translateY(-2px) !important; }

.nav-toggle {
    display: none; background: none; border: 0; cursor: pointer;
    flex-direction: column; gap: 5px; padding: 4px; margin-left: auto;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: 0.3s; }

/* Hide mobile nav by default */
nav.mobile { display: none; }

/* ════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
.hero {
    position: relative; overflow: hidden;
    min-height: 100svh; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
}

/* Rotating conic rays */
.hero-rays {
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent 0deg, rgba(200,144,42,0.055) 3deg, transparent 6deg,
        transparent 15deg, rgba(200,144,42,0.04) 18deg, transparent 21deg,
        transparent 30deg, rgba(200,144,42,0.07) 33deg, transparent 36deg,
        transparent 45deg, rgba(200,144,42,0.04) 48deg, transparent 51deg,
        transparent 60deg, rgba(200,144,42,0.055) 63deg, transparent 66deg,
        transparent 75deg, rgba(200,144,42,0.04) 78deg, transparent 81deg,
        transparent 90deg, rgba(200,144,42,0.06) 93deg, transparent 96deg,
        transparent 105deg, rgba(200,144,42,0.04) 108deg, transparent 111deg,
        transparent 120deg, rgba(200,144,42,0.055) 123deg, transparent 126deg,
        transparent 135deg, rgba(200,144,42,0.04) 138deg, transparent 141deg,
        transparent 150deg, rgba(200,144,42,0.07) 153deg, transparent 156deg,
        transparent 165deg, rgba(200,144,42,0.04) 168deg, transparent 171deg,
        transparent 180deg, rgba(200,144,42,0.055) 183deg, transparent 186deg,
        transparent 195deg, rgba(200,144,42,0.04) 198deg, transparent 201deg,
        transparent 210deg, rgba(200,144,42,0.06) 213deg, transparent 216deg,
        transparent 225deg, rgba(200,144,42,0.04) 228deg, transparent 231deg,
        transparent 240deg, rgba(200,144,42,0.055) 243deg, transparent 246deg,
        transparent 255deg, rgba(200,144,42,0.04) 258deg, transparent 261deg,
        transparent 270deg, rgba(200,144,42,0.07) 273deg, transparent 276deg,
        transparent 285deg, rgba(200,144,42,0.04) 288deg, transparent 291deg,
        transparent 300deg, rgba(200,144,42,0.055) 303deg, transparent 306deg,
        transparent 315deg, rgba(200,144,42,0.04) 318deg, transparent 321deg,
        transparent 330deg, rgba(200,144,42,0.06) 333deg, transparent 336deg,
        transparent 345deg, rgba(200,144,42,0.04) 348deg, transparent 351deg,
        transparent 360deg
    );
    animation: rays-spin 60s linear infinite;
}
@keyframes rays-spin { to { transform: rotate(360deg); } }

/* Central glow pulse */
.hero-glow {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(200,144,42,0.18) 0%, rgba(200,144,42,0.06) 40%, transparent 68%);
    animation: glow-beat 3.5s ease-in-out infinite;
    pointer-events: none; z-index: 1;
}
@keyframes glow-beat {
    0%, 100% { transform: translate(-50%,-50%) scale(0.96); opacity: 0.7; }
    50%       { transform: translate(-50%,-50%) scale(1.06); opacity: 1; }
}

/* ECG line across hero bottom */
.hero-ecg {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 80px; overflow: hidden; pointer-events: none;
}
.hero-ecg svg { width: 200%; height: 100%; animation: ecg-scroll 4s linear infinite; }
@keyframes ecg-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* big background text */
.hero-bg-word {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%);
    font-family: "Bebas Neue"; font-size: clamp(80px, 15vw, 200px);
    color: rgba(200,144,42,0.03); letter-spacing: 0.06em;
    white-space: nowrap; pointer-events: none; user-select: none;
}

.hero-content {
    position: relative; z-index: 10;
    text-align: center;
    display: flex; flex-direction: column; align-items: center;
    gap: 18px; padding: 3rem 1.5rem 7rem;
}

/* ── Logo circle ── */
.hero-emblem {
    position: relative;
    width: clamp(240px, 42vw, 420px);
    height: clamp(240px, 42vw, 420px);
    margin-bottom: 14px;
}
.hero-emblem__rings {
    position: absolute; inset: 0;
    animation: rings-breath 3.5s ease-in-out infinite;
}
@keyframes rings-breath {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50%       { transform: scale(1.03); opacity: 1; }
}
.hero-emblem__rings::before, .hero-emblem__rings::after {
    content: ''; position: absolute; border-radius: 50%; border: 1px solid;
}
.hero-emblem__rings::before {
    inset: -12px; border-color: rgba(200,144,42,0.25);
    animation: ring1 3.5s ease-in-out infinite;
}
.hero-emblem__rings::after {
    inset: -26px; border-color: rgba(200,144,42,0.12);
    animation: ring1 3.5s ease-in-out 0.8s infinite;
}
@keyframes ring1 {
    0%, 100% { opacity: 0.5; } 50% { opacity: 1; }
}
.hero-emblem__disc {
    position: absolute; inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 42% 38%, rgba(200,144,42,0.22), rgba(12,12,12,0.9) 65%);
    border: 2px solid var(--gold);
    box-shadow:
        0 0 60px var(--gold-glow),
        0 0 120px rgba(200,144,42,0.12),
        inset 0 0 50px rgba(200,144,42,0.08);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero-emblem__disc::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(140deg, rgba(200,144,42,0.18) 0%, transparent 55%);
}
.hero-emblem__img {
    width: 88%; height: 88%;
    object-fit: contain;
    filter: drop-shadow(0 0 18px rgba(200,144,42,0.7));
    position: relative; z-index: 1;
    animation: logo-float 4s ease-in-out infinite;
}
@keyframes logo-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-5px); }
}

/* Orbiting dot */
.hero-emblem__orbit {
    position: absolute; inset: -14px;
    border-radius: 50%;
    animation: orbit-spin 8s linear infinite;
}
.hero-emblem__orbit::before {
    content: ''; position: absolute;
    top: 8px; left: 50%; transform: translateX(-50%);
    width: 8px; height: 8px;
    background: var(--gold); border-radius: 50%;
    box-shadow: 0 0 10px var(--gold), 0 0 20px var(--gold-glow);
}
@keyframes orbit-spin { to { transform: rotate(360deg); } }

.hero-tag {
    font-family: "Barlow Condensed"; font-size: 0.88rem;
    letter-spacing: 0.35em; text-transform: uppercase;
    color: #d4af37; font-weight: 700;
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 6px;
}
.hero-tag::before, .hero-tag::after {
    content: ''; display: block;
    width: 36px; height: 1px; background: var(--gold); opacity: 0.55;
}

.hero-title {
    font-family: "Bebas Neue";
    font-size: clamp(3.6rem, 9vw, 7.5rem);
    line-height: 0.88; letter-spacing: 0.04em;
    text-transform: uppercase;
}
.hero-title em { font-style: normal; color: var(--gold); text-shadow: 0 0 50px var(--gold-glow); }

.hero-quote {
    color: #c9b89e; font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    max-width: 560px; font-style: italic; font-weight: 300; line-height: 1.75;
    letter-spacing: 0.3px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 6px; }

.btn {
    font-family: "Barlow Condensed"; font-weight: 700; font-size: 0.9rem;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 14px 32px; border-radius: 999px;
    border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    outline-offset: 2px;
}
.btn:focus-visible { outline: 2px solid var(--gold); }
.btn-gold {
    background: var(--gold); color: #000;
    box-shadow: 0 0 22px var(--gold-glow);
}
.btn-gold:hover { background: var(--gold-bright); box-shadow: 0 0 38px rgba(200,144,42,0.7); transform: translateY(-3px); }
.btn-outline {
    background: transparent; color: var(--text);
    border: 1.5px solid var(--gold-40);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-10); transform: translateY(-3px); }

/* Hero scroll indicator */
.hero-scroll {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 5px;
    color: var(--dim); font-family: "Barlow Condensed"; font-size: 0.65rem;
    letter-spacing: 0.22em; text-transform: uppercase;
}
.hero-scroll__line {
    width: 1px; height: 44px;
    background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
    animation: scroll-anim 2.2s ease-in-out infinite;
}
@keyframes scroll-anim {
    0%, 100% { opacity: 0.25; transform: scaleY(0.5) translateY(-20%); }
    50%       { opacity: 1; transform: scaleY(1) translateY(0); }
}

/* ════════════════════════════════════════════════
   PULSE BAR (stats)
════════════════════════════════════════════════ */
.pulse-bar {
    background: var(--panel);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.pulse-bar__inner {
    max-width: var(--max); margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr);
}
.pulse-stat {
    padding: 32px 24px; text-align: center;
    border-right: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative; overflow: hidden;
    cursor: pointer;
}
.pulse-stat:last-child { border-right: none; }
.pulse-stat:hover { background: var(--gold-10); }
.pulse-stat:hover::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px; background: var(--gold);
}
.pulse-stat__n {
    font-family: "Bebas Neue"; font-size: 2.8rem; line-height: 1;
    color: var(--gold); text-shadow: 0 0 18px var(--gold-glow);
    font-weight: 700;
}
.pulse-stat__l {
    font-family: "Barlow Condensed"; font-size: 0.72rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--dim); margin-top: 3px;
}

/* ════════════════════════════════════════════════
   SHARED SECTION LAYOUT
════════════════════════════════════════════════ */
.sec { padding: 96px 28px; max-width: var(--max); margin: 0 auto; }
.sec--full { max-width: none; padding-left: 0; padding-right: 0; }
.sec--full .sec-inner { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

.sec-label {
    font-family: "Barlow Condensed"; font-size: 0.75rem;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold); font-weight: 600;
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 12px;
}
.sec-label::before { content: ''; width: 24px; height: 2px; background: var(--gold); flex-shrink: 0; }

.sec-title {
    font-family: "Bebas Neue";
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    letter-spacing: 0.04em; line-height: 0.95;
    margin-bottom: 1rem;
}
.sec-title em { font-style: normal; color: var(--gold); }

.sec-lead { color: #c9b89e; max-width: 580px; font-weight: 300; font-size: 1.05rem; line-height: 1.75; }

/* ════════════════════════════════════════════════
   CLASSES — three panels
════════════════════════════════════════════════ */
.classes-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: var(--border);
    border-radius: var(--r); overflow: hidden;
    margin-top: 52px;
    border: 1px solid var(--border);
}
.class-card {
    background: var(--panel2);
    padding: 48px 36px;
    position: relative; overflow: hidden;
    transition: all 0.35s ease;
    border-radius: 8px;
}
.class-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(145deg, var(--gold-10), transparent 55%);
    opacity: 0; transition: opacity 0.35s;
}
.class-card:hover { background: #161616; transform: translateY(-4px); }
.class-card:hover::before { opacity: 1; }

.class-card__bg-num {
    position: absolute; top: 10px; right: 18px;
    font-family: "Bebas Neue"; font-size: 6rem; line-height: 1;
    color: rgba(200,144,42,0.06); user-select: none;
    transition: color 0.35s;
}
.class-card:hover .class-card__bg-num { color: rgba(200,144,42,0.12); }

.class-card__icon {
    width: 54px; height: 54px; border-radius: 14px; margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(200,144,42,0.22), rgba(200,144,42,0.06));
    border: 1px solid var(--gold-40);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
}
.class-card__name {
    font-family: "Oswald"; font-size: 1.45rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--text); margin-bottom: 12px;
}
.class-card__desc { color: #8b7d6b; font-size: 0.9rem; line-height: 1.75; margin-bottom: 22px; letter-spacing: 0.2px; }
.class-card__tags { display: flex; flex-wrap: wrap; gap: 7px; }
.ctag {
    font-family: "Barlow Condensed"; font-size: 0.7rem;
    letter-spacing: 0.14em; text-transform: uppercase;
    padding: 4px 10px; border-radius: 5px;
    border: 1px solid var(--border); color: var(--dim); font-weight: 600;
}
.ctag--hi { background: var(--gold-10); border-color: var(--gold-40); color: var(--gold); }

/* ════════════════════════════════════════════════
   WHY US — split layout
════════════════════════════════════════════════ */
.why-wrap {
    background: var(--panel);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.why-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 72px; align-items: center;
}
.why-list { display: flex; flex-direction: column; }
.why-row {
    display: flex; gap: 22px; align-items: flex-start;
    padding: 26px 0; border-bottom: 1px solid var(--border);
    transition: padding-left 0.3s;
}
.why-row:first-child { border-top: 1px solid var(--border); }
.why-row:hover { padding-left: 10px; }
.why-row__n {
    font-family: "Bebas Neue"; font-size: 2rem; line-height: 1;
    color: rgba(200,144,42,0.22); flex-shrink: 0; width: 44px;
    transition: color 0.3s;
}
.why-row:hover .why-row__n { color: var(--gold); }
.why-row__title {
    font-family: "Oswald"; font-size: 1.05rem; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--text); margin-bottom: 5px;
}
.why-row__desc { color: #8b7d6b; font-size: 0.9rem; line-height: 1.7; letter-spacing: 0.2px; }

/* Visual: concentric circles with logo */
.why-visual {
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.why-circles {
    position: relative; width: 320px; height: 320px;
}
.why-circles__ring {
    position: absolute; border-radius: 50%; border: 1px solid;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.why-circles__ring:nth-child(1) { width: 100%; height: 100%; border-color: var(--border); }
.why-circles__ring:nth-child(2) { width: 76%; height: 76%; border-color: rgba(200,144,42,0.12); }
.why-circles__ring:nth-child(3) {
    width: 52%; height: 52%;
    border-color: var(--gold-40);
    background: radial-gradient(circle, var(--gold-10), transparent);
    box-shadow: 0 0 40px var(--gold-glow);
    display: flex; align-items: center; justify-content: center;
}
.why-circles__logo {
    width: 60%; height: 60%; object-fit: contain;
    filter: drop-shadow(0 0 14px rgba(200,144,42,0.65));
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
}
/* two orbiting dots */
.why-orbit1 { position: absolute; inset: 0; animation: orbit-spin 10s linear infinite; }
.why-orbit2 { position: absolute; inset: 20px; animation: orbit-spin 16s linear infinite reverse; }
.why-orbit1::before, .why-orbit2::before {
    content: ''; position: absolute; top: 4px; left: 50%;
    transform: translateX(-50%); border-radius: 50%;
}
.why-orbit1::before { width: 9px; height: 9px; background: var(--gold); box-shadow: 0 0 10px var(--gold); }
.why-orbit2::before { width: 6px; height: 6px; background: rgba(200,144,42,0.5); top: 10px; }

/* ════════════════════════════════════════════════
   PLANS
════════════════════════════════════════════════ */
.plans-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 22px; margin-top: 52px;
}
.plan {
    background: var(--panel2); border: 1px solid var(--border);
    border-radius: var(--r); padding: 44px 32px; text-align: center;
    position: relative; overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.plan:hover {
    transform: translateY(-12px);
    border-color: var(--gold);
    box-shadow: 0 28px 72px rgba(0,0,0,0.6), 0 0 40px var(--gold-glow);
}
.plan--hot {
    border-color: var(--gold);
    background: linear-gradient(155deg, rgba(200,144,42,0.12), var(--panel2) 55%);
    box-shadow: 0 0 40px var(--gold-glow);
}
.plan--hot::before {
    content: 'POPULAR';
    position: absolute; top: 18px; right: -30px;
    background: var(--gold); color: #000;
    font-family: "Barlow Condensed"; font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.14em; padding: 5px 44px;
    transform: rotate(45deg);
}
.plan__eyebrow {
    font-family: "Barlow Condensed"; font-size: 0.7rem;
    letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 14px; display: block;
}
.plan__name {
    font-family: "Bebas Neue"; font-size: 2.6rem;
    letter-spacing: 0.06em; color: var(--text); margin-bottom: 12px;
    font-weight: 700;
}
.plan__desc { color: #8b7d6b; font-size: 0.9rem; line-height: 1.7; margin-bottom: 26px; letter-spacing: 0.2px; }
.plan__line {
    width: 40px; height: 2px; margin: 0 auto 26px;
    background: linear-gradient(90deg, var(--gold), transparent);
}
.plan--hot .plan__line { width: 70px; background: var(--gold); }
.plan__btn {
    display: block; width: 100%; padding: 12px;
    border-radius: 8px; font-family: "Barlow Condensed";
    font-weight: 700; font-size: 0.85rem; letter-spacing: 0.12em;
    text-transform: uppercase; text-decoration: none;
    border: 1px solid var(--border); color: var(--muted);
    transition: all 0.25s;
}
.plan--hot .plan__btn {
    background: var(--gold); color: #000; border-color: var(--gold);
}
.plan__btn:hover { border-color: var(--gold); color: var(--gold); }
.plan--hot .plan__btn:hover { background: var(--gold-bright); }

/* ════════════════════════════════════════════════
   COMPANY — mosaic cells
════════════════════════════════════════════════ */
.company-wrap {
    background: var(--panel);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.company-mosaic {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1px; background: var(--border);
    border-radius: var(--r); overflow: hidden;
    border: 1px solid var(--border);
    margin-top: 48px;
}
.company-cell {
    background: var(--panel2); padding: 40px 34px;
    transition: background 0.3s;
}
.company-cell:hover { background: #161616; }
.company-cell__eyebrow {
    font-family: "Barlow Condensed"; font-size: 0.68rem;
    letter-spacing: 0.26em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 18px;
    display: flex; align-items: center; gap: 10px;
}
.company-cell__eyebrow::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.company-cell h3 {
    font-family: "Oswald"; font-size: 1.15rem; font-weight: 600;
    letter-spacing: 0.05em; text-transform: uppercase;
    color: var(--text); margin-bottom: 14px;
}
.company-cell p, .company-cell li { color: #8b7d6b; font-size: 0.9rem; line-height: 1.85; letter-spacing: 0.2px; }
.company-cell ul { list-style: none; }
.company-cell a { color: var(--gold); font-weight: 600; }
.company-cell a:hover { color: var(--gold-bright); }

.social-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 16px; }
.social-chip {
    font-family: "Barlow Condensed"; font-size: 0.75rem;
    font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    border: 1px solid var(--border); color: var(--dim);
    padding: 7px 13px; border-radius: 6px;
    transition: all 0.22s;
}
.social-chip:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-10); }

/* ════════════════════════════════════════════════
   POLICIES
════════════════════════════════════════════════ */
.policies-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 22px; margin-top: 52px;
}
.policy {
    background: var(--panel2); border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    border-radius: var(--r); padding: 36px 30px;
    transition: transform 0.25s, box-shadow 0.25s;
}
.policy:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 20px var(--gold-glow); }
.policy__icon { font-size: 1.7rem; margin-bottom: 14px; display: block; }
.policy__title {
    font-family: "Oswald"; font-size: 1.1rem; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--text); margin-bottom: 10px;
}
.policy__text { color: #8b7d6b; font-size: 0.9rem; line-height: 1.8; letter-spacing: 0.2px; }
.policy__text a { color: var(--gold); }

/* ════════════════════════════════════════════════
   BOOKING
════════════════════════════════════════════════ */
.booking-wrap {
    background: linear-gradient(160deg, #0a0a0a, var(--ink));
    border-top: 1px solid var(--border);
}
.booking-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: start; margin-top: 52px;
}
.booking-cards { display: flex; flex-direction: column; gap: 14px; }
.booking-card {
    background: var(--panel2); border: 1px solid var(--border);
    border-radius: var(--r); padding: 28px 28px;
    display: flex; gap: 18px; align-items: flex-start;
    transition: border-color 0.25s, background 0.25s;
}
.booking-card:hover { border-color: var(--gold-40); background: #141414; }
.booking-card__icon {
    width: 46px; height: 46px; flex-shrink: 0;
    border-radius: 10px; background: var(--gold-10); border: 1px solid var(--gold-40);
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.booking-card__title {
    font-family: "Oswald"; font-size: 1rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--text); margin-bottom: 6px;
}
.booking-card__body { color: #8b7d6b; font-size: 0.9rem; line-height: 1.75; letter-spacing: 0.2px; }
.booking-card__body a { color: var(--gold); font-weight: 600; }
.booking-card__body a:hover { color: var(--gold-bright); }

.booking-cta {
    display: flex; flex-direction: column; justify-content: center;
    gap: 28px;
}
.booking-cta-box {
    background: linear-gradient(145deg, var(--gold-20), var(--gold-10));
    border: 1px solid var(--gold-40);
    border-radius: var(--r); padding: 44px 36px; text-align: center;
    box-shadow: 0 0 50px var(--gold-glow);
}
.booking-cta-box__label {
    font-family: "Barlow Condensed"; font-size: 0.72rem;
    letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 12px; display: block;
}
.booking-cta-box__title {
    font-family: "Bebas Neue"; font-size: 2.4rem;
    letter-spacing: 0.06em; color: var(--text);
    margin-bottom: 8px; line-height: 1;
}
.booking-cta-box__sub {
    color: var(--muted); font-size: 0.9rem; font-weight: 300;
    margin-bottom: 26px; font-style: italic;
}
.booking-cta-box__actions { display: flex; flex-direction: column; gap: 10px; }
.booking-cta-box__actions .btn { justify-content: center; width: 100%; }

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
footer {
    background: #030303;
    border-top: 1px solid var(--border);
    padding: 52px 28px 32px;
}
.footer-inner {
    max-width: var(--max); margin: 0 auto;
    display: grid; grid-template-columns: 1fr auto;
    gap: 40px; align-items: center;
    padding-bottom: 32px; border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand__logo { width: 44px; height: 44px; filter: drop-shadow(0 0 10px var(--gold-glow)); }
.footer-brand__name {
    font-family: "Bebas Neue"; font-size: 1.6rem;
    letter-spacing: 0.1em; color: var(--text); font-weight: 700;
    display: block; margin-bottom: 2px;
}
.footer-brand__sub {
    font-family: "Barlow Condensed"; font-size: 0.68rem;
    letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold);
    font-weight: 700; display: block;
}
.footer-links { display: flex; gap: 28px; align-items: center; }
.footer-links a {
    font-family: "Barlow Condensed"; font-size: 0.8rem;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--dim); font-weight: 600;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
    max-width: var(--max); margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 8px;
    font-family: "Barlow Condensed"; font-size: 0.78rem;
    letter-spacing: 0.1em; color: var(--dim);
}
.footer-bottom a { color: var(--gold); }

/* ════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media (max-width: 960px) {
    nav.desktop { display: none; }
    .nav-toggle { display: flex; }
    .header__inner { height: 72px; padding: 0 20px; }
    .brand__name { font-size: 1.5rem; }
    
    nav.mobile {
        position: fixed; inset: 72px 12px auto 12px;
        background: rgba(8,8,8,0.98); backdrop-filter: blur(20px);
        flex-direction: column; padding: 20px;
        border: 1px solid var(--gold-40); border-radius: 14px;
        transform: translateY(-130%); opacity: 0; pointer-events: none;
        transition: 0.35s cubic-bezier(0.4,0,0.2,1);
        display: flex; z-index: 150;
    }
    nav.mobile.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
    nav.mobile a { text-align: center; width: 100%; padding: 14px 12px; font-size: 0.9rem; letter-spacing: 0.05em; }
    nav.mobile .nav-cta { margin: 12px 0 0 !important; padding: 10px 24px !important; border-radius: 999px !important; font-size: 0.75rem !important; }
    
    .hero-quote { font-size: clamp(0.9rem, 4.5vw, 1.05rem); line-height: 1.7; }
    .hero-tag { font-size: 0.85rem; margin-bottom: 8px; }
    
    .sec { padding: 72px 20px; }
    .sec__title { font-size: clamp(2.1rem, 7.5vw, 2.8rem); margin-bottom: 48px; }
    .sec__subtitle { font-size: 1rem; margin-bottom: 32px; }
    
    .class-card { padding: 24px; border-radius: 8px; }
    .class-card h4 { font-size: 1.3rem; margin-bottom: 10px; }
    .class-card p { font-size: 0.88rem; line-height: 1.7; }
    
    .pulse-bar__inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .pulse-stat-item { padding: 20px; }
    .pulse-stat-item strong { font-size: 2.4rem; }
    
    .classes-grid { grid-template-columns: 1fr; gap: 20px; }
    
    .why-grid { grid-template-columns: 1fr; gap: 40px; }
    .why-visual { display: none; }
    .why-row { gap: 14px; margin-bottom: 16px; }
    .why-title { font-size: 1.1rem; }
    .why-text { font-size: 0.9rem; }
    
    .plans-grid { grid-template-columns: 1fr; gap: 18px; }
    .plan { padding: 28px; border-radius: 10px; }
    .plan-name { font-size: 2rem; margin-bottom: 12px; }
    .plan-price { font-size: 0.95rem; }
    .plan-list li { font-size: 0.85rem; padding: 8px 0; }
    
    .company-mosaic { grid-template-columns: 1fr; gap: 16px; }
    .company-cell { padding: 18px; }
    .company-cell h3 { font-size: 1.05rem; }
    .company-cell p { font-size: 0.85rem; }
    
    .policies-grid { grid-template-columns: 1fr; gap: 14px; }
    .policy { padding: 16px; border-radius: 8px; }
    .policy-title { font-size: 0.95rem; }
    .policy-text { font-size: 0.8rem; line-height: 1.65; }
    
    .booking-layout { grid-template-columns: 1fr; gap: 36px; }
    .booking-card { padding: 24px; }
    
    .footer-inner { grid-template-columns: 1fr; }
    .footer-links { flex-wrap: wrap; gap: 16px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
    .header__inner { height: 64px; padding: 0 16px; }
    .brand__name { font-size: 1.35rem; letter-spacing: 0.08em; }
    .nav-toggle { width: 36px; height: 36px; }
    
    .hero-content { padding: 2rem 1.5rem 5rem; gap: 20px; }
    .hero-quote { font-size: clamp(0.82rem, 4.2vw, 0.95rem); line-height: 1.65; }
    .hero-tag { font-size: 0.75rem; gap: 8px; margin-bottom: 0; }
    
    .sec { padding: 52px 16px; }
    .sec__title { font-size: clamp(1.85rem, 6vw, 2.2rem); margin-bottom: 36px; }
    .sec__subtitle { font-size: 0.92rem; margin-bottom: 24px; }
    
    .class-card { padding: 18px; border-radius: 6px; }
    .class-card h4 { font-size: 1.1rem; margin-bottom: 8px; }
    .class-card p { font-size: 0.82rem; line-height: 1.65; }
    
    .pulse-bar__inner { grid-template-columns: 1fr; gap: 14px; }
    .pulse-stat-item { padding: 16px; }
    .pulse-stat-item strong { font-size: 2.2rem; }
    
    .why-row { gap: 8px; margin-bottom: 12px; }
    .why-title { font-size: 0.95rem; font-weight: 700; }
    .why-text { font-size: 0.8rem; line-height: 1.6; }
    
    .plan { padding: 20px; border-radius: 8px; margin-bottom: 14px; }
    .plan-name { font-size: 1.5rem; margin-bottom: 8px; }
    .plan-price { font-size: 0.85rem; margin-bottom: 14px; }
    .plan-list li { font-size: 0.78rem; padding: 6px 0; }
    
    .company-cell { padding: 14px; }
    .company-cell h3 { font-size: 0.95rem; }
    .company-cell p { font-size: 0.78rem; }
    
    .policy { padding: 12px; border-radius: 6px; margin-bottom: 10px; }
    .policy-title { font-size: 0.85rem; font-weight: 700; }
    .policy-text { font-size: 0.75rem; line-height: 1.55; }
    
    .booking-card { padding: 18px; }
    .btn { padding: 12px 20px; font-size: 0.8rem; }
    
    .footer { padding: 28px 16px; }
    .footer-inner { gap: 20px; padding-bottom: 20px; }
    .footer-brand__logo { width: 36px; height: 36px; }
    .footer-brand__name { font-size: 1.2rem; }
    .footer-links { display: none; }
    .footer-bottom { font-size: 0.7rem; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
