:root {
  --red: #D41111;
  --red-dim: #a00d0d;
  --black: #0b0b0b;
  --off-black: #141414;
  --dark-gray: #1c1c1c;
  --mid-gray: #2a2a2a;
  --light-gray: #888;
  --white: #f5f5f5;
  --display: 'Bebas Neue', sans-serif;
  --body: 'DM Sans', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

/* NAV */
/* Class-scoped, not a bare `nav` selector: the side menu contains a <nav> too. */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
  background: rgba(11,11,11,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: padding 0.3s;
}
/* Vertical-only shrink, so each breakpoint keeps its own horizontal padding. */
.navbar.scrolled { padding-top: 12px; padding-bottom: 12px; }
.nav-logo {
  font-family: var(--display);
  font-size: 28px; letter-spacing: 2px;
  color: var(--white); text-decoration: none;
}
.nav-logo span { color: var(--red); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 22px; border-radius: 2px;
  font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
  font-weight: 600; text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--red-dim) !important; }

/* HAMBURGER */
.nav-burger {
  width: 44px; height: 44px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
  background: none; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px; cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.nav-burger:hover { border-color: rgba(255,255,255,0.35); }
.nav-burger span {
  display: block; width: 20px; height: 2px;
  background: var(--white); border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* SIDE MENU */
.menu-overlay {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}
.menu-overlay.open { opacity: 1; visibility: visible; }
.side-menu {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 200;
  width: min(440px, 100%);
  background: var(--off-black);
  border-left: 1px solid rgba(255,255,255,0.08);
  padding: 24px 40px 40px;
  display: flex; flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.side-menu.open { transform: translateX(0); }
.side-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 24px; margin-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.side-menu-title {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--red); font-weight: 600;
}
.side-menu-close {
  width: 36px; height: 36px;
  background: none; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%; cursor: pointer;
  color: rgba(245,245,245,0.5); font-size: 22px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.side-menu-close:hover { border-color: var(--red); color: var(--white); }
.side-menu-nav { display: flex; flex-direction: column; }
.side-menu-nav a {
  display: flex; align-items: baseline; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: var(--display);
  font-size: 34px; letter-spacing: 1px; line-height: 1;
  color: rgba(245,245,245,0.75); text-decoration: none;
  transition: color 0.2s, padding-left 0.25s;
}
.side-menu-nav a:hover { color: var(--white); padding-left: 8px; }
.side-menu-nav a .side-menu-num {
  font-family: var(--body);
  font-size: 11px; font-weight: 600; letter-spacing: 1px;
  color: var(--red);
}
.side-menu-nav a.side-menu-cta {
  margin-top: 28px; border-bottom: none;
  background: var(--red); color: var(--white);
  justify-content: center; padding: 20px;
  border-radius: 2px;
  transition: background 0.2s;
}
.side-menu-nav a.side-menu-cta:hover { background: var(--red-dim); padding-left: 20px; }
.side-menu-footer {
  margin-top: auto; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; gap: 20px; align-items: flex-start;
}
/* Roomier tap target than the old navbar instance had. */
.side-menu-footer .lang-btn { padding: 9px 18px; font-size: 12px; }
.side-menu-note { font-size: 12px; color: rgba(245,245,245,0.3); line-height: 1.7; }

/* LANG SWITCH */
.lang-switch {
  display: flex; align-items: center;
  background: var(--dark-gray);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}
.lang-btn {
  padding: 7px 12px;
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase;
  background: none; border: none; cursor: pointer;
  color: rgba(245,245,245,0.4);
  font-family: var(--body);
  transition: background 0.2s, color 0.2s;
}
.lang-btn.active {
  background: var(--red);
  color: var(--white);
}
.lang-btn:hover:not(.active) { color: var(--white); }

/* UTILS */
section { position: relative; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section-tag {
  display: inline-block;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--red); font-weight: 600;
  border-left: 2px solid var(--red);
  padding-left: 12px;
  margin-bottom: 20px;
}
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--red); color: var(--white);
  font-family: var(--body); font-size: 14px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; padding: 18px 40px;
  border: none; cursor: pointer; border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--red-dim); transform: translateY(-1px); }
.btn-outline {
  display: inline-block; background: transparent; color: var(--white);
  font-family: var(--body); font-size: 14px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; padding: 17px 40px;
  border: 1.5px solid rgba(245,245,245,0.3);
  cursor: pointer; border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--white); }

/* IMAGE PLACEHOLDER */
.img-placeholder {
  background: var(--mid-gray);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  color: var(--light-gray);
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  font-family: monospace; text-align: center; padding: 20px;
  position: relative; overflow: hidden;
}
.img-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.02) 10px, rgba(255,255,255,0.02) 20px);
}
.img-placeholder-icon {
  width: 40px; height: 40px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; position: relative;
}

/* HERO */
#hero {
  min-height: 100vh;
  padding: 140px 0 80px;
  display: flex; align-items: center;
  background: var(--black); overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,17,17,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.hero-eyebrow {
  font-size: 12px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--red); font-weight: 600; margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before { content: ''; width: 40px; height: 1.5px; background: var(--red); }
.hero-headline {
  font-family: var(--display);
  font-size: clamp(52px, 6vw, 86px);
  line-height: 0.95; letter-spacing: 1px;
  color: var(--white); margin-bottom: 28px;
}
/* Accented words inside headlines (previously inline styles in the markup). */
.hero-headline em,
.quiz-headline em,
.vsl-headline em,
.testimonials-headline em,
.program-headline em,
.faq-left-headline em,
.final-cta-headline em { font-style: normal; color: var(--red); }
.hero-sub {
  font-size: 16px; line-height: 1.7;
  color: rgba(245,245,245,0.6);
  max-width: 440px; margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero-trust {
  display: flex; align-items: center; gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.trust-avatars { display: flex; }
.trust-avatars span {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--mid-gray); border: 2px solid var(--black);
  margin-right: -10px; display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-family: monospace; color: var(--light-gray);
}
.trust-text { font-size: 13px; color: rgba(245,245,245,0.55); }
.trust-text strong { color: var(--white); }

/* HERO PORTRAIT */
.hero-visuals { display: flex; flex-direction: column; gap: 16px; }
.hero-portrait { position: relative; }
.hero-portrait-img {
  display: block; width: 100%; height: auto;
  /* hero-cut.webp is hero.JPG with the studio backdrop keyed out, so it needs no
     edge feathering — it's transparent right to the frame. 2:3 matches the
     source exactly, so nothing is cropped. */
  aspect-ratio: 2 / 3;
  object-fit: contain; object-position: bottom center;
}
.hero-portrait-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(11,11,11,0.88);
  backdrop-filter: blur(8px);
  border-left: 3px solid var(--red);
  padding: 12px 16px;
  border-radius: 0 2px 2px 0;
}
.hero-portrait-badge strong {
  display: block; font-family: var(--display);
  font-size: 20px; letter-spacing: 1px; color: var(--white);
  line-height: 1;
}
.hero-portrait-badge span {
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(245,245,245,0.5); display: block; margin-top: 2px;
}

/* STAT STRIP */
.stat-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--dark-gray);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 2px; overflow: hidden;
}
.stat-item {
  padding: 20px 16px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--display);
  font-size: 36px; letter-spacing: 1px;
  color: var(--red); line-height: 1; display: block;
}
.stat-label {
  font-size: 11px; letter-spacing: 1px;
  color: rgba(245,245,245,0.45); text-transform: uppercase;
  display: block; margin-top: 4px;
}

/* QUIZ */
#quiz {
  padding: 120px 0; background: var(--off-black);
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
/* Photo backdrop: zoomed to fill, held far back so the copy stays readable.
   grey-bg.jpg is a 1920px web copy of the 6000px master images/grey.JPG. */
#quiz::before {
  content: '';
  position: absolute; inset: 0;
  background: url('images/grey-bg.jpg') center center / cover no-repeat;
  opacity: 0.12;
  pointer-events: none;
}
#quiz .container { position: relative; z-index: 1; }
.quiz-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.quiz-headline { font-family: var(--display); font-size: clamp(40px, 4.5vw, 66px); line-height: 0.95; letter-spacing: 1px; margin-bottom: 20px; }
.quiz-sub { font-size: 16px; line-height: 1.7; color: rgba(245,245,245,0.55); margin-bottom: 36px; }
.quiz-points { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.quiz-points li { display: flex; align-items: center; gap: 14px; font-size: 15px; color: rgba(245,245,245,0.75); }
.quiz-points li::before { content: ''; width: 6px; height: 6px; background: var(--red); flex-shrink: 0; }
.quiz-widget { background: var(--dark-gray); border: 1px solid rgba(255,255,255,0.08); border-radius: 4px; overflow: hidden; }
.quiz-widget-header { background: var(--red); padding: 20px 28px; font-family: var(--display); font-size: 22px; letter-spacing: 1px; }
.quiz-widget-body { padding: 28px; }
.quiz-q { font-size: 15px; font-weight: 500; color: var(--white); margin-bottom: 16px; }
.quiz-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.quiz-option {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; background: var(--mid-gray);
  border: 1.5px solid transparent; border-radius: 2px;
  cursor: pointer; font-size: 14px; color: rgba(245,245,245,0.75);
  transition: border-color 0.2s, background 0.2s; user-select: none;
}
.quiz-option:hover { border-color: var(--red); background: rgba(212,17,17,0.08); }
.quiz-option.selected { border-color: var(--red); background: rgba(212,17,17,0.12); color: var(--white); }
.quiz-option-dot {
  width: 16px; height: 16px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3); flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.quiz-option.selected .quiz-option-dot { background: var(--red); border-color: var(--red); }
.quiz-progress { height: 3px; background: var(--mid-gray); border-radius: 2px; margin-bottom: 20px; overflow: hidden; }
.quiz-progress-bar { height: 100%; background: var(--red); border-radius: 2px; transition: width 0.4s ease; }
.quiz-nav { display: flex; justify-content: space-between; align-items: center; }
.quiz-step-text { font-size: 12px; color: var(--light-gray); letter-spacing: 1px; }
.quiz-email-step { display: none; flex-direction: column; gap: 16px; }
.quiz-email-step.active { display: flex; }
.quiz-email-step h3 { font-family: var(--display); font-size: 26px; letter-spacing: 1px; line-height: 1.2; }
.quiz-email-step p { font-size: 14px; color: rgba(245,245,245,0.55); }
.quiz-input {
  background: var(--mid-gray); border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 2px; padding: 14px 16px; color: var(--white);
  font-family: var(--body); font-size: 15px; outline: none;
  transition: border-color 0.2s; width: 100%;
}
.quiz-input:focus { border-color: var(--red); }
.quiz-input::placeholder { color: rgba(255,255,255,0.3); }
.quiz-next-btn { padding: 12px 28px; font-size: 13px; }
.quiz-submit-btn { width: 100%; }

/* VSL */
#vsl { padding: 120px 0; background: var(--black); text-align: center; }
.vsl-headline { font-family: var(--display); font-size: clamp(40px, 5vw, 72px); line-height: 0.95; letter-spacing: 1px; margin-bottom: 20px; max-width: 700px; margin-left: auto; margin-right: auto; }
.vsl-sub { font-size: 16px; color: rgba(245,245,245,0.5); max-width: 500px; margin: 0 auto 48px; line-height: 1.7; }
.vsl-video-wrap { max-width: 820px; margin: 0 auto; position: relative; }
.vsl-video { width: 100%; aspect-ratio: 16/9; border-radius: 4px; border: 1px solid rgba(255,255,255,0.08); position: relative; overflow: hidden; }
.vsl-video .img-placeholder { width: 100%; height: 100%; position: absolute; inset: 0; }
.vsl-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px; background: var(--red);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2; transition: transform 0.2s;
  animation: pulse 2.5s infinite;
}
.vsl-play-btn:hover { transform: translate(-50%,-50%) scale(1.08); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(212,17,17,0.4); }
  70% { box-shadow: 0 0 0 20px rgba(212,17,17,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,17,17,0); }
}
.vsl-play-icon { width: 0; height: 0; border-top: 14px solid transparent; border-bottom: 14px solid transparent; border-left: 22px solid white; margin-left: 5px; }
.vsl-bullets { display: flex; justify-content: center; gap: 48px; margin-top: 48px; flex-wrap: wrap; }
.vsl-bullet { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(245,245,245,0.6); }
.vsl-bullet-dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; flex-shrink: 0; }

/* Centered variant of .section-tag (was inline on VSL / testimonials / CTA) */
.section-tag-center {
  display: block; text-align: center;
  padding-left: 0; border-left: none;
  border-bottom: 2px solid var(--red);
  padding-bottom: 8px; width: fit-content;
  margin: 0 auto 20px;
}

/* PROGRAM */
/* overflow clips the bleed: 100vw counts the scrollbar, so the negative margin
   overshoots the left edge by a few px rather than falling short. */
#program { padding: 120px 0; background: var(--off-black); border-top: 1px solid rgba(255,255,255,0.06); overflow: hidden; }
.program-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
/* Overrides the grid's `align-items: start` so the plate matches the pillar
   column's height instead of floating above dead space. The plate is taken out
   of flow so the copy column alone sizes the row — left in flow, `height:100%`
   resolves against an indefinite parent and the photo's own 2:3 drives the row. */
.program-visual { align-self: stretch; position: relative; min-height: 460px; }
.program-img {
  position: absolute; inset: 0;
  overflow: hidden;
  /* Walk back the container's centring gutter + its 48px padding to reach the
     screen edge. max() keeps it correct below the 1200px container width. */
  margin-left: calc(-1 * (max((100vw - 1200px) / 2, 0px) + 48px));
  /* Soften only the inner edge so the plate dissolves toward the copy. */
  -webkit-mask-image: linear-gradient(to right, #000 82%, transparent 100%);
          mask-image: linear-gradient(to right, #000 82%, transparent 100%);
}
.program-img-photo {
  display: block; width: 100%; height: 100%;
  /* Biased above centre so the wider crop at large viewports keeps his head. */
  object-fit: cover; object-position: center 28%;
}
.program-headline { font-family: var(--display); font-size: clamp(38px, 4vw, 60px); line-height: 0.95; letter-spacing: 1px; margin-bottom: 20px; }
.program-desc { font-size: 15px; line-height: 1.8; color: rgba(245,245,245,0.55); margin-bottom: 36px; }
.program-pillars { display: flex; flex-direction: column; gap: 0; margin-bottom: 40px; }
.program-pillar { display: flex; align-items: flex-start; gap: 20px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.pillar-num { font-family: var(--display); font-size: 40px; line-height: 1; color: rgba(212,17,17,0.25); flex-shrink: 0; width: 48px; }
.pillar-text h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; color: var(--white); }
.pillar-text p { font-size: 13px; color: rgba(245,245,245,0.45); line-height: 1.6; }
.program-cta-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.program-note { font-size: 12px; color: var(--light-gray); }

/* TESTIMONIALS */
/* overflow clips the parallax layers so they can't bleed into neighbouring
   sections or widen the page as they travel. */
#testimonials { padding: 120px 0; background: var(--black); border-top: 1px solid rgba(255,255,255,0.06); overflow: hidden; }
.testi-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.testi-bg-img {
  position: absolute; height: auto;
  will-change: transform;
}
/* Each layer is flush to its own edge of the viewport: side1 right, side2 left.
   Sized off the section's height (not width) so they stay stacked and never
   overlap — side1 scrolls past before side2 arrives.
   Opacity is per-image, not shared: side2 is a materially darker exposure
   (mean luminance 8.6 vs 12.2), so an equal value would make it disappear. */
.testi-bg-1 { right: 0; top: 0;    height: 55%; width: auto; opacity: 0.16; }
.testi-bg-2 {
  left: 0; bottom: 0; height: 42%; width: auto; opacity: 0.24;
  /* Its own frame edges sit near-black (luminance 1-2) while the page reads 11,
     so the untouched rectangle shows as a faintly *darker* panel. Feathering the
     three inboard edges dissolves it; the left one runs off-screen already. */
  -webkit-mask-image:
    linear-gradient(to right, #000 0%, #000 62%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, #000 0%, #000 62%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
  mask-composite: intersect;
}
#testimonials .container { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) {
  .testi-bg-img { transform: none !important; }
}
.testimonials-header { text-align: center; margin-bottom: 64px; }
.testimonials-headline { font-family: var(--display); font-size: clamp(40px, 5vw, 68px); line-height: 0.95; letter-spacing: 1px; margin-bottom: 16px; }
.testimonials-sub { font-size: 15px; color: rgba(245,245,245,0.45); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 24px; }
/* Translucent so the parallax layers read through the cards. --dark-gray is
   #1c1c1c; kept high enough that the quotes stay legible over the photos. */
.testi-card { background: rgba(28,28,28,0.72); backdrop-filter: blur(3px); border: 1px solid rgba(255,255,255,0.07); border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; }
.testi-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.testi-stars { display: flex; gap: 3px; margin-bottom: 12px; }
.testi-star { width: 12px; height: 12px; background: var(--red); clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); }
.testi-quote { font-size: 14px; line-height: 1.75; color: rgba(245,245,245,0.7); font-style: italic; margin-bottom: 20px; flex: 1; }
.testi-name { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.testi-meta { font-size: 11px; color: var(--red); letter-spacing: 1px; text-transform: uppercase; }
.testimonials-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.testi-wide { background: rgba(28,28,28,0.72); backdrop-filter: blur(3px); border: 1px solid rgba(255,255,255,0.07); border-radius: 4px; display: flex; overflow: hidden; }

/* FAQ */
#faq { padding: 120px 0; background: var(--off-black); border-top: 1px solid rgba(255,255,255,0.06); }
#faq.faq-page { padding-top: 180px; min-height: 100vh; }
.faq-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.faq-left-headline { font-family: var(--display); font-size: clamp(38px, 4vw, 58px); line-height: 0.95; letter-spacing: 1px; margin-bottom: 20px; position: sticky; top: 100px; }
.faq-left-sub { font-size: 14px; color: rgba(245,245,245,0.45); line-height: 1.7; position: sticky; top: 200px; margin-bottom: 36px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
.faq-question { width: 100%; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; padding: 24px 0; text-align: left; color: var(--white); font-family: var(--body); font-size: 16px; font-weight: 500; gap: 20px; transition: color 0.2s; }
.faq-question:hover { color: rgba(245,245,245,0.75); }
.faq-icon { width: 28px; height: 28px; border: 1.5px solid rgba(255,255,255,0.15); border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: background 0.2s, border-color 0.2s, transform 0.3s; font-size: 16px; color: rgba(255,255,255,0.5); line-height: 1; }
.faq-item.open .faq-icon { background: var(--red); border-color: var(--red); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding-bottom: 24px; font-size: 14px; line-height: 1.8; color: rgba(245,245,245,0.55); }
.faq-inline-cta { display: inline-block; }

/* FINAL CTA */
#final-cta { padding: 160px 0; background: var(--black); text-align: center; overflow: hidden; position: relative; }
#final-cta::before { content: 'BM'; position: absolute; font-family: var(--display); font-size: 400px; color: rgba(255,255,255,0.015); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; letter-spacing: -20px; z-index: 0; }
/* Centred backdrop. Held to the source's 2:3 so the full standing pose reads
   rather than being cropped to a slice by a full-bleed cover. This shot is lit
   far brighter than the others (mean luminance 60 vs ~12), hence the lower
   opacity; the mask feathers the bright studio floor into the black page. */
#final-cta::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  /* Over 100% so the figure reads larger; the section's overflow:hidden trims
     the top and bottom evenly around the centre. */
  height: 134%; aspect-ratio: 2 / 3;
  background: url('images/end-web.jpg') center center / cover no-repeat;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
  /* Radii must land inside the box or the fade never completes and the photo's
     rectangle shows as a seam: 52% of width reaches the side edges, 40% of
     height reaches the section's crop line. */
  -webkit-mask-image: radial-gradient(ellipse 52% 40% at 50% 46%, #000 50%, transparent 98%);
          mask-image: radial-gradient(ellipse 52% 40% at 50% 46%, #000 50%, transparent 98%);
}
#final-cta .container { position: relative; z-index: 1; }
.final-cta-tag { margin-bottom: 24px; }
.final-cta-headline { font-family: var(--display); font-size: clamp(48px, 7vw, 100px); line-height: 0.9; letter-spacing: 1px; margin-bottom: 28px; position: relative; }
.final-cta-sub { font-size: 17px; color: rgba(245,245,245,0.5); max-width: 480px; margin: 0 auto 48px; line-height: 1.7; }
.final-cta-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.final-disclaimer { font-size: 12px; color: rgba(245,245,245,0.3); }

/* FOOTER */
footer { background: var(--off-black); border-top: 1px solid rgba(255,255,255,0.07); padding: 48px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-logo { font-family: var(--display); font-size: 24px; letter-spacing: 2px; text-decoration: none; color: var(--white); }
.footer-logo span { color: var(--red); }
.footer-links { display: flex; gap: 28px; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: rgba(245,245,245,0.35); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 12px; color: rgba(245,245,245,0.25); }

/* QUIZ SUCCESS */
.quiz-success { text-align: center; padding: 32px 0; }
.quiz-success-check { font-size: 48px; margin-bottom: 16px; color: var(--red); }
.quiz-success-title { font-family: var(--display); font-size: 28px; letter-spacing: 1px; margin-bottom: 12px; }
.quiz-success-text { font-size: 14px; color: rgba(245,245,245,0.5); line-height: 1.7; margin-bottom: 24px; }
.quiz-success .btn-primary { font-size: 13px; }

/* ============================================================
   LANDING 1  (/landing1)
   Same tokens as the rest of the site — only the layouts differ.
   ============================================================ */

/* HERO — centred VSL-style, distinct from the split index hero */
#l1-hero {
  min-height: 92vh;
  padding: 160px 0 100px;
  display: flex; align-items: center;
  background: var(--black); overflow: hidden;
}
/* Semi-transparent photo backdrop behind the hero copy. */
#l1-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('images/landing-hero-web.jpg') center 25% / cover no-repeat;
  opacity: 0.2;
  pointer-events: none; z-index: 0;
}
/* Black gradient fading the top of the hero (replaces the old red glow). */
#l1-hero::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 340px;
  background: linear-gradient(to bottom, var(--black) 0%, transparent 100%);
  pointer-events: none; z-index: 0;
}
.l1-hero-inner { max-width: 860px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.l1-hero-headline {
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.98; letter-spacing: 1px;
  color: var(--white); margin-bottom: 28px;
}
.l1-hero-sub {
  font-size: 17px; line-height: 1.75;
  color: rgba(245,245,245,0.6);
  max-width: 620px; margin: 0 auto 44px;
}
.l1-hero-cta { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.l1-hero-cta-note {
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(245,245,245,0.35);
}

/* HOOK — video section (first 30 seconds). Reuses the .vsl-video* player. */
#l1-hook { padding: 110px 0; background: var(--off-black); border-top: 1px solid rgba(255,255,255,0.06); text-align: center; }
.l1-hook-headline {
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98; letter-spacing: 1px; margin-bottom: 18px;
}
.l1-hook-sub {
  font-size: 16px; line-height: 1.7;
  color: rgba(245,245,245,0.55);
  max-width: 560px; margin: 0 auto 44px;
}
.l1-hook-cta { margin-top: 40px; }

/* RECOGNIZE — sticky heading + checklist */
#l1-recognize { padding: 120px 0; background: var(--black); border-top: 1px solid rgba(255,255,255,0.06); }
.l1-recognize-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: start; }
.l1-recognize-headline {
  font-family: var(--display);
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: 0.98; letter-spacing: 1px;
  position: sticky; top: 120px;
}
.l1-checklist { list-style: none; display: flex; flex-direction: column; gap: 0; }
/* The <ul> only triggers the observer; each row runs its own entrance. */
.l1-checklist.reveal { opacity: 1; transform: none; }
.l1-checklist li {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 16px; line-height: 1.6; color: rgba(245,245,245,0.78);
  /* Each item fades in from the left, staggered once the list is on screen. */
  opacity: 0; transform: translateX(-36px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.2,.7,.2,1);
}
.l1-checklist.visible li { opacity: 1; transform: none; }
.l1-checklist.visible li:nth-child(1) { transition-delay: .05s; }
.l1-checklist.visible li:nth-child(2) { transition-delay: .18s; }
.l1-checklist.visible li:nth-child(3) { transition-delay: .31s; }
.l1-checklist.visible li:nth-child(4) { transition-delay: .44s; }
.l1-checklist.visible li:nth-child(5) { transition-delay: .57s; }
.l1-checklist li:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.l1-check {
  position: relative; flex-shrink: 0;
  width: 22px; height: 22px; margin-top: 2px;
  border: 1.5px solid var(--red); border-radius: 3px;
  background: rgba(212,17,17,0.1);
  display: flex; align-items: center; justify-content: center;
}
.l1-check-svg { width: 15px; height: 15px; display: block; overflow: visible; }
/* pathLength="1" lets the dash math ignore the path's real length. */
.l1-check-svg path {
  fill: none; stroke: var(--red); stroke-width: 2.6;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 1; stroke-dashoffset: 1;
}
/* Checkmark draws itself just after its row has slid in. */
.l1-checklist.visible li .l1-check-svg path { animation: l1-draw-check .4s ease forwards; }
.l1-checklist.visible li:nth-child(1) .l1-check-svg path { animation-delay: .30s; }
.l1-checklist.visible li:nth-child(2) .l1-check-svg path { animation-delay: .43s; }
.l1-checklist.visible li:nth-child(3) .l1-check-svg path { animation-delay: .56s; }
.l1-checklist.visible li:nth-child(4) .l1-check-svg path { animation-delay: .69s; }
.l1-checklist.visible li:nth-child(5) .l1-check-svg path { animation-delay: .82s; }
@keyframes l1-draw-check { to { stroke-dashoffset: 0; } }

/* WHY — 3 numbered problem cards */
#l1-why { padding: 120px 0; background: var(--off-black); border-top: 1px solid rgba(255,255,255,0.06); text-align: center; }
.l1-why-head { margin-bottom: 56px; }
.l1-why-headline {
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98; letter-spacing: 1px;
  max-width: 760px; margin: 0 auto;
}
/* perspective gives the flip its depth; all three cards share one vanishing point. */
.l1-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: left; perspective: 1300px; }
.l1-why-card {
  background: var(--dark-gray);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px; padding: 36px 32px;
  position: relative; overflow: hidden;
  /* Hinged at the top edge: starts folded back, flips down flat into view. */
  transform-origin: top center;
  transform: rotateX(-92deg);
  /* Longhand (no transition-delay) so .reveal-delay-1/2/3 keeps the stagger. */
  transition-property: transform, opacity;
  transition-duration: .8s, .5s;
  transition-timing-function: cubic-bezier(.2,.75,.25,1), ease;
  will-change: transform;
  backface-visibility: hidden;
}
.l1-why-card.visible { transform: rotateX(0deg); }
.l1-why-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 100%; background: var(--red);
}
.l1-why-num {
  font-family: var(--display);
  font-size: 52px; line-height: 1;
  color: rgba(212,17,17,0.28); margin-bottom: 18px;
}
.l1-why-card h3 { font-size: 19px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.l1-why-card p { font-size: 14px; line-height: 1.7; color: rgba(245,245,245,0.5); }
.l1-why-foot {
  text-align: center; margin-top: 44px;
  font-family: var(--display); font-size: clamp(24px, 3vw, 38px);
  letter-spacing: 1px; color: var(--red);
}

/* MECHANISM — 3 connected steps */
#l1-mechanism { padding: 120px 0; background: var(--black); border-top: 1px solid rgba(255,255,255,0.06); }
.l1-mech-head { margin-bottom: 56px; }
.l1-mech-headline {
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98; letter-spacing: 1px;
}
.l1-mech-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
/* Container is only the trigger — it stays put while its pieces animate. */
.l1-mech-steps.reveal { opacity: 1; transform: none; }
/* Steps centred so the connector runs cleanly through the number centres
   (num1 ≈ 1/6 of the row, num3 ≈ 5/6). */
.l1-mech-step { position: relative; z-index: 1; text-align: center; }
/* Grey base rail spanning num1 → num3. */
.l1-mech-steps::before {
  content: ''; position: absolute; top: 28px; left: 16.66%; right: 16.66%;
  height: 2px; background: rgba(255,255,255,0.14); z-index: 0;
}
/* Red fill that grows from num1 to num3 the first time the row is on screen. */
.l1-mech-steps::after {
  content: ''; position: absolute; top: 28px; left: 16.66%;
  width: 0; height: 2px; background: var(--red); z-index: 0;
}
.l1-mech-steps.visible::after { animation: l1-mech-fill 1.4s linear forwards; }
@keyframes l1-mech-fill { to { width: 66.66%; } }
.l1-mech-num {
  width: 56px; height: 56px; border-radius: 50%;
  /* Start grey; each circle turns red as the fill reaches it. */
  background: var(--mid-gray); color: rgba(245,245,245,0.5);
  font-family: var(--display); font-size: 30px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; border: 4px solid var(--black);
}
/* num1 lights at t=0, num2 when the fill is halfway (0.7s), num3 at the end (1.4s). */
.l1-mech-steps.visible .l1-mech-step:nth-child(1) .l1-mech-num { animation: l1-mech-lit .45s ease forwards; animation-delay: 0s; }
.l1-mech-steps.visible .l1-mech-step:nth-child(2) .l1-mech-num { animation: l1-mech-lit .45s ease forwards; animation-delay: .7s; }
.l1-mech-steps.visible .l1-mech-step:nth-child(3) .l1-mech-num { animation: l1-mech-lit .45s ease forwards; animation-delay: 1.4s; }
@keyframes l1-mech-lit {
  0%   { background-color: var(--mid-gray); color: rgba(245,245,245,0.5); transform: scale(1); }
  60%  { transform: scale(1.12); }
  100% { background-color: var(--red); color: var(--white); transform: scale(1); }
}
.l1-mech-body h3 { font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.l1-mech-body p { font-size: 14px; line-height: 1.7; color: rgba(245,245,245,0.55); }
/* Copy under each number rises in, roughly tracking the fill. */
.l1-mech-body { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.l1-mech-steps.visible .l1-mech-body { opacity: 1; transform: none; }
.l1-mech-steps.visible .l1-mech-step:nth-child(1) .l1-mech-body { transition-delay: .15s; }
.l1-mech-steps.visible .l1-mech-step:nth-child(2) .l1-mech-body { transition-delay: .55s; }
.l1-mech-steps.visible .l1-mech-step:nth-child(3) .l1-mech-body { transition-delay: .95s; }

/* OUTCOMES — red-tinted band, copy + emotional list */
#l1-outcomes { padding: 100px 0; background: var(--off-black); border-top: 1px solid rgba(255,255,255,0.06); }
.l1-outcomes-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  background: var(--dark-gray);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px; padding: clamp(32px, 5vw, 64px);
}
.l1-outcomes-headline {
  font-family: var(--display);
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 0.98; letter-spacing: 1px;
}
.l1-outcomes-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.l1-outcomes-list li {
  display: flex; align-items: center; gap: 16px;
  font-size: 17px; color: rgba(245,245,245,0.85);
}
.l1-out-dot {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--red); position: relative;
}
.l1-out-dot::after {
  content: ''; position: absolute; left: 9px; top: 6px;
  width: 6px; height: 11px;
  border: solid var(--white); border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* FAQ — gem-labelled cards (2×2), distinct from the accordion on faq.html */
#l1-faq { padding: 120px 0; background: var(--black); border-top: 1px solid rgba(255,255,255,0.06); }
.l1-faq-head { text-align: center; margin-bottom: 56px; }
.l1-faq-headline {
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 62px);
  line-height: 0.98; letter-spacing: 1px;
}
.l1-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.l1-gem-card {
  background: var(--dark-gray);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px; padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
}
.l1-gem-card:hover { border-color: rgba(212,17,17,0.5); transform: translateY(-2px); }
.l1-gem-top {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 18px; margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.l1-gem-icon { color: var(--red); font-size: 13px; }
.l1-gem-name {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; color: rgba(245,245,245,0.55);
}
.l1-gem-word {
  margin-left: auto;
  font-family: var(--display); font-size: 26px; letter-spacing: 1px;
  color: var(--red); line-height: 1;
}
.l1-gem-q { font-size: 18px; font-weight: 600; color: var(--white); line-height: 1.35; margin-bottom: 16px; }
.l1-gem-a { font-size: 15px; line-height: 1.75; color: rgba(245,245,245,0.6); }
.l1-gem-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.l1-gem-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; line-height: 1.5; color: rgba(245,245,245,0.7);
}
.l1-gem-list li::before {
  content: ''; flex-shrink: 0; margin-top: 8px;
  width: 6px; height: 6px; background: var(--red);
}

/* FINAL CTA — mirrors the index CTA rhythm with its own ghost mark */
#l1-cta { padding: 150px 0; background: var(--off-black); text-align: center; overflow: hidden; position: relative; }
#l1-cta::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 640px; height: 456px; max-width: 90%;
  background: url('images/bm-logo.png') center / contain no-repeat;
  opacity: 0.05;
  pointer-events: none; z-index: 0;
}
#l1-cta .container { position: relative; z-index: 1; }
.l1-cta-tag { margin-bottom: 24px; }
.l1-cta-headline {
  font-family: var(--display);
  font-size: clamp(44px, 6.5vw, 92px);
  line-height: 0.92; letter-spacing: 1px; margin-bottom: 28px;
}
.l1-cta-sub { font-size: 17px; color: rgba(245,245,245,0.55); max-width: 520px; margin: 0 auto 44px; line-height: 1.7; }
.l1-cta-row { display: flex; justify-content: center; margin-bottom: 32px; }
.l1-cta-disclaimer { font-size: 12px; color: rgba(245,245,245,0.3); }

/* IMMEDIATE PROOF (transformations) — sits right under the hero. */
#l1-proof { padding: 100px 0; background: var(--off-black); border-top: 1px solid rgba(255,255,255,0.06); }
.l1-proof-head { text-align: center; margin-bottom: 52px; }
.l1-proof-headline { font-family: var(--display); font-size: clamp(32px, 4vw, 54px); line-height: 0.98; letter-spacing: 1px; margin-bottom: 16px; }
.l1-proof-headline em { font-style: normal; color: var(--red); }
.l1-proof-sub { font-size: 16px; line-height: 1.7; color: rgba(245,245,245,0.55); max-width: 640px; margin: 0 auto; }
.l1-proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.l1-proof-card { background: var(--dark-gray); border: 1px solid rgba(255,255,255,0.08); border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; }
/* Before / after photo pair. Swap each .img-placeholder for <img class="l1-ba-img">. */
.l1-proof-media { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
/* Timeline variant (Sanela): front + back shown together, cycling through stages.
   The stage pill sits centred at the top and crossfades with the photos. */
.l1-proof-stages { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); z-index: 3; pointer-events: none; }
.l1-proof-stage {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  white-space: nowrap; opacity: 0; transition: opacity .5s ease;
  background: var(--red); color: var(--white);
  font-size: 11px; letter-spacing: .5px; text-transform: uppercase; font-weight: 600;
  padding: 5px 12px; border-radius: 2px;
}
.l1-proof-stage.active { opacity: 1; }
.l1-ba { position: relative; margin: 0; aspect-ratio: 3 / 4; overflow: hidden; background: var(--mid-gray); }
/* Front / back / side frames are stacked; JS crossfades one at a time, kept in
   sync with the matching frame in the other half (same pose shown together). */
.l1-ba-frame { position: absolute; inset: 0; opacity: 0; transition: opacity .6s ease; }
.l1-ba-frame.active { opacity: 1; }
.l1-ba-frame .img-placeholder { position: absolute; inset: 0; }
.l1-ba-img { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; }
/* Some "after" photos (e.g. Dragica) were shot further back; zoom them in to
   match the tighter framing of the "before" photos. Tune the scale to taste. */
.l1-ba-zoom .l1-ba-img { transform: scale(1.45); transform-origin: center 40%; }
.l1-ba-tag { position: absolute; left: 10px; top: 10px; z-index: 2; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; padding: 4px 9px; border-radius: 2px; background: rgba(11,11,11,0.82); color: rgba(245,245,245,0.75); }
.l1-ba-tag--after { background: var(--red); color: var(--white); }
.l1-proof-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.l1-proof-body .testi-stars { margin-bottom: 12px; }
.l1-proof-quote { font-size: 14px; line-height: 1.7; color: rgba(245,245,245,0.78); font-style: italic; margin-bottom: 16px; flex: 1; }
.l1-proof-name { font-size: 14px; font-weight: 600; color: var(--white); }
.l1-proof-meta { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--red); margin-top: 3px; }
.l1-proof-close { text-align: center; margin-top: 46px; font-family: var(--display); font-size: clamp(24px, 3vw, 40px); letter-spacing: 1px; color: var(--white); }
.l1-proof-close em { font-style: normal; color: var(--red); }

/* MID CTA — a lighter conversion band right after the VSL. */
#l1-midcta { padding: 72px 0; background: var(--black); border-top: 1px solid rgba(255,255,255,0.06); }
.l1-midcta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(212,17,17,0.14), rgba(212,17,17,0.03));
  border: 1px solid rgba(212,17,17,0.25); border-radius: 6px;
  padding: clamp(28px, 4vw, 44px);
}
.l1-midcta-copy { flex: 1; min-width: 260px; }
.l1-midcta-headline { font-family: var(--display); font-size: clamp(28px, 3.2vw, 44px); line-height: 1; letter-spacing: 1px; margin-bottom: 10px; }
.l1-midcta-headline em { font-style: normal; color: var(--red); }
.l1-midcta-sub { font-size: 15px; color: rgba(245,245,245,0.62); line-height: 1.6; }
.l1-midcta-inner .btn-primary { flex-shrink: 0; }

/* ABOUT / AUTHORITY — trainer bio + credibility, before the FAQ. */
#l1-about { padding: 120px 0; background: var(--black); border-top: 1px solid rgba(255,255,255,0.06); }
.l1-about-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: start; }
.l1-about-visual { position: sticky; top: 100px; }
.l1-about-img { border-radius: 4px; overflow: hidden; position: relative; }
.l1-about-img-photo {
  display: block; width: 100%; height: auto; aspect-ratio: 4 / 5;
  object-fit: cover; object-position: center 22%;
  /* Fade the bottom of the figure into the section. */
  -webkit-mask-image: linear-gradient(to bottom, #000 58%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 58%, transparent 100%);
}
.l1-about-headline { font-family: var(--display); font-size: clamp(32px, 3.8vw, 54px); line-height: 0.98; letter-spacing: 1px; margin-bottom: 24px; }
.l1-about-headline em { font-style: normal; color: var(--red); }
.l1-about-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.l1-about-chip { font-size: 12px; letter-spacing: 0.4px; color: rgba(245,245,245,0.8); background: var(--dark-gray); border: 1px solid rgba(255,255,255,0.1); border-left: 2px solid var(--red); border-radius: 2px; padding: 8px 14px; }
.l1-about-text p { font-size: 15px; line-height: 1.8; color: rgba(245,245,245,0.62); margin-bottom: 18px; }
.l1-about-quote { font-family: var(--display); font-size: clamp(22px, 2.4vw, 30px); line-height: 1.2; letter-spacing: 0.5px; color: var(--white); border-left: 3px solid var(--red); padding: 4px 0 4px 22px; margin: 28px 0; }
/* Collapsed by default: show ~the first paragraph, fade the rest out. */
.l1-about-text { position: relative; max-height: 172px; overflow: hidden; transition: max-height .55s ease; }
.l1-about-text::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 96px;
  background: linear-gradient(to bottom, rgba(11,11,11,0), var(--black));
  pointer-events: none; transition: opacity .3s ease;
}
.l1-about-text.l1-open { max-height: 3000px; }
.l1-about-text.l1-open::after { opacity: 0; }
.l1-about-toggle {
  margin-top: 18px; background: none; border: none; cursor: pointer;
  color: var(--red); font-family: var(--body);
  font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 0;
  transition: color .2s;
}
.l1-about-toggle:hover { color: var(--white); }
.l1-about-toggle::after { content: '\2193'; font-size: 14px; transition: transform .3s ease; }
.l1-about-toggle[aria-expanded="true"]::after { transform: rotate(180deg); }

/* 4. IDENTIFIKACIJA PROBLEMA — centred narrative build-up. */
#l1-problem { padding: 110px 0; background: var(--off-black); border-top: 1px solid rgba(255,255,255,0.06); }
.l1-problem-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.l1-problem-headline { font-family: var(--display); font-size: clamp(32px, 4vw, 56px); line-height: 1; letter-spacing: 1px; margin-bottom: 32px; }
.l1-problem-headline em { font-style: normal; color: var(--red); }
.l1-problem-lead { font-size: 18px; color: rgba(245,245,245,0.7); margin-bottom: 20px; }
/* The three failed attempts slide down through one at a time (top → out bottom). */
.l1-problem-rotator {
  position: relative; height: 1.25em; margin-bottom: 28px; overflow: hidden;
  font-family: var(--display); font-size: clamp(20px, 3.4vw, 38px);
  line-height: 1.1; letter-spacing: 1px;
}
.l1-problem-rot {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  white-space: nowrap; color: var(--white);
  opacity: 0;
  animation: l1-prob-slide 4.5s infinite;
}
.l1-problem-rot:nth-child(2) { animation-delay: 1.5s; }
.l1-problem-rot:nth-child(3) { animation-delay: 3s; }
@keyframes l1-prob-slide {
  0%   { opacity: 0; transform: translateY(-120%); }
  8%   { opacity: 1; transform: translateY(0); }
  28%  { opacity: 1; transform: translateY(0); }
  36%  { opacity: 0; transform: translateY(120%); }
  100% { opacity: 0; transform: translateY(120%); }
}
/* Reduced motion: no sliding — fall back to a plain stacked list. */
@media (prefers-reduced-motion: reduce) {
  .l1-problem-rotator { height: auto; overflow: visible; display: flex; flex-direction: column; gap: 6px; }
  .l1-problem-rot { position: static; opacity: 1; transform: none; animation: none; }
}
.l1-problem-mid { font-size: 16px; color: rgba(245,245,245,0.5); font-style: italic; margin-bottom: 18px; }
.l1-problem-body { font-size: 17px; line-height: 1.7; color: rgba(245,245,245,0.7); max-width: 560px; margin: 0 auto 28px; }
.l1-problem-punch { font-size: clamp(18px, 2.2vw, 24px); line-height: 1.5; color: var(--white); font-weight: 500; max-width: 620px; margin: 0 auto; }
.l1-problem-punch em { font-style: normal; color: var(--red); }

/* 5. NOVO UVJERENJE — reframe with an anaphora list. */
#l1-belief { padding: 110px 0; background: var(--black); border-top: 1px solid rgba(255,255,255,0.06); }
.l1-belief-inner { max-width: 760px; margin: 0 auto; }
.l1-belief-headline { font-family: var(--display); font-size: clamp(32px, 4vw, 56px); line-height: 1; letter-spacing: 1px; margin-bottom: 26px; text-align: center; }
.l1-belief-headline em { font-style: normal; color: var(--red); }
.l1-belief-lead { font-size: 17px; line-height: 1.75; color: rgba(245,245,245,0.7); text-align: center; margin-bottom: 32px; }
.l1-belief-list { list-style: none; display: flex; flex-direction: column; gap: 12px; max-width: 580px; margin: 0 auto 34px; }
.l1-belief-list li { font-size: 16px; line-height: 1.5; color: rgba(245,245,245,0.85); padding: 15px 20px; background: var(--dark-gray); border-left: 3px solid var(--red); border-radius: 2px; }
.l1-belief-punch { text-align: center; font-family: var(--display); font-size: clamp(24px, 3vw, 40px); line-height: 1.1; letter-spacing: 1px; color: var(--white); }
.l1-belief-punch em { font-style: normal; color: var(--red); }

/* TVOJ SUSTAV — subtitle under the mechanism headline. */
.l1-mech-sub { font-size: 16px; line-height: 1.7; color: rgba(245,245,245,0.55); max-width: 620px; margin-top: 16px; }

/* 9. FAQ — accordion (reuses global .faq-item / toggleFaq). */
.l1-faq-list { max-width: 820px; margin: 0 auto; }
.l1-faq-cat { display: inline-block; font-size: 11px; letter-spacing: 1.5px; font-weight: 700; color: var(--red); margin-right: 10px; }
.l1-faq-check { list-style: none; display: flex; flex-direction: column; gap: 9px; margin: 14px 0; }
.l1-faq-check li { position: relative; padding-left: 26px; font-size: 14px; line-height: 1.6; color: rgba(245,245,245,0.72); }
.l1-faq-check li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--red); font-weight: 700; }
#l1-faq .faq-answer-inner p { margin-bottom: 12px; }
#l1-faq .faq-answer-inner p:last-child { margin-bottom: 0; }
/* Answers here are longer than on faq.html, so lift the open cap. */
#l1-faq .faq-item.open .faq-answer { max-height: 1200px; }

/* Actual VSL video fills the 16:9 frame. */
.l1-vsl-video { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; background: #000; }

/* Brand logo image (nav + footer). */
.brand-logo { display: block; width: auto; }
.nav-logo .brand-logo { height: 34px; }
.footer-logo .brand-logo { height: 30px; }

/* ── ON-SITE APPLICATION FORM (in the final CTA section) ── */
.l1-form-wrap { max-width: 640px; margin: 0 auto 36px; text-align: left; }
.l1-form-open-row { text-align: center; }
.l1-form { background: var(--dark-gray); border: 1px solid rgba(255,255,255,0.08); border-radius: 6px; padding: clamp(22px, 4vw, 40px); display: flex; flex-direction: column; gap: 26px; }
/* Keep the hidden attribute effective (display:flex would otherwise override it). */
.l1-form[hidden] { display: none; }
.l1-field { display: flex; flex-direction: column; gap: 10px; }
.l1-field-label { font-size: 15px; font-weight: 600; color: var(--white); line-height: 1.45; }
.l1-req { color: var(--red); margin-left: 3px; }
.l1-field-note { font-size: 13px; color: rgba(245,245,245,0.5); line-height: 1.5; margin-top: -4px; }
.l1-input { background: var(--mid-gray); border: 1.5px solid rgba(255,255,255,0.1); border-radius: 2px; padding: 13px 15px; color: var(--white); font-family: var(--body); font-size: 15px; outline: none; transition: border-color .2s; width: 100%; }
.l1-input:focus { border-color: var(--red); }
.l1-input::placeholder { color: rgba(255,255,255,0.3); }
.l1-textarea { resize: vertical; min-height: 92px; line-height: 1.6; }
.l1-opts { display: flex; flex-direction: column; gap: 9px; }
.l1-opt { position: relative; display: flex; align-items: center; gap: 12px; padding: 12px 14px; background: var(--mid-gray); border: 1.5px solid transparent; border-radius: 2px; cursor: pointer; font-size: 14px; color: rgba(245,245,245,0.8); transition: border-color .2s, background .2s; user-select: none; }
.l1-opt:hover { border-color: rgba(212,17,17,0.5); }
.l1-opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.l1-opt-box { flex-shrink: 0; width: 18px; height: 18px; border: 1.5px solid rgba(255,255,255,0.3); position: relative; transition: border-color .2s, background .2s; }
.l1-opt input[type="radio"] ~ .l1-opt-box { border-radius: 50%; }
.l1-opt input[type="checkbox"] ~ .l1-opt-box { border-radius: 3px; }
.l1-opt input:checked ~ .l1-opt-box { border-color: var(--red); background: var(--red); }
.l1-opt input[type="radio"]:checked ~ .l1-opt-box::after { content: ''; position: absolute; inset: 4px; background: var(--white); border-radius: 50%; }
.l1-opt input[type="checkbox"]:checked ~ .l1-opt-box::after { content: ''; position: absolute; left: 5px; top: 1px; width: 5px; height: 10px; border: solid var(--white); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.l1-opt:has(input:checked) { border-color: var(--red); background: rgba(212,17,17,0.12); color: var(--white); }
.l1-opt input:focus-visible ~ .l1-opt-box { box-shadow: 0 0 0 2px rgba(212,17,17,0.5); }
.l1-field-err { font-size: 13px; color: var(--red); line-height: 1.4; }
.l1-field-err:empty { display: none; }
.l1-field-invalid .l1-input { border-color: var(--red); }
.l1-form-foot { display: flex; flex-direction: column; gap: 14px; align-items: stretch; }
.l1-form-req { font-size: 12px; color: rgba(245,245,245,0.4); }
.l1-form-submit { width: 100%; }
.l1-form-submit:disabled { opacity: 0.6; cursor: default; }
/* Success message replaces the form on submit. */
.l1-form-success { background: var(--dark-gray); border: 1px solid rgba(212,17,17,0.3); border-radius: 6px; padding: clamp(26px, 5vw, 46px); text-align: left; }
.l1-form-success h3 { font-family: var(--display); font-size: clamp(28px, 4vw, 44px); letter-spacing: 1px; line-height: 1.05; margin-bottom: 18px; color: var(--white); }
.l1-form-success p { font-size: 15px; line-height: 1.75; color: rgba(245,245,245,0.75); margin-bottom: 14px; }
.l1-form-success p:last-child { margin-bottom: 0; }
.l1-form-success strong { color: var(--white); }
.l1-form-success .l1-form-sign { color: var(--red); font-weight: 600; margin-top: 8px; }

/* Hook video eases up and scales in (scoped so the index VSL is untouched). */
#l1-hook .vsl-video-wrap { transition-property: transform, opacity; transition-duration: .8s, .7s; }
#l1-hook .vsl-video-wrap.reveal { transform: translateY(32px) scale(0.96); }
#l1-hook .vsl-video-wrap.reveal.visible { transform: translateY(0) scale(1); }

/* Reduced motion: skip the entrances, show every final state at rest. */
@media (prefers-reduced-motion: reduce) {
  .l1-checklist li { opacity: 1 !important; transform: none !important; }
  .l1-check-svg path { stroke-dashoffset: 0 !important; animation: none !important; }
  .l1-why-card { transform: none !important; }
  .l1-mech-body { opacity: 1 !important; transform: none !important; }
  .l1-mech-steps::after { animation: none !important; }
  .l1-mech-num { background-color: var(--red) !important; color: var(--white) !important; animation: none !important; }
  #l1-hook .vsl-video-wrap.reveal { transform: none; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .navbar { padding: 16px 24px; }
  .container { padding: 0 24px; }
  .hero-inner, .quiz-inner, .program-inner, .faq-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visuals { order: -1; }
  /* Single column here: no neighbouring column to match, so the plate returns to
     flow with a fixed ratio and bleeds both edges against the 24px padding.
     The side fade is dropped (both edges run off-screen) in favour of fading the
     top and bottom into the section. */
  .program-visual { min-height: 0; }
  .program-img {
    position: static; aspect-ratio: 4/5;
    margin-left: -24px; margin-right: -24px;
    /* Straight linear alpha ramp across the outer 18% at each end. Endpoints are
       explicit rgba(0,0,0,0) rather than `transparent` so nothing interpolates
       toward a different colour on the way out. */
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 18%, rgba(0,0,0,1) 82%, rgba(0,0,0,0) 100%);
            mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 18%, rgba(0,0,0,1) 82%, rgba(0,0,0,0) 100%);
  }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-row2 { grid-template-columns: 1fr; }
  /* Cards stack here, so the section grows tall — height-driven layers would be
     enormous. Fall back to width-driven; the extra height keeps them sequential. */
  .testi-bg-1 { height: auto; width: 72vw; }
  /* Raised well up the section so it comes into view earlier on the long scroll. */
  .testi-bg-2 { height: auto; width: 88vw; bottom: auto; top: 42%; }
  .faq-left-headline, .faq-left-sub { position: static; }
  #faq.faq-page { padding-top: 140px; }
  #final-cta::before { font-size: 180px; }

  /* LANDING 1 */
  #l1-hero { padding: 130px 0 80px; }
  .l1-proof-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .l1-midcta-inner { flex-direction: column; align-items: flex-start; }
  .l1-about-inner { grid-template-columns: 1fr; gap: 40px; }
  .l1-about-visual { position: static; max-width: 360px; }
  .l1-recognize-inner { grid-template-columns: 1fr; gap: 40px; }
  .l1-recognize-headline { position: static; }
  .l1-why-grid { grid-template-columns: 1fr; }
  /* Steps stack: connect number-to-number so the rail starts at num 1 and
     ends exactly at num 3 — the last step draws no outgoing segment, so the
     line can't run past the third circle no matter how the copy wraps. */
  .l1-mech-steps { grid-template-columns: 1fr; gap: 36px; }
  /* Number left, copy to its right, so the connector line stays in the left
     gutter and never crosses the text. flex-shrink:0 keeps the number a perfect
     circle instead of squishing it. */
  .l1-mech-step { text-align: left; display: flex; gap: 20px; align-items: flex-start; }
  .l1-mech-num { margin: 0; flex-shrink: 0; }
  /* Drop the container-spanning rail used on desktop. */
  .l1-mech-steps::before, .l1-mech-steps::after { display: none; }
  /* Each connector runs from its number's centre (top:28px) down to the next
     number's centre: 100% (this step's height) + 36px (the grid gap) lands
     dead on it. z-index:-1 keeps it behind the copy, like the desktop rail. */
  .l1-mech-step:not(:last-child)::before,
  .l1-mech-step:not(:last-child)::after {
    content: ''; position: absolute; left: 28px; top: 28px; width: 2px; z-index: -1;
  }
  .l1-mech-step:not(:last-child)::before { height: calc(100% + 36px); background: rgba(255,255,255,0.14); }
  .l1-mech-step:not(:last-child)::after  { height: 0; background: var(--red); }
  /* Fill segment 1 (num1→num2) over 0–0.7s, segment 2 (num2→num3) over 0.7–1.4s,
     matching the circles lighting at 0s / 0.7s / 1.4s. */
  .l1-mech-steps.visible .l1-mech-step:nth-child(1)::after { animation: l1-mech-fill-seg .7s linear forwards; animation-delay: 0s; }
  .l1-mech-steps.visible .l1-mech-step:nth-child(2)::after { animation: l1-mech-fill-seg .7s linear forwards; animation-delay: .7s; }
  @keyframes l1-mech-fill-seg { to { height: calc(100% + 36px); } }
  .l1-outcomes-inner { grid-template-columns: 1fr; gap: 32px; }
  .l1-faq-grid { grid-template-columns: 1fr; }
  #l1-cta::before { width: 340px; height: 242px; }
}
@media (max-width: 600px) {
  /* The drawer carries the CTA at this size, so the bar drops it. */
  .nav-right .nav-cta { display: none; }
  .nav-right { gap: 12px; }
  .side-menu { padding: 24px 28px 32px; }
  .side-menu-nav a { font-size: 28px; }
}
