:root {
  --bg: #0c0e14;
  --surface: #13151f;
  --card: #181a26;
  --border: #232638;
  --border-soft: #1e2030;
  --white: #ffffff;
  --off: #f0f0f6;
  --ink: #e8eaf6;
  --muted: #7b7f9e;
  --dim: #4a4d6a;
  --blue: #4f8ef7;
  --blue-soft: #1a2a4a;
  --purple: #8b5cf6;
  --purple-soft: #1e1535;
  --wa: #25D366;
  --wa-dark: #128C7E;
  --wa-soft: #0d2218;
  --green: #22c55e;
  --green-soft: #0d2018;
  --amber: #f59e0b;
  --red: #ef4444;
  --glow-blue: 0 0 40px rgba(79,142,247,0.15);
  --glow-wa: 0 0 40px rgba(37,211,102,0.2);
  --shadow: 0 2px 8px rgba(0,0,0,0.3), 0 8px 32px rgba(0,0,0,0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

/* noise texture overlay */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0; opacity: 0.4;
}

/* ── TOPBAR ── */
.topbar {
  background: linear-gradient(90deg, var(--purple), var(--blue));
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px; font-weight: 600;
  position: relative; z-index: 10;
  letter-spacing: 0.01em;
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(12,14,20,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 64px; height: 68px;
}
.logo {
  font-family: 'Fraunces', serif;
  font-weight: 900; font-size: 22px;
  color: var(--white); letter-spacing: -0.5px;
}
.logo em { color: var(--wa); font-style: normal; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 14px; font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-wa {
  display: flex; align-items: center; gap: 8px;
  background: var(--wa); color: white;
  padding: 10px 22px; border-radius: 50px;
  font-size: 14px; font-weight: 700;
  text-decoration: none; transition: all .2s;
  box-shadow: 0 2px 16px rgba(37,211,102,0.3);
}
.nav-wa:hover { background: var(--wa-dark); transform: translateY(-1px); }
.nav-wa svg { width: 17px; height: 17px; }

/* ── HERO ── */
.hero-wrap {
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-glow {
  position: absolute; top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(79,142,247,0.12) 0%, rgba(139,92,246,0.08) 40%, transparent 70%);
  pointer-events: none;
}
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  padding: 96px 64px 80px;
  max-width: 1280px; margin: 0 auto;
  position: relative; z-index: 1;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  padding: 7px 16px; border-radius: 50px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.05em;
  margin-bottom: 28px;
}
.hero-eyebrow .dot-live {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--wa); animation: blink 1.8s infinite;
}
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.85)} }

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -2px; color: var(--white);
  margin-bottom: 24px;
}
.hero h1 .hl {
  background: linear-gradient(90deg, var(--wa), var(--blue));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 17px; color: var(--muted);
  line-height: 1.8; margin-bottom: 40px; max-width: 480px;
}

.hero-ctas { display: flex; flex-direction: column; gap: 14px; max-width: 380px; }

.btn-wa-hero {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--wa); color: white;
  padding: 18px 28px; border-radius: 14px;
  font-size: 17px; font-weight: 800;
  text-decoration: none; transition: all .25s;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
  position: relative; overflow: hidden;
}
.btn-wa-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
}
.btn-wa-hero:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 8px 40px rgba(37,211,102,0.5); }
.btn-wa-hero svg { width: 24px; height: 24px; flex-shrink: 0; }

.hero-micro {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 12px; color: var(--dim);
}
.hero-micro svg { width: 13px; height: 13px; color: var(--wa); }

.hero-trust-row {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 18px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; margin-top: 6px;
}
.avs { display: flex; }
.av {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--bg); margin-left: -8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.av:first-child { margin-left: 0; }
.av-a { background: #fbbf24; color: #78350f; }
.av-b { background: #60a5fa; color: #1e3a5f; }
.av-c { background: #f87171; color: #7f1d1d; }
.av-d { background: #a78bfa; color: #3b0764; }
.trust-txt { font-size: 12px; color: var(--muted); line-height: 1.4; }
.trust-txt strong { color: var(--ink); display: block; font-size: 13px; }

/* ── WA CHAT MOCKUP ── */
.chat-mockup {
  position: relative;
}
.phone-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow), var(--glow-wa);
  max-width: 340px; margin: 0 auto;
}
.phone-bar {
  background: #075e54;
  padding: 14px 16px;
  display: flex; align-items: center; gap: 10px;
}
.phone-av {
  width: 36px; height: 36px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.phone-name { font-size: 14px; font-weight: 700; color: white; }
.phone-status { font-size: 11px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 4px; }
.phone-status::before { content:''; width:6px;height:6px;border-radius:50%;background:#25d366;animation:blink 2s infinite; }

.chat-body {
  background: #e5ddd5;
  padding: 16px 12px;
  display: flex; flex-direction: column; gap: 8px;
  min-height: 380px;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b2a99a' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.msg { display: flex; flex-direction: column; max-width: 85%; }
.msg.user { align-self: flex-end; }
.msg.bot { align-self: flex-start; }
.msg-bubble {
  padding: 9px 12px; border-radius: 12px;
  font-size: 13px; line-height: 1.5; position: relative;
}
.msg.user .msg-bubble { background: #dcf8c6; color: #111; border-radius: 12px 12px 2px 12px; }
.msg.bot .msg-bubble { background: white; color: #111; border-radius: 12px 12px 12px 2px; }
.msg-time { font-size: 10px; color: #999; margin-top: 3px; align-self: flex-end; }
.msg.bot .msg-time { align-self: flex-start; }

.typing-indicator {
  display: flex; align-items: center; gap: 3px;
  background: white; padding: 10px 14px;
  border-radius: 12px 12px 12px 2px;
  align-self: flex-start; width: fit-content;
}
.typing-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #999; animation: typingBounce 1.2s infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }

.ai-badge-float {
  position: absolute;
  top: -14px; right: -14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 8px;
  animation: floatY 3s ease-in-out infinite;
  white-space: nowrap;
}
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.ai-badge-float .icon { font-size: 20px; }
.ai-badge-float .label { font-size: 12px; font-weight: 700; color: var(--ink); }
.ai-badge-float .sub { font-size: 10px; color: var(--muted); }

.stats-float {
  position: absolute;
  bottom: -14px; left: -14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; min-width: 180px;
  animation: floatY 3.5s ease-in-out infinite 0.5s;
}
.sf-val { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 900; color: var(--white); line-height: 1; }
.sf-lab { font-size: 10px; color: var(--muted); margin-top: 2px; }
.sf-up { color: var(--green); font-size: 10px; font-weight: 600; }

/* ── LOGOS ── */
.logos-band {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 24px 64px;
  display: flex; align-items: center; justify-content: center;
  gap: 0; position: relative; z-index: 1;
}
.logos-label { font-size: 12px; color: var(--dim); letter-spacing: 0.1em; font-weight: 600; margin-right: 40px; white-space: nowrap; }
.logos-items { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center; }
.logo-chip {
  display: flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 700; color: var(--dim);
  letter-spacing: -0.2px;
}
.logo-chip svg { width: 20px; height: 20px; }

/* ── PROBLEM ── */
.problem-section {
  padding: 96px 64px;
  max-width: 1280px; margin: 0 auto;
}
.section-super {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  color: var(--wa); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.section-super::before { content:''; width:24px; height:2px; background:var(--wa); border-radius:2px; }
.section-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 900; letter-spacing: -1.5px; line-height: 1.1;
  color: var(--white); margin-bottom: 14px;
}
.section-sub { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 56px; max-width: 540px; }

.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pain-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
  position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.pain-card:hover { border-color: #ef444440; transform: translateY(-3px); }
.pain-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #ef4444, #f97316);
}
.pain-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.pain-title { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.pain-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ── SOLUTION ── */
.solution-section {
  background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 96px 64px;
}
.solution-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.sol-list { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.sol-item {
  display: flex; gap: 16px;
  padding: 20px; border-radius: 14px;
  border: 1px solid var(--border-soft);
  background: var(--card);
  transition: border-color .3s, box-shadow .3s;
}
.sol-item:hover { border-color: rgba(37,211,102,0.3); box-shadow: 0 0 24px rgba(37,211,102,0.06); }
.sol-ic {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--wa-soft); border: 1px solid rgba(37,211,102,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.sol-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 5px; }
.sol-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* right: workflow visual */
.workflow-visual {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 28px;
  box-shadow: var(--shadow);
}
.wf-header { font-size: 12px; font-weight: 700; color: var(--muted); letter-spacing: 0.1em; margin-bottom: 20px; display: flex; align-items: center; justify-content: space-between; }
.wf-live { background: var(--wa-soft); color: var(--wa); padding: 3px 10px; border-radius: 50px; font-size: 10px; display: flex; align-items: center; gap: 5px; }
.wf-live::before { content:''; width:5px;height:5px;border-radius:50%;background:var(--wa);animation:blink 1.5s infinite; }

.wf-nodes { display: flex; flex-direction: column; gap: 0; }
.wf-node {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; position: relative;
}
.wf-node:not(:last-child)::after {
  content: '';
  position: absolute; left: 19px; bottom: -1px;
  width: 2px; height: 14px;
  background: repeating-linear-gradient(180deg, var(--border) 0, var(--border) 4px, transparent 4px, transparent 8px);
}
.wf-ic {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0; border: 1px solid var(--border);
  background: var(--surface);
}
.wf-ic.active { border-color: rgba(37,211,102,0.4); background: var(--wa-soft); box-shadow: 0 0 16px rgba(37,211,102,0.15); }
.wf-ic.thinking { border-color: rgba(139,92,246,0.4); background: var(--purple-soft); }
.wf-label { font-size: 13px; font-weight: 600; color: var(--ink); }
.wf-sub { font-size: 11px; color: var(--muted); margin-top: 2px; }
.wf-status {
  margin-left: auto;
  font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 50px;
}
.st-done { background: var(--wa-soft); color: var(--wa); }
.st-run { background: var(--purple-soft); color: var(--purple); animation: pulse-label 1.5s infinite; }
@keyframes pulse-label { 0%,100%{opacity:1} 50%{opacity:0.5} }
.st-wait { background: var(--surface); color: var(--dim); }

.wf-divider { height: 1px; background: var(--border); margin: 16px 0; }

.wf-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 4px; }
.wf-stat { background: var(--surface); border-radius: 8px; padding: 10px; border: 1px solid var(--border); text-align: center; }
.wf-stat-val { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 900; color: var(--white); }
.wf-stat-lab { font-size: 9px; color: var(--muted); margin-top: 2px; letter-spacing: 0.06em; }

/* ── HOW IT WORKS ── */
.how-section { padding: 96px 64px; max-width: 1280px; margin: 0 auto; }
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.how-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 24px;
  position: relative; transition: all .3s;
}
.how-card:hover { transform: translateY(-4px); border-color: rgba(79,142,247,0.3); box-shadow: 0 0 32px rgba(79,142,247,0.08); }
.how-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: white; font-weight: 800; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.how-card h3 { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.how-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.how-time { margin-top: 16px; font-size: 11px; font-weight: 700; color: var(--blue); background: var(--blue-soft); padding: 4px 12px; border-radius: 50px; display: inline-block; }

/* ── FEATURES BENTO ── */
.bento-section {
  padding: 0 64px 96px;
  max-width: 1280px; margin: 0 auto;
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 28px;
  transition: all .3s; overflow: hidden; position: relative;
}
.bento-card:hover { border-color: rgba(79,142,247,0.25); }
.bc-1 { grid-column: span 7; }
.bc-2 { grid-column: span 5; }
.bc-3 { grid-column: span 4; }
.bc-4 { grid-column: span 4; }
.bc-5 { grid-column: span 4; }
.bento-icon { font-size: 32px; margin-bottom: 16px; display: block; }
.bento-title { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.bento-desc { font-size: 13px; color: var(--muted); line-height: 1.75; }
.bento-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--wa-soft); color: var(--wa);
  border: 1px solid rgba(37,211,102,0.2);
  padding: 5px 12px; border-radius: 50px;
  font-size: 11px; font-weight: 700; margin-top: 14px;
}

/* mini convo in bento */
.mini-convo { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.mini-msg { max-width: 80%; padding: 8px 12px; border-radius: 10px; font-size: 12px; line-height: 1.5; }
.mm-user { background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.2); color: var(--ink); align-self: flex-end; }
.mm-bot { background: var(--card); border: 1px solid var(--border); color: var(--ink); align-self: flex-start; }
.mm-label { font-size: 9px; font-weight: 700; letter-spacing: 0.08em; margin-bottom: 4px; color: var(--dim); }

/* 24/7 circle */
.circle-247 {
  display: flex; align-items: center; justify-content: center;
  margin-top: 20px;
}
.ring-outer {
  width: 100px; height: 100px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.2);
  display: flex; align-items: center; justify-content: center;
  animation: spinSlow 8s linear infinite;
  position: relative;
}
.ring-outer::before {
  content: ''; position: absolute;
  width: 100%; height: 100%; border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--wa);
  animation: spinSlow 2s linear infinite reverse;
}
@keyframes spinSlow { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.ring-inner {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--wa-soft); border: 1px solid rgba(37,211,102,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-size: 24px; font-weight: 900; color: var(--wa);
}

/* ── TESTIMONIALS ── */
.testi-section {
  background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 96px 64px;
}
.testi-inner { max-width: 1280px; margin: 0 auto; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px; padding: 28px;
  transition: all .3s;
}
.testi-card:hover { border-color: rgba(37,211,102,0.25); box-shadow: 0 0 32px rgba(37,211,102,0.06); transform: translateY(-3px); }
.stars { color: var(--amber); font-size: 15px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-text { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testi-text strong { color: var(--ink); font-style: normal; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.t-av {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; flex-shrink: 0; border: 2px solid var(--border);
}
.t-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.t-role { font-size: 12px; color: var(--dim); }
.t-verified { display: flex; align-items: center; gap: 4px; font-size: 10px; color: var(--wa); font-weight: 700; margin-top: 3px; }
.t-verified svg { width: 11px; height: 11px; }

/* ── PRICING ── */
.pricing-section { padding: 96px 64px; max-width: 1280px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 36px 32px;
  position: relative; transition: all .3s;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured {
  background: linear-gradient(135deg, var(--wa-soft) 0%, var(--surface) 100%);
  border-color: rgba(37,211,102,0.4);
  box-shadow: 0 0 48px rgba(37,211,102,0.1);
}
.pop-label {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--wa); color: #000;
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em;
  padding: 4px 16px; border-radius: 50px; white-space: nowrap;
}
.price-tier { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; color: var(--dim); margin-bottom: 16px; }
.price-num {
  font-family: 'Fraunces', serif;
  font-size: 52px; font-weight: 900; line-height: 1;
  color: var(--white); letter-spacing: -2px; margin-bottom: 4px;
}
.price-num .sup { font-size: 22px; vertical-align: super; }
.price-note { font-size: 12px; color: var(--dim); margin-bottom: 28px; }
.price-sep { height: 1px; background: var(--border); margin-bottom: 24px; }
.feat-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.fi { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); }
.fi.on { color: var(--ink); }
.fi.off { opacity: 0.3; text-decoration: line-through; }
.fi-ic { font-size: 14px; flex-shrink: 0; }

.btn-price {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 15px; border-radius: 12px;
  font-size: 15px; font-weight: 700; text-decoration: none;
  transition: all .2s;
}
.bp-outline { background: transparent; border: 1px solid var(--border); color: var(--muted); }
.bp-outline:hover { border-color: var(--wa); color: var(--wa); }
.bp-wa { background: var(--wa); color: #000; box-shadow: 0 2px 16px rgba(37,211,102,0.3); }
.bp-wa:hover { background: var(--wa-dark); color: white; box-shadow: 0 4px 24px rgba(37,211,102,0.45); }
.bp-wa svg { width: 18px; height: 18px; }

/* ── GUARANTEE ── */
.guarantee-bar {
  background: var(--surface);
  border: 1px solid rgba(37,211,102,0.2);
  border-radius: 20px; padding: 36px 44px;
  display: flex; align-items: center; gap: 32px;
  margin-top: 36px;
  box-shadow: 0 0 40px rgba(37,211,102,0.05);
}
.g-icon { font-size: 52px; flex-shrink: 0; }
.g-title { font-family: 'Fraunces', serif; font-size: 24px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.g-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── FAQ ── */
.faq-section { padding: 96px 64px; max-width: 1280px; margin: 0 auto; }
.faq-wrap { border: 1px solid var(--border); border-radius: 16px; overflow: hidden; margin-top: 40px; }
.faq-item { border-bottom: 1px solid var(--border-soft); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px; font-size: 15px; font-weight: 600; color: var(--ink);
  cursor: pointer; background: var(--surface); transition: background .2s; user-select: none;
}
.faq-q:hover { background: var(--card); }
.faq-arrow { font-size: 20px; color: var(--dim); transition: transform .3s; }
.faq-a {
  padding: 0 28px; font-size: 14px; color: var(--muted); line-height: 1.8;
  max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s;
  background: var(--surface);
}
.faq-item.open .faq-a { max-height: 220px; padding: 0 28px 22px; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }

/* ── FINAL CTA ── */
.final-cta {
  position: relative; text-align: center;
  padding: 112px 64px; overflow: hidden;
  border-top: 1px solid var(--border);
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(37,211,102,0.12) 0%, rgba(79,142,247,0.06) 40%, transparent 70%);
}
.final-cta h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 900; letter-spacing: -2px; line-height: 1.08;
  color: var(--white); margin-bottom: 20px; position: relative;
}
.final-cta h2 .hl {
  background: linear-gradient(90deg, var(--wa), var(--blue));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.final-cta p { font-size: 17px; color: var(--muted); margin-bottom: 44px; position: relative; }
.final-btn-wa {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--wa); color: white;
  padding: 20px 44px; border-radius: 16px;
  font-size: 18px; font-weight: 800;
  text-decoration: none; transition: all .25s;
  box-shadow: 0 4px 32px rgba(37,211,102,0.4);
  position: relative;
}
.final-btn-wa::before {
  content: ''; position: absolute; inset: 0; border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
}
.final-btn-wa:hover { background: var(--wa-dark); transform: translateY(-3px); box-shadow: 0 8px 48px rgba(37,211,102,0.55); }
.final-btn-wa svg { width: 26px; height: 26px; }

.reassure-row {
  display: flex; align-items: center; justify-content: center; gap: 28px;
  margin-top: 28px; flex-wrap: wrap; position: relative;
}
.rr { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--dim); }
.rr svg { width: 14px; height: 14px; color: var(--wa); }

/* ── FOOTER ── */
footer {
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 36px 64px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
footer .logo { font-size: 18px; }
footer p { font-size: 12px; color: var(--dim); }

/* ── FLOAT WA ── */
.float-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  display: flex; align-items: center; gap: 10px;
  background: var(--wa); color: white;
  padding: 14px 22px; border-radius: 50px;
  font-size: 15px; font-weight: 700; text-decoration: none;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: all .25s;
  animation: popUp .5s ease 1.2s both;
}
@keyframes popUp { from{transform:scale(0) translateY(20px);opacity:0} to{transform:scale(1);opacity:1} }
.float-wa:hover { background: var(--wa-dark); transform: translateY(-3px); }
.float-wa svg { width: 22px; height: 22px; }
.float-pulse {
  position: absolute; top: -4px; right: -4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: #ef4444; border: 2px solid var(--bg);
  animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring { 0%{box-shadow:0 0 0 0 rgba(239,68,68,.6)} 70%{box-shadow:0 0 0 8px rgba(239,68,68,0)} 100%{box-shadow:0 0 0 0 rgba(239,68,68,0)} }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* WA SVG path reusable */
.wa-icon { display: inline-block; }

@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  .hero { grid-template-columns: 1fr; padding: 80px 24px; }
  .chat-mockup .ai-badge-float, .chat-mockup .stats-float { display: none; }
  .solution-inner { grid-template-columns: 1fr; gap: 40px; }
  .pain-grid, .how-grid, .testi-grid, .pricing-grid { grid-template-columns: 1fr; }
  .bento-grid { display: flex; flex-direction: column; }
  .problem-section, .how-section, .bento-section, .faq-section, .pricing-section { padding: 64px 24px; }
  .solution-section, .testi-section { padding: 64px 24px; }
  .final-cta { padding: 80px 24px; }
  .logos-band { padding: 20px 24px; }
  footer { padding: 28px 24px; flex-direction: column; text-align: center; }
  .guarantee-bar { flex-direction: column; text-align: center; padding: 28px 24px; }
}
@media (max-width: 640px) {
  .float-wa span { display: none; }
  .float-wa { padding: 14px; border-radius: 50%; }
  .nav-links { display: none; }
}
