/* ============================================================
   RERUBBER™ — ECO-FRIENDLY SEX FOR ALL
   Single-file build · All CSS + JS inline
   ============================================================ */

/* --- TOKENS --- */
:root {
  --void: #0a0a0a;
  --deep: #110a1e;
  --surface: #151020;
  --surface-light: #1c1530;
  --border: #2a2040;
  --border-light: #e0e0e0;
  --border-img: #ff8ad4;
  --neon-rose: #ff6ec7;
  --neon-rose-dim: rgba(255,110,199,0.15);
  --neon-rose-glow: rgba(255,110,199,0.4);
  --neon-rose-bright: #ff8ad4;
  --electric-cyan: #7df9ff;
  --electric-cyan-dim: rgba(125,249,255,0.1);
  --toxic-green: #39ff14;
  --toxic-green-dim: rgba(57,255,20,0.1);
  --eco-mint: #a7f3d0;
  --eco-mint-dim: rgba(167,243,208,0.08);
  --white: #f5f5f5;
  --muted: #7d7d7;
  --muted-dark: #5a5068;
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- RESET --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  background: var(--void);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; }
ul { list-style: none; }

/* --- REVEAL ANIMATION BASE --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}  
.hero-prefix {
    font-family: var(--font-display);
    color: var(--electric-cyan);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.hero-preheader { color: var(--toxic-green); font-size: 26px; font-weight: 100;margin-bottom:20px;line-height:1; }
/* --- AMBIENT GLOW --- */
.ambient-glow {
  position: fixed;
  pointer-events: none;
  z-index: 0;
}
.green-color-bar {
    display: inline-block;
    position: relative;
    z-index: 1;
}
.green-color-bar:after {
    left: 50%;
    transform: translate(-50%);
    content: "";
    display: block;
    position: absolute;
    background-color: #39ff14;
    bottom: 0;
    height: 10px;
    margin-bottom: 4%;
    opacity: .25;
    pointer-events: none;
    right: 0;
    width: calc(100% + 10px);
    z-index: -1;
}

.glow-1 {
  width: 800px; height: 800px;
  top: -250px; right: -250px;
  background: radial-gradient(ellipse, rgba(255,110,199,0.25), transparent 65%);
  opacity: 0.7;
  animation: glowDrift1 25s ease-in-out infinite;
}
.glow-2 {
  width: 700px; height: 700px;
  bottom: 25%; left: -200px;
  background: radial-gradient(ellipse, rgba(125,249,255,0.18), transparent 65%);
  opacity: 0.6;
  animation: glowDrift2 30s ease-in-out infinite;
}
.glow-3 {
  width: 500px; height: 500px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(57,255,20,0.08), transparent 65%);
  opacity: 0.5;
  animation: glowDrift3 35s ease-in-out infinite;
}
@keyframes glowDrift1 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-80px, 60px); }
  66% { transform: translate(40px, -40px); }
}
@keyframes glowDrift2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(60px, -80px); }
}
@keyframes glowDrift3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  33% { transform: translate(-40%, -55%) scale(1.2); }
  66% { transform: translate(-60%, -45%) scale(0.9); }
}

/* --- ANNOUNCEMENT BAR --- */
.announce-bar {
  background: var(--electric-cyan);
  color: var(--void);
  text-align: center;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  z-index: 100;
}
.announce-bar a {
  text-decoration: underline;
  font-weight: 700;
}

/* --- NAVIGATION --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-logo .re { color: var(--neon-rose); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--white); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-rose);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 10px 24px;
  background: var(--neon-rose);
  color: var(--white);
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--neon-rose-glow);
  background: var(--neon-rose-bright);
}
/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  padding: 4px;
  cursor: pointer;
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 40px 80px;
  overflow: hidden;
  /* Dark fallback while video loads */
  background: var(--void);
}
/* Background video — covers the hero, sits behind all overlays */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
/* Dark scrim between video and content — keeps text legible over bright frames */
.hero-video-scrim {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.85);
  z-index: 1;
  pointer-events: none;
}
/* Glow pseudo-elements sit above the video + scrim */
.hero::after,
.hero::before {
  z-index: 1;
}
.hero::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(255,110,199,0.35), rgba(168,85,247,0.12) 40%, transparent 65%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  top: 5%;
  right: 0%;
  width: 600px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(125,249,255,0.2), rgba(125,249,255,0.05) 40%, transparent 65%);
  pointer-events: none;
  animation: heroGlow2 12s ease-in-out infinite;
}
/* Third hero glow — left side warm, layered above video */
.hero-glow-extra {
  position: absolute;
  top: 20%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(255,110,199,0.18), transparent 60%);
  pointer-events: none;
  z-index: 1;
  animation: heroGlow3 15s ease-in-out infinite;
}
@keyframes heroGlow {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.15); }
}
@keyframes heroGlow2 {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.2); }
}
@keyframes heroGlow3 {
  0%, 100% { opacity: 0.3; transform: scale(1) translateY(0); }
  50% { opacity: 0.6; transform: scale(1.1) translateY(-30px); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--eco-mint);
  background: var(--eco-mint-dim);
  border: 1px solid rgba(167,243,208,0.2);
  padding: 10px 22px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -1px;
}
.hero h1 .accent { color: var(--neon-rose); }
.hero-sub {
  font-size: 22px;
  color: var(--muted);
  max-width:800px;
  margin: 0 auto 36px;
  line-height: 1.4;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 18px 40px;
  background: var(--neon-rose);
  color: var(--white);
  border-radius: 14px;
  transition: transform 0.2s, box-shadow 0.3s, background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px var(--neon-rose-glow);
  background: var(--neon-rose-bright);
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--neon-rose-glow); }
  50% { box-shadow: 0 0 0 12px rgba(255,110,199,0); }
}
.btn-primary.pulse { animation: ctaPulse 2.5s ease-in-out infinite; }
.btn-secondary {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 16px 32px;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  transition: transform 0.2s, border-color 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--electric-cyan);
  color: var(--electric-cyan);
}

/* --- STATS BAR --- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  z-index: 2;
}
.stat-item {
  padding: 32px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--surface-light); }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  margin-bottom: 4px;
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

/* --- TRUST BADGES --- */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 20px 40px;
  background: var(--void);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}
.trust-check { color: var(--toxic-green); font-weight: 700; }

/* --- SECTIONS --- */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 40px;
  position: relative;
  z-index: 2;
}
.section-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--neon-rose);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
}
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* --- HOW IT WORKS --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-light);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.step-number {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.step-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}
.step-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.step-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* --- PROCESS / RECLEAN --- */
.process-section {
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, var(--neon-rose-dim), transparent 60%);
  opacity: 0.3;
  pointer-events: none;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.process-card {
  background: rgba(21, 16, 32, 0.8);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.process-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
}
.process-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--border-light);
  margin-bottom: 12px;
  line-height: 1;
}
.process-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}
.process-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* Certified badge */
.certified-block {
  margin-top: 60px;
  text-align: center;
}
.certified-card {
  display: inline-block;
  background: var(--surface);
  border: 2px solid var(--toxic-green);
  border-radius: 20px;
  padding: 40px 60px;
  text-align: center;
  position: relative;
}
.certified-big {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: var(--toxic-green);
  line-height: 1;
  margin-bottom: 4px;
}
.certified-label {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 1px;
}
.certified-stamp {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.certified-logo {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
}
.certified-logo .re { color: var(--neon-rose); }
.certified-check {
  font-size: 13px;
  color: var(--toxic-green);
  font-weight: 700;
}
.certified-sub {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-top: 4px;
}

/* --- IMPACT --- */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.impact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  transition: transform 0.3s, border-color 0.3s;
}
.impact-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-light);
}
.impact-number {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 4px;
  line-height: 1;
}
.impact-unit {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 12px;
}
.impact-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* --- PLANS --- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  align-items: start;
}
.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.3);
}
.plan-card.featured {
  border-color: var(--neon-rose);
  background: linear-gradient(180deg, var(--surface-light), var(--surface));
}
.plan-card.featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, var(--neon-rose), var(--electric-cyan));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: borderPulse 3s ease-in-out infinite;
}
@keyframes borderPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.plan-badge {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}
.plan-subtitle {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.plan-price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}
.plan-period {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}
.plan-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.plan-feature {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}
.plan-feature .pf-check {
  color: var(--toxic-green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.plan-cta {
  display: block;
  width: 100%;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 16px;
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.plan-cta:hover {
  transform: translateY(-2px);
}

/* --- REVIEWS --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform 0.3s, border-color 0.3s;
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-light);
}
.review-stars {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--neon-rose);
  letter-spacing: 2px;
}
.review-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-light);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--neon-rose);
}
.review-name {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
}
.review-meta {
  font-size: 12px;
  color: var(--muted-dark);
}

/* --- FAQ --- */
.faq-list {
  margin-top: 48px;
  max-width: 100%;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
  gap: 16px;
}
.faq-question:hover { color: var(--neon-rose); }
.faq-icon {
  font-size: 20px;
  color: var(--neon-rose);
  transition: transform 0.4s var(--ease-out);
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), padding 0.3s;
}
.faq-item.open .faq-answer {
  max-height: 500px;
}
.faq-answer-inner {
  padding-bottom: 24px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* --- FINAL CTA --- */
.final-cta {
  text-align: center;
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, var(--neon-rose-dim), transparent 60%);
  pointer-events: none;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.final-cta p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

/* --- FOOTER --- */
.footer {
  background: var(--deep);
  border-top: 1px solid var(--border);
  padding: 80px 40px 40px;
  position: relative;
  z-index: 2;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-brand-name .re { color: var(--neon-rose); }
.footer-brand-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
  max-width: 320px;
}
.footer-brand-llc {
  font-size: 12px;
  color: var(--muted-dark);
}
.footer-col-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--white);
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--muted);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--neon-rose); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 13px;
  color: var(--muted-dark);
}
.footer-badges {
  display: flex;
  gap: 12px;
}
.footer-badge {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid var(--border);
  color: var(--muted);
}

/* --- IMAGE PLACEHOLDERS --- */
.img-placeholder {
  border-radius: 20px;
  border: 2px solid var(--border-img);
  background: var(--surface);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--neon-rose-dim), transparent 50%, var(--electric-cyan-dim));
  opacity: 0.5;
}
.img-placeholder-icon {
  font-size: 48px;
  position: relative;
  z-index: 1;
  opacity: 0.6;
}
.img-placeholder-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  z-index: 1;
}
.img-placeholder-note {
  font-size: 12px;
  color: var(--muted-dark);
  position: relative;
  z-index: 1;
  max-width: 280px;
  text-align: center;
  line-height: 1.5;
}

/* --- LIFESTYLE IMAGE STRIP --- */
.lifestyle-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.lifestyle-strip .img-placeholder {
  min-height: 320px;
}

/* --- HERO SPLIT (with image) --- */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}
.hero-split-text {
  text-align: left;
}

/* --- FEATURE IMAGE ROW --- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 60px;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-row-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-row-tag {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.feature-row-title {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.2;
}
.feature-row-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .impact-grid { grid-template-columns: 1fr; max-width: 500px; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 500px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-split { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row.reverse { direction: ltr; }
  .lifestyle-strip { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--void);
    border-bottom: 1px solid var(--border);
    padding: 20px 40px 28px;
    gap: 16px;
  }
  .section { padding: 80px 20px; }
  .hero { padding: 80px 20px 60px; min-height: 80vh; }
  .hero h1 {
    font-size: clamp(28px, 4vw, 64px);
  }.hero-sub {
      font-size: 18px;
      color: var(--muted);
      max-width: 580px;
      margin: 0 auto 36px;
      line-height: 1.2;
  }
.hero-prefix {
    font-family: var(--font-display);
    color: var(--electric-cyan);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid var(--border); }
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; }
  .process-grid { grid-template-columns: 1fr; }
  .trust-bar { gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
