/* ==========================================================
   Reduprime Turbo — Landing Page
   ========================================================== */

:root {
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --bg-card: #161616;
  --red: #e11d2e;
  --red-dark: #b8001a;
  --red-light: #ff2a3b;
  --gold: #ddb647;
  --gold-light: #f0cf6b;
  --text: #ffffff;
  --text-soft: #d4d4d4;
  --text-mute: #9a9a9a;
  --line: #262626;
  --green: #2ecc71;
  --container: 1180px;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --shadow-red: 0 8px 24px rgba(225,29,46,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; margin: 0; padding: 0; }
body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================
   Topbar (added when integrated with brand hub)
   ========================================================== */
.site-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,.92);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}
/* Mobile: hide top header — the page leads with the video and the
   bottom sticky CTA handles conversion */
@media (max-width: 880px) {
  .site-topbar { display: none; }
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}
.topbar-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #fff;
}
.topbar-logo img { height: 48px; width: auto; border-radius: 0; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4)); }
.topbar-logo .sr-only {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.topbar-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.topbar-nav a {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.topbar-nav a:hover { color: var(--gold); }
.topbar-nav a.btn-mini {
  background: var(--red);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-red);
}
.topbar-nav a.btn-mini:hover { color: #fff; filter: brightness(1.1); }

/* Language switcher (footer) */
.lang-switcher {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.lang-switcher a {
  font-size: 12px;
  color: var(--text-soft);
  font-weight: 700;
  letter-spacing: .3px;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color .15s ease, color .15s ease;
}
.lang-switcher a:hover { border-color: var(--gold); color: var(--gold); }

/* ==========================================================
   Buttons
   ========================================================== */
.btn {
  display: inline-block;
  padding: 16px 34px;
  background: linear-gradient(180deg, var(--red-light), var(--red));
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .5px;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  box-shadow: var(--shadow-red);
  text-align: center;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 20px 44px; font-size: 18px; }
.btn-block { display: block; width: 100%; }

/* ==========================================================
   HERO — desktop: text left + video right (grid)
          mobile: video edge-to-edge on top, text below
   ========================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top right, rgba(225,29,46,.20), transparent 65%),
    radial-gradient(ellipse at bottom left, rgba(221,182,71,.08), transparent 55%),
    linear-gradient(180deg, #0a0a0a 0%, #1a0509 100%);
  padding: 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px 24px;
}
.hero-video-wrap {
  position: relative;
  overflow: hidden;
  line-height: 0;
  background: #0a0a0a;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(225,29,46,.30), 0 0 80px rgba(225,29,46,.20);
  /* Source trimmed to model+bottle scene (0-7s, no solo-bottle zoom) +
     cropped to 720x720. Wrap is exact 1:1 — no further CSS cropping,
     bottle cap stays fully visible across the whole loop. */
  max-width: 540px;
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  width: 100%;
}
.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-video.desktop { display: block; }
.hero-video.mobile { display: none; }
.hero-copy { text-align: left; }
.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 14px;
  color: var(--text-soft);
  text-transform: uppercase;
}
.hero-eyebrow strong { color: var(--gold); }
.hero-copy h1 {
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: -.005em;
}
.hero-copy h1 .gold { color: var(--gold); }
.hero-copy h1 .red { color: var(--red); }
.hero-copy p.lead {
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--text-soft);
  margin: 0 0 28px;
  max-width: 540px;
}

@media (max-width: 880px) {
  /* Hero glued to top of viewport — no top margin, no header above */
  .hero {
    margin-top: 0;
    padding: 0;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    margin: 0;
    max-width: none;
  }
  .hero-video.desktop { display: none; }
  .hero-video.mobile { display: block; }
  .hero-video-wrap {
    order: 1;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    max-width: 100%;
    /* Match source 1:1 — full content shows at the top of the viewport */
    aspect-ratio: 1 / 1;
    max-height: none;
  }
  .hero-video-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 65%, rgba(10,10,10,.65) 100%);
  }
  .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .hero-copy {
    order: 2;
    padding: 32px 20px 40px;
    text-align: center;
  }
  .hero-copy h1, .hero-copy p.lead { margin-inline: auto; }
}

/* ==========================================================
   Promo banner (red strip)
   ========================================================== */
.promo {
  background: linear-gradient(90deg, #c4001a, #e11d2e, #c4001a);
  padding: 14px 0;
}
.promo-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 12px;
  text-align: center;
}
.promo-item {
  flex: 1 1 160px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .5px;
  color: #fff;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.promo-item::before {
  content: "✓";
  display: inline-block;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 13px;
  line-height: 22px;
  font-weight: 900;
}

/* ==========================================================
   Generic section
   ========================================================== */
.section {
  padding: 80px 0;
}
.section.alt {
  background: var(--bg-alt);
}

/* Light section variant — cream + soft gold (mirrors hub .s-cream) */
.section.light {
  background:
    radial-gradient(ellipse 900px 500px at 50% 0%, rgba(221,182,71,.18), transparent 70%),
    linear-gradient(180deg, #fbf6e8 0%, #f3e9c8 100%);
  color: #1a0d2e;
}
.section.light .section-title { color: #1a0d2e; }
.section.light .section-title .red,
.section.light .section-title .gold { color: var(--red); }
.section.light .section-eyebrow {
  color: #7a5a0a;
  background: rgba(221,182,71,.18);
  border: 1px solid rgba(221,182,71,.45);
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 700;
}
.section.light p { color: #4a3863; }

/* ==========================================================
   Destaque / Spotlight section (REDU Primê visual)
   ========================================================== */
.destaque {
  background:
    radial-gradient(ellipse at right, rgba(225,29,46,.18), transparent 60%),
    linear-gradient(135deg, #0a0a0a 0%, #1a0509 60%, #2a0c12 100%);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}
.destaque::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(221,182,71,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.destaque .container { position: relative; }
.destaque-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.destaque-img {
  position: relative;
  display: flex;
  justify-content: center;
}
.destaque-img img {
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(225,29,46,.25), 0 0 80px rgba(225,29,46,.18);
}
.destaque-text h2 {
  /* Unified — matches Turbo hero h1 / all section titles */
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.005em;
  margin: 0 0 18px;
  text-transform: uppercase;
}
.destaque-text h2 .gold { color: var(--gold); }
.destaque-text h2 .red { color: var(--red); }
.destaque-text .destaque-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(221,182,71,.10);
  border: 1px solid rgba(221,182,71,.30);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.destaque-text p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-soft);
  margin: 0 0 16px;
}
.destaque-text p strong { color: var(--white); }
.destaque-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 28px;
}
.destaque-pill {
  background: rgba(225,29,46,.12);
  border: 1px solid rgba(225,29,46,.35);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
}
@media (max-width: 880px) {
  .destaque { padding: 60px 0; }
  .destaque-grid { grid-template-columns: 1fr; gap: 36px; }
  .destaque-img { order: -1; }
  .destaque-img img { max-width: 400px; }
}
.section.dark {
  background: linear-gradient(180deg, #050505, #0e0e0e);
}
.section-title {
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  margin: 0 auto 40px;
  max-width: 900px;
  text-transform: uppercase;
  letter-spacing: -.005em;
}
.section-title .red { color: var(--red); }
.section-title .gold { color: var(--gold); }

.section-eyebrow {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ==========================================================
   Problems section (3 cards)
   ========================================================== */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-card {
  background: linear-gradient(180deg, #1a1a1a, #0e0e0e);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  position: relative;
  transition: transform .2s ease, border-color .2s ease;
}
.problem-card:hover { transform: translateY(-6px); border-color: var(--red); }
.problem-card .icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  box-shadow: var(--shadow-red);
}
.problem-card h3 {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: var(--gold);
  letter-spacing: .3px;
}
.problem-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
}

.diet-bar {
  margin-top: 60px;
  padding: 36px 30px;
  text-align: center;
  background: linear-gradient(135deg, #1a0a0d, #0a0a0a);
  border: 1px solid var(--red);
  border-radius: var(--radius-lg);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}
.diet-bar .red { color: var(--red); }

/* ==========================================================
   Multi-action benefits
   ========================================================== */
.multi-action {
  background:
    radial-gradient(circle at 20% 30%, rgba(225,29,46,.12), transparent 50%),
    var(--bg-alt);
}
.multi-action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.multi-action-text p {
  font-size: 16px;
  color: var(--text-soft);
  margin: 0 0 12px;
}
.multi-action-text strong { color: #fff; }
.multi-action-photo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.multi-action-photo img {
  max-width: 100%;
  max-height: 560px;
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(225,29,46,.20), 0 0 50px rgba(225,29,46,.12);
}
@media (max-width: 880px) {
  .multi-action-photo img { max-height: 480px; }
}
.benefits-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 26px;
}
.benefit-icon {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
  transition: border-color .2s ease;
}
.benefit-icon:hover { border-color: var(--gold); }
.benefit-icon img {
  width: 90px; height: 90px;
  margin: 0 auto 10px;
  object-fit: contain;
}
.benefit-icon p {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .5px;
  color: var(--text);
  text-transform: uppercase;
  line-height: 1.3;
}

/* ==========================================================
   Why wins
   ========================================================== */
.why-wins {
  background:
    radial-gradient(circle at 80% 20%, rgba(221,182,71,.08), transparent 60%),
    var(--bg);
}
.why-wins-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.why-wins-text h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin: 0 0 22px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
}
.why-wins-text p {
  font-size: 16px;
  color: var(--text-soft);
  margin: 0 0 14px;
}
.why-wins-text strong { color: #fff; }

/* ==========================================================
   Comparison table
   ========================================================== */
.compare-card {
  background: #0b0b0b;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px;
  margin-top: 30px;
}
.compare-title {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 12px;
}
.compare-sub {
  font-weight: 700;
  font-size: 16px;
  color: #ffefef;
  margin-bottom: 22px;
}
.compare-sub .mute { opacity: .6; font-weight: 500; }
.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: var(--red) #1a1a1a;
}
.compare-table-wrap::-webkit-scrollbar { height: 8px; }
.compare-table-wrap::-webkit-scrollbar-track { background: #1a1a1a; border-radius: 4px; }
.compare-table-wrap::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }
.compare-swipe-hint {
  display: none;
  text-align: center;
  font-size: 12px;
  color: var(--text-mute);
  margin-top: 10px;
  font-style: italic;
  letter-spacing: .04em;
}
.compare-table {
  display: grid;
  grid-template-columns: 230px 1fr 1fr 1fr 1fr;
  min-width: 920px;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
}
.compare-cell {
  padding: 14px 16px;
  border-right: 1px solid #2a2a2a;
  border-bottom: 1px dashed #2a2a2a;
}
.compare-cell:last-child { border-right: none; }
.compare-cell.head {
  background: #111;
  font-weight: 900;
  color: #fff;
  letter-spacing: .3px;
  text-transform: uppercase;
  font-size: 14px;
}
.compare-cell.head.reduprime {
  background: linear-gradient(0deg, var(--red), var(--red-light));
}
.compare-cell.aspect {
  background: #0f0f0f;
  font-weight: 700;
  color: #fff;
}
.compare-cell.bad {
  background: #f8f8f8;
  color: #333;
}
.compare-cell.win {
  background: #160607;
  color: #ffdbdb;
  font-weight: 700;
}
.compare-cell.win strong { color: #fff; font-weight: 900; }
.compare-note {
  font-size: 13px;
  color: var(--text-mute);
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.compare-note::before {
  content: "";
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 3px;
}

/* ==========================================================
   13 Triggers section
   ========================================================== */
.triggers-section {
  background: linear-gradient(180deg, #0a0a0a, #0e0e0e 50%, #0a0a0a 100%);
}
.triggers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.trigger-card {
  background: linear-gradient(180deg, #1a0a0d, #0e0606);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}
.trigger-card:hover { transform: translateY(-4px); border-color: var(--red); }
.trigger-card::before {
  content: "";
  position: absolute;
  top: -2px; left: -2px;
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--red), transparent);
  border-radius: 0 0 80px 0;
  opacity: .4;
}
.trigger-num {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.trigger-card h3 {
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 10px;
  line-height: 1.2;
  color: #fff;
}
.trigger-card .ingredients {
  font-size: 15px;
  font-weight: 800;
  color: var(--gold);
  margin: 0 0 12px;
}
.trigger-card .desc {
  font-size: 14px;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================
   Transformations carousel
   ========================================================== */
/* Auto-scrolling variant — no user interaction needed, infinite marquee.
   JS clones items so .carousel-track is exactly 2× length; we translateX
   from 0 → -50% for a seamless loop. */
.carousel.carousel-auto {
  display: block;
  overflow: hidden;
  position: relative;
  padding-block: 4px;
  /* Edge fade hints (both sides) */
  mask-image: linear-gradient(to right, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%);
}
.carousel.carousel-auto .carousel-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: carouselScroll 70s linear infinite;
  will-change: transform;
}
.carousel.carousel-auto:hover .carousel-track,
.carousel.carousel-auto:focus-within .carousel-track {
  animation-play-state: paused;
}
.carousel.carousel-auto .carousel-item {
  flex: 0 0 auto;
}
@keyframes carouselScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .carousel.carousel-auto .carousel-track { animation: none; }
}
@media (max-width: 880px) {
  .carousel.carousel-auto .carousel-track { animation-duration: 50s; }
}

.carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 10px 0 28px;
  scrollbar-width: thin;
  scrollbar-color: var(--red) #1a1a1a;
}
.carousel::-webkit-scrollbar { height: 8px; }
.carousel::-webkit-scrollbar-track { background: #1a1a1a; border-radius: 4px; }
.carousel::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }
.carousel-item {
  flex: 0 0 auto;
  width: 260px;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid var(--line);
}
.carousel-item img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* ==========================================================
   Video testimonials
   ========================================================== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.video-grid video {
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: var(--radius);
  background: #000;
  object-fit: cover;
}

/* ==========================================================
   Kits / Pricing
   ========================================================== */
.kits {
  background: linear-gradient(180deg, var(--bg), #1a0509);
}
.kits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 30px;
}
.kit-card {
  background: linear-gradient(180deg, #1a1a1a, #0a0a0a);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, border-color .2s ease;
}
.kit-card:hover { transform: translateY(-6px); }
.kit-card.featured { border-color: var(--gold); transform: scale(1.04); }
.kit-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.kit-badge {
  position: absolute;
  top: 14px;
  right: -36px;
  background: var(--gold);
  color: #1a1a1a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 5px 40px;
  transform: rotate(35deg);
  text-transform: uppercase;
  z-index: 2;
}
.kit-tier {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.kit-card.featured .kit-tier { background: var(--gold); color: #1a1a1a; }
.kit-units {
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  padding: 16px 0 8px;
  color: var(--text);
}
.kit-img {
  padding: 0 18px;
  text-align: center;
}
.kit-img img { margin: 0 auto; max-height: 240px; }
.kit-price-from {
  text-align: center;
  color: var(--text-mute);
  font-size: 14px;
  margin: 14px 0 0;
}
.kit-price-from del { color: #777; }
.kit-price-from strong { color: var(--text-soft); display: block; margin-top: 4px; }
.kit-price {
  text-align: center;
  font-size: 44px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin: 6px 0;
}
.kit-price .small { font-size: 24px; }
.kit-price-vista {
  text-align: center;
  color: var(--text-soft);
  font-size: 14px;
  margin: 0 0 18px;
}
.kit-cta {
  padding: 0 18px 22px;
  margin-top: auto;
}
.kit-cta .btn {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
}

.payments {
  margin-top: 42px;
  text-align: center;
}
.payments img { margin: 0 auto; max-width: 100%; }
.payments .desk { display: block; }
.payments .mob { display: none; }

/* ==========================================================
   Quality / certifications
   ========================================================== */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.quality-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  transition: border-color .2s ease, transform .2s ease;
}
.quality-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.quality-card .badge {
  width: 56px; height: 56px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
}
.quality-card h3 {
  font-size: 14px;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .3px;
  color: #fff;
  line-height: 1.3;
}

/* ==========================================================
   Guarantee
   ========================================================== */
.guarantee {
  background:
    radial-gradient(ellipse at center, rgba(221,182,71,.10), transparent 60%),
    var(--bg-alt);
}
.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.guarantee-img img { margin: 0 auto; max-height: 480px; }
.guarantee-text .label {
  font-size: 14px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.guarantee-text h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  margin: 12px 0 18px;
  text-transform: uppercase;
  line-height: 1.1;
}
.guarantee-text h2 .red { color: var(--red); }
.guarantee-text p { color: var(--text-soft); margin: 0 0 14px; font-size: 16px; }
.guarantee-list {
  list-style: none;
  margin: 18px 0 18px;
  padding: 0;
}
.guarantee-list li {
  padding: 8px 0 8px 32px;
  position: relative;
  font-size: 16px;
  color: #fff;
}
.guarantee-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guarantee-text .strong-line {
  font-weight: 800;
  color: #fff;
  font-size: 17px;
  margin-top: 18px;
}

/* ==========================================================
   FAQ
   ========================================================== */
.faq {
  background: var(--bg);
}
.section.light.faq .faq-item {
  background: #ffffff;
  border-color: rgba(225,29,46,.18);
  box-shadow: 0 2px 8px rgba(45,18,90,.06);
}
.section.light.faq .faq-item[open] {
  border-color: var(--red);
  box-shadow: 0 6px 16px rgba(225,29,46,.12);
}
.section.light.faq .faq-item summary { color: #1a0d2e; }
.section.light.faq .faq-item .answer { color: #4a3863; }
.section.light.faq .faq-item .answer strong { color: #1a0d2e; }
.faq-list { max-width: 880px; margin: 30px auto 0; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item[open] { border-color: var(--red); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 300;
  color: var(--red);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .answer {
  padding: 0 22px 22px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* ==========================================================
   Footer
   ========================================================== */
.footer {
  background: #050505;
  border-top: 1px solid var(--line);
  padding: 50px 0 24px;
  font-size: 13px;
  color: var(--text-mute);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
  align-items: center;
}
.footer-logo img { max-height: 70px; }
.footer h4 {
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 10px;
  letter-spacing: 1px;
}
.footer p { margin: 4px 0; }
.footer .ssl {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer .ssl span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 12px;
  color: #fff;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.footer .ssl span::before {
  content: "🔒";
  font-size: 14px;
}
.legal {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  font-size: 12px;
  line-height: 1.6;
}
.legal p { margin: 0 0 8px; }
.legal strong { color: #fff; }

/* ==========================================================
   Sticky CTA (mobile)
   ========================================================== */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(10,10,10,.96);
  border-top: 1px solid rgba(225,29,46,.35);
  display: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 -8px 24px rgba(0,0,0,.5);
}
.sticky-cta .btn {
  width: 100%;
  padding: 14px 18px;
  font-size: 15px;
  letter-spacing: .04em;
}
/* Body bottom padding when sticky CTA is visible so it never covers content */
@media (max-width: 980px) {
  body { padding-bottom: 76px; }
}

/* ==========================================================
   Responsive
   ========================================================== */
@media (max-width: 980px) {
  .hero { padding: 30px 0 40px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .hero p.lead { margin: 0 auto 24px; }
  .hero-image { display: none; }
  .hero-mobile-img { display: block; margin: 0 auto; max-height: 460px; }
  .problems-grid { grid-template-columns: 1fr; }
  .multi-action-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .multi-action-grid > div:first-child { order: 2; }
  .why-wins-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .triggers-grid { grid-template-columns: 1fr 1fr; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .kits-grid { grid-template-columns: 1fr 1fr; }
  .kit-card.featured { transform: none; }
  .kit-card.featured:hover { transform: translateY(-6px); }
  .quality-grid { grid-template-columns: 1fr 1fr; }
  .guarantee-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .guarantee-list { display: inline-block; text-align: left; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer .ssl { justify-content: center; }
  .payments .desk { display: none; }
  .payments .mob { display: block; }
  body { padding-bottom: 80px; }
  .sticky-cta { display: block; }
  .section { padding: 56px 0; }
}

@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .triggers-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; gap: 12px; }
  .video-grid video { max-height: 70vh; }
  .kits-grid { grid-template-columns: 1fr; }
  .quality-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .promo-inner { gap: 8px; }
  .promo-item { font-size: 11px; flex-basis: calc(50% - 8px); }

  /* Comparison table mobile: sticky aspect column, edge-fade hint, compact cells */
  .compare-card { padding: 16px 0 18px; }
  .compare-card .compare-title,
  .compare-card .compare-sub,
  .compare-card .compare-note { padding-inline: 14px; }
  .compare-table-wrap {
    position: relative;
    margin-inline: 0;
    padding-inline: 0;
    mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 28px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 28px), transparent 100%);
  }
  .compare-table {
    grid-template-columns: 110px 130px 130px 130px 130px;
    min-width: 630px;
    font-size: 12px;
  }
  .compare-cell { padding: 10px 10px; font-size: 12px; }
  .compare-cell.head { font-size: 11px; letter-spacing: .04em; }
  .compare-cell.aspect {
    position: sticky;
    left: 0;
    z-index: 2;
    box-shadow: 2px 0 8px rgba(0,0,0,.4);
  }
  .compare-cell.head:first-child {
    position: sticky;
    left: 0;
    z-index: 3;
  }
  .compare-swipe-hint { display: block; }

  /* Transformations carousel: smaller items + edge fade */
  .carousel {
    padding-inline: 16px;
    mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 24px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 24px), transparent 100%);
  }
  .carousel-item { width: 200px; }
}

/* ==========================================================
   App teaser — two-tier comparison (Free vs Premium IA)
   ========================================================== */
.app-teaser {
  background:
    radial-gradient(ellipse 900px 500px at 80% 50%, rgba(123,60,192,.30), transparent 70%),
    linear-gradient(135deg, #2a0f4a 0%, #1a0d2e 100%);
  padding-block: 80px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.app-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(221,182,71,.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.app-teaser .container { position: relative; }
.app-teaser-header { max-width: 720px; margin: 0 auto 32px; }
.app-teaser-header .tag {
  display: inline-block;
  background: rgba(221,182,71,.10);
  border: 1px solid rgba(221,182,71,.30);
  color: #f0cf6b;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.app-teaser-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.005em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
}
.app-teaser-header h2 .tg { color: var(--gold); }
.app-teaser-header .lead {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0;
}
.app-teaser-header .lead strong { color: #fff; }

.app-tier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}
.app-tier-card {
  background: rgba(20,16,42,.6);
  border: 1px solid rgba(123,60,192,.30);
  border-radius: 18px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(4px);
}
.app-tier-card.premium {
  background: linear-gradient(135deg, #2a0f4a 0%, rgba(20,16,42,.7) 100%);
  border-color: var(--gold);
  box-shadow: 0 8px 28px rgba(221,182,71,.25);
}
.app-tier-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: rgba(123,60,192,.25);
  color: #a45cd9;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  width: fit-content;
}
.app-tier-badge.gold {
  background: rgba(221,182,71,.20);
  color: #f0cf6b;
  border: 1px solid rgba(221,182,71,.35);
}
.app-tier-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.005em;
  margin-bottom: 16px;
  color: #fff;
  line-height: 1.2;
}
.app-tier-card ul { list-style: none; padding: 0; margin: 0 0 20px; flex: 1; }
.app-tier-card li {
  padding: 9px 0;
  font-size: 14.5px;
  color: #f5f5f5;
  border-bottom: 1px solid rgba(123,60,192,.10);
  line-height: 1.5;
}
.app-tier-card li:last-child { border-bottom: none; }
.app-tier-card li strong { color: #f0cf6b; }
.app-tier-card.premium li strong { color: var(--gold); }
.app-tier-card .btn { width: 100%; }

.app-teaser .store-badge img { display: block; height: 54px; width: auto; border-radius: 10px; }
.app-teaser .store-badges-note {
  text-align: center;
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-mute);
  font-style: italic;
}
@media (max-width: 720px) {
  .app-tier-grid { grid-template-columns: 1fr; }
}

/* ==========================================================
   App screens row (same as hub but available in turbo.css)
   ========================================================== */
.app-screens-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 14px 8px 22px;
  margin: 28px -8px 0;
  mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
}
.app-screens-row::-webkit-scrollbar { height: 6px; }
.app-screens-row::-webkit-scrollbar-thumb { background: #7B3CC0; border-radius: 3px; }
.app-screen {
  flex: 0 0 auto;
  width: 220px;
  border-radius: 24px;
  overflow: hidden;
  scroll-snap-align: center;
  box-shadow: 0 24px 48px rgba(0,0,0,.55), 0 0 0 1px rgba(123,60,192,.30), 0 0 50px rgba(123,60,192,.18);
  transition: transform .3s ease, box-shadow .3s ease;
  background: #08050d;
}
.app-screen:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0,0,0,.6), 0 0 0 1px #d4af37, 0 0 60px rgba(212,175,55,.20);
}
.app-screen img { display: block; width: 100%; height: auto; }
@media (min-width: 880px) {
  .app-screens-row { justify-content: center; overflow-x: visible; mask-image: none; -webkit-mask-image: none; }
  .app-screen { width: 200px; }
}
@media (max-width: 600px) {
  .app-screen { width: 200px; }
}

/* Manual activation banner */
.activation-banner {
  background: linear-gradient(135deg, rgba(34,197,94,.18), rgba(34,197,94,.06));
  border: 1px solid rgba(34,197,94,.35);
  border-radius: 14px;
  padding: 16px 20px;
  max-width: 720px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 14px;
  color: #d1f5dd;
  line-height: 1.6;
}
.activation-banner strong { color: #7ee3a3; }

/* ==========================================================
   App screens row — auto-scroll on mobile (marquee)
   ========================================================== */
@media (max-width: 880px) {
  .app-screens-row.is-auto {
    overflow: hidden;
    scroll-snap-type: none;
  }
  .app-screens-row.is-auto .app-screens-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: appScreensScroll 28s linear infinite;
    will-change: transform;
  }
  .app-screens-row.is-auto:hover .app-screens-track,
  .app-screens-row.is-auto:focus-within .app-screens-track,
  .app-screens-row.is-auto:active .app-screens-track {
    animation-play-state: paused;
  }
  @keyframes appScreensScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  @media (prefers-reduced-motion: reduce) {
    .app-screens-row.is-auto .app-screens-track { animation: none; }
  }
}
