:root {
  --bg: #FAF8F5;
  --fg: #1C1C1E;
  --accent: #B87333;
  --accent-light: #D4956A;
  --muted: #6B6B6B;
  --surface: #F2EDE8;
  --border: #DDD5CC;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.nav__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--fg);
}
.nav__tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

/* Hero */
.hero {
  padding: 80px 48px 64px;
  border-bottom: 1px solid var(--border);
}
.hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero__sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 440px;
}

/* Automation flow */
.automation-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
}
.flow-step {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  width: 100%;
}
.flow-step--in { border-left: 3px solid var(--accent); }
.flow-step--out { border-left: 3px solid #2A8F6A; }
.flow-step__icon { font-size: 20px; }
.flow-step__label { font-size: 14px; font-weight: 500; color: var(--fg); }
.flow-arrow { color: var(--accent); padding: 4px 0; }

/* Stats */
.hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 24px;
}
.stat { display: flex; flex-direction: column; }
.stat__number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--fg);
}
.stat__label { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* Sections */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
  max-width: 620px;
}

/* How it works */
.how { padding: 80px 48px; border-bottom: 1px solid var(--border); }
.how__inner { max-width: 1100px; margin: 0 auto; }
.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 56px;
}
.step__num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.4;
  display: block;
  margin-bottom: 16px;
}
.step__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.step__body { font-size: 15px; color: var(--muted); line-height: 1.65; }

/* Services */
.services { padding: 80px 48px; border-bottom: 1px solid var(--border); background: var(--surface); }
.services__inner { max-width: 1100px; margin: 0 auto; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
}
.service-card__icon { font-size: 28px; display: block; margin-bottom: 14px; }
.service-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card__body { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* Proof / verticals */
.proof { padding: 80px 48px; border-bottom: 1px solid var(--border); }
.proof__inner { max-width: 1100px; margin: 0 auto; }
.verticals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
  margin-bottom: 56px;
}
.vertical {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
}
.vertical__name { font-weight: 600; font-size: 15px; display: block; margin-bottom: 4px; }
.vertical__detail { font-size: 13px; color: var(--muted); }

.proof__pricing {
  border-top: 1px solid var(--border);
  padding-top: 40px;
  text-align: center;
}
.proof__pricing-note { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.pricing-range { display: flex; align-items: baseline; justify-content: center; gap: 6px; }
.pricing-range__from { font-size: 18px; color: var(--muted); }
.pricing-range__amount {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  color: var(--fg);
}
.pricing-range__per { font-size: 18px; color: var(--muted); }
.proof__proof { font-size: 15px; color: var(--muted); margin-top: 12px; font-style: italic; }

/* Closing */
.closing { padding: 96px 48px; }
.closing__inner { max-width: 1100px; margin: 0 auto; }
.closing__headline {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--fg);
  max-width: 700px;
  margin-bottom: 24px;
}
.closing__sub { font-size: 17px; color: var(--muted); max-width: 560px; }

/* Footer */
.footer { padding: 40px 48px; border-top: 1px solid var(--border); }
.footer__inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer__logo { font-family: var(--font-display); font-weight: 700; font-size: 16px; display: block; margin-bottom: 4px; }
.footer__desc { font-size: 13px; color: var(--muted); }
.footer__copy { font-size: 13px; color: var(--muted); }

/* Responsive */
@media (max-width: 768px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 48px 24px 40px; }
  .hero__headline { font-size: 36px; }
  .how__steps { grid-template-columns: 1fr; gap: 32px; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .verticals { grid-template-columns: repeat(2, 1fr); }
  .how, .services, .proof, .closing { padding: 56px 24px; }
  .nav { padding: 20px 24px; }
  .footer__inner { flex-direction: column; gap: 12px; align-items: flex-start; }
  .pricing-range__amount { font-size: 48px; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: 30px; }
  .section-headline { font-size: 28px; }
  .closing__headline { font-size: 28px; }
  .services__grid { grid-template-columns: 1fr; }
}