/* ============================================
   CHEFLESS CAFE — CONVERSION-OPTIMIZED STYLES
   ============================================ */

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

:root {
  --amber: #E8921A;
  --amber-light: #FFB347;
  --amber-glow: rgba(232,146,26,0.35);
  --amber-dark: #B86F0A;
  --dark: #0A0806;
  --dark2: #131110;
  --dark3: #1C1915;
  --dark4: #262320;
  --cream: #F2E8D0;
  --cream2: #D9CDAF;
  --muted: #7A6E5C;
  --muted2: #5A5244;
  --white: #FFFFFF;
  --green: #22C55E;
  --green-light: #69F0AE;
  --red: #EF4444;
  --red-light: #EF9F9F;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --max-w: 1080px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ─── UTILITIES ─── */
.text-amber { color: var(--amber); }
.text-green { color: var(--green-light); }
.text-red { color: var(--red-light); }
.section-pad { padding: 100px 0; }
.section-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

.section-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 64px);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: var(--dark);
  font-size: 17px;
  padding: 18px 34px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(232,146,26,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.15));
  border-radius: inherit;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(232,146,26,0.45), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:active { transform: translateY(-1px); }

.btn-large { padding: 22px 42px; font-size: 19px; border-radius: 14px; }

.btn-arrow { font-size: 20px; transition: transform 0.25s var(--ease); }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  color: var(--green-light);
  font-weight: 700;
  font-size: 15px;
  padding: 18px 28px;
  border-radius: 12px;
  transition: all 0.3s var(--ease);
}
.btn-whatsapp:hover {
  background: rgba(34,197,94,0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(34,197,94,0.15);
}

/* ─── ANIMATIONS ─── */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s var(--ease) forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

[data-delay="0"] { animation-delay: 0ms; }
[data-delay="100"] { animation-delay: 100ms; }
[data-delay="200"] { animation-delay: 200ms; }
[data-delay="300"] { animation-delay: 300ms; }
[data-delay="400"] { animation-delay: 400ms; }
[data-delay="500"] { animation-delay: 500ms; }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

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

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(232,146,26,0.2); }
  50% { box-shadow: 0 0 40px rgba(232,146,26,0.4); }
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0 28px;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.navbar.scrolled {
  background: rgba(10,8,6,0.92);
  border-bottom: 1px solid rgba(232,146,26,0.15);
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
  backdrop-filter: blur(16px);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--amber);
  letter-spacing: 0.05em;
}
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-price-wrap { display: flex; align-items: baseline; gap: 8px; }
.nav-price-old {
  font-size: 14px;
  color: var(--muted);
  text-decoration: line-through;
}
.nav-price {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--white);
}
.btn-nav {
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: var(--dark);
  font-weight: 800;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: 10px;
  transition: all 0.3s var(--ease);
  box-shadow: 0 2px 12px rgba(232,146,26,0.25);
}
.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(232,146,26,0.4);
}
.btn-nav-outline {
  color: var(--amber);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid rgba(232,146,26,0.35);
  background: transparent;
  transition: all 0.3s var(--ease);
  text-decoration: none;
}
.btn-nav-outline:hover {
  background: rgba(232,146,26,0.08);
  border-color: var(--amber);
}
.btn-nav-logout {
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  padding: 10px 14px;
  transition: color 0.2s;
  text-decoration: none;
}
.btn-nav-logout:hover { color: var(--red-light); }

/* ─── HAMBURGER ─── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 210;
}
.nav-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── MOBILE DRAWER ─── */
.nav-drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(10,8,6,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(232,146,26,0.15);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.35s;
}
.nav-drawer.open {
  display: block;
  max-height: 400px;
  padding: 16px 0;
}
.nav-drawer-inner {
  padding: 8px 24px 16px;
}
.nav-drawer-link {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--cream2);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s;
  text-decoration: none;
}
.nav-drawer-link:hover { color: var(--amber); }
.nav-drawer-link:last-child { border-bottom: none; }
.nav-drawer-cta {
  color: var(--amber) !important;
  font-weight: 800;
}
.nav-drawer-logout { color: var(--red-light) !important; }
.nav-drawer-greeting {
  font-size: 13px;
  color: var(--muted);
  padding: 4px 0 10px;
  font-weight: 600;
}
.nav-drawer-divider {
  height: 1px;
  background: rgba(232,146,26,0.1);
  margin: 8px 0;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 28px 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(232,146,26,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(232,146,26,0.06) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 60%, rgba(184,111,10,0.04) 0%, transparent 40%),
    linear-gradient(180deg, var(--dark) 0%, #110E08 100%);
}

/* Animated particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0;
  animation: particle-float 6s ease-in-out infinite;
}
@keyframes particle-float {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  20% { opacity: 0.6; }
  80% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 850px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,146,26,0.1);
  border: 1px solid rgba(232,146,26,0.3);
  color: var(--amber-light);
  font-size: 11px;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 80px);
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 28px;
  text-wrap: balance;
}
.hero-title .highlight {
  color: var(--amber);
  position: relative;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--amber);
  border-radius: 2px;
  opacity: 0.4;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--cream2);
  max-width: 680px;
  margin: 0 auto 24px;
  font-weight: 500;
  line-height: 1.7;
}

/* VIDEO INSIDE HERO */
.hero-video-container {
  width: 100%;
  max-width: 750px;
  margin: 0 auto 28px;
}
.hero-video-container .video-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(232,146,26,0.15);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 30px rgba(232,146,26,0.06);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: var(--muted2);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 10;
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; }
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--dark2);
  border-top: 1px solid rgba(232,146,26,0.12);
  border-bottom: 1px solid rgba(232,146,26,0.12);
  padding: 40px 28px;
  position: relative;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { position: relative; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(232,146,26,0.12);
}
.stat-value {
  font-family: var(--font-display);
  font-size: 46px;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

/* ─── VIDEO SECTION ─── */
.video-section { padding: 100px 0; }
.video-container {
  margin-top: 40px;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(232,146,26,0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(232,146,26,0.08);
}
.video-thumb-wrap {
  position: relative;
  aspect-ratio: 16/9;
  cursor: pointer;
  overflow: hidden;
}
.video-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.video-thumb-wrap:hover img { transform: scale(1.04); }

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(232,146,26,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 16px rgba(232,146,26,0.15), 0 0 0 32px rgba(232,146,26,0.06);
  transition: all 0.3s var(--ease);
  animation: glow-pulse 3s ease-in-out infinite;
}
.video-thumb-wrap:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 0 20px rgba(232,146,26,0.2), 0 0 0 40px rgba(232,146,26,0.08);
}
.play-tri {
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 26px solid var(--dark);
  margin-left: 4px;
}

.video-iframe-wrap {
  display: none;
  aspect-ratio: 16/9;
}
.video-iframe-wrap.active { display: block; }
.video-iframe-wrap.active + .video-thumb-wrap { display: none; }
.video-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ─── PAIN SECTION ─── */
.pain-section { padding: 100px 0; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 44px;
}
.pain-card {
  background: linear-gradient(145deg, var(--dark2), var(--dark3));
  border: 1px solid rgba(239,68,68,0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.pain-card:hover {
  border-color: rgba(239,68,68,0.35);
  transform: translateY(-6px);
}
.pain-card:hover::before { opacity: 1; }
.pain-icon {
  font-size: 36px;
  margin-bottom: 18px;
  display: block;
  animation: float 4s ease-in-out infinite;
}
.pain-card:nth-child(2) .pain-icon { animation-delay: 0.5s; }
.pain-card:nth-child(3) .pain-icon { animation-delay: 1s; }
.pain-card:nth-child(4) .pain-icon { animation-delay: 1.5s; }
.pain-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--red-light);
  margin-bottom: 10px;
}
.pain-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.pain-cta {
  text-align: center;
  margin-top: 56px;
}
.pain-cta-text {
  font-size: 20px;
  color: var(--cream);
  margin-bottom: 24px;
  font-weight: 700;
}

/* ─── BEFORE/AFTER ─── */
.ba-section { padding: 100px 0; }
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  gap: 16px;
  margin-top: 44px;
}
.ba-card {
  border-radius: var(--radius-xl);
  padding: 36px;
  transition: transform 0.4s var(--ease);
}
.ba-card:hover { transform: translateY(-4px); }
.ba-card.before {
  background: rgba(239,68,68,0.04);
  border: 1px solid rgba(239,68,68,0.15);
}
.ba-card.after {
  background: rgba(34,197,94,0.04);
  border: 1px solid rgba(34,197,94,0.15);
}
.ba-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 22px;
}
.before-tag { background: rgba(239,68,68,0.12); color: var(--red-light); }
.after-tag { background: rgba(34,197,94,0.12); color: var(--green-light); }
.ba-list { list-style: none; }
.ba-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  line-height: 1.5;
}
.ba-item:last-child { border-bottom: none; }
.ba-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  margin-top: 1px;
}
.bad .ba-dot { background: rgba(239,68,68,0.12); color: var(--red-light); }
.good .ba-dot { background: rgba(34,197,94,0.12); color: var(--green-light); }
.bad { color: var(--cream2); }
.good { color: var(--cream); }
.ba-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(232,146,26,0.12);
  border: 1px solid rgba(232,146,26,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--amber);
  animation: float 3s ease-in-out infinite;
}

/* ─── FEATURES ─── */
.features-section { padding: 100px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  margin-top: 44px;
}
.feature-card {
  background: linear-gradient(145deg, var(--dark2), var(--dark3));
  border: 1px solid rgba(232,146,26,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  border-color: rgba(232,146,26,0.25);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.feature-card:hover::before { opacity: 1; }
.feature-num {
  font-family: var(--font-display);
  font-size: 54px;
  background: linear-gradient(135deg, rgba(232,146,26,0.2), rgba(232,146,26,0.05));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}
.feature-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── CALCULATOR ─── */
.calc-section { padding: 100px 0; }
.calculator {
  background: linear-gradient(145deg, var(--dark2), var(--dark3));
  border: 1px solid rgba(232,146,26,0.15);
  border-radius: var(--radius-xl);
  padding: 48px;
  margin-top: 44px;
  max-width: 720px;
  position: relative;
  overflow: hidden;
}
.calculator::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
}
.calc-header {
  text-align: center;
  margin-bottom: 36px;
}
.calc-header h3 {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--white);
  margin-bottom: 8px;
}
.calc-header p {
  font-size: 14px;
  color: var(--muted);
}

.calc-group { margin-bottom: 32px; }
.calc-group label {
  font-size: 14px;
  font-weight: 700;
  color: var(--cream2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.calc-group .calc-val {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--amber);
}

/* Custom range slider */
.range-wrap { position: relative; padding: 8px 0; }
input[type=range] {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 6px;
  background: var(--dark4);
  outline: none;
  cursor: pointer;
  position: relative;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--amber);
  cursor: pointer;
  box-shadow: 0 0 12px rgba(232,146,26,0.4);
  transition: transform 0.2s var(--ease-bounce), box-shadow 0.2s;
}
input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 20px rgba(232,146,26,0.6);
}
input[type=range]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--amber);
  cursor: pointer;
  border: none;
  box-shadow: 0 0 12px rgba(232,146,26,0.4);
}

.calc-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 8px 0 24px;
}

.calc-results { display: grid; gap: 12px; }
.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  transition: all 0.3s var(--ease);
}
.calc-row.highlight {
  background: rgba(232,146,26,0.06);
  border: 1px solid rgba(232,146,26,0.15);
}
.calc-row.roi-row {
  background: rgba(34,197,94,0.06);
  border: 1px solid rgba(34,197,94,0.2);
  position: relative;
  overflow: hidden;
}
.calc-lbl { font-size: 14px; color: var(--muted); font-weight: 600; }
.calc-num {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--white);
  transition: all 0.3s var(--ease);
}
.highlight .calc-num { color: var(--amber); }
.roi-row .calc-num { color: var(--green-light); font-size: 34px; }

/* ROI bar animation */
.roi-bar-wrap {
  margin-top: 20px;
  background: var(--dark4);
  border-radius: 8px;
  height: 12px;
  overflow: hidden;
  position: relative;
}
.roi-bar {
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--amber-dark), var(--amber), var(--green));
  transition: width 0.6s var(--ease);
  position: relative;
}
.roi-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 2s infinite;
  background-size: 200% 100%;
}

.calc-cta { margin-top: 28px; }
.calc-cta .btn-primary { width: 100%; justify-content: center; }

/* ─── TESTIMONIALS ─── */
.testi-section { padding: 100px 0; overflow: hidden; }
.testi-scroll-wrap {
  margin-top: 44px;
  position: relative;
}
.testi-scroll-wrap::before,
.testi-scroll-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.testi-scroll-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--dark), transparent);
}
.testi-scroll-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--dark), transparent);
}

.testi-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 28px 20px;
}
.testi-track::-webkit-scrollbar { display: none; }

.testi-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: linear-gradient(145deg, var(--dark2), var(--dark3));
  border: 1px solid rgba(232,146,26,0.1);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all 0.4s var(--ease);
}
.testi-card:hover {
  border-color: rgba(232,146,26,0.25);
  transform: translateY(-4px);
}
.testi-stars {
  color: var(--amber);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testi-text {
  font-size: 14px;
  color: var(--cream2);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
  min-height: 100px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(232,146,26,0.25);
}
.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testi-avatar-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--amber-dark), var(--amber));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--dark);
}
.testi-name {
  font-weight: 800;
  font-size: 14px;
  color: var(--white);
}
.testi-role {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.testi-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.testi-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark3);
  border: 1px solid rgba(232,146,26,0.15);
  color: var(--amber);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi-nav button:hover {
  background: var(--amber);
  color: var(--dark);
}

/* ─── ENROLL / PRICING ─── */
.enroll-section { padding: 100px 0; }
.enroll-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.enroll-desc {
  font-size: 17px;
  color: var(--cream2);
  line-height: 1.7;
  margin-bottom: 28px;
}
.enroll-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.enroll-list li {
  font-size: 15px;
  color: var(--cream2);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.enroll-check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(34,197,94,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-light);
  font-size: 12px;
  font-weight: 900;
}

.price-card {
  background: linear-gradient(145deg, var(--dark2), var(--dark3));
  border: 2px solid var(--amber);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(232,146,26,0.1);
}
.price-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber-dark), var(--amber), var(--amber-light));
}

.price-popular {
  position: absolute;
  top: 16px;
  right: -32px;
  background: var(--amber);
  color: var(--dark);
  font-weight: 900;
  font-size: 11px;
  padding: 6px 40px;
  transform: rotate(45deg);
  letter-spacing: 0.06em;
}

.price-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 8px;
}
.price-orig {
  font-size: 20px;
  color: var(--muted);
  text-decoration: line-through;
}
.price-badge {
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.3);
  color: var(--red-light);
  font-size: 12px;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 8px;
  letter-spacing: 0.06em;
}
.price-main {
  font-family: var(--font-display);
  font-size: 88px;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 6px;
}
.price-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}

/* Countdown */
.countdown-wrap {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 24px;
}
.countdown-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--red-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.countdown {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.countdown-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--white);
  line-height: 1;
  min-width: 44px;
}
.countdown-txt {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.countdown-sep {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--muted);
  line-height: 1;
  animation: pulse 1.5s ease-in-out infinite;
}

.btn-enroll {
  width: 100%;
  justify-content: center;
  font-size: 18px;
  padding: 20px;
  border-radius: 12px;
  display: flex;
}
.price-secure {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}
.divider-or {
  font-size: 12px;
  color: var(--muted2);
  margin: 28px 0;
  letter-spacing: 0.1em;
}

/* Lead form */
.lead-label {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}
.lead-form { display: flex; flex-direction: column; gap: 10px; }
.lead-form input {
  background: var(--dark4);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
}
.lead-form input:focus {
  border-color: rgba(232,146,26,0.35);
  box-shadow: 0 0 12px rgba(232,146,26,0.1);
}
.lead-form input::placeholder { color: var(--muted2); }
.btn-wa-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  color: var(--green-light);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  padding: 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  width: 100%;
}
.btn-wa-form:hover { background: rgba(34,197,94,0.2); }

/* ─── FAQ ─── */
.faq-section { padding: 100px 0; }
.faq-list {
  margin-top: 44px;
  max-width: 760px;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--amber); }
.faq-icon {
  font-size: 24px;
  color: var(--amber);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
  width: 24px;
  text-align: center;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.4s;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 24px; }

/* ─── FOOTER ─── */
.footer {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 56px 28px 28px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--amber);
  margin-bottom: 10px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  max-width: 260px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.footer-links a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--amber); }
.footer-copy {
  text-align: center;
  font-size: 12px;
  color: var(--muted2);
  padding-top: 28px;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ─── STICKY MOBILE CTA ─── */
.sticky-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: rgba(10,8,6,0.96);
  border-top: 1px solid rgba(232,146,26,0.2);
  padding: 14px 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(16px);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
}
.sticky-mobile.visible { transform: translateY(0); }
@media (max-width: 768px) { .sticky-mobile { display: flex; } }
.sticky-info { display: flex; flex-direction: column; }
.sticky-price {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--amber);
  line-height: 1;
}
.sticky-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.btn-sticky {
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: var(--dark);
  font-weight: 900;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 10px;
  white-space: nowrap;
  transition: all 0.3s var(--ease);
  box-shadow: 0 2px 16px rgba(232,146,26,0.3);
  text-decoration: none;
}
.btn-sticky:hover { box-shadow: 0 4px 24px rgba(232,146,26,0.5); }

/* ─── VIDEO LABEL ─── */
.video-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  pointer-events: none;
}

/* ─── RESPONSIVE: TABLET (900px) ─── */
@media (max-width: 900px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .ba-grid { grid-template-columns: 1fr; }
  .ba-divider { transform: rotate(90deg); }
  .enroll-inner { grid-template-columns: 1fr; }
  .section-pad { padding: 72px 0; }
}

/* ─── RESPONSIVE: MOBILE (768px) ─── */
@media (max-width: 768px) {
  /* Layout */
  .hero { padding: 60px 16px 20px; min-height: auto; }
  .hero-content { padding: 0; }
  .section-inner { padding: 0 18px; }
  .section-pad { padding: 48px 0; }

  /* Nav */
  .nav-inner { height: 52px; }
  .nav-logo { font-size: 18px; }
  .nav-price-wrap { display: none; }
  .nav-right { display: none; }
  .nav-burger { display: flex; }
  .btn-nav { padding: 7px 12px; font-size: 11px; }

  /* Hero — ultra compact so video is on first screen */
  .hero-badge { font-size: 8px; padding: 4px 10px; margin-bottom: 10px; }
  .hero-title { margin-bottom: 8px; font-size: clamp(24px, 6.5vw, 40px); line-height: 1.05; }
  .hero-sub { font-size: 12px; margin-bottom: 12px; line-height: 1.5; }
  
  /* Video in hero — visible on first screen */
  .hero-video-container { margin: 0 auto 12px; }
  .hero-video-container .video-container { border-radius: var(--radius); }
  .video-play-btn { width: 56px; height: 56px; }
  .play-tri { border-top-width: 10px; border-bottom-width: 10px; border-left-width: 18px; }
  .video-label { font-size: 11px; padding: 6px 12px; bottom: 8px; }
  
  /* CTA buttons — compact */
  .hero-actions { flex-direction: column; align-items: stretch; gap: 6px; }
  .btn-large { width: 100%; justify-content: center; padding: 12px 16px; font-size: 14px; }
  .btn-whatsapp { width: 100%; justify-content: center; padding: 10px 14px; font-size: 12px; }
  .hero-trust { gap: 8px; font-size: 10px; margin-top: 4px; }
  .hero-scroll { display: none; }

  /* Old video section CSS (no longer used but cleanup) */
  .video-section.section-pad { padding: 28px 0 48px; }
  .video-section .section-title { font-size: clamp(28px, 6vw, 38px); }

  /* Video */
  .video-container { border-radius: var(--radius); }
  .video-play-btn { width: 64px; height: 64px; }
  .play-tri { border-top-width: 12px; border-bottom-width: 12px; border-left-width: 20px; }
  .video-label { font-size: 12px; padding: 8px 16px; bottom: 12px; }

  /* Stats */
  .stats-bar { padding: 28px 18px; }
  .stats-inner { gap: 16px; }
  .stat-item::after { display: none; }
  .stat-value { font-size: 38px; }
  .stat-label { font-size: 12px; }

  /* Pain */
  .pain-grid { gap: 12px; }
  .pain-card { padding: 24px; }
  .pain-cta-text { font-size: 17px; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; gap: 12px; }
  .feature-card { padding: 24px; }

  /* Calculator */
  .calculator { padding: 24px; border-radius: var(--radius-lg); }
  .calc-header h3 { font-size: 28px; }
  .calc-num { font-size: 24px; }
  .roi-row .calc-num { font-size: 28px; }
  input[type=range]::-webkit-slider-thumb { width: 28px; height: 28px; }
  input[type=range]::-moz-range-thumb { width: 28px; height: 28px; }
  input[type=range] { height: 8px; }

  /* Testimonials */
  .testi-card { flex: 0 0 280px; padding: 24px; }
  .testi-text { font-size: 13px; min-height: 80px; }
  .testi-track { padding: 10px 18px 16px; }

  /* Enroll */
  .price-card { padding: 24px; }
  .price-main { font-size: 64px; }
  .price-popular { font-size: 10px; padding: 5px 32px; top: 12px; right: -36px; }
  .countdown-num { font-size: 26px; }
  .btn-enroll { font-size: 16px; padding: 16px; }

  /* FAQ */
  .faq-q { font-size: 15px; padding: 20px 0; min-height: 48px; }
  .faq-a { font-size: 13px; }

  /* Footer */
  .footer { padding: 40px 18px 20px; }
  .footer-inner { flex-direction: column; gap: 20px; }
  .footer-links { flex-direction: column; gap: 10px; }

  /* Sticky CTA - safe area for notched phones */
  .sticky-mobile {
    padding: 12px 18px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
  }
  .sticky-price { font-size: 28px; }
  .btn-sticky { padding: 12px 20px; font-size: 14px; }

  /* Bottom padding for sticky CTA clearance */
  .footer { padding-bottom: 80px; }

  /* Reduce particles on mobile */
  .particle:nth-child(n+15) { display: none; }
}

/* ─── RESPONSIVE: SMALL MOBILE (480px) ─── */
@media (max-width: 480px) {
  .hero { padding: 90px 16px 60px; }
  .hero-title { font-size: clamp(32px, 8.5vw, 48px); }
  .hero-sub { font-size: 14px; }
  .hero-badge { font-size: 9px; padding: 6px 12px; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-value { font-size: 32px; }

  .section-title { font-size: clamp(30px, 7vw, 44px); }

  .pain-grid { grid-template-columns: 1fr; }
  .pain-card { padding: 20px; }

  .ba-card { padding: 24px; }

  .calculator { padding: 20px; }
  .calc-header h3 { font-size: 24px; }
  .calc-row { padding: 12px 14px; }
  .calc-num { font-size: 22px; }
  .roi-row .calc-num { font-size: 24px; }

  .testi-card { flex: 0 0 260px; padding: 20px; }
  .testi-text { font-size: 12px; line-height: 1.7; }

  .price-main { font-size: 56px; }
  .countdown-num { font-size: 22px; }

  .enroll-desc { font-size: 15px; }
  .enroll-list li { font-size: 14px; }
}

/* ─── RESPONSIVE: VERY SMALL (360px) ─── */
@media (max-width: 360px) {
  .hero-title { font-size: 30px; }
  .hero-sub { font-size: 13px; }
  .btn-large { font-size: 15px; padding: 16px 20px; }
  .section-title { font-size: 28px; }
  .price-main { font-size: 48px; }
  .stat-value { font-size: 28px; }
}

/* ─── TOUCH DEVICE OPTIMIZATIONS ─── */
@media (hover: none) and (pointer: coarse) {
  /* Larger touch targets */
  .faq-q { min-height: 52px; }
  .btn-nav { min-height: 44px; }
  .btn-primary { min-height: 52px; }
  .btn-sticky { min-height: 48px; }
  .testi-nav button { width: 48px; height: 48px; }

  /* Remove hover effects that don't work on touch */
  .pain-card:hover,
  .feature-card:hover,
  .testi-card:hover,
  .ba-card:hover { transform: none; }
}

/* ─── REDUCE MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .particle { display: none; }
  .scroll-line { animation: none; opacity: 0.5; }
}
