@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

:root {
  --green: #25D366;
  --green-dark: #1da851;
  --navy: #0f0f12;
  --card: #1a1a24;
  --border: rgba(255,255,255,0.08);
}

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #111;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.text-green { color: var(--green); }

/* ── NAV ── */
nav {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* ── HERO ── */
.hero-bg {
  background: linear-gradient(160deg, #f0fff4 0%, #fff 50%, #eff6ff 100%);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37,211,102,0.1);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ── BUTTONS ── */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
}
.btn-wa:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #555;
  font-weight: 600;
  border-radius: 999px;
  border: 1.5px solid #ddd;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: #aaa; color: #111; }

/* ── HERO PHONE MOCKUP ── */
.phone-shell {
  background: #1a1a24;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.08);
}
.phone-header {
  background: #111118;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.phone-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #16161f;
}

/* ── CHAT BUBBLES ── */
.bubble-bot {
  background: #242430;
  color: #e2e8f0;
  border-radius: 4px 16px 16px 16px;
  padding: 10px 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  max-width: 85%;
  align-self: flex-start;
}
.bubble-user {
  background: var(--green);
  color: #fff;
  border-radius: 16px 4px 16px 16px;
  padding: 10px 14px;
  font-size: 0.875rem;
  font-weight: 600;
  max-width: 75%;
  align-self: flex-end;
}
.bubble-bot.small, .bubble-user.small {
  font-size: 0.78rem;
  padding: 8px 12px;
}

/* ── SECTION LABELS / TITLES ── */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: rgba(37,211,102,0.1);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  color: #111;
  margin-bottom: 16px;
  text-align: center;
}
.section-sub {
  font-size: 1.1rem;
  color: #666;
  max-width: 520px;
  line-height: 1.6;
  text-align: center;
}

/* ── STEPS ── */
.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.step-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 640px) {
  .step-row { grid-template-columns: 1fr; }
  .step-content { order: 1; }
  .step-chat { order: 2; }
}
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.step-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}
.wa-keyword {
  color: var(--green);
  background: rgba(37,211,102,0.1);
  padding: 1px 8px;
  border-radius: 6px;
  font-weight: 800;
}

/* ── MINI PHONE (step chats) ── */
.mini-phone {
  background: #16161f;
  border-radius: 20px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
  border: 1px solid rgba(255,255,255,0.06);
}

/* ── OWNERS SECTION ── */
.owners-bg { background: #f8faff; }

/* ── WHY SECTION ── */
.why-bg { background: var(--navy); }

.stat-num {
  font-size: clamp(5rem, 14vw, 9rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--green), #38f9d7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  transition: background 0.2s;
}
.why-card:hover { background: rgba(255,255,255,0.07); }
.why-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(37,211,102,0.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}

/* ── PRICING ── */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 640px) { .pricing-cards { grid-template-columns: 1fr; } }
.pricing-card {
  background: #f7f9fc;
  border: 1px solid #e8ecf2;
  border-radius: 20px;
  padding: 32px 24px;
}
.pricing-num {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-label { font-size: 0.95rem; color: #666; font-weight: 500; }

/* ── CTA ── */
.cta-bg { background: var(--navy); }

/* ── FOOTER ── */
.footer-bg { background: #080810; }

/* ── ANIMATIONS ── */
.reveal { }
