/* ── Reset & Base ─────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #18c45e;
  --green-dark: #0fa04d;
  --green-dim: rgba(24, 196, 94, 0.12);
  --green-border: rgba(24, 196, 94, 0.22);
  --bg: #080d09;
  --bg2: #0d1510;
  --bg3: #111d14;
  --card: rgba(255, 255, 255, 0.035);
  --card-hover: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.07);
  --border-mid: rgba(255, 255, 255, 0.12);
  --text: #eef2ee;
  --muted: #7a9b82;
  --muted2: #4e6652;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.22s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

/* ── Typography ───────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800;
}

h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
}

h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

em {
  font-style: italic;
  color: var(--green);
}

/* ── Logo ─────────────────────────────────────── */
.logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
}

.logo span {
  color: var(--green);
}

/* ── Buttons ──────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #fff;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 14px 24px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
  white-space: nowrap;
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border-mid);
}

.btn-ghost-sm {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-ghost-sm:hover {
  color: var(--text);
  border-color: var(--border-mid);
}

.btn-nav {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  background: var(--green-dim);
  color: var(--green);
  border: 1px solid var(--green-border);
  padding: 9px 20px;
  border-radius: 100px;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-nav:hover {
  background: var(--green);
  color: #fff;
}

/* ── Nav ──────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8, 13, 9, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  font-size: 14px;
  color: var(--muted);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--muted);
  transition: all var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 12px 0;
  border-top: 1px solid var(--border);
}

.nav-mobile a {
  padding: 12px 32px;
  font-size: 15px;
  color: var(--muted);
  transition: color var(--transition);
}

.nav-mobile a:hover {
  color: var(--text);
}

.btn-mobile-cta {
  background: var(--green);
  color: #fff !important;
  margin: 12px 32px;
  padding: 12px 24px !important;
  border-radius: 100px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
}

@media (max-width: 768px) {
  .nav-links, .btn-nav {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-mobile.open {
    display: flex;
  }
}

/* ── Sections ─────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 96px 0;
}

.section-tag {
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-h {
  margin-bottom: 16px;
}

.section-sub {
  max-width: 500px;
  font-size: 16px;
}

.link-green {
  color: var(--green);
  border-bottom: 1px solid var(--green-border);
}

.link-green:hover {
  border-color: var(--green);
}

/* ── Reveal Animations ────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

/* ── Hero ─────────────────────────────────────── */
.hero {
  padding-top: 64px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 32px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  background: var(--card);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3)
  }
}

.hero-h1 {
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 17px;
  max-width: 460px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 0;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  flex-wrap: wrap;
  gap: 0;
}

.stat {
  text-align: center;
  padding: 0 24px;
}

.stat-n {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
}

.stat-l {
  font-size: 11px;
  color: var(--muted2);
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ── Phone mockup ─────────────────────────────── */
.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 300px;
  background: var(--bg2);
  border: 1px solid var(--border-mid);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  position: relative;
}

.phone-notch {
  width: 80px;
  height: 22px;
  background: var(--bg);
  border-radius: 100px;
  margin: 0 auto 8px;
}

.phone-screen {
  background: #0e1f14;
  border-radius: 28px;
  overflow: hidden;
  min-height: 440px;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: #0a1a0f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}

.chat-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

.chat-status {
  font-size: 11px;
  color: var(--green);
  margin-top: 1px;
}

.chat-body {
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-bubble {
  background: #1a2e1f;
  border-radius: 4px 14px 14px 14px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.6;
  border: 1px solid rgba(255, 255, 255, 0.04);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.chat-bubble.reveal-chat.visible {
  opacity: 1;
  transform: translateY(0);
}

.chat-bubble strong {
  color: var(--green);
  font-weight: 600;
}

.reveal-chat.delay-1 {
  transition-delay: 0.8s;
}

.reveal-chat.delay-2 {
  transition-delay: 1.6s;
}

/* ── Steps ────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 52px;
}

.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), background var(--transition);
}

.step-card:hover {
  border-color: var(--border-mid);
  background: var(--card-hover);
}

.step-card.highlight {
  border-color: var(--green-border);
  background: var(--green-dim);
}

.step-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  color: rgba(24, 196, 94, 0.07);
  position: absolute;
  top: 12px;
  right: 18px;
  line-height: 1;
  pointer-events: none;
}

.step-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.step-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--green);
  color: #fff;
  padding: 4px 12px;
  border-radius: 100px;
  margin-top: 12px;
}

/* ── Features ─────────────────────────────────── */
.features-sec {
  background: var(--bg2);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 52px;
}

.feat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color var(--transition);
}

.feat:hover {
  border-color: var(--green-border);
}

.feat-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

/* ── Review section ───────────────────────────── */
.review-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.review-text {}

.review-text p {
  font-size: 16px;
  line-height: 1.8;
}

.review-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.review-date {
  color: var(--muted2);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.review-total {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 6px;
}

.review-total span {
  font-size: 18px;
  color: var(--muted);
  font-weight: 400;
}

.review-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}

.review-bars {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rbar {}

.rbar-top {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}

.rbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  height: 8px;
  overflow: hidden;
}

.rbar-fill {
  height: 100%;
  border-radius: 100px;
  transition: width 1.2s ease;
}

.rbar-fill.green {
  background: var(--green);
}

.rbar-fill.amber {
  background: #f59e0b;
}

.rbar-fill.purple {
  background: #818cf8;
}

/* ── Poll ─────────────────────────────────────── */
.poll-sec {
  background: var(--bg2);
}

.poll-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 640px;
  margin-top: 40px;
}

.poll-opt {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: left;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
}

.poll-opt:hover {
  border-color: var(--border-mid);
  background: var(--card-hover);
}

.poll-opt.voted {
  border-color: var(--green-border);
  background: var(--green-dim);
}

.poll-emoji {
  font-size: 22px;
  flex-shrink: 0;
}

.poll-text {
  flex: 1;
  font-size: 14px;
}

.poll-bar-wrap {
  width: 80px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  height: 6px;
  flex-shrink: 0;
  display: none;
  overflow: hidden;
}

.poll-bar {
  height: 100%;
  background: var(--green);
  border-radius: 100px;
  width: 0;
  transition: width 0.8s ease;
}

.poll-pct {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  width: 36px;
  text-align: right;
  display: none;
}

.poll-note {
  font-size: 13px;
  color: var(--muted2);
  margin-top: 16px;
  font-style: italic;
}

/* ── FAQ ──────────────────────────────────────── */
.faq-sec {}

.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  cursor: pointer;
  transition: border-color var(--transition);
}

.faq-item:hover {
  border-color: var(--border-mid);
}

.faq-item.open {
  border-color: var(--green-border);
}

.faq-q {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-arr {
  color: var(--muted);
  font-size: 18px;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-arr {
  transform: rotate(180deg);
}

.faq-a {
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.8;
  display: none;
}

.faq-item.open .faq-a {
  display: block;
}

/* ── CTA section ──────────────────────────────── */
.cta-sec {
  background: var(--bg2);
}

.cta-inner {
  text-align: center;
  padding: 60px 48px;
  border: 1px solid var(--green-border);
  border-radius: 24px;
  background: var(--green-dim);
}

.cta-inner p {
  font-size: 17px;
  margin: 16px auto 36px;
  max-width: 400px;
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ───────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px 48px;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
}

.footer-brand .logo {
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--muted2);
}

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
  letter-spacing: 0.5px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted2);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 32px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--muted2);
}

.footer-slim .footer-bottom {
  border-top: 1px solid var(--border);
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
  }

  .hero-visual {
    display: none;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .review-wrap {
    grid-template-columns: 1fr;
  }

  .faq-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 60px 0;
  }

  .container {
    padding: 0 20px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary, .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}