/* ── Variables ── */
:root {
  --bg: #F4F1E8;
  --bg-dark: #0E1A0F;
  --surface: #1A2E1D;
  --surface-2: #142B1C;
  --lime: #B4FF1A;
  --lime-dim: #8CCF14;
  --text: #0E1A0F;
  --text-muted: #4A6B42;
  --text-light: #F4F1E8;
  --border: rgba(180, 255, 26, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Syne', system-ui, sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ── Nav ── */
.topnav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 241, 232, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(14, 26, 15, 0.08);
}

.nav-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
  letter-spacing: -0.03em;
}

.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

/* ── Section base ── */
.section-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── Hero ── */
.hero {
  background: var(--bg-dark);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(180, 255, 26, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text { color: var(--text-light); }

.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 24px;
}

.lime { color: var(--lime); }

.hero-lede {
  font-size: 17px;
  color: rgba(244, 241, 232, 0.65);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.stat { display: flex; flex-direction: column; gap: 4px; }

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--lime);
}

.stat-label {
  font-size: 12px;
  color: rgba(244, 241, 232, 0.45);
  max-width: 90px;
  line-height: 1.4;
}

/* Workflow Demo */
.hero-visual { display: flex; justify-content: center; }

.workflow-demo {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  width: 100%;
  max-width: 380px;
  position: relative;
}

.workflow-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(180, 255, 26, 0.6);
  margin-bottom: 28px;
}

.workflow-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.workflow-step:last-of-type { border-bottom: none; }

.step-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-icon svg { width: 18px; height: 18px; }

.step-icon.call { background: rgba(180, 255, 26, 0.12); color: var(--lime); }
.step-icon.sms { background: rgba(180, 255, 26, 0.07); color: var(--lime); }
.step-icon.book { background: rgba(180, 255, 26, 0.2); color: var(--lime); }

.step-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.step-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
}

.step-time {
  font-size: 11px;
  color: rgba(244, 241, 232, 0.4);
}

.step-preview {
  font-size: 11px;
  color: rgba(244, 241, 232, 0.5);
  font-style: italic;
  margin-top: 4px;
  line-height: 1.4;
}

.workflow-arrow {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0 6px 50px;
  color: rgba(180, 255, 26, 0.3);
}

.workflow-arrow svg { width: 16px; height: 16px; }

.workflow-arrow span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.workflow-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 8px 14px;
  background: rgba(180, 255, 26, 0.08);
  border: 1px solid rgba(180, 255, 26, 0.15);
  border-radius: 99px;
  width: fit-content;
  font-size: 12px;
  font-weight: 500;
  color: var(--lime);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ── Workflow Section ── */
.workflow-section {
  padding: 100px 0;
  background: var(--bg);
}

.workflow-headline {
  max-width: 640px;
  margin-bottom: 64px;
}

.workflow-headline h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.workflow-headline p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
}

.feature-blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feat-block {
  padding: 28px 24px;
  background: var(--surface-2);
  border-radius: 16px;
  color: var(--text-light);
}

.feat-icon {
  width: 44px;
  height: 44px;
  background: rgba(180, 255, 26, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feat-icon svg { width: 22px; height: 22px; stroke: var(--lime); }

.feat-block h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 10px;
}

.feat-block p {
  font-size: 13px;
  color: rgba(244, 241, 232, 0.55);
  line-height: 1.6;
}

/* ── Services Section ── */
.services-section {
  padding: 80px 0 100px;
  background: var(--surface-2);
}

.section-title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 56px;
  max-width: 600px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.industry {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
}

.ind-icon {
  width: 32px;
  height: 32px;
  background: rgba(180, 255, 26, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ind-icon svg { width: 16px; height: 16px; stroke: var(--lime); }

/* ── Pricing ── */
.pricing-section {
  padding: 100px 0;
  background: var(--bg-dark);
}

.pricing-header {
  margin-bottom: 56px;
}

.pricing-header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 12px;
}

.pricing-header p {
  font-size: 17px;
  color: rgba(244, 241, 232, 0.5);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
}

.pricing-card.pro {
  border-color: rgba(180, 255, 26, 0.4);
  box-shadow: 0 0 60px rgba(180, 255, 26, 0.05);
}

.card-badge {
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--lime);
  color: var(--bg-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 99px;
}

.card-label {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}

.card-price {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1;
  margin-bottom: 6px;
}

.card-price span {
  font-size: 18px;
  font-weight: 400;
  color: rgba(244, 241, 232, 0.4);
}

.card-tagline {
  font-size: 13px;
  color: rgba(244, 241, 232, 0.4);
  margin-bottom: 28px;
}

.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.card-features li {
  font-size: 14px;
  color: rgba(244, 241, 232, 0.7);
  padding-left: 20px;
  position: relative;
}

.card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}

.card-setup {
  font-size: 13px;
  font-weight: 600;
  color: rgba(244, 241, 232, 0.35);
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.pricing-footnote {
  text-align: center;
  font-size: 13px;
  color: rgba(244, 241, 232, 0.35);
}

/* ── Proof ── */
.proof-section {
  padding: 100px 0;
  background: var(--surface-2);
}

.proof-section h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 56px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.proof-item {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
}

.proof-number {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 8px;
}

.proof-label {
  font-size: 13px;
  color: rgba(244, 241, 232, 0.5);
  margin-bottom: 8px;
}

.proof-result {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
}

/* ── Closing ── */
.closing-section {
  padding: 100px 0;
  background: var(--bg-dark);
}

.closing-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.closing-inner h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 24px;
}

.closing-inner p {
  font-size: 18px;
  color: rgba(244, 241, 232, 0.55);
  line-height: 1.75;
}

/* ── Footer ── */
footer {
  padding: 48px 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 48px;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 10px;
}

.footer-desc {
  font-size: 14px;
  color: rgba(244, 241, 232, 0.35);
  margin-bottom: 24px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(244, 241, 232, 0.2);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .topnav { padding: 16px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 24px; }
  .hero-visual { display: none; }
  .feature-blocks { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .section-inner { padding: 0 24px; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 22px; }
}

@media (max-width: 480px) {
  .hero { padding: 60px 0 80px; }
  .feature-blocks { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
}