/* ═══════════════════════════════════════════════════════════
   TAJNE ONLINE TRENERSTVA — Frane Jerčić
   style.css
═══════════════════════════════════════════════════════════ */

/* ─── VARIJABLE ─── */
:root {
  --bg:         #0a0a0b;
  --bg-alt:     #141416;
  --line:       #26262a;
  --ink:        #f3f1ec;
  --ink-dim:    #9a9a9f;
  --red:        #e8341c;
  --red-dim:    #b5260f;
  --gold:       #e8a23c;
  --card:       #1a1a1d;
  --radius:     2px;
  --accent-rgb: 232,52,28;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 72px;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, .display {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.5px;
  line-height: 1.02;
  text-transform: uppercase;
  font-weight: 400;
}

h2 { font-size: clamp(34px, 5vw, 56px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}

.lead { color: var(--ink-dim); font-size: 18px; max-width: 680px; }
.micro { margin-top: 18px; font-size: 13px; color: var(--ink-dim); letter-spacing: .3px; }

section { padding: 96px 0; border-bottom: 1px solid var(--line); position: relative; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--red) 82%, #fff 18%),
    var(--red) 55%,
    color-mix(in srgb, var(--red) 78%, #000 22%));
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 21px;
  letter-spacing: 1.5px;
  padding: 17px 38px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, filter .2s ease;
  box-shadow: 0 1px 0 rgba(255,255,255,.12) inset, 0 14px 30px -10px rgba(var(--accent-rgb),.55);
  -webkit-tap-highlight-color: transparent;
}
.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 18px 40px -8px rgba(var(--accent-rgb),.6);
}
.btn:active { transform: translateY(0); filter: brightness(.97); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn-outline:hover {
  border-color: var(--red);
  color: #fff;
  background: rgba(var(--accent-rgb),.08);
  box-shadow: none;
  filter: none;
}

/* ─── HEADER ─── */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,11,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1120px;
  margin: 0 auto;
  gap: 16px;
}

.brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
}
.brand span { color: var(--red); }

.nav-cta { font-size: 15px; padding: 11px 22px; white-space: nowrap; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-dim);
  transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }

/* ─── HERO ─── */
.hero {
  padding: 90px 0 64px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: visible;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(var(--accent-rgb),.18), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(var(--accent-rgb),.08), transparent 40%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-photo {
  position: relative;
  z-index: 2;
  height: 520px;
  transform: translateY(60px) translateX(12%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.8));
  -webkit-mask-image:
    linear-gradient(to bottom, black 72%, transparent 100%),
    linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image:
    linear-gradient(to bottom, black 72%, transparent 100%),
    linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
}
.hero-photo .tag {
  display: block;
  position: static;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1.5px;
  font-size: 11px;
  color: var(--ink-dim);
  margin-top: 10px;
  opacity: .6;
}

.hero h1 { font-size: clamp(44px, 6vw, 76px); }
.hero h1 .accent { color: var(--red); }
.hero p.lead { margin: 22px 0 30px; font-size: 19px; }
.hero p.lead b { color: rgba(255,255,255,.72); font-weight: 700; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ─── STATS ─── */
.stats {
  background: var(--bg-alt);
  padding: 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1120px;
  margin: 0 auto;
}

.stat {
  padding: 52px 32px;
  text-align: center;
  position: relative;
}

/* Gradient divider između statova */
.stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--line) 35%, var(--line) 65%, transparent);
}
.stat:first-child::before { display: none; }

.stat .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 5.5vw, 80px);
  color: var(--red);
  line-height: 1;
  display: inline-block;
  position: relative;
}

/* Crveni akcent ispod broja */
.stat .num::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
  opacity: 0.45;
  margin: 10px auto 0;
}

.stat .label {
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-dim);
  line-height: 1.4;
}

@keyframes statMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── VIDEO ─── */
.video-section { padding: 88px 0; text-align: center; }
.video-wrap {
  max-width: 880px;
  margin: 36px auto 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  aspect-ratio: 16/9;
  background: #000;
}
.video-wrap iframe { width: 100%; height: 100%; border: 0; }

/* Thumbnail façade (kad embed nije dostupan) */
.video-facade {
  display: block;
  text-decoration: none;
  cursor: pointer;
  position: relative;
}
.video-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.3);
  transition: background .2s ease;
}
.video-facade:hover .video-play { background: rgba(0,0,0,.15); }
.video-facade:hover .video-play svg path:first-child { fill: var(--red-dim); }
.video-play svg { filter: drop-shadow(0 4px 16px rgba(0,0,0,.6)); transition: transform .2s ease; }
.video-facade:hover .video-play svg { transform: scale(1.08); }

/* ─── CHECK LIST ─── */
.check-list { display: grid; gap: 0; max-width: 920px; margin-top: 36px; }
.check-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.check-item:first-child { border-top: none; }
.check-item:last-child { border-bottom: none; }
.check-item .mark {
  flex: 0 0 30px;
  height: 30px;
  border: 1px solid var(--red);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  margin-top: 2px;
}
.check-item p { font-size: 17px; color: var(--ink-dim); }
.check-item p b { color: rgba(255,255,255,.72); }

.pull-quote {
  margin-top: 48px;
  padding: 32px 36px;
  border-left: 3px solid var(--red);
  background: var(--card);
  font-size: 19px;
  font-style: italic;
  color: var(--ink);
  max-width: 920px;
}

/* ─── WHAT YOU GET ─── */
.get-list { margin-top: 48px; }
.get-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.get-item:first-child { border-top: none; }
.get-item:last-child { border-bottom: none; }
.get-item .ic {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.get-item .ic svg { width: 100%; height: 100%; }
.get-item .txt { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.get-item h3 { font-family: 'Bebas Neue'; font-weight: 400; font-size: 22px; letter-spacing: .5px; text-transform: uppercase; }
.get-item p { color: var(--ink-dim); font-size: 15.5px; }

/* ─── WHY THIS COURSE ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.why-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 2px solid var(--red);
  padding: 32px 28px;
  border-radius: 4px;
}
.why-card .wic { width: 32px; height: 32px; color: var(--red); margin-bottom: 18px; }
.why-card .wic svg { width: 100%; height: 100%; }
.why-card h3 { font-family: 'Bebas Neue'; font-size: 28px; margin-top: 12px; }
.why-card p { color: var(--ink-dim); font-size: 15px; margin-top: 10px; line-height: 1.6; }

/* ─── SPLIT (ZAMISLI / GUBIŠ) ─── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}
/* Padding simulira .wrap centriranje — sadržaj prati ostatak stranice */
.split .pos {
  background: linear-gradient(90deg,
    var(--bg) 0%,
    color-mix(in srgb, #111114 86%, #16a34a 14%) 40%,
    color-mix(in srgb, #141417 88%, #16a34a 12%) 100%);
  padding: 64px 48px 64px max(24px, calc((100vw - 1120px) / 2 + 24px));
  display: flex;
  flex-direction: column;
}
.split .neg {
  background: linear-gradient(90deg,
    color-mix(in srgb, var(--bg) 84%, var(--red) 16%) 0%,
    color-mix(in srgb, var(--bg) 88%, var(--red) 12%) 60%,
    var(--bg) 100%);
  padding: 64px max(24px, calc((100vw - 1120px) / 2 + 24px)) 64px 48px;
  display: flex;
  flex-direction: column;
}
.split h3 { font-size: 32px; margin-bottom: 24px; line-height: 1.2; }
.split ul { list-style: none; margin-top: 8px; }
.split li {
  padding: 13px 0 13px 32px;
  border-top: 1px solid var(--line);
  color: var(--ink-dim);
  font-size: 15.5px;
  position: relative;
  line-height: 1.5;
}
.split li::before {
  position: absolute;
  left: 0;
  top: 13px;
  font-weight: 700;
  font-size: 18px;
}
.split li:first-child { border-top: none; }
.split .pos li::before { content: "✓"; color: #22c55e; }
.split .neg li::before { content: "✗"; color: var(--red); }
.split .quote {
  display: block;
  margin-top: auto;
  padding-top: 24px;
  font-style: italic;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
}
.split .pos .quote {
  color: #bbf7d0;
  text-shadow: 0 0 28px rgba(34, 197, 94, 0.4);
}
.split .neg .quote {
  color: color-mix(in srgb, #fff 85%, var(--red) 15%);
  text-shadow: 0 0 28px rgba(var(--accent-rgb), 0.5);
}

/* ─── MODULES BACKGROUND ICONS ─── */
.modules-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.modules-bg svg {
  position: absolute;
  color: var(--ink);
  opacity: 0.05;
  fill: none;
  stroke: currentColor;
}
#moduli > .wrap { position: relative; z-index: 1; }

@media (max-width: 860px) { .modules-bg { display: none; } }

/* ─── MODULES ─── */
.modules-head { text-align: center; margin-bottom: 8px; }
.module {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.modules-head + .module { border-top: none; }
.module:last-child { border-bottom: none; }
.module .mnum {
  font-family: 'Bebas Neue';
  font-size: 64px;
  color: var(--bg-alt);
  -webkit-text-stroke: 1px var(--line);
  line-height: 1;
}
.module .mnum.active { -webkit-text-stroke: 1px var(--red); color: transparent; }
.module h3 { font-size: 26px; display: flex; align-items: center; gap: 12px; }
.module h3 .ic { font-family: 'Inter'; font-size: 22px; }
.module p { margin-top: 10px; color: var(--ink-dim); font-size: 16px; max-width: 640px; }

/* ─── TESTIMONIALS SLIDER ─── */
.tmonials { margin-top: 40px; }

.slider-wrapper {
  overflow: hidden;
}

.tmonials-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.tmonials-track::-webkit-scrollbar { display: none; }

.tcard {
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 40px) / 3);
  border: 1px solid var(--line);
  background: var(--card);
  padding: 26px;
  display: flex;
  flex-direction: column;
}
.tcard .who { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.tcard .avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--red) 80%, #fff 20%),
    color-mix(in srgb, var(--red) 70%, #000 30%));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue';
  font-size: 18px;
  color: #fff;
  flex: 0 0 46px;
  overflow: hidden;
}
.tcard .avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.tcard .name { font-weight: 700; font-size: 15px; }
.tcard .role { font-size: 12px; color: var(--ink-dim); }
.tcard .stars { color: var(--gold); font-size: 12px; letter-spacing: 1px; margin-bottom: 10px; }
.tcard p { font-size: 14.5px; color: var(--ink-dim); line-height: 1.6; flex: 1; }

/* Slider navigation */
.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}
.slider-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  font-size: 18px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .18s ease, background .18s ease, color .18s ease;
  -webkit-tap-highlight-color: transparent;
  line-height: 1;
}
.slider-btn:hover:not(:disabled) {
  border-color: var(--red);
  background: rgba(var(--accent-rgb),.1);
  color: var(--red);
}
.slider-btn:disabled { opacity: 0.25; cursor: default; }
.slider-counter {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--ink-dim);
  min-width: 80px;
  text-align: center;
}

/* ─── ABOUT ─── */
.about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: center; }
.about-photo { border: 1px solid var(--line); aspect-ratio: 1/1; overflow: hidden; background: #111; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-grid p { font-size: 15.5px; color: var(--ink-dim); margin-bottom: 18px; }
.about-grid p b { color: rgba(255,255,255,.72); font-weight: 600; }
.credlist { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.cred {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-top: 2px solid var(--red);
  padding: 12px 16px;
  border-radius: 4px;
  font-family: 'Bebas Neue';
  font-size: 14px;
  letter-spacing: .8px;
  color: var(--ink);
}
.cred-icon { color: var(--red); flex-shrink: 0; }

/* ─── CTA BLOCK ─── */
.cta-block { text-align: center; background: linear-gradient(180deg, color-mix(in srgb, #0a0a0b 82%, var(--red) 18%), #0a0a0b); }
.cta-block h2 { font-size: clamp(36px, 5.5vw, 60px); }
.cta-block .lead { margin: 18px auto 0; max-width: 780px; text-align: center; color: var(--ink-dim); font-size: 18px; line-height: 1.7; }
.price-block { margin: 36px auto 0; max-width: 600px; text-align: center; }
.price-features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: nowrap;
  margin-bottom: 40px;
}
.price-features span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.price-features span::before {
  content: "✓";
  color: var(--red);
  font-size: 16px;
  font-weight: 700;
}
.price-hero {
  position: relative;
  display: inline-block;
  padding: 36px 56px 28px;
  margin-bottom: 32px;
}
.price-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(var(--accent-rgb),.18) 0%, transparent 70%);
  border-radius: 20px;
  pointer-events: none;
}
.price-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 96px;
  line-height: 1;
  color: #fff;
  letter-spacing: 2px;
  text-shadow: 0 0 60px rgba(var(--accent-rgb),.35);
  position: relative;
}
.price-sub-unit {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-dim);
  letter-spacing: 0;
  vertical-align: middle;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
  position: relative;
}
.price-was {
  font-size: 15px;
  color: var(--ink-dim);
  text-decoration: line-through;
  opacity: .55;
}
.price-save-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 0 16px rgba(var(--accent-rgb),.5);
}
.price-cta { font-size: 20px !important; padding: 20px 52px !important; }


/* ─── FAQ ─── */
.faq-list { margin-top: 30px; max-width: 920px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:first-child { border-top: none; }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  -webkit-tap-highlight-color: transparent;
}
.faq-q .plus {
  font-family: 'Bebas Neue';
  font-size: 28px;
  color: var(--red);
  transition: transform .2s ease;
  flex: 0 0 auto;
  line-height: 1;
}
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding-bottom: 24px; color: var(--ink-dim); font-size: 15.5px; max-width: 760px; line-height: 1.7; }

/* ─── FOOTER ─── */
.footer-cta {
  text-align: center;
  padding: 80px 0 40px;
  position: relative;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(var(--accent-rgb),.18) 0%, transparent 100%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(var(--accent-rgb),.08) 0%, transparent 100%);
}
footer {
  padding: 48px 0 32px;
  color: var(--ink-dim);
  font-size: 13px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.brand-foot {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--ink);
  margin-bottom: 4px;
}
.brand-foot span { color: var(--red); }
.footer-tagline { font-size: 13px; color: var(--ink-dim); }
.footer-socials {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink-dim);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: color .2s, border-color .2s;
}
.footer-social-link:hover { color: var(--red); border-color: rgba(var(--accent-rgb),.4); }
.footer-copy {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 12px;
  color: var(--ink-dim);
  opacity: .7;
}
.footer-privacy {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color .2s;
}
.footer-privacy:hover { color: var(--ink); }
.footer-brand {
  font-weight: 600;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color .2s;
}
.footer-brand:hover { color: var(--ink); }

/* ─── STICKY CTA ─── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  background: rgba(10,10,11,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 12px 20px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 16px;
  -webkit-tap-highlight-color: transparent;
}
.sticky-cta.show { display: flex; }
.sticky-cta span { font-size: 14px; color: var(--ink-dim); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 860px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 860px) {
  section { padding: 64px 0; }

  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-photo { aspect-ratio: 3/2; max-height: 360px; }

  .about-grid { grid-template-columns: 1fr; gap: 20px; }
  .about-photo { aspect-ratio: 4/3; }

  .split { grid-template-columns: 1fr; gap: 1px; }
  .split .pos { background: linear-gradient(180deg, color-mix(in srgb, #111114 86%, #16a34a 14%) 0%, var(--bg) 100%); padding: 44px 32px; }
  .split .neg { background: linear-gradient(180deg, color-mix(in srgb, var(--bg) 84%, var(--red) 16%) 0%, var(--bg) 100%); padding: 44px 32px; }

  .tcard { flex: 0 0 calc((100% - 20px) / 2); }

  .why-grid { grid-template-columns: 1fr; gap: 12px; }

  .module { grid-template-columns: auto 1fr; gap: 20px; }
  .module .mnum { font-size: 44px; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 540px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 540px) {
  .wrap { padding: 0 16px; }
  section { padding: 52px 0; }

  .navbar { padding: 12px 16px; }
  .nav-links { display: none; }
  .brand { font-size: 17px; }
  .nav-cta { font-size: 13px; padding: 9px 16px; }

  .hero { padding: 64px 0 72px; }
  .hero-grid { gap: 28px; }
  .hero .eyebrow { font-size: 10.5px; letter-spacing: 3px; margin-bottom: 14px; }
  .hero h1 { font-size: clamp(36px, 10.5vw, 54px); line-height: 1.05; }
  .hero p.lead { font-size: 15.5px; margin: 14px 0 0; line-height: 1.6; }
  .hero p.lead + p.lead { display: none; }
  .hero-ctas { gap: 10px; margin-top: 24px; }
  .hero-ctas .btn { flex: 1; text-align: center; justify-content: center; }
  .micro { font-size: 11px; margin-top: 18px; line-height: 1.8; }
  .hero-photo { display: none; }
  .btn { font-size: 17px; padding: 14px 22px; }

  /* Mobile stats — infinite marquee */
  .stats-grid {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: statMarquee 9s linear infinite;
  }
  .stats-grid:hover { animation-play-state: paused; }
  .stat {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    padding: 20px 28px;
    scroll-snap-align: unset;
    text-align: left;
  }
  .stat::before { display: block; top: 15%; bottom: 15%; }
  .stat:first-child::before { display: block; }
  .stat .num {
    font-size: 32px;
    line-height: 1;
    flex-shrink: 0;
  }
  .stat .num::after { display: none; }
  .stat .label {
    font-size: 10px;
    letter-spacing: 2px;
    margin-top: 0;
    line-height: 1.3;
  }

  .video-wrap { margin-top: 24px; }

  .check-item { gap: 14px; }
  .check-item p { font-size: 15.5px; }
  .pull-quote { display: none; }

  .modules-head { margin-bottom: 28px; }

  .why-lead { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 28px; }

  section:has(.split) { border-top: none; border-bottom: none; }
  section:has(.why-grid) { border-bottom: none; }
  .split .pos {
    padding: 40px 16px 36px;
    background: linear-gradient(180deg,
      var(--bg) 0%,
      color-mix(in srgb, #111114 86%, #16a34a 14%) 12%,
      color-mix(in srgb, #111114 86%, #16a34a 14%) 100%);
  }
  .split .neg {
    padding: 36px 16px 40px;
    background: linear-gradient(180deg,
      color-mix(in srgb, var(--bg) 84%, var(--red) 16%) 0%,
      color-mix(in srgb, var(--bg) 84%, var(--red) 16%) 88%,
      var(--bg) 100%);
  }
  .split h3 { font-size: 22px; }
  .split li { font-size: 14px; }
  .split .quote { display: block; margin-top: 24px; padding-top: 0; font-size: 15px; }

  .module { grid-template-columns: 1fr; gap: 6px; padding: 24px 0; }
  .module .mnum { font-size: 28px; display: inline-block; }
  .module h3 { font-size: 20px; margin-top: 4px; }
  .module p { font-size: 14.5px; }

  .tcard { flex: 0 0 100%; }

  .about-grid p { font-size: 15.5px; }
  .credlist { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .cred { font-size: 12px; padding: 10px 12px; gap: 8px; }

  .faq-q { font-size: 15.5px; padding: 20px 0; }

  .cta-block { padding: 56px 0; }
  .cta-block h2 { font-size: clamp(28px, 8vw, 42px); margin-bottom: 28px; }
  .cta-block .lead { display: none; }
  .price-features { gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
  .price-features span { font-size: 12px; gap: 5px; }
  .price-main { font-size: 68px; }
  .price-hero { padding: 24px 24px 20px; }
  .price-cta { font-size: 16px !important; padding: 16px 24px !important; width: 100%; max-width: 340px; display: block; margin: 0 auto; }
  .price-card { flex-direction: column; border-radius: 12px; }
  .price-card-right { border-left: none; border-top: 1px solid rgba(var(--accent-rgb),.2); width: 100%; }
  .price-card-left, .price-card-right { padding: 20px 24px; }
  .price-strike { font-size: 32px; }
  .price-current { font-size: 52px; }
  .price-cta { font-size: 18px !important; padding: 16px 28px !important; width: 100%; max-width: 320px; display: block; margin: 0 auto; }
  .cta-block .micro { font-size: 12px; margin-top: 14px; }

  .footer-cta { padding: 52px 0 32px; }

  .sticky-cta { padding: 10px 16px; gap: 10px; }
  .sticky-cta > span { display: none; }
}

/* ─── LIGHT MODE ─── */
[data-theme="light"] {
  --bg:      #ffffff;
  --bg-alt:  #f4f3f1;
  --card:    #ffffff;
  --line:    rgba(0,0,0,.1);
  --ink:     #111110;
  --ink-dim: rgba(17,17,16,.62);
}

/* Base */
[data-theme="light"] body { background: var(--bg); color: var(--ink); }

/* Header */
[data-theme="light"] header {
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}
[data-theme="light"] .nav-links a { color: var(--ink); }
[data-theme="light"] .nav-links a:hover { color: var(--red); }
[data-theme="light"] .footer-social-link { background: var(--bg-alt); }
[data-theme="light"] .cred { background: var(--bg-alt); }
[data-theme="light"] .nav-cta {
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--red) 82%, #fff 18%),
    var(--red) 55%,
    color-mix(in srgb, var(--red) 78%, #000 22%));
  color: #fff;
  box-shadow: 0 4px 14px rgba(var(--accent-rgb),.3);
}

/* Hero */
[data-theme="light"] .hero::before {
  background:
    radial-gradient(circle at 80% 15%, rgba(var(--accent-rgb),.12), transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(var(--accent-rgb),.06), transparent 40%);
}
[data-theme="light"] .hero h1 { color: var(--ink); }
[data-theme="light"] .hero .tag { background: rgba(var(--accent-rgb),.1); color: var(--red); }
[data-theme="light"] .hero p.lead { color: rgba(17,17,16,.7); }

/* Stats */
[data-theme="light"] .stats { background: var(--bg-alt); border-color: var(--line); }
[data-theme="light"] .stat .num { color: var(--ink); }
[data-theme="light"] .stat .label { color: var(--ink-dim); }
[data-theme="light"] .stat::before { background: var(--line); }

/* Why cards */
[data-theme="light"] .why-card {
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
[data-theme="light"] .why-card h3 { color: var(--ink); }

/* Split section – pos green tint, neg accent tint */
[data-theme="light"] .split .pos {
  background: linear-gradient(90deg,
    var(--bg) 0%,
    color-mix(in srgb, #ffffff 88%, #16a34a 12%) 40%,
    color-mix(in srgb, #ffffff 91%, #16a34a 9%) 100%);
}
[data-theme="light"] .split .neg {
  background: linear-gradient(90deg,
    color-mix(in srgb, #ffffff 82%, var(--red) 18%) 0%,
    color-mix(in srgb, #ffffff 88%, var(--red) 12%) 60%,
    var(--bg) 100%);
}
[data-theme="light"] .split .pos .quote { color: #166534; text-shadow: none; }
[data-theme="light"] .split .neg .quote {
  color: color-mix(in srgb, #111 80%, var(--red) 20%);
  text-shadow: none;
}
[data-theme="light"] .split li { color: var(--ink); }
[data-theme="light"] .split h2 { color: var(--ink); }
[data-theme="light"] .split .pos li::before { color: #7a6a2e; }

/* Testimonials */
[data-theme="light"] .tcard {
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
[data-theme="light"] .tcard .name { color: var(--ink); }
[data-theme="light"] .tcard p { color: var(--ink-dim); }

/* Sections */
[data-theme="light"] .section-alt { background: var(--bg-alt); }

/* Check items */
[data-theme="light"] .check-item { color: var(--ink); border-color: rgba(0,0,0,.1); }
[data-theme="light"] .check-item .mark {
  background: rgba(var(--accent-rgb),.1);
  border-color: var(--red);
  color: var(--red);
}
[data-theme="light"] .check-item p { color: rgba(17,17,16,.72); }
[data-theme="light"] .hero p.lead b { color: var(--ink); }
[data-theme="light"] .check-item p b { color: var(--ink); }
[data-theme="light"] .about-grid p b { color: var(--ink); }

/* Pull quote */
[data-theme="light"] .pull-quote {
  background: var(--bg-alt);
  border-left-color: var(--red);
  color: var(--ink);
}

/* About */
[data-theme="light"] .about-photo { background: var(--bg-alt); }
[data-theme="light"] .about-grid p { color: rgba(17,17,16,.72); }

/* Get list icons */
[data-theme="light"] .get-item p { color: rgba(17,17,16,.72); }

/* General section lead text */
[data-theme="light"] .lead { color: rgba(17,17,16,.65); }

/* FAQ */
[data-theme="light"] .faq-item { border-color: var(--line); }
[data-theme="light"] .faq-q { color: var(--ink); }
[data-theme="light"] .faq-q .plus { color: var(--ink-dim); }
[data-theme="light"] .faq-a { color: var(--ink-dim); }

/* Modules – border uses var(--line), adapts automatically */

/* CTA / Pricing */
[data-theme="light"] .cta-block {
  background:
    radial-gradient(ellipse 100% 65% at 50% 0%, rgba(var(--accent-rgb),.18) 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(var(--accent-rgb),.07) 0%, transparent 100%),
    linear-gradient(180deg, #f2f1ef 0%, var(--bg) 100%);
}
[data-theme="light"] .cta-block h2 { color: var(--ink); }
[data-theme="light"] .cta-block .lead { color: var(--ink-dim); }
[data-theme="light"] .price-hero::before {
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(var(--accent-rgb),.14) 0%, transparent 70%);
}
[data-theme="light"] .price-main { color: var(--ink); text-shadow: none; }
[data-theme="light"] .price-main .price-unit { color: var(--ink-dim); }
[data-theme="light"] .price-main .price-sub { color: var(--ink-dim); }
[data-theme="light"] .price-sub-unit { color: var(--ink-dim); }

/* Sticky CTA */
[data-theme="light"] .sticky-cta {
  background: rgba(255,255,255,.97);
  border-top: 1px solid var(--line);
  box-shadow: 0 -2px 12px rgba(0,0,0,.07);
}
[data-theme="light"] .sticky-cta .btn {
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--red) 82%, #fff 18%),
    var(--red) 55%,
    color-mix(in srgb, var(--red) 78%, #000 22%));
}

/* Footer */
[data-theme="light"] footer { background: var(--bg-alt); color: var(--ink-dim); }
[data-theme="light"] footer a { color: var(--ink-dim); }

/* Mobile split overrides in light mode */
@media (max-width: 767px) {
  [data-theme="light"] .split .pos {
    background: linear-gradient(180deg,
      color-mix(in srgb, #ffffff 88%, #16a34a 12%) 0%,
      var(--bg) 100%);
  }
  [data-theme="light"] .split .neg {
    background: linear-gradient(180deg,
      color-mix(in srgb, #ffffff 82%, var(--red) 18%) 0%,
      var(--bg) 100%);
  }
}

/* ─── THEME PICKER WIDGET ─── */
.tp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.tp-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  transition: transform .2s, box-shadow .2s;
}
.tp-btn:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(0,0,0,.4); }
.tp-panel {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
  width: 196px;
  animation: tpIn .18s ease;
}
@keyframes tpIn {
  from { opacity: 0; transform: translateY(8px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.tp-label {
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 10px;
}
.tp-swatches {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tp-swatch {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s, border-color .15s;
}
.tp-swatch:hover { transform: scale(1.15); }
.tp-swatch.active { border-color: #fff; box-shadow: 0 0 0 1px rgba(0,0,0,.3); }
[data-theme="light"] .tp-swatch.active { border-color: #000; }
.tp-modes {
  display: flex;
  gap: 8px;
}
.tp-mode {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-dim);
  transition: background .15s, color .15s, border-color .15s;
}
.tp-mode:hover, .tp-mode.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
