/* ─── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg:        #f7f5f0;
  --bg-alt:    #eceae3;
  --green:     #1a3a2a;
  --green-mid: #264d3b;
  --green-lt:  #3d7a5a;
  --amber:     #e8910c;
  --amber-lt:  #fbbf24;
  --ink:       #0f1a12;
  --ink-2:     #3a4f41;
  --ink-3:     #7a9e89;
  --white:     #ffffff;
  --radius:    12px;
  --radius-sm: 8px;
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Top Nav ───────────────────────────────────────── */
.topnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 40px; height: 64px;
  background: rgba(247,245,240,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,58,42,0.08);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 18px; letter-spacing: 0.12em;
  color: var(--green); text-decoration: none;
}
.nav-pill {
  font-size: 12px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--ink-3); background: var(--bg-alt);
  padding: 4px 12px; border-radius: 20px;
}

/* ─── Shared Section ─────────────────────────────────── */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section-kicker {
  font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--green-lt);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Syne', sans-serif; font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800; line-height: 1.12; color: var(--green);
  margin-bottom: 20px;
}
.section-lede {
  font-size: 18px; color: var(--ink-2); font-weight: 300;
  line-height: 1.7; max-width: 600px;
}

/* ─── Hero ──────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: grid;
  grid-template-columns: 1fr 1fr; gap: 40px;
  padding: 140px 40px 80px; max-width: 1200px; margin: 0 auto;
  align-items: center;
  position: relative; overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--ink-3) 1px, transparent 1px),
    linear-gradient(90deg, var(--ink-3) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.04; pointer-events: none;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; color: var(--green-lt);
  margin-bottom: 24px; text-transform: uppercase;
}
.label-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--amber);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero-headline {
  font-family: 'Syne', sans-serif; font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 800; line-height: 1.05; color: var(--green);
  margin-bottom: 24px;
}
.hero-accent { color: var(--amber); }
.hero-body {
  font-size: 17px; color: var(--ink-2); line-height: 1.75; max-width: 480px;
  margin-bottom: 32px; font-weight: 300;
}
.hero-tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-tag {
  font-size: 12px; font-weight: 500; color: var(--ink-2);
  background: var(--bg-alt); border: 1px solid rgba(26,58,42,0.12);
  padding: 5px 12px; border-radius: 20px; letter-spacing: 0.02em;
}

/* Dashboard Mock */
.dashboard-mock {
  background: var(--green); border-radius: 16px; overflow: hidden;
  box-shadow: 0 40px 80px rgba(26,58,42,0.25), 0 0 0 1px rgba(255,255,255,0.05);
}
.mock-bar {
  background: rgba(255,255,255,0.06); padding: 12px 16px;
  display: flex; gap: 6px; align-items: center;
}
.mock-dot {
  width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.2);
}
.mock-content { padding: 24px; }
.mock-label {
  font-family: 'Syne', sans-serif; font-size: 10px; letter-spacing: 0.15em;
  color: var(--amber); margin-bottom: 16px; font-weight: 700;
}
.mock-stat-row { display: flex; gap: 20px; margin-bottom: 24px; }
.mock-stat { border-right: 1px solid rgba(255,255,255,0.1); padding-right: 20px; }
.mock-stat:last-child { border-right: none; }
.stat-val {
  font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800;
  color: var(--white); line-height: 1;
}
.stat-lbl { font-size: 11px; color: var(--ink-3); margin-top: 4px; }
.call-log { display: flex; flex-direction: column; gap: 10px; }
.call-item {
  background: rgba(255,255,255,0.04); border-radius: var(--radius-sm);
  padding: 12px 14px; display: flex; align-items: center; gap: 10px;
}
.call-item.call-active { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); }
.call-icon { font-size: 14px; flex-shrink: 0; }
.call-info { flex: 1; min-width: 0; }
.call-name { font-size: 12px; font-weight: 600; color: var(--white); }
.call-detail { font-size: 11px; color: var(--ink-3); margin-top: 2px; }
.call-time { font-size: 10px; color: var(--ink-3); flex-shrink: 0; }
.live-dot { color: #4ade80; font-weight: 600; font-size: 10px; }
.pulse { animation: pulse-glow 1.5s ease-in-out infinite; }
@keyframes pulse-glow { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* ─── Problem Section ────────────────────────────────── */
.problem { padding: 100px 0; }
.pain-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  margin-top: 52px;
}
.pain-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; border: 1px solid rgba(26,58,42,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pain-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(26,58,42,0.1);
}
.pain-icon { font-size: 28px; margin-bottom: 14px; }
.pain-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 17px; color: var(--green); margin-bottom: 8px; }
.pain-desc { font-size: 14px; color: var(--ink-2); line-height: 1.6; font-weight: 300; }

/* ─── How It Works ───────────────────────────────────── */
.howitworks { padding: 100px 0; background: var(--bg-alt); }
.steps { display: flex; gap: 0; margin-top: 52px; align-items: flex-start; }
.step { flex: 1; padding: 0 20px 0 0; }
.step-num {
  font-family: 'Syne', sans-serif; font-size: 52px; font-weight: 800;
  color: var(--amber); line-height: 1; margin-bottom: 16px; opacity: 0.4;
}
.step-body h3 { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; color: var(--green); margin-bottom: 10px; }
.step-body p { font-size: 14px; color: var(--ink-2); line-height: 1.7; font-weight: 300; }
.step-connector { flex-shrink: 0; width: 40px; height: 2px; background: linear-gradient(90deg, var(--amber), transparent); align-self: 40px; margin-top: 26px; }
.stack-row { display: flex; align-items: center; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.stack-label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.stack-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.stack-pill {
  font-size: 12px; font-weight: 500; color: var(--green);
  background: var(--bg); border: 1px solid rgba(26,58,42,0.2);
  padding: 4px 12px; border-radius: 20px;
}

/* ─── Pricing ────────────────────────────────────────── */
.pricing { padding: 100px 0; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 52px;
}
.price-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 28px; border: 1px solid rgba(26,58,42,0.08);
  position: relative; transition: transform 0.2s;
}
.price-card:hover { transform: translateY(-2px); }
.price-card-main {
  background: var(--green); color: var(--white);
  border: none; box-shadow: 0 20px 60px rgba(26,58,42,0.25);
}
.price-card-main .price-service { color: var(--amber-lt); }
.price-card-main .price-features li { color: rgba(255,255,255,0.8); }
.price-badge {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  background: var(--amber); color: var(--white); display: inline-block;
  padding: 3px 10px; border-radius: 20px; margin-bottom: 14px;
}
.price-service { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--green); margin-bottom: 12px; }
.price-tag { font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800; color: var(--ink); line-height: 1; }
.price-card-main .price-tag { color: var(--white); }
.price-unit { font-size: 16px; font-weight: 400; opacity: 0.6; }
.price-setup { font-size: 12px; color: var(--ink-3); margin-top: 4px; }
.price-features { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.price-features li { font-size: 14px; color: var(--ink-2); padding-left: 20px; position: relative; }
.price-features li::before {
  content: '→'; position: absolute; left: 0; color: var(--green-lt);
  font-weight: 700;
}
.price-card-main .price-features li::before { color: var(--amber-lt); }
.price-case {
  margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(26,58,42,0.1);
}
.price-card-main .price-case { border-top-color: rgba(255,255,255,0.1); }
.case-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; color: var(--ink-3); text-transform: uppercase; margin-bottom: 6px; }
.case-text { font-size: 13px; color: var(--ink-2); line-height: 1.6; }
.price-card-main .case-text { color: rgba(255,255,255,0.65); }
.roi-note {
  margin-top: 36px; text-align: center; font-size: 14px; color: var(--ink-3);
  font-weight: 400;
}

/* ─── Closing ────────────────────────────────────────── */
.closing { padding: 100px 0; background: var(--green); }
.closing-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.closing-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); margin-bottom: 20px; }
.closing-headline { font-family: 'Syne', sans-serif; font-size: clamp(36px, 5vw, 60px); font-weight: 800; line-height: 1.1; color: var(--white); margin-bottom: 24px; }
.closing-body { font-size: 17px; color: rgba(255,255,255,0.7); line-height: 1.8; max-width: 560px; font-weight: 300; }
.closing-body strong { color: var(--amber-lt); font-weight: 600; }
.closing-data { display: flex; gap: 0; margin-top: 52px; }
.data-point { flex: 1; }
.data-divider { width: 1px; background: rgba(255,255,255,0.15); margin: 0 32px; }
.data-big { font-family: 'Syne', sans-serif; font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; color: var(--amber-lt); line-height: 1; margin-bottom: 8px; }
.data-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* ─── Footer ────────────────────────────────────────── */
.site-footer { background: var(--ink); color: var(--white); padding: 60px 0 30px; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1fr 2fr; gap: 60px; margin-bottom: 40px; }
.footer-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 18px; letter-spacing: 0.12em; margin-bottom: 8px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); margin-bottom: 12px; }
.footer-col div:not(.footer-col-label) { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 20px 40px 0; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-tag { }

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; }
  .hero-visual { display: none; }
  .pain-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .section-inner, .closing-inner { padding: 0 24px; }
  .topnav { padding: 0 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-stats { flex-direction: column; gap: 16px; }
  .trust-sep { display: none; }
  .faq-list { gap: 0; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 32px; }
  .section-title { font-size: 26px; }
  .closing-headline { font-size: 28px; }
  .footer-links { grid-template-columns: 1fr; }
  .hero-cta-row { flex-direction: column; gap: 12px; }
  .btn-cta-primary, .btn-cta-secondary { width: 100%; text-align: center; }
  .pricing-callout-row { flex-direction: column; gap: 16px; align-items: flex-start; }
  .pc-divider { display: none; }
}

/* ─── Hero CTA ────────────────────────────────────────── */
.hero-cta-row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-top: 8px; }
.btn-cta-primary {
  display: inline-block;
  font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700;
  background: var(--green); color: var(--white);
  padding: 14px 28px; border-radius: var(--radius);
  text-decoration: none; transition: background 0.15s, transform 0.15s;
}
.btn-cta-primary:hover { background: var(--green-mid); transform: translateY(-1px); }
.btn-cta-secondary {
  display: inline-block;
  font-size: 14px; font-weight: 400;
  color: var(--ink-2); text-decoration: none;
  padding: 14px 8px; border-bottom: 1px solid var(--ink-3);
  transition: color 0.15s, border-color 0.15s;
}
.btn-cta-secondary:hover { color: var(--green); border-color: var(--green); }

/* ─── Trust Bar ───────────────────────────────────────── */
.trust-bar {
  background: var(--green); padding: 32px 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.trust-text { font-size: 15px; color: rgba(255,255,255,0.7); }
.trust-text strong { color: var(--amber-lt); font-weight: 700; }
.trust-stats { display: flex; gap: 0; align-items: center; }
.trust-stat { padding: 0 28px; }
.trust-stat:first-child { padding-left: 0; }
.ts-value { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: var(--white); line-height: 1; }
.ts-label { font-size: 11px; color: var(--ink-3); margin-top: 4px; }
.trust-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }

/* ─── Features / Solution ─────────────────────────────── */
.solution { padding: 100px 0; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.feature-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 24px; border: 1px solid rgba(26,58,42,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(26,58,42,0.1); }
.feature-icon { font-size: 28px; margin-bottom: 14px; }
.feature-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 16px; color: var(--green); margin-bottom: 8px; }
.feature-desc { font-size: 13px; color: var(--ink-2); line-height: 1.6; font-weight: 300; }

/* ─── Pricing Callout ─────────────────────────────────── */
.pricing-callout { background: var(--bg-alt); border-radius: var(--radius); padding: 28px 36px; margin-top: 40px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; border: 1px solid rgba(26,58,42,0.08); }
.pricing-callout-badge { font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); flex-shrink: 0; }
.pricing-callout-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.pricing-callout-item { }
.pc-amount { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; color: var(--green); line-height: 1; }
.pc-unit { font-size: 16px; font-weight: 400; opacity: 0.6; }
.pc-label { font-size: 12px; color: var(--ink-3); margin-top: 4px; }
.pc-divider { font-size: 24px; color: var(--amber); font-weight: 700; }
.pc-note { font-size: 13px; color: var(--ink-2); font-style: italic; }
.pricing-grid-single { max-width: 520px; }

/* ─── Social Proof ─────────────────────────────────────── */
.social-proof { padding: 100px 0; background: var(--bg-alt); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 24px; border: 1px solid rgba(26,58,42,0.08);
}
.testimonial-quote { font-size: 14px; color: var(--ink-2); line-height: 1.7; font-weight: 300; margin-bottom: 16px; font-style: italic; }
.testimonial-attr { font-size: 12px; color: var(--ink-3); font-weight: 500; }
.logo-bar { margin-top: 56px; }
.logo-bar-label { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 20px; text-align: center; }
.logo-slots { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.logo-slot {
  background: var(--white); border: 1px solid rgba(26,58,42,0.1);
  border-radius: var(--radius-sm); padding: 16px 32px;
  font-size: 12px; color: var(--ink-3); font-weight: 500;
  min-width: 100px; text-align: center;
}

/* ─── FAQ ─────────────────────────────────────────────── */
.faq { padding: 100px 0; }
.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 52px; max-width: 800px; }
.faq-item { border-bottom: 1px solid rgba(26,58,42,0.1); padding: 28px 0; }
.faq-item:first-child { border-top: 1px solid rgba(26,58,42,0.1); }
.faq-q { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: var(--green); margin-bottom: 12px; }
.faq-a { font-size: 14px; color: var(--ink-2); line-height: 1.7; font-weight: 300; }

/* ─── Closing CTA ─────────────────────────────────────── */
.closing-cta { margin-top: 40px; }
.btn-closing-cta {
  display: inline-block;
  font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700;
  background: var(--amber); color: var(--white);
  padding: 18px 40px; border-radius: var(--radius);
  text-decoration: none; transition: background 0.15s, transform 0.15s;
}
.btn-closing-cta:hover { background: var(--green-mid); transform: translateY(-1px); }

/* ─── Footer Contact ──────────────────────────────────── */
.footer-contact { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.4); }
