/* ═══════════════════════════════════════════════════════
   TESTO HARD — Landing Page v3
   IDENTITY: Aggressive Dark Cinematic / Red & Gold
   Unique visual language: angular cuts, diagonal accents,
   bold gradients, split hero — NOT a copy of the original.
   Same section ORDER but completely different aesthetics.
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── Design Tokens ── */
:root {
  --bg:             #08080c;
  --bg-surface:     #0e0e14;
  --bg-card:        #111118;
  --bg-elevated:    #18181f;

  --text:           #ededed;
  --text-secondary: #a0a0a8;
  --text-muted:     #5a5a66;

  --red:            #e63946;
  --red-dark:       #c4222f;
  --red-light:      #ff4d5a;
  --gold:           #d4a843;
  --gold-light:     #ebc86a;
  --green:          #22c55e;

  --glow-red:       rgba(230, 57, 70, 0.2);
  --glow-gold:      rgba(212, 168, 67, 0.15);

  --border:         rgba(255, 255, 255, 0.04);
  --border-light:   rgba(255, 255, 255, 0.08);

  --radius:         12px;
  --radius-lg:      20px;

  --font-display:   'Bebas Neue', 'Impact', sans-serif;
  --font-body:      'Inter', sans-serif;

  --container:      1140px;
  --transition:     0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

::selection { background: var(--red); color: #fff; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ── Diagonal Accent Line ── */
.accent-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  display: block;
  margin-bottom: 20px;
}

.accent-line.centered { margin-left: auto; margin-right: auto; }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ── Section Tag ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  width: 10px;
  height: 2px;
  background: var(--gold);
}

/* ── Section Header ── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .accent-line {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 16px;
  color: #fff;
}

.section-header h2 .em { color: var(--red); }

.section-header p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ── CTA Buttons ── */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  transition: all var(--transition);
  box-shadow: 0 6px 30px rgba(230, 57, 70, 0.35);
}

.btn-cta::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 10%;
  width: 80%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-cta:hover {
  background: var(--red-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(230, 57, 70, 0.45);
}

.btn-cta:hover::after { opacity: 1; }

.btn-cta:active { transform: scale(0.97); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--red);
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(230, 57, 70, 0.05);
}

/* ══════════════════════════════════════
   NAVBAR — Minimal with red accent
   ══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(8, 8, 12, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.navbar.scrolled {
  /* no visual change — keep header static */
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.12em;
  line-height: 1;
  user-select: none;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.logo-red { color: var(--red); }
.logo-white { color: var(--text-muted); font-size: 24px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a:not(.btn-cta) {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

.nav-links a:not(.btn-cta):hover { color: #fff; }

.nav-links a:not(.btn-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.nav-links a:not(.btn-cta):hover::after { width: 100%; }

.nav-cta-btn {
  padding: 10px 24px !important;
  font-size: 16px !important;
}

.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  color: #fff;
}
.menu-toggle svg { width: 24px; height: 24px; }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 12, 0.98);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.mobile-menu.active { display: flex; }

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--red); }

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px; height: 48px;
  display: flex;
  align-items: center; justify-content: center;
  color: #fff;
}

/* ══════════════════════════════════════
   HERO — Split Layout (unique identity)
   Left: Text / Right: Product Visual
   ══════════════════════════════════════ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  overflow: visible;
}

/* Background diagonal cut */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(230, 57, 70, 0.03) 100%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}

/* Ambient glow */
.hero-ambient {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
}

.hero-ambient-1 {
  width: 400px; height: 400px;
  background: rgba(230, 57, 70, 0.08);
  top: 20%;
  left: 5%;
  animation: ambientDrift 8s ease-in-out infinite alternate;
}

.hero-ambient-2 {
  width: 300px; height: 300px;
  background: rgba(212, 168, 67, 0.06);
  bottom: 10%;
  right: 10%;
  animation: ambientDrift 10s ease-in-out infinite alternate-reverse;
}

@keyframes ambientDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(20px, -20px); }
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left side — Text */
.hero-text {
  max-width: 520px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230, 57, 70, 0.08);
  border: 1px solid rgba(230, 57, 70, 0.15);
  color: var(--red-light);
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(44px, 5.5vw, 72px);
  line-height: 0.95;
  margin-bottom: 24px;
  color: #fff;
}

.hero h1 .hero-em {
  color: var(--red);
  display: block;
  text-shadow: 0 0 40px rgba(230, 57, 70, 0.3);
}

.hero-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 440px;
}

.hero-countdown {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid rgba(212, 168, 67, 0.15);
  color: var(--gold);
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-countdown svg {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
}

.hero-proof-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
}

/* Right side — Product visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-product-container {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
}

/* Rings behind product */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-ring-1 {
  width: 90%;
  height: 90%;
  border-color: rgba(230, 57, 70, 0.08);
  animation: ringRotate 30s linear infinite;
}

.hero-ring-2 {
  width: 70%;
  height: 70%;
  border-color: rgba(212, 168, 67, 0.06);
  animation: ringRotate 20s linear infinite reverse;
}

.hero-ring-3 {
  width: 50%;
  height: 50%;
  border-color: rgba(230, 57, 70, 0.04);
}

@keyframes ringRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-product-img {
  position: relative;
  z-index: 5;
  max-height: 340px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(230, 57, 70, 0.15));
  animation: productFloat 6s ease-in-out infinite;
}

@keyframes productFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Power bars overlaid on product */
.hero-power-bars {
  position: absolute;
  right: -30px;
  bottom: 15%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 130px;
}

.power-bar-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.power-bar-label {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #fff;
}

.power-bar-track {
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.power-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 3px;
  animation: barGrow 1.5s ease-out forwards;
  transform-origin: left;
}

@keyframes barGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* Hero bottom — CTA + feature tags */
.hero-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.hero-bottom .btn-cta {
  width: 100%;
  max-width: 500px;
}

/* Feature tags row */
.hero-feature-tags {
  display: flex;
  gap: 12px;
  justify-content: center;
  width: 100%;
  max-width: 560px;
}

.hero-ftag {
  flex: 1;
  text-align: center;
  padding: 10px 12px;
  border: 1px solid rgba(230, 57, 70, 0.2);
  background: rgba(230, 57, 70, 0.05);
  border-radius: 4px;
}

.ftag-main {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #fff;
}

.ftag-sub {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ══════════════════════════════════════
   MARQUEE TICKER — Infinite scroll bar
   ══════════════════════════════════════ */
.marquee-bar {
  background: var(--red);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  z-index: 10;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  letter-spacing: 0.08em;
  color: #fff;
  white-space: nowrap;
  padding: 0 20px;
}

.marquee-icon {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   PROBLEM SECTION — Numbered horizontal cards
   ══════════════════════════════════════ */
.problem-section {
  padding: 100px 0;
  background: var(--bg-surface);
  position: relative;
}

/* Diagonal top edge */
.problem-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--bg);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  padding: 36px 28px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--red), var(--gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.problem-card:hover::before { opacity: 1; }
.problem-card:hover { border-color: var(--border-light); }

.problem-num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--red);
  opacity: 0.15;
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
  letter-spacing: 0.05em;
}

.problem-card h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  color: #fff;
}

.problem-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   GRAB SECTION — Video
   ══════════════════════════════════════ */
.grab-section {
  padding: 40px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.grab-bg-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.06), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(100px);
  pointer-events: none;
}

.grab-video-wrap {
  max-width: 640px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(230, 57, 70, 0.12);
  box-shadow: 0 0 60px rgba(230, 57, 70, 0.06);
}

.grab-video {
  display: block;
  width: 100%;
  height: auto;
  background: #000;
}

.grab-text {
  text-align: center;
  margin-bottom: 24px;
}

.grab-text h2 {
  font-size: clamp(28px, 4.5vw, 48px);
  margin-bottom: 12px;
  color: #fff;
}

.grab-text h2 .em { color: var(--red); }

.grab-text p {
  font-size: 15px;
  color: var(--text-muted);
}

/* ══════════════════════════════════════
   NUTRITION TABLE SECTION
   ══════════════════════════════════════ */
.nutrition-section {
  padding: 60px 0 80px;
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}

.nutrition-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}

/* Product — slides from left */
.nutrition-product {
  flex-shrink: 0;
  width: 300px;
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.nutrition-product img {
  width: 100%;
  filter: drop-shadow(0 15px 30px rgba(230, 57, 70, 0.15));
}

/* Desktop image shows, mobile hides */
.nutrition-img-mobile { display: none; }
.nutrition-img-desktop { display: block; }

/* Table — slides from right */
.nutrition-table-wrap {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

/* Animated state */
.nutrition-section.active .nutrition-product {
  opacity: 1;
  transform: translateX(0);
}

.nutrition-section.active .nutrition-table-wrap {
  opacity: 1;
  transform: translateX(0);
}

/* Table header */
.nutrition-table-header {
  display: flex;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nutrition-table-subheader {
  display: grid;
  grid-template-columns: 1fr auto auto 1fr auto auto;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(230, 57, 70, 0.08);
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border);
}

/* Tables row — side by side on desktop */
.nutrition-tables-row {
  display: flex;
}

.nutrition-table {
  flex: 1;
  border-collapse: collapse;
}

.nutrition-table-right {
  border-left: 1px solid var(--border);
}

.nutrition-table td {
  padding: 10px 12px;
  font-size: 12px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.nutrition-table tr:last-child td {
  border-bottom: none;
}

/* Ingredient name */
.nutrition-table td:nth-child(1) {
  font-weight: 700;
  color: #fff;
}

/* Amount */
.nutrition-table td:nth-child(2) {
  text-align: right;
  white-space: nowrap;
}

/* %VD */
.nutrition-table td:nth-child(3) {
  text-align: right;
  color: var(--gold);
  font-weight: 700;
  width: 50px;
}

.nutrition-disclaimer {
  padding: 14px 20px;
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid var(--border);
}

/* Mobile */
@media (max-width: 900px) {
  .nutrition-section { padding: 40px 0 60px; }

  .nutrition-layout {
    flex-direction: column;
    gap: 0;
  }

  /* Swap images */
  .nutrition-img-desktop { display: none !important; }
  .nutrition-img-mobile { display: block !important; }

  .nutrition-product {
    width: 260px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    transform: translateY(60px);
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nutrition-section.active .nutrition-product {
    transform: translateY(0);
    opacity: 1;
  }

  .nutrition-table-wrap {
    position: relative;
    z-index: 1;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .nutrition-table-header {
    flex-direction: column;
    gap: 2px;
    text-align: center;
    padding: 12px 16px;
    font-size: 11px;
  }

  .nutrition-table-subheader { display: none; }

  /* Stack tables vertically on mobile */
  .nutrition-tables-row {
    flex-direction: column;
  }

  .nutrition-table-right {
    border-left: none;
    border-top: 1px solid var(--border);
  }

  .nutrition-table td {
    padding: 8px 10px;
    font-size: 11px;
  }

  .nutrition-disclaimer {
    padding: 12px 16px;
    font-size: 9px;
  }
}
  }
}

/* ══════════════════════════════════════
   BENEFITS — Horizontal icon cards with left border
   ══════════════════════════════════════ */
.benefits-section {
  padding: 100px 0;
  background: var(--bg);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.benefit-card:hover {
  border-left-color: var(--red);
  background: var(--bg-elevated);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(230, 57, 70, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
}

.benefit-card h3 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 6px;
}

.benefit-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   FEATURES DIAGRAM — Product with tag lines
   ══════════════════════════════════════ */
.features-diagram {
  padding: 80px 0;
  background: var(--bg);
  overflow: hidden;
}

.diagram-stage {
  position: relative;
  max-width: 800px;
  height: 440px;
  margin: 0 auto;
}

.diagram-product {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.diagram-product img {
  height: 340px;
  filter: drop-shadow(0 20px 40px rgba(230, 57, 70, 0.15));
}

/* Tag shared styles */
.diagram-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}

.tag-left {
  transform: translateX(-40px);
}

.tag-right {
  transform: translateX(40px);
}

/* Animated state */
.features-diagram.active .diagram-tag {
  opacity: 1;
  transform: translateX(0);
}

/* Label */
.tag-label {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #fff;
  background: rgba(230, 57, 70, 0.12);
  border: 1px solid rgba(230, 57, 70, 0.25);
  padding: 8px 18px;
  white-space: nowrap;
}

/* Line */
.tag-line {
  display: block;
  width: 60px;
  height: 1px;
  background: rgba(230, 57, 70, 0.4);
}

/* Dot at product end */
.tag-dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px rgba(230, 57, 70, 0.6);
}

/* ── Tag positions ── */
/* Left tags */
.tag-1 { top: 15%; right: 58%; }
.tag-2 { top: 45%; right: 60%; }
.tag-3 { top: 75%; right: 56%; }

/* Right tags */
.tag-4 { top: 15%; left: 58%; }
.tag-5 { top: 45%; left: 60%; }
.tag-6 { top: 75%; left: 56%; }

/* Staggered delays */
.features-diagram.active .tag-1 { transition-delay: 0.1s; }
.features-diagram.active .tag-2 { transition-delay: 0.3s; }
.features-diagram.active .tag-3 { transition-delay: 0.5s; }
.features-diagram.active .tag-4 { transition-delay: 0.2s; }
.features-diagram.active .tag-5 { transition-delay: 0.4s; }
.features-diagram.active .tag-6 { transition-delay: 0.6s; }

/* Mobile */
@media (max-width: 768px) {
  .features-diagram { padding: 40px 0 30px; }

  .diagram-stage {
    height: auto;
    aspect-ratio: 1 / 1;
    max-width: 400px;
    margin: 0 auto;
  }

  .diagram-product {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    z-index: 1;
  }

  .diagram-product img {
    height: auto;
    width: 100%;
    object-fit: contain;
  }

  .tag-label {
    font-size: 13px;
    padding: 6px 12px;
    letter-spacing: 0.05em;
    background: rgba(230, 57, 70, 0.2);
    border-color: rgba(230, 57, 70, 0.4);
  }

  .tag-line { width: 40px; }

  .tag-dot {
    width: 6px;
    height: 6px;
    min-width: 6px;
  }

  .diagram-tag { z-index: 10; }

  /* Left tags — dots land on product */
  .tag-1 { top: 22%; right: auto; left: 0; }
  .tag-2 { top: 46%; right: auto; left: 0; }
  .tag-3 { top: 67%; right: auto; left: 0; }

  /* Right tags — dots land on product */
  .tag-4 { top: 22%; left: auto; right: 0; }
  .tag-5 { top: 46%; left: auto; right: 0; }
  .tag-6 { top: 67%; left: auto; right: 0; }
}

/* ══════════════════════════════════════
   5 BENEFÍCIOS — Numbered list section
   ══════════════════════════════════════ */
.cinco-beneficios {
  padding: 100px 0;
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}

.cinco-beneficios::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--bg);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
}

/* Diagonal red accent stripe */
.cinco-accent-stripe {
  position: absolute;
  top: 0;
  right: 25%;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--red), transparent);
  transform: skewX(-8deg);
  opacity: 0.3;
}

.cinco-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Header — big 5 + title */
.cinco-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.cinco-big {
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 140px);
  color: var(--red);
  line-height: 0.85;
  text-shadow: 0 0 60px rgba(230, 57, 70, 0.3);
}

.cinco-label {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1;
}

.cinco-brand {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--red);
  letter-spacing: 0.08em;
  line-height: 1;
  font-style: italic;
}

/* Benefits list */
.cinco-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
}

.cinco-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.cinco-num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--red);
  min-width: 36px;
  line-height: 1;
  text-shadow: 0 0 20px rgba(230, 57, 70, 0.4);
}

.cinco-item p {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.5vw, 18px);
  color: var(--text-secondary);
  letter-spacing: 0.06em;
  line-height: 1.4;
}

/* Decorative chevrons */
.cinco-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cinco-chevrons {
  display: flex;
  gap: 4px;
}

.cinco-chevrons svg {
  width: 48px;
  height: 48px;
  color: var(--red);
  opacity: 0.15;
  animation: chevronPulse 2s ease-in-out infinite;
}

.cinco-chevrons svg:nth-child(2) { opacity: 0.3; animation-delay: 0.3s; }
.cinco-chevrons svg:nth-child(3) { opacity: 0.5; animation-delay: 0.6s; }

@keyframes chevronPulse {
  0%, 100% { transform: translateX(0); opacity: inherit; }
  50% { transform: translateX(6px); opacity: 0.6; }
}

/* Mobile */
@media (max-width: 768px) {
  .cinco-beneficios { padding: 60px 0; }

  .cinco-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cinco-header { margin-bottom: 28px; }
  .cinco-big { font-size: 80px; }
  .cinco-visual { display: none; }
  .cinco-accent-stripe { right: 10%; }
}

/* ══════════════════════════════════════
   OFFERS — Cards with dramatic styling
   ══════════════════════════════════════ */
.offers-section {
  padding: 100px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.offers-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--bg-surface);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}

.offers-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.04), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(100px);
  pointer-events: none;
}

.offers-grid {
  display: flex;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.offer-card {
  flex: 1;
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s ease;
  position: relative;
}

.offer-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
}

.offer-card.popular {
  background: linear-gradient(180deg, rgba(230, 57, 70, 0.05), var(--bg-card));
  border-color: var(--red);
  box-shadow: 0 0 60px rgba(230, 57, 70, 0.08), inset 0 1px 0 rgba(230, 57, 70, 0.1);
  transform: scale(1.04);
  z-index: 5;
}

.offer-card.popular:hover { transform: scale(1.04) translateY(-4px); }

.offer-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  padding: 5px 20px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
}

.offer-top { text-align: center; margin-bottom: 24px; }

.offer-name {
  font-size: 28px;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.12em;
}

.offer-image {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.offer-image img {
  max-height: 150px;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.5));
}

.offer-old {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 6px;
}

.offer-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  color: #fff;
}

.offer-price .cur {
  font-family: var(--font-display);
  font-size: 24px;
}

.offer-price .val {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
}

.offer-price .cts {
  font-family: var(--font-display);
  font-size: 24px;
}

.offer-installments {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  margin-top: 6px;
}

.offer-features {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-bottom: 24px;
}

.offer-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.offer-features li:last-child { margin-bottom: 0; }

.offer-features svg {
  width: 14px;
  height: 14px;
  color: var(--green);
  flex-shrink: 0;
}

.offer-card .btn-cta,
.offer-card .btn-outline {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ══════════════════════════════════════
   FAQ — Clean accordion
   ══════════════════════════════════════ */
.faq-section {
  padding: 100px 0;
  background: var(--bg-surface);
  position: relative;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--bg);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.active { border-color: rgba(230, 57, 70, 0.15); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-align: left;
  text-transform: none;
  letter-spacing: 0;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--red); }

.faq-chevron {
  flex-shrink: 0;
  width: 16px; height: 16px;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--red);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer {
  background: #050508;
  border-top: 1px solid var(--border);
  padding: 60px 0;
  text-align: center;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 24px;
}

.footer-links a {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--red);
}
.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.footer-payments {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  align-items: center;
  opacity: 0.35;
  filter: grayscale(1);
}

.footer-payments img { height: 18px; object-fit: contain; }

.footer-disclaimer {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.9;
}

/* ══════════════════════════════════════
   FLOATING CTA MOBILE
   ══════════════════════════════════════ */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 16px;
  background: rgba(8, 8, 12, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(230, 57, 70, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.floating-cta.visible { transform: translateY(0); }

.floating-cta .btn-cta {
  width: 100%;
  padding: 14px;
  font-size: 16px;
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }

  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero::before { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-text { max-width: 100%; margin: 0 auto; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-proof { justify-content: center; }
  .hero-product-container { max-width: 320px; margin: 0 auto; aspect-ratio: auto; overflow: visible; }

  .hero-power-bars {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
  }
  .power-bar-item { flex: 1; min-width: 80px; }

  .hero-bottom { margin-top: 24px; }

  .hero-feature-tags { flex-wrap: wrap; gap: 8px; }
  .hero-ftag { flex: 1 1 45%; padding: 8px 10px; }
  .ftag-main { font-size: 12px; }
  .ftag-sub { font-size: 9px; }

  .problem-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .offers-grid {
    flex-direction: column;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }

  .offer-card.popular { transform: none; order: -1; }
  .offer-card.popular:hover { transform: translateY(-4px); }

  .floating-cta { display: block; }

  .problem-section::before,
  .cinco-beneficios::before,
  .offers-section::before,
  .faq-section::before {
    height: 40px;
  }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 38px; }
  .benefits-grid { grid-template-columns: 1fr; }
  body { padding-bottom: 70px; }
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #222; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #444; }
