:root {
  --bg: #0A0C10;
  --bg2: #0F1218;
  --bg3: #161B24;
  --border: rgba(255,255,255,0.07);
  --border-em: rgba(255,255,255,0.14);
  --text: #EDE9E0;
  --text-muted: #8A8880;
  --text-faint: #4A4845;
  --amber: #E8A920;
  --amber-dim: rgba(232,169,32,0.12);
  --amber-mid: rgba(232,169,32,0.3);
  --teal: #2ABFA0;
  --red: #E84040;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Grid texture overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  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: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* ── Layout ── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

section { position: relative; z-index: 1; }

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  background: rgba(10,12,16,0.85);
  backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(0.8); }
}
.nav-cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--bg);
  background: var(--amber);
  padding: 9px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity .2s;
}
.nav-cta:hover { opacity: .85; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--amber);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 28px;
  max-width: 820px;
}
.hero h1 em {
  font-style: italic;
  color: var(--amber);
}
.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 64px;
}
.btn-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--bg);
  background: var(--amber);
  padding: 15px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: transform .15s, opacity .15s;
}
.btn-primary:hover { transform: translateY(-1px); opacity: .9; }
.btn-ghost {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--text-faint);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.btn-ghost:hover { color: var(--text); border-color: var(--text-muted); }

/* ── Stat strip ── */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item {
  padding: 28px 0;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-lbl {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
  max-width: 160px;
}

/* ── Section headers ── */
.section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--amber);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.65;
}

/* ── Pain section ── */
.pain-section { padding: 100px 0; }
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 52px;
}
.pain-cell {
  background: var(--bg);
  padding: 36px 32px;
  transition: background .2s;
}
.pain-cell:hover { background: var(--bg3); }
.pain-icon {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--red);
  margin-bottom: 16px;
  letter-spacing: .06em;
}
.pain-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
.pain-body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Services / Pricing ── */
.pricing-section { padding: 100px 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px;
}
.plan-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, background .2s;
  position: relative;
  overflow: hidden;
}
.plan-card:hover { border-color: var(--border-em); background: var(--bg3); }
.plan-card.featured {
  border-color: var(--amber);
  background: var(--bg3);
}
.plan-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--amber);
}
.plan-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--amber);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 6px;
}
.plan-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.55;
}
.plan-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 4px;
}
.plan-price span {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
}
.plan-cadence {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  margin-bottom: 28px;
}
.plan-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}
.plan-features {
  list-style: none;
  flex: 1;
}
.plan-features li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  border-bottom: 1px solid var(--border);
  line-height: 1.45;
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}
.plan-cta {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  margin-top: 28px;
  padding: 13px;
  border-radius: 4px;
  text-decoration: none;
  transition: all .2s;
  border: 1px solid var(--border-em);
  color: var(--text-muted);
}
.plan-cta:hover { border-color: var(--amber); color: var(--amber); }
.plan-card.featured .plan-cta {
  background: var(--amber);
  color: var(--bg);
  border-color: var(--amber);
}
.plan-card.featured .plan-cta:hover { opacity: .88; }

/* ── Process ── */
.process-section { padding: 100px 0; border-top: 1px solid var(--border); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 52px;
  border: 1px solid var(--border);
}
.process-step {
  padding: 32px 24px;
  border-right: 1px solid var(--border);
  position: relative;
}
.process-step:last-child { border-right: none; }
.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}
.step-body {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── Objections ── */
.objections-section { padding: 100px 0; border-top: 1px solid var(--border); }
.objections-list { margin-top: 52px; }
.objection-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
}
.objection-item:first-child { border-top: 1px solid var(--border); }
.obj-q {
  padding: 28px 0 28px;
  padding-right: 32px;
  border-right: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-muted);
  font-style: italic;
}
.obj-a {
  padding: 28px 0 28px 32px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}
.obj-a strong { color: var(--text); font-weight: 500; }

/* ── Final CTA ── */
.cta-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.cta-section .section-label { justify-content: center; }
.cta-section .section-label::before { display: none; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 20px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.cta-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.cta-guarantee {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: .06em;
}

/* ── Footer ── */
footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: .04em;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 12px;
  color: var(--text-faint);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--text-muted); }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: fadeUp .6s ease both; }
.hero h1      { animation: fadeUp .6s .1s ease both; }
.hero-sub     { animation: fadeUp .6s .2s ease both; }
.hero-actions { animation: fadeUp .6s .3s ease both; }
.stat-strip   { animation: fadeUp .6s .4s ease both; }

/* ── WhatsApp float ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.wa-bubble {
  background: #25D366;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.wa-bubble:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
.wa-bubble svg { width: 28px; height: 28px; fill: #fff; }
.wa-tooltip {
  background: #1a1a1a;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  padding: 8px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .2s, transform .2s;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.1);
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
@media (max-width: 480px) {
  .wa-float { bottom: 18px; right: 18px; }
  .wa-bubble { width: 50px; height: 50px; }
}

/* ── WhatsApp inline CTA ── */
.wa-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #25D366;
  text-decoration: none;
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: 4px;
  padding: 10px;
  margin-top: 10px;
  transition: background .2s, border-color .2s;
}
.wa-cta:hover { background: rgba(37,211,102,0.08); border-color: rgba(37,211,102,0.6); }
.wa-cta svg { width: 16px; height: 16px; fill: #25D366; flex-shrink: 0; }

@media (max-width: 768px) {
  .pricing-grid, .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .process-step:last-child { border-bottom: none; }
  .pain-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .objection-item { grid-template-columns: 1fr; }
  .obj-q { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; }
  .obj-a { padding-left: 0; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-section .hero-actions { align-items: center; }
  .nav-inner { gap: 12px; }
}
