/* ============================================================
   MOHSIN SAYYED — Elite Personal Trainer
   Reimagined conversion-focused build. Vanilla CSS, no deps.
   ============================================================ */

:root {
    --bg: #0a0a0a;
    --bg-2: #101010;
    --bg-3: #171717;
    --line: rgba(255, 255, 255, 0.08);
    --line-soft: rgba(255, 255, 255, 0.05);
    --text: #ffffff;
    --muted: #8c8c8c;
    --muted-2: #b5b5b5;
    --accent: #EA4E1B;
    --accent-dark: #C23D14;
    --gold: #d4a853;
    --wa: #25d366;

    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --font-cond: 'Barlow Condensed', sans-serif;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --maxw: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Film-grain overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.028;
    pointer-events: none;
    z-index: 2000;
    mix-blend-mode: overlay;
}

/* ---------- Utilities ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(72px, 10vw, 130px) 0; position: relative; }

.eyebrow {
    font-family: var(--font-cond);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}
.eyebrow.center { justify-content: center; }
.eyebrow::before { content: ''; width: 34px; height: 2px; background: var(--accent); }
.eyebrow.center::after { content: ''; width: 34px; height: 2px; background: var(--accent); }

.h-title {
    font-family: var(--font-display);
    font-size: clamp(44px, 7vw, 78px);
    line-height: 0.95;
    letter-spacing: 2px;
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(48px, 6vw, 80px); }
.section-head p { color: var(--muted); font-size: 18px; margin-top: 18px; }
.accent { color: var(--accent); }
.gold { color: var(--gold); }

/* Buttons */
.btn {
    font-family: var(--font-cond);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 17px 34px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.25s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: transparent; color: var(--accent); }
.btn-ghost { background: transparent; color: var(--text); border-color: rgba(255,255,255,0.3); }
.btn-ghost:hover { border-color: var(--text); background: var(--text); color: var(--bg); }
.btn-wa { background: var(--wa); border-color: var(--wa); color: #fff; }
.btn-wa:hover { background: transparent; color: var(--wa); }
.btn svg { width: 18px; height: 18px; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* ============================================================ NAV */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 22px 0; transition: all 0.3s ease;
}
.nav.scrolled { background: rgba(10,10,10,0.92); backdrop-filter: blur(12px); padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.nav-logo { font-family: var(--font-display); font-size: 28px; letter-spacing: 3px; text-decoration: none; color: var(--text); }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
    font-family: var(--font-cond); font-size: 14px; font-weight: 500; letter-spacing: 2px;
    text-transform: uppercase; color: var(--muted); text-decoration: none; position: relative; transition: color 0.3s;
}
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--accent); transition: width 0.3s var(--ease); }
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { font-family: var(--font-cond); font-size: 14px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; background: var(--accent); color: #fff; padding: 11px 24px; text-decoration: none; transition: all 0.3s; }
.nav-cta:hover { background: #fff; color: var(--bg); }

.menu-btn { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 210; }
.menu-btn span { width: 28px; height: 2px; background: var(--text); transition: all 0.3s; }

.nav-panel, .nav-overlay { display: none; }

/* ============================================================ HERO */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 120px 0 80px; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 120%; object-fit: cover; object-position: center 25%; will-change: transform; }
@media (min-width: 761px) { .hero-bg img { object-position: 74% center; } }
.hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background:
        linear-gradient(90deg, rgba(10,10,10,0.96) 0%, rgba(10,10,10,0.82) 42%, rgba(10,10,10,0.45) 100%),
        linear-gradient(0deg, var(--bg) 2%, transparent 45%);
}
.hero-grid {
    position: absolute; inset: 0; z-index: 1; opacity: 0.5;
    background-image: linear-gradient(rgba(234,78,27,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(234,78,27,0.04) 1px, transparent 1px);
    background-size: 84px 84px;
    mask-image: radial-gradient(ellipse at 30% 40%, #000 0%, transparent 75%);
}
.hero-inner { position: relative; z-index: 2; max-width: 720px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.hero-badge {
    font-family: var(--font-cond); font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    color: var(--muted-2); border: 1px solid var(--line); border-radius: 999px; padding: 7px 15px; display: inline-flex; align-items: center; gap: 8px;
}
.hero-badge b { color: var(--gold); }
.hero-title { font-family: var(--font-display); font-size: clamp(56px, 10vw, 118px); line-height: 0.88; letter-spacing: 3px; margin-bottom: 26px; }
.hero-title .line2 { color: var(--accent); display: block; }
.hero-sub { font-size: clamp(17px, 2.4vw, 21px); font-weight: 300; color: var(--muted-2); max-width: 540px; margin-bottom: 20px; line-height: 1.65; }
.hero-urgency {
    display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-cond); font-size: 14px; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase; color: var(--text); margin-bottom: 34px;
}
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(234,78,27,0.6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(234,78,27,0.55); } 70% { box-shadow: 0 0 0 12px rgba(234,78,27,0); } 100% { box-shadow: 0 0 0 0 rgba(234,78,27,0); } }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.scroll-cue { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; font-family: var(--font-cond); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-cue span { width: 1px; height: 40px; background: linear-gradient(var(--accent), transparent); animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ============================================================ AUTHORITY COUNTERS */
.authority { background: var(--bg-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); padding: 54px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat-num { font-family: var(--font-display); font-size: clamp(44px, 6vw, 64px); line-height: 1; color: var(--text); }
.stat-num span { color: var(--accent); }
.stat-label { font-family: var(--font-cond); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-top: 10px; }

/* ============================================================ INTERACTIVE TRANSFORMATIONS */
.transformations { background: var(--bg); }
.ba-carousel { position: relative; display: flex; align-items: center; gap: 16px; }
.ba-viewport { overflow: hidden; flex: 1; }
.ba-track { display: flex; gap: 24px; transition: transform 0.5s var(--ease); will-change: transform; }
.ba-card { flex: 0 0 calc((100% - 48px) / 3); background: var(--bg-2); border: 1px solid var(--line-soft); overflow: hidden; }

.ba-slider { position: relative; aspect-ratio: 1; overflow: hidden; cursor: ew-resize; user-select: none; touch-action: pan-y; }
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; pointer-events: none; }
/* full image is the "after"; we clip the "before" copy which sits on top */
.ba-after { z-index: 1; }
.ba-before-wrap { position: absolute; inset: 0; z-index: 2; overflow: hidden; width: 50%; }
.ba-before-wrap img { width: initial; }
.ba-tag { position: absolute; top: 12px; z-index: 3; font-family: var(--font-cond); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 4px 10px; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); }
.ba-tag.before { left: 12px; }
.ba-tag.after { right: 12px; color: var(--accent); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: var(--accent); z-index: 4; transform: translateX(-50%); pointer-events: none; }
.ba-handle::after {
    content: '\2194'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 18px; box-shadow: 0 4px 14px rgba(0,0,0,0.5);
}
.ba-content { padding: 24px; }
.ba-stats { display: flex; justify-content: space-between; margin-bottom: 16px; }
.ba-stat { text-align: center; }
.ba-stat-v { font-family: var(--font-display); font-size: 30px; color: var(--accent); line-height: 1; }
.ba-stat-l { font-family: var(--font-cond); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.ba-quote { font-size: 14px; font-style: italic; color: var(--muted-2); padding-top: 16px; border-top: 1px solid var(--line); }

.car-arrow { flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line); background: var(--bg-2); color: var(--text); font-size: 26px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.car-arrow:hover { background: var(--accent); border-color: var(--accent); }
.car-arrow:disabled { opacity: 0.3; cursor: not-allowed; }
.car-arrow:disabled:hover { background: var(--bg-2); border-color: var(--line); }
.car-dots { display: flex; justify-content: center; gap: 10px; margin-top: 40px; }
.car-dot { width: 10px; height: 10px; border-radius: 50%; border: none; background: rgba(255,255,255,0.2); cursor: pointer; padding: 0; transition: all 0.3s; }
.car-dot.active { background: var(--accent); width: 28px; border-radius: 5px; }
.ba-hint { text-align: center; font-family: var(--font-cond); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-top: 22px; }

/* ============================================================ QUIZ */
.quiz { background: var(--bg-2); position: relative; }
.quiz::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(234,78,27,0.35), transparent); }
.quiz-shell { max-width: 720px; margin: 0 auto; background: var(--bg); border: 1px solid var(--line); padding: clamp(28px, 5vw, 52px); }
.quiz-progress { height: 4px; background: rgba(255,255,255,0.08); margin-bottom: 34px; overflow: hidden; }
.quiz-progress i { display: block; height: 100%; width: 20%; background: var(--accent); transition: width 0.4s var(--ease); }
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fadeUp 0.45s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.quiz-q { font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px); letter-spacing: 1px; margin-bottom: 8px; }
.quiz-help { color: var(--muted); margin-bottom: 28px; }
.quiz-options { display: grid; gap: 12px; }
.quiz-opt {
    text-align: left; background: var(--bg-3); border: 1px solid var(--line); color: var(--text);
    font-family: var(--font-cond); font-size: 17px; letter-spacing: 0.5px; padding: 18px 22px; cursor: pointer;
    display: flex; align-items: center; gap: 14px; transition: all 0.25s var(--ease);
}
.quiz-opt:hover, .quiz-opt.sel { border-color: var(--accent); background: rgba(234,78,27,0.08); transform: translateX(4px); }
.quiz-opt .dot { width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--muted); flex-shrink: 0; transition: all 0.2s; }
.quiz-opt.sel .dot, .quiz-opt:hover .dot { border-color: var(--accent); background: var(--accent); }
.quiz-nav { display: flex; justify-content: space-between; margin-top: 30px; }
.quiz-back { background: none; border: none; color: var(--muted); font-family: var(--font-cond); letter-spacing: 1px; text-transform: uppercase; cursor: pointer; font-size: 14px; }
.quiz-back:hover { color: var(--text); }
.quiz-back[hidden] { visibility: hidden; }

/* Quiz result */
.quiz-result { display: none; text-align: center; }
.quiz-result.show { display: block; animation: fadeUp 0.5s var(--ease); }
.qr-tag { font-family: var(--font-cond); font-size: 14px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.qr-plan { font-family: var(--font-display); font-size: clamp(34px, 5vw, 52px); letter-spacing: 1px; margin-bottom: 16px; }
.qr-desc { color: var(--muted-2); max-width: 440px; margin: 0 auto 30px; line-height: 1.7; }
.qr-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================ HOW IT WORKS */
.how { background: var(--bg); }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.how-step { background: var(--bg-2); padding: 46px 34px; border: 1px solid var(--line-soft); position: relative; overflow: hidden; }
.how-step::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--accent); }
.how-num { font-family: var(--font-display); font-size: 54px; line-height: 1; color: var(--accent); margin-bottom: 18px; }
.how-t { font-family: var(--font-display); font-size: 26px; letter-spacing: 1px; margin-bottom: 12px; }
.how-d { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* ============================================================ SERVICES */
.services { background: var(--bg-2); position: relative; }
.services::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(234,78,27,0.35), transparent); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc { background: var(--bg); padding: 42px 32px; border: 1px solid var(--line-soft); position: relative; overflow: hidden; transition: transform 0.4s var(--ease), border-color 0.4s; }
.svc::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.svc:hover { transform: translateY(-8px); border-color: rgba(234,78,27,0.3); }
.svc:hover::before { transform: scaleX(1); }
.svc-num { font-family: var(--font-display); font-size: 64px; color: rgba(255,255,255,0.04); position: absolute; top: 16px; right: 22px; line-height: 1; }
.svc-ico { width: 52px; height: 52px; background: rgba(234,78,27,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.svc-ico svg { width: 26px; height: 26px; stroke: var(--accent); fill: none; stroke-width: 2; }
.svc-t { font-family: var(--font-display); font-size: 26px; letter-spacing: 1px; margin-bottom: 12px; }
.svc-d { font-size: 15px; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.svc-cta { font-family: var(--font-display); font-size: 19px; letter-spacing: 1px; color: var(--accent); text-decoration: none; display: inline-block; transition: opacity 0.3s; }
.svc-cta:hover { opacity: 0.7; }

/* ============================================================ PRICING */
.pricing { background: var(--bg); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price { background: var(--bg-2); padding: 46px 34px; border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform 0.4s var(--ease), border-color 0.4s; }
.price:hover { transform: translateY(-8px); border-color: rgba(234,78,27,0.3); }
.price.featured { border-color: var(--accent); position: relative; }
.price-badge { position: absolute; top: 0; right: 0; background: var(--accent); color: #fff; font-family: var(--font-cond); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px; }
.price-tier { font-family: var(--font-cond); font-size: 15px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.price-name { font-family: var(--font-display); font-size: 32px; letter-spacing: 1px; margin-bottom: 18px; }
.price-amt { font-family: var(--font-display); font-size: 40px; color: var(--accent); line-height: 1; margin-bottom: 4px; }
.price-amt span { font-family: var(--font-body); font-size: 15px; color: var(--muted); letter-spacing: 0; }
.price-note { font-size: 13px; color: var(--muted); margin-bottom: 26px; }
.price-feat { list-style: none; margin-bottom: 30px; flex: 1; }
.price-feat li { font-size: 14px; color: var(--text); padding: 10px 0; border-bottom: 1px solid var(--line-soft); display: flex; align-items: center; gap: 12px; }
.price-feat li::before { content: ''; width: 6px; height: 6px; background: var(--accent); flex-shrink: 0; }
.price-cta { font-family: var(--font-cond); font-size: 15px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; text-align: center; padding: 16px; text-decoration: none; border: 2px solid var(--accent); color: var(--accent); transition: all 0.3s; }
.price.featured .price-cta { background: var(--accent); color: #fff; }
.price-cta:hover { background: var(--accent); color: #fff; }
.price.featured .price-cta:hover { background: transparent; color: var(--accent); }

/* ============================================================ ABOUT / STORY */
.about { background: var(--bg-2); }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center; }
.about-media { position: relative; }
.about-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border: 1px solid var(--line); }
.about-media::before { content: ''; position: absolute; top: -18px; right: -18px; width: 100%; height: 100%; border: 2px solid var(--accent); z-index: -1; }
.play-btn { position: absolute; bottom: 18px; left: 18px; display: inline-flex; align-items: center; gap: 12px; background: rgba(10,10,10,0.7); backdrop-filter: blur(6px); border: 1px solid var(--line); padding: 12px 18px; text-decoration: none; color: #fff; font-family: var(--font-cond); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; transition: all 0.3s; }
.play-btn:hover { border-color: var(--accent); }
.play-btn i { width: 34px; height: 34px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; }
.play-btn i::before { content: ''; border-left: 11px solid #fff; border-top: 7px solid transparent; border-bottom: 7px solid transparent; margin-left: 3px; }
.about-body p { font-size: 17px; color: var(--muted); margin-bottom: 20px; line-height: 1.8; }
.about-body p.lead { font-size: 22px; color: var(--text); font-weight: 300; }
.about-sign { font-family: var(--font-display); font-size: 26px; letter-spacing: 1px; color: var(--gold); margin-top: 8px; }

/* ============================================================ SOCIAL PROOF */
.social { background: var(--bg); }
.reviews-strip { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 20px 40px; margin-bottom: 64px; }
.rev-score { text-align: center; }
.rev-stars { color: var(--gold); font-size: 22px; letter-spacing: 3px; }
.rev-score b { font-family: var(--font-display); font-size: 40px; display: block; line-height: 1; margin-top: 6px; }
.rev-score span { font-family: var(--font-cond); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ig-card { position: relative; aspect-ratio: 1; overflow: hidden; border: 1px solid var(--line-soft); text-decoration: none; }
.ig-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.ig-card:hover img { transform: scale(1.06); }
.ig-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.5), transparent 55%); opacity: 0; transition: opacity 0.3s; }
.ig-card:hover::after { opacity: 1; }
.ig-tag { position: absolute; bottom: 14px; left: 14px; z-index: 2; color: #fff; font-family: var(--font-cond); font-size: 13px; letter-spacing: 1px; opacity: 0; transform: translateY(8px); transition: all 0.3s; display: flex; align-items: center; gap: 8px; }
.ig-card:hover .ig-tag { opacity: 1; transform: none; }
.ig-follow { text-align: center; margin-top: 40px; }

/* ============================================================ LEAD MAGNET */
.lead { background: var(--bg-2); position: relative; overflow: hidden; }
.lead::after { content: ''; position: absolute; top: -30%; right: -10%; width: 55%; height: 160%; background: radial-gradient(ellipse, rgba(234,78,27,0.1), transparent 68%); pointer-events: none; }
.lead-wrap { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.lead-body h2 { font-family: var(--font-display); font-size: clamp(36px, 5vw, 60px); line-height: 0.98; letter-spacing: 1px; margin: 14px 0 20px; }
.lead-body p { font-size: 18px; color: var(--muted-2); margin-bottom: 30px; max-width: 460px; }
.lead-list { list-style: none; margin-bottom: 34px; }
.lead-list li { display: flex; align-items: center; gap: 12px; padding: 8px 0; color: var(--text); font-size: 16px; }
.lead-list li::before { content: '\2713'; color: var(--accent); font-weight: 700; }
.lead-card { background: var(--bg); border: 1px solid var(--line); padding: 40px 34px; text-align: center; }
.lead-card .pdf-ico { width: 66px; height: 66px; margin: 0 auto 20px; background: rgba(234,78,27,0.12); display: flex; align-items: center; justify-content: center; }
.lead-card .pdf-ico svg { width: 32px; height: 32px; stroke: var(--accent); fill: none; stroke-width: 2; }
.lead-card h3 { font-family: var(--font-display); font-size: 28px; letter-spacing: 1px; margin-bottom: 8px; }
.lead-card p { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.lead-download { display: inline-block; margin-top: 16px; font-family: var(--font-cond); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.3s; }
.lead-download:hover { color: var(--accent); }

/* ============================================================ URGENCY / BOOKING */
.booking { background: var(--bg); }
.booking-card { background: linear-gradient(135deg, var(--bg-2), var(--bg-3)); border: 1px solid var(--line); padding: clamp(36px, 6vw, 66px); text-align: center; position: relative; overflow: hidden; }
.booking-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 0%, rgba(234,78,27,0.12), transparent 60%); }
.booking-card > * { position: relative; z-index: 2; }
.slots { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-cond); font-size: 14px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text); background: rgba(234,78,27,0.12); border: 1px solid rgba(234,78,27,0.3); padding: 9px 18px; border-radius: 999px; margin-bottom: 26px; }
.booking-card h2 { font-family: var(--font-display); font-size: clamp(38px, 6vw, 66px); line-height: 0.96; letter-spacing: 1px; margin-bottom: 18px; }
.booking-card p { color: var(--muted-2); font-size: 18px; max-width: 500px; margin: 0 auto 34px; }
.cohort { margin-top: 22px; font-family: var(--font-cond); font-size: 14px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.cohort b { color: var(--gold); }

/* ============================================================ FAQ */
.faq { background: var(--bg-2); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { font-family: var(--font-cond); font-size: 18px; font-weight: 600; letter-spacing: 1px; color: var(--text); padding: 26px 44px 26px 0; cursor: pointer; list-style: none; position: relative; transition: color 0.3s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-family: var(--font-display); font-size: 30px; color: var(--accent); transition: transform 0.3s; }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-a { font-size: 16px; color: var(--muted); line-height: 1.8; padding: 0 44px 26px 0; }
.faq-a a { color: var(--accent); }

/* ============================================================ CONTACT */
.contact { background: var(--bg); position: relative; }
.contact::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(234,78,27,0.35), transparent); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.contact-info h2 { font-family: var(--font-display); font-size: clamp(38px, 6vw, 60px); line-height: 0.96; letter-spacing: 1px; margin-bottom: 22px; }
.contact-info > p { font-size: 18px; color: var(--muted); margin-bottom: 42px; line-height: 1.7; }
.contact-methods { display: flex; flex-direction: column; gap: 18px; }
.c-method { display: flex; align-items: center; gap: 18px; padding: 22px; background: var(--bg-2); border: 1px solid var(--line); text-decoration: none; color: var(--text); transition: all 0.3s; }
.c-method:hover { border-color: var(--accent); transform: translateX(8px); }
.c-method .ico { width: 52px; height: 52px; background: rgba(234,78,27,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-method .ico svg { width: 26px; height: 26px; fill: var(--accent); }
.c-method .t small { display: block; font-family: var(--font-cond); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.c-method .t b { font-family: var(--font-cond); font-size: 18px; font-weight: 600; letter-spacing: 1px; }
.c-method .arrow { margin-left: auto; color: var(--accent); font-size: 22px; }
.form-wrap { background: var(--bg-2); padding: 46px; border: 1px solid var(--line); }
.form-wrap h3 { font-family: var(--font-display); font-size: 28px; letter-spacing: 1px; margin-bottom: 30px; }
.fg { margin-bottom: 22px; }
.fg label { font-family: var(--font-cond); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 8px; }
.fg input, .fg select, .fg textarea { width: 100%; padding: 15px; background: var(--bg); border: 1px solid var(--line); color: var(--text); font-family: var(--font-body); font-size: 16px; transition: border-color 0.3s; }
.fg input:focus, .fg select:focus, .fg textarea:focus { outline: none; border-color: var(--accent); }
.fg textarea { min-height: 110px; resize: vertical; }
.form-submit { width: 100%; font-family: var(--font-cond); font-size: 16px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; background: var(--accent); color: #fff; border: 2px solid var(--accent); padding: 18px; cursor: pointer; transition: all 0.3s; }
.form-submit:hover { background: transparent; color: var(--accent); }
.form-status { margin-top: 14px; font-family: var(--font-cond); font-size: 14px; letter-spacing: 1px; text-align: center; min-height: 18px; }
.form-status.ok { color: #4caf50; }

/* ---------- Lead-capture: optional label + privacy + mini forms ---------- */
.opt { color: var(--muted); font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 11px; }
.hp { position: absolute !important; left: -9999px !important; top: -9999px !important; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.privacy { font-size: 12px; color: var(--muted); margin-top: 12px; text-align: center; line-height: 1.5; }

.qr-form, .lead-form, .book-form { display: flex; flex-direction: column; gap: 10px; }
.qr-form { margin-top: 10px; }
.book-form { max-width: 460px; margin: 0 auto; }
.qr-ask { color: var(--muted-2); font-size: 14px; margin-bottom: 2px; }
.qr-form input, .lead-form input, .book-form input {
    width: 100%; padding: 14px 16px; background: var(--bg-3); border: 1px solid var(--line);
    color: var(--text); font-family: var(--font-body); font-size: 15px; transition: border-color 0.3s;
}
.book-form input { background: rgba(0, 0, 0, 0.4); }
.qr-form input::placeholder, .lead-form input::placeholder, .book-form input::placeholder { color: var(--muted); }
.qr-form input:focus, .lead-form input:focus, .book-form input:focus { outline: none; border-color: var(--accent); }
.qr-form .qr-cta { margin-top: 4px; }
.book-form .btn { margin-top: 4px; width: 100%; }

/* ============================================================ FOOTER */
.footer { background: var(--bg); padding: 60px 0 40px; border-top: 1px solid var(--line-soft); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 22px; }
.footer-logo { font-family: var(--font-display); font-size: 24px; letter-spacing: 2px; }
.footer-logo span { color: var(--accent); }
.footer-social { display: flex; gap: 14px; }
.footer-social a { width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line); color: var(--text); transition: all 0.3s; }
.footer-social a:hover { border-color: var(--accent); background: var(--accent); }
.footer-social svg { width: 19px; height: 19px; fill: currentColor; }
.footer-copy { width: 100%; text-align: center; font-size: 14px; color: var(--muted); margin-top: 38px; padding-top: 24px; border-top: 1px solid var(--line-soft); }

/* ============================================================ FLOATING + STICKY */
.wa-float { position: fixed; bottom: 24px; right: 24px; width: 58px; height: 58px; border-radius: 50%; background: var(--wa); display: flex; align-items: center; justify-content: center; z-index: 92; box-shadow: 0 8px 24px rgba(0,0,0,0.45); transition: transform 0.3s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }

.mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 95; background: rgba(10,10,10,0.96); backdrop-filter: blur(12px); border-top: 1px solid var(--line); padding: 10px 14px; gap: 10px; }
.mobile-bar a { flex: 1; text-align: center; font-family: var(--font-cond); font-size: 14px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 14px; text-decoration: none; }
.mobile-bar .mb-wa { background: var(--wa); color: #fff; }
.mobile-bar .mb-plan { background: var(--accent); color: #fff; }

/* ============================================================ RESPONSIVE */
@media (max-width: 1024px) {
    .about-grid, .contact-grid, .lead-wrap { grid-template-columns: 1fr; gap: 48px; }
    .about-media { max-width: 440px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
    .services-grid, .how-grid, .pricing-grid, .social-grid { grid-template-columns: repeat(2, 1fr); }
    .ba-card { flex: 0 0 calc((100% - 24px) / 2); }
}

@media (max-width: 760px) {
    .nav-links, .nav-cta { display: none; }
    .menu-btn { display: flex; }
    .nav-panel {
        display: none; position: fixed; top: 0; right: 0; bottom: 0; width: 80%; max-width: 320px;
        background: var(--bg-2); border-left: 1px solid var(--line); flex-direction: column; justify-content: center;
        gap: 30px; padding: 0 40px; z-index: 200; transform: translateX(100%); transition: transform 0.35s var(--ease); list-style: none;
    }
    .nav-panel.open { display: flex; transform: none; }
    .nav-panel a { font-family: var(--font-cond); font-size: 19px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--text); text-decoration: none; }
    .nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 150; }
    .nav-overlay.open { display: block; }
    .menu-btn.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-btn.open span:nth-child(2) { opacity: 0; }
    .menu-btn.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .hero { align-items: flex-start; padding-top: 118px; padding-bottom: 90px; min-height: auto; }
    .hero-bg img { object-position: 60% 20%; }
    .hero-bg::after { background: linear-gradient(0deg, var(--bg) 6%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.85) 100%); }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }
    .scroll-cue { display: none; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid, .how-grid, .pricing-grid { grid-template-columns: 1fr; }
    .social-grid { grid-template-columns: repeat(2, 1fr); }
    .ba-card { flex: 0 0 100%; }
    .car-arrow { display: none; }
    .price.featured { transform: none; }

    .footer-inner { flex-direction: column; text-align: center; }
    .form-wrap { padding: 32px 22px; }

    .mobile-bar { display: flex; }
    .wa-float { bottom: 84px; }
    body { padding-bottom: 66px; }
}


/* ============================================================ BRAND ADDITIONS (v2) */
.nav-logo, .footer-logo { display: inline-flex; align-items: center; }
.brand-mark { width: 26px; height: 30px; flex-shrink: 0; display: block; margin-right: 9px; }
.footer-logo .brand-mark { width: 24px; height: 28px; }

/* Before / After labels on composite transformation shots */
.ba-divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: rgba(234,78,27,0.9); transform: translateX(-50%); z-index: 3; pointer-events: none; }

/* Credentials strip */
.creds { background: var(--bg-2); border-bottom: 1px solid var(--line-soft); padding: clamp(52px, 7vw, 88px) 0; }
.creds-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.creds-media { position: relative; }
.creds-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 1px solid var(--line); }
.creds-media::before { content: ''; position: absolute; top: -16px; left: -16px; width: 100%; height: 100%; border: 2px solid var(--accent); z-index: -1; }
.creds-list { display: flex; flex-direction: column; gap: 24px; }
.cred { display: flex; gap: 20px; align-items: flex-start; }
.cred-ico { width: 48px; height: 48px; flex-shrink: 0; background: rgba(234,78,27,0.1); display: flex; align-items: center; justify-content: center; }
.cred-ico svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 2; }
.cred h4 { font-family: var(--font-display); font-size: 24px; letter-spacing: 1px; margin-bottom: 5px; }
.cred p { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* Testimonials */
.testi { background: var(--bg); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card { background: var(--bg-2); border: 1px solid var(--line-soft); padding: 36px 30px; display: flex; flex-direction: column; }
.testi-card .stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 18px; }
.testi-q { font-size: 16px; color: var(--muted-2); line-height: 1.75; font-style: italic; flex: 1; }
.testi-who { display: flex; align-items: center; gap: 14px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.testi-av { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 19px; color: #fff; flex-shrink: 0; letter-spacing: 1px; }
.testi-who b { font-family: var(--font-cond); font-size: 16px; letter-spacing: 0.5px; display: block; }
.testi-who span { font-size: 13px; color: var(--muted); }

/* Lead magnet cover image */
.lead-cover { width: 100%; max-width: 290px; margin: 0 auto 24px; border: 1px solid var(--line); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }

@media (max-width: 1024px) { .creds-grid { grid-template-columns: 1fr; gap: 40px; } .creds-media { max-width: 480px; } .testi-grid { grid-template-columns: 1fr; } }
