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

:root {
  --green: #6B9B37;
  --green-light: #7AB648;
  --green-dark: #5A8A2E;
  --green-glow: rgba(107,155,55,0.4);
  --green-soft: rgba(107,155,55,0.12);
  --accent: #6B9B37;
  --accent-hover: #7AB648;
  --bg: #08080a;
  --bg-card: #111113;
  --bg-card-hover: #18181b;
  --bg-elevated: #1c1c1e;
  --text: #f5f5f7;
  --text-secondary: #a1a1a6;
  --text-muted: #6e6e73;
  --border: rgba(255,255,255,0.06);
  --border-light: rgba(255,255,255,0.1);
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 60px rgba(107,155,55,0.12);
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: default;
}

/* ─── SCROLL PROGRESS BAR ─── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; z-index: 9999;
  background: linear-gradient(90deg, var(--green), var(--green-light), #9DD55A);
  width: 0%; transition: width 0.1s linear;
  box-shadow: 0 0 10px var(--green-glow);
}

/* ─── CURSOR GLOW ─── */
.cursor-glow {
  position: fixed; width: 400px; height: 400px;
  border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(107,155,55,0.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}
.cursor-glow.active { opacity: 1; }

/* ─── ANIMATED BACKGROUND ─── */
.bg-gradient {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.bg-orb {
  position: absolute; border-radius: 50%;
  filter: blur(140px); opacity: 0.25;
  animation: orbFloat 20s ease-in-out infinite;
}
.bg-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(107,155,55,0.35) 0%, transparent 70%);
  top: -250px; left: -250px;
}
.bg-orb-2 {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(107,155,55,0.2) 0%, transparent 70%);
  bottom: -200px; right: -200px;
  animation-delay: -7s; animation-duration: 25s;
}
.bg-orb-3 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(107,155,55,0.15) 0%, transparent 70%);
  top: 40%; left: 55%;
  animation-delay: -14s; animation-duration: 30s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(100px, -80px) scale(1.15); }
  50% { transform: translate(-60px, 100px) scale(0.9); }
  75% { transform: translate(80px, 50px) scale(1.08); }
}

.bg-grid {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none; z-index: 0;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 70%);
}

.particles {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.particle {
  position: absolute; width: 3px; height: 3px;
  background: var(--green); border-radius: 50%; opacity: 0;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.5; }
  90% { opacity: 0.5; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

/* ─── 3D PERSPECTIVE CONTAINER ─── */
.perspective-container { perspective: 1200px; }

/* ─── HEADER ─── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(8,8,10,0.75);
  backdrop-filter: blur(30px) saturate(1.5); -webkit-backdrop-filter: blur(30px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.header.scrolled { background: rgba(8,8,10,0.92); box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 80px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo img { height: 64px; width: auto; transition: var(--transition); }
.logo:hover img { transform: scale(1.05); filter: brightness(1.1); }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  text-decoration: none; color: var(--text-muted); font-size: 13px;
  font-weight: 500; letter-spacing: 0.02em; transition: var(--transition);
  position: relative; padding: 6px 14px; border-radius: 980px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.nav a:hover {
  color: var(--text); background: rgba(255,255,255,0.05);
}
.nav .cta-header {
  background: var(--accent); color: #fff; padding: 10px 24px;
  border-radius: 980px; font-weight: 600; font-size: 12px; cursor: pointer;
  border: none; font-family: inherit; transition: var(--transition);
  box-shadow: 0 0 20px rgba(107,155,55,0.2);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.nav .cta-header:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 40px rgba(107,155,55,0.4);
  transform: translateY(-1px) scale(1.03);
}

/* ─── CONTENT WRAPPER ─── */
.content { position: relative; z-index: 1; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 80px; position: relative;
}
.hero-content { max-width: 860px; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-soft); border: 1px solid rgba(107,155,55,0.2);
  padding: 8px 18px; border-radius: 980px; font-size: 13px;
  font-weight: 600; color: var(--green-light); margin-bottom: 28px;
  animation: fadeInDown 0.8s ease both;
}
.hero-badge .pulse {
  width: 8px; height: 8px; background: var(--green); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--green-glow);
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(1.8); } }

.hero h1 {
  font-size: clamp(38px, 6.5vw, 76px); font-weight: 800;
  letter-spacing: -0.04em; line-height: 1.02; color: var(--text); margin-bottom: 24px;
  animation: fadeInUp 0.9s ease 0.1s both;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 50%, #9DD55A 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  position: relative;
}
.hero p {
  font-size: clamp(17px, 2.2vw, 21px); color: var(--text-secondary); font-weight: 400;
  line-height: 1.55; max-width: 600px; margin: 0 auto 40px;
  animation: fadeInUp 0.9s ease 0.2s both;
}
.hero-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.3s both;
}
.hero-micro {
  margin-top: 20px; font-size: 13px; color: var(--text-muted);
  animation: fadeInUp 0.9s ease 0.4s both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff; padding: 16px 36px;
  border-radius: 980px; font-size: 16px; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-family: inherit;
  box-shadow: 0 4px 24px rgba(107,155,55,0.25), inset 0 1px 0 rgba(255,255,255,0.15);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s ease;
}
.btn-primary:hover {
  background: var(--accent-hover); transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 48px rgba(107,155,55,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(-1px) scale(0.99); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text); padding: 16px 36px;
  border-radius: 980px; font-size: 16px; font-weight: 600;
  text-decoration: none; border: 1px solid var(--border-light);
  cursor: pointer; transition: var(--transition); font-family: inherit;
}
.btn-secondary:hover {
  border-color: var(--green); color: var(--green-light);
  transform: translateY(-3px); box-shadow: 0 0 30px rgba(107,155,55,0.1);
}

/* ─── SECTIONS ─── */
section { padding: 120px 24px; position: relative; }
.section-inner { max-width: 1080px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--green-light); margin-bottom: 16px;
}
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--green); border-radius: 1px; }
.section-title {
  font-size: clamp(28px, 4.5vw, 52px); font-weight: 800;
  letter-spacing: -0.04em; line-height: 1.08; margin-bottom: 16px;
}
.section-subtitle {
  font-size: clamp(16px, 2vw, 19px); color: var(--text-secondary);
  max-width: 560px; line-height: 1.55;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ─── DIVIDER ─── */
.divider {
  max-width: 1080px; margin: 0 auto; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

/* ─── QUIZ ─── */
.quiz-section { background: transparent; }
.quiz-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; max-width: 740px; margin: 0 auto;
}
.quiz-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 20px; text-align: center;
  cursor: pointer; user-select: none; position: relative; overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-style: preserve-3d;
}
.quiz-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(107,155,55,0.1) 0%, transparent 60%);
  opacity: 0; transition: var(--transition);
}
.quiz-card::after {
  content: ''; position: absolute; inset: -1px;
  background: linear-gradient(135deg, rgba(107,155,55,0.3) 0%, transparent 50%, transparent 50%, rgba(107,155,55,0.1) 100%);
  border-radius: var(--radius); opacity: 0; transition: var(--transition); z-index: -1;
}
.quiz-card:hover {
  border-color: var(--border-light);
  transform: translateY(-6px) rotateX(2deg);
  background: var(--bg-card-hover);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.quiz-card:hover::before { opacity: 1; }
.quiz-card.selected {
  border-color: var(--green); background: rgba(107,155,55,0.08);
  box-shadow: 0 0 40px rgba(107,155,55,0.15), 0 20px 40px rgba(0,0,0,0.2);
  transform: translateY(-4px) scale(1.02);
}
.quiz-card.selected::after { opacity: 1; }
.quiz-card.selected .quiz-check { opacity: 1; transform: scale(1) rotate(0deg); }
.quiz-check {
  position: absolute; top: 10px; right: 10px; width: 26px; height: 26px;
  background: var(--green); border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.3) rotate(-90deg);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 12px rgba(107,155,55,0.5);
}
.quiz-check svg { width: 14px; height: 14px; }
.quiz-icon { font-size: 34px; margin-bottom: 12px; display: block; position: relative; transition: transform 0.3s ease; }
.quiz-card:hover .quiz-icon { transform: scale(1.15) translateY(-2px); }
.quiz-card-text { font-size: 14px; font-weight: 500; color: var(--text-secondary); line-height: 1.4; position: relative; }
.quiz-card.selected .quiz-card-text { color: var(--text); }

/* ─── LEAD FORM ─── */
.lead-capture {
  max-width: 560px; margin: 56px auto 0;
  opacity: 0; transform: translateY(40px) scale(0.97);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none; max-height: 0; overflow: hidden;
}
.lead-capture.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; max-height: 1000px; }

.lead-empathy { text-align: center; margin-bottom: 32px; }
.lead-empathy h3 {
  font-size: clamp(22px, 3vw, 30px); font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 12px; color: var(--text);
}
.lead-empathy p { font-size: 16px; color: var(--text-secondary); line-height: 1.6; max-width: 480px; margin: 0 auto; }

.lead-form-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px 36px;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(107,155,55,0.05);
  position: relative; overflow: hidden;
  transform-style: preserve-3d;
}
.lead-form-card::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.lead-form-card h4 {
  font-size: 20px; font-weight: 700; margin-bottom: 4px; text-align: center;
  letter-spacing: -0.02em; color: var(--text);
}
.lead-form-card .form-subtitle {
  font-size: 14px; color: var(--text-muted); margin-bottom: 28px; text-align: center;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600; color: var(--text-secondary);
  margin-bottom: 6px; letter-spacing: 0.02em;
}
.form-group input, .form-group select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--border-light);
  border-radius: var(--radius-sm); font-family: inherit; font-size: 15px;
  color: var(--text); transition: var(--transition);
  background: rgba(255,255,255,0.03); outline: none;
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(107,155,55,0.12), 0 0 20px rgba(107,155,55,0.08);
  background: rgba(255,255,255,0.05);
}
.form-group input::placeholder { color: var(--text-muted); }
.form-group select option { background: var(--bg-card); color: var(--text); }
.lead-form-card .btn-primary {
  width: 100%; justify-content: center; margin-top: 8px; padding: 16px; font-size: 16px;
}
.form-micro { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 14px; }

.lead-success {
  display: none; text-align: center; padding: 48px 24px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.lead-success.visible { display: block; animation: successPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes successPop {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
.lead-success .success-icon {
  width: 76px; height: 76px; background: var(--green-soft); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 34px;
  box-shadow: 0 0 50px rgba(107,155,55,0.25);
  animation: iconPulse 2s ease-in-out infinite;
}
@keyframes iconPulse {
  0%, 100% { box-shadow: 0 0 30px rgba(107,155,55,0.2); }
  50% { box-shadow: 0 0 60px rgba(107,155,55,0.35); }
}
.lead-success h4 { font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.lead-success p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }

/* ─── PAIN / EMPATHY ─── */
.pain-section { text-align: center; padding: 160px 24px; }
.pain-lines { max-width: 700px; margin: 0 auto; }
.pain-line {
  font-size: clamp(20px, 3.2vw, 34px); font-weight: 600; letter-spacing: -0.02em;
  line-height: 1.3; color: var(--text-muted); margin-bottom: 28px;
  opacity: 0; transform: translateY(24px) scale(0.97);
  transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pain-line.visible { opacity: 1; transform: translateY(0) scale(1); color: var(--text-secondary); }
.pain-line.accent {
  font-size: clamp(28px, 4.5vw, 52px); font-weight: 800; margin-top: 56px;
  letter-spacing: -0.04em;
}
.pain-line.accent.visible { color: var(--text); }
.pain-line.accent span {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 50%, #9DD55A 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ─── PRODUCTS ─── */
.products-section { background: transparent; }
.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 920px; margin: 0 auto; }
.product-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 48px 36px;
  display: flex; flex-direction: column; position: relative; overflow: hidden;
  transform-style: preserve-3d;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* 3D shine effect on hover */
.product-card .card-shine {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(107,155,55,0.06), transparent 40%);
  opacity: 0; transition: opacity 0.3s ease;
}
.product-card:hover .card-shine { opacity: 1; }
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0; transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-10px) rotateX(2deg) rotateY(-1deg);
  border-color: var(--border-light);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3), var(--shadow-glow);
}
.product-card:hover::before { opacity: 1; }
.product-card.featured {
  border-color: rgba(107,155,55,0.25);
  background: linear-gradient(180deg, rgba(107,155,55,0.05) 0%, var(--bg-card) 40%);
}
.product-card.featured::after {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(107,155,55,0.03), transparent, rgba(107,155,55,0.03), transparent);
  animation: cardRotate 12s linear infinite;
}
@keyframes cardRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.product-tag {
  display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--green-light); background: var(--green-soft);
  padding: 5px 14px; border-radius: 980px; margin-bottom: 20px; align-self: flex-start;
  position: relative; z-index: 1;
}
.product-card h3 { font-size: 28px; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 12px; position: relative; z-index: 1; }
.product-card .desc { font-size: 15px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 28px; position: relative; z-index: 1; }
.product-features { list-style: none; margin-bottom: 32px; flex-grow: 1; position: relative; z-index: 1; }
.product-features li {
  font-size: 14px; color: var(--text-secondary); padding: 10px 0; padding-left: 28px;
  position: relative; line-height: 1.5;
}
.product-features li::before {
  content: ''; position: absolute; left: 0; top: 15px;
  width: 8px; height: 8px; background: var(--green); border-radius: 50%;
  box-shadow: 0 0 10px rgba(107,155,55,0.6);
}
.product-price { font-size: 38px; font-weight: 800; letter-spacing: -0.04em; margin-bottom: 4px; color: var(--text); position: relative; z-index: 1; }
.product-price-note { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; position: relative; z-index: 1; }
.product-card .btn-primary, .product-card .btn-secondary {
  width: 100%; justify-content: center; font-size: 15px; padding: 14px 28px;
  position: relative; z-index: 1;
}

/* ─── AUTHORITY ─── */
.authority-section {
  background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.authority-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(107,155,55,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.authority-content { position: relative; z-index: 1; }
.authority-image {
  width: 100%; max-width: 800px; margin: 0 auto 48px;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  border: 1px solid var(--border);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  transform-style: preserve-3d;
}
.authority-image:hover {
  transform: scale(1.02) rotateX(1deg);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 60px rgba(107,155,55,0.1);
}
.authority-image img { width: 100%; height: auto; display: block; }
.authority-text {
  max-width: 620px; margin: 0 auto 56px;
  font-size: 16px; color: var(--text-secondary); line-height: 1.7; text-align: center;
}
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 720px; margin: 0 auto; }
.stat-item { text-align: center; padding: 24px 0; transition: transform 0.3s ease; }
.stat-item:hover { transform: translateY(-4px) scale(1.05); }
.stat-number {
  font-size: 44px; font-weight: 800; letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 4px;
}
.stat-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* ─── COMPARISON ─── */
.comparison-section { background: transparent; }
.comparison-table {
  max-width: 800px; margin: 0 auto;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  transition: var(--transition);
}
.comparison-table:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.comparison-table table { width: 100%; border-collapse: collapse; }
.comparison-table th, .comparison-table td {
  padding: 18px 20px; text-align: center; font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.comparison-table th {
  font-weight: 600; font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-muted); padding: 20px;
}
.comparison-table th:last-child { color: var(--green-light); background: var(--green-soft); }
.comparison-table td:first-child { text-align: left; font-weight: 500; color: var(--text-secondary); }
.comparison-table td { color: var(--text-muted); }
.comparison-table td:last-child { font-weight: 600; color: var(--green-light); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr { transition: background 0.2s ease; }
.comparison-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.comparison-note {
  max-width: 620px; margin: 36px auto 0; text-align: center;
  font-size: 15px; color: var(--text-muted); line-height: 1.65; font-style: italic;
}

/* ─── TESTIMONIALS ─── */
.testimonials-section { background: transparent; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 960px; margin: 0 auto; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 28px;
  position: relative; overflow: hidden;
  transform-style: preserve-3d;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testimonial-card .card-shine {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(107,155,55,0.06), transparent 40%);
  opacity: 0; transition: opacity 0.3s ease;
}
.testimonial-card:hover .card-shine { opacity: 1; }
.testimonial-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  border-color: var(--border-light);
  box-shadow: 0 25px 50px rgba(0,0,0,0.3), var(--shadow-glow);
}
.testimonial-stars { color: #F5A623; font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; position: relative; }
.testimonial-quote { font-size: 15px; line-height: 1.65; color: var(--text-secondary); margin-bottom: 20px; font-style: italic; position: relative; }
.testimonial-result {
  font-size: 13px; font-weight: 600; color: var(--green-light); background: var(--green-soft);
  display: inline-block; padding: 4px 14px; border-radius: 980px; margin-bottom: 16px; position: relative;
}
.testimonial-author { font-size: 14px; font-weight: 600; color: var(--text); position: relative; }
.testimonial-meta { font-size: 13px; color: var(--text-muted); position: relative; }

/* ─── FAQ ─── */
.faq-section { background: transparent; }
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 28px 0; display: flex; justify-content: space-between; align-items: center;
  text-align: left; font-family: inherit; font-size: 16px; font-weight: 600;
  color: var(--text); transition: var(--transition);
}
.faq-question:hover { color: var(--green-light); padding-left: 8px; }
.faq-toggle {
  font-size: 24px; color: var(--text-muted); font-weight: 300;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
  flex-shrink: 0; margin-left: 16px;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); color: var(--green); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
.faq-answer p { padding-bottom: 28px; font-size: 15px; color: var(--text-secondary); line-height: 1.65; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ─── FINAL CTA ─── */
.final-cta { text-align: center; padding: 160px 24px; position: relative; }
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(107,155,55,0.12) 0%, transparent 55%);
  pointer-events: none;
}
.final-cta h2 {
  font-size: clamp(30px, 5vw, 60px); font-weight: 800;
  letter-spacing: -0.04em; line-height: 1.08; margin-bottom: 16px; position: relative;
}
.final-cta p { font-size: 18px; color: var(--text-secondary); margin-bottom: 40px; position: relative; }
.final-cta .btn-primary { position: relative; font-size: 18px; padding: 20px 48px; }

/* ─── GUARANTEE ─── */
.guarantee-section { text-align: center; padding: 100px 24px; position: relative; }
.guarantee-card {
  max-width: 700px; margin: 0 auto; padding: 48px 40px;
  background: var(--bg-card); border: 1px solid rgba(107,155,55,0.2);
  border-radius: var(--radius-lg); position: relative;
  box-shadow: 0 0 60px rgba(107,155,55,0.06);
}
.guarantee-icon { font-size: 56px; margin-bottom: 20px; }
.guarantee-card h3 {
  font-size: 24px; font-weight: 700; color: var(--text); margin-bottom: 12px;
}
.guarantee-card p {
  font-size: 16px; color: var(--text-secondary); line-height: 1.7; max-width: 520px; margin: 0 auto;
}
.guarantee-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 20px;
  background: var(--green-soft); border: 1px solid rgba(107,155,55,0.25);
  padding: 8px 18px; border-radius: 980px; font-size: 13px;
  font-weight: 600; color: var(--green-light);
}

/* ─── RESULTS HIGHLIGHT ─── */
.results-section { padding: 80px 24px; }
.results-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px; max-width: 900px; margin: 0 auto;
}
.result-card {
  text-align: center; padding: 32px 20px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); transition: var(--transition);
}
.result-card:hover { border-color: rgba(107,155,55,0.3); transform: translateY(-4px); }
.result-number {
  font-size: 36px; font-weight: 800; color: var(--green-light);
  letter-spacing: -0.03em; line-height: 1;
}
.result-label {
  font-size: 14px; color: var(--text-secondary); margin-top: 8px; line-height: 1.4;
}

/* ─── BENEFITS ─── */
.benefits-section { padding: 100px 24px; }
.benefits-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px; margin-top: 48px;
}
.benefit-item {
  padding: 32px 28px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: var(--transition);
}
.benefit-item:hover { border-color: rgba(107,155,55,0.3); transform: translateY(-4px); }
.benefit-icon { font-size: 32px; display: block; margin-bottom: 16px; }
.benefit-item h4 {
  font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px;
}
.benefit-item p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ─── HOW IT WORKS ─── */
.how-section { background: transparent; }
.steps-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 48px; max-width: 800px; margin: 0 auto; position: relative;
}
.steps-row::before {
  content: ''; position: absolute; top: 28px; left: 15%; right: 15%;
  height: 2px; background: linear-gradient(90deg, var(--border), var(--green), var(--border));
}
.step { text-align: center; position: relative; }
.step-number {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green-soft); color: var(--green-light); border: 1px solid rgba(107,155,55,0.3);
  font-size: 20px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; position: relative; z-index: 1;
  box-shadow: 0 0 24px rgba(107,155,55,0.2);
  transition: all 0.4s ease;
}
.step:hover .step-number {
  transform: scale(1.15) translateY(-4px);
  box-shadow: 0 0 40px rgba(107,155,55,0.35);
  background: var(--green); color: #fff;
}
.step h4 { font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

/* ─── MODAL ─── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(16px);
  align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.visible { display: flex; }
.modal-content {
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 44px 36px;
  max-width: 480px; width: 100%; position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 80px rgba(107,155,55,0.05);
  animation: modalIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-style: preserve-3d;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(30px) scale(0.92) rotateX(5deg); }
  to { opacity: 1; transform: translateY(0) scale(1) rotateX(0); }
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--text-muted); transition: var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,0.1); color: var(--text); transform: rotate(90deg); }
.modal-content h3 { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 4px; }
.modal-content .modal-sub { font-size: 15px; color: var(--text-secondary); margin-bottom: 28px; line-height: 1.5; }
.modal-content .interest-label {
  font-size: 12px; background: var(--green-soft); color: var(--green-light);
  padding: 6px 14px; border-radius: 980px; display: inline-block;
  font-weight: 600; margin-bottom: 24px;
}
.modal-content .form-group input, .modal-content .form-group select {
  background: rgba(255,255,255,0.04); border-color: var(--border-light); color: var(--text);
}
.modal-content .form-group select option { background: var(--bg-elevated); }
.modal-content .btn-primary { width: 100%; justify-content: center; margin-top: 8px; padding: 16px; font-size: 16px; }
.modal-success { display: none; text-align: center; }
.modal-success.visible { display: block; animation: successPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); }
.modal-success .success-icon {
  width: 72px; height: 72px; background: var(--green-soft); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 32px;
  box-shadow: 0 0 40px rgba(107,155,55,0.2);
}
.modal-success h4 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.modal-success p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }

/* ─── FOOTER ─── */
.footer {
  background: var(--bg-card); border-top: 1px solid var(--border);
  color: var(--text-muted); padding: 64px 24px 48px; text-align: center;
}
.footer-inner { max-width: 1080px; margin: 0 auto; }
.footer-logo img { height: 36px; filter: brightness(0) invert(1); margin-bottom: 12px; opacity: 0.5; transition: opacity 0.3s ease; }
.footer-logo:hover img { opacity: 0.8; }
.footer-domain {
  font-size: 15px; font-weight: 600; color: var(--text-secondary);
  letter-spacing: 0.04em; margin-bottom: 24px;
}
.footer-domain span { color: var(--green-light); }
.footer-links {
  display: flex; justify-content: center; gap: 8px; margin-bottom: 24px; flex-wrap: wrap;
}
.footer-links a {
  color: var(--text-muted); text-decoration: none; font-size: 12px;
  transition: var(--transition); padding: 6px 14px; border-radius: 980px;
  text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500;
  border: 1px solid transparent;
}
.footer-links a:hover { color: var(--green-light); background: rgba(107,155,55,0.06); border-color: rgba(107,155,55,0.15); }
.footer-copy { font-size: 11px; color: var(--text-muted); opacity: 0.35; margin-top: 24px; }
.footer-address { font-size: 13px; margin-bottom: 20px; line-height: 1.5; }
.footer-separator { width: 40px; height: 1px; background: var(--border-light); margin: 24px auto; }

/* ─── ANIMATIONS ─── */
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.scale-in { opacity: 0; transform: scale(0.9) translateY(20px); transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.scale-in.visible { opacity: 1; transform: scale(1) translateY(0); }

.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.08s; }
.stagger > *:nth-child(3) { transition-delay: 0.16s; }
.stagger > *:nth-child(4) { transition-delay: 0.24s; }
.stagger > *:nth-child(5) { transition-delay: 0.32s; }
.stagger > *:nth-child(6) { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .cursor-glow { display: none; }
  .nav a:not(.cta-header) { display: none; }
  .quiz-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .products-grid { grid-template-columns: 1fr; max-width: 440px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  section { padding: 80px 20px; }
  .hero { padding: 100px 20px 60px; min-height: auto; }
  .lead-form-card { padding: 28px 20px; }
  .modal-content { padding: 32px 24px; }
  .comparison-table { overflow-x: auto; }
  .comparison-table table { min-width: 500px; }
  .steps-row { grid-template-columns: 1fr; gap: 32px; }
  .steps-row::before { display: none; }
  .pain-section { padding: 100px 20px; }
  .final-cta { padding: 100px 20px; }
}
@media (max-width: 480px) {
  .quiz-grid { grid-template-columns: 1fr 1fr; }
  .quiz-card { padding: 20px 14px; }
  .quiz-icon { font-size: 26px; }
  .hero h1 { font-size: 32px; }
}
  @keyframes enmovePing {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
    50% { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
  }
  #enmoveChatBubble:hover { transform: scale(1.06); box-shadow: 0 16px 40px rgba(107,155,55,0.55); }
  #enmoveChatPanel.visible { display:flex !important; opacity:1 !important; transform: translateY(0) scale(1) !important; }
  .enmove-msg.in { align-self:flex-end !important; background:linear-gradient(135deg,#7AB648,#6B9B37) !important; color:#fff !important; border:0 !important; padding:11px 15px; border-radius:14px; font-size:13.5px; line-height:1.5; max-width:85%; box-shadow:0 4px 12px rgba(107,155,55,0.30); }
  .enmove-typing { align-self:flex-start; background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.06); padding:11px 15px; border-radius:14px; font-size:13.5px; display:flex; gap:4px; }
  .enmove-typing span { width:6px; height:6px; border-radius:50%; background:rgba(255,255,255,0.5); animation: enmoveTypingDot 1.2s ease-in-out infinite; }
  .enmove-typing span:nth-child(2) { animation-delay: 0.15s; }
  .enmove-typing span:nth-child(3) { animation-delay: 0.30s; }
  @keyframes enmoveTypingDot { 0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); } 40% { opacity: 1; transform: scale(1); } }
  #enmoveChatBody::-webkit-scrollbar { width: 6px; }
  #enmoveChatBody::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.10); border-radius: 999px; }
  @media (max-width: 480px) {
    #enmoveChatPanel { width: calc(100vw - 16px); right: 8px; bottom: 80px; height: calc(100vh - 100px); }
    #enmoveChatBubble { bottom: 16px; right: 16px; }
  }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE EXTENDED · 1024 (tablet) + 1280 (desktop ancho)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1280px) {
  .container, .container-narrow {
    padding-left: 24px;
    padding-right: 24px;
  }
  h1 { font-size: clamp(38px, 6vw, 64px) !important; }
  h2 { font-size: clamp(28px, 4vw, 44px) !important; }
}

@media (max-width: 1024px) {
  /* Layout en tablets */
  .hero-grid, .grid-2, .grid-3, .authority-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .nav-links { gap: 18px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .planes-grid { grid-template-columns: 1fr; gap: 18px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }

  .hero { padding: 80px 0 60px; }
  .section { padding: 60px 0; }
  h1 { font-size: 44px !important; line-height: 1.1 !important; }
  h2 { font-size: 34px !important; }

  /* Authority image full width */
  .authority-image img,
  .authority-image picture img { width: 100%; height: auto; }
}

/* tweaks 768 — refuerzo si el original es escaso */
@media (max-width: 768px) {
  .features-grid, .testimonials-grid, .stats-grid {
    grid-template-columns: 1fr !important;
  }
  .container, .container-narrow { padding-left: 18px; padding-right: 18px; }
  h1 { font-size: 36px !important; }
  h2 { font-size: 28px !important; }
  .btn, .btn-primary, .btn-secondary { width: 100%; }
  .btn-row, .btn-group { flex-direction: column; gap: 10px; }
}

@media (max-width: 480px) {
  .container, .container-narrow { padding-left: 16px; padding-right: 16px; }
  h1 { font-size: 30px !important; }
  h2 { font-size: 24px !important; }
  .section { padding: 44px 0; }
  .hero { padding: 60px 0 40px; }
}

/* ═══════════════════════════════════════════════════════════
   SELF-HOST INTER · @font-face local (sin Google Fonts CDN)
   ═══════════════════════════════════════════════════════════ */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('/assets/fonts/inter-var.woff2') format('woff2-variations'),
       url('/assets/fonts/inter-var.woff2') format('woff2');
}

/* Evitar overflow-x accidental en cualquier viewport */
html, body { overflow-x: hidden; max-width: 100vw; }
img, picture, video, svg { max-width: 100%; height: auto; }
