:root {
  --bg: #f6f4ee;
  --bg-soft: #ece9df;
  --surface: #fffdf8;
  --text: #17211c;
  --muted: #5e6962;
  --accent: #285c45;
  --accent-dark: #16392b;
  --accent-soft: #d9e5dc;
  --line: rgba(23, 33, 28, 0.12);
  --shadow: 0 28px 70px rgba(31, 43, 36, 0.13);
  --radius: 24px;
  --radius-small: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 9999;
  background: var(--text);
  color: white;
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus { left: 8px; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(246, 244, 238, 0.84);
  border-bottom: 1px solid rgba(23, 33, 28, 0.06);
}
.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}
.nav {
  margin-left: auto;
  display: flex;
  gap: 28px;
}
.nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}
.nav a:hover { color: var(--text); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(40, 92, 69, 0.18);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
  box-shadow: 0 16px 30px rgba(40, 92, 69, 0.24);
}
.button-small { min-height: 42px; padding: 0 17px; font-size: .92rem; }
.button-full { width: 100%; }
.button-light { background: #fff; color: var(--accent-dark); box-shadow: none; }
.button-light:hover { background: #f8f8f4; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 100px;
}
.hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -180px;
  top: -130px;
  background: radial-gradient(circle, rgba(108, 151, 126, .23), rgba(108, 151, 126, 0) 68%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.07fr .93fr;
  gap: 70px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .76rem;
  font-weight: 800;
}
h1, h2, h3 {
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-top: 0;
}
h1 {
  margin-bottom: 24px;
  max-width: 820px;
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 800;
}
.hero-lead {
  max-width: 670px;
  margin: 0 0 30px;
  font-size: 1.2rem;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.text-link {
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid rgba(23,33,28,.25);
}
.microcopy {
  margin-top: 22px;
  font-size: .88rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}
.flow-card {
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(23, 33, 28, .08);
  box-shadow: var(--shadow);
  border-radius: 28px;
}
.flow-card-main {
  position: relative;
  z-index: 2;
  width: min(100%, 480px);
  padding: 24px;
  transform: rotate(1.5deg);
}
.flow-card-top {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .84rem;
  font-weight: 700;
}
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #56a06f; }
.flow-badge {
  margin-left: auto;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: .72rem;
}
.flow-step { display: flex; gap: 14px; align-items: center; }
.flow-step strong, .flow-step small { display: block; }
.flow-step small { color: var(--muted); margin-top: 2px; }
.flow-icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--bg-soft);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}
.flow-line { width: 2px; height: 28px; background: var(--line); margin: 5px 0 5px 18px; }
.highlight-step {
  padding: 13px;
  margin: 0 -4px -2px;
  background: var(--accent-soft);
  border-radius: 16px;
}
.highlight-step .flow-icon { background: var(--accent); color: white; }
.mini-card {
  position: absolute;
  z-index: 3;
  background: #fff;
  border: 1px solid rgba(23, 33, 28, .08);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 16px 34px rgba(29, 41, 34, .11);
  font-weight: 700;
  font-size: .84rem;
}
.mini-card-a { top: 70px; right: 0; transform: rotate(4deg); }
.mini-card-b { left: 0; bottom: 60px; transform: rotate(-4deg); }

.value-strip { padding: 20px 0 96px; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card {
  min-height: 285px;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}
.value-card .number { display: inline-block; margin-bottom: 52px; color: var(--accent); font-weight: 800; }
.value-card h2 { margin-bottom: 14px; font-size: 1.65rem; }
.value-card p { color: var(--muted); margin-bottom: 0; }

.example-section, .pricing-section, .about-section { padding: 110px 0; }
.example-section { background: var(--text); color: #f8f8f2; }
.example-grid, .pricing-grid, .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.section-copy h2, .section-heading h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); margin-bottom: 24px; }
.section-copy p { color: var(--muted); font-size: 1.05rem; }
.example-section .section-copy p { color: #c8cec9; }
.example-section .eyebrow { color: #9cc3aa; }
.callout {
  padding: 20px 0 0 22px;
  border-left: 2px solid #8ab49a;
  font-weight: 700;
  color: #fff !important;
}
.message-demo { display: grid; place-items: center; }
.phone-shell {
  width: min(100%, 360px);
  min-height: 500px;
  border: 8px solid #090d0b;
  border-radius: 42px;
  background: #f3f4f1;
  color: #17211c;
  padding: 18px 18px 26px;
  box-shadow: 0 40px 70px rgba(0,0,0,.25);
}
.phone-top { display: flex; justify-content: space-between; font-size: .72rem; font-weight: 700; padding: 0 8px 18px; }
.message-header { display: flex; gap: 12px; align-items: center; padding: 14px 4px 20px; border-bottom: 1px solid rgba(23,33,28,.08); }
.avatar { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--accent); color: white; font-weight: 800; }
.message-header strong, .message-header small { display: block; }
.message-header small { color: var(--muted); }
.message-bubble {
  margin-top: 80px;
  margin-left: 28px;
  padding: 16px;
  border-radius: 20px 20px 5px 20px;
  background: #d8eddc;
  font-size: .92rem;
}
.message-bubble a { display: block; margin-top: 12px; font-weight: 800; text-decoration: none; color: var(--accent-dark); }
.message-time { margin-top: 8px; text-align: right; color: #7f8983; font-size: .7rem; }

.process-section { padding: 110px 0; }
.section-heading { max-width: 760px; margin-bottom: 50px; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.process-card { padding: 30px; min-height: 310px; border-top: 1px solid var(--line); }
.process-number { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-dark); font-weight: 800; margin-bottom: 70px; }
.process-card h3 { font-size: 1.45rem; margin-bottom: 14px; }
.process-card p { margin: 0; color: var(--muted); }

.audience-section { padding: 30px 0 110px; }
.audience-wrap {
  padding: 52px;
  border-radius: 28px;
  background: var(--bg-soft);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.audience-wrap h2 { font-size: 2.2rem; margin-bottom: 0; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips span { padding: 10px 14px; border-radius: 999px; background: var(--surface); border: 1px solid rgba(23,33,28,.08); font-weight: 700; font-size: .86rem; }

.pricing-section { background: #e5e1d6; }
.pricing-card {
  padding: 34px;
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 24px 60px rgba(34,43,38,.1);
}
.pricing-label { color: var(--accent); font-weight: 800; text-transform: uppercase; letter-spacing: .09em; font-size: .74rem; }
.price { margin: 15px 0 26px; font-family: "Manrope", sans-serif; font-size: 3.1rem; font-weight: 800; letter-spacing: -.04em; }
.price span { font-family: "DM Sans", sans-serif; font-size: .95rem; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.pricing-card ul { list-style: none; padding: 0; margin: 0 0 28px; }
.pricing-card li { position: relative; padding: 12px 0 12px 28px; border-bottom: 1px solid var(--line); }
.pricing-card li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }
.monthly { margin-bottom: 25px; padding: 18px; border-radius: 14px; background: var(--bg-soft); }
.monthly strong, .monthly span { display: block; }
.monthly span { color: var(--muted); font-size: .88rem; margin-top: 2px; }

.about-grid { grid-template-columns: .45fr 1.55fr; }
.about-mark { width: 220px; height: 220px; display: grid; place-items: center; border-radius: 55px; background: var(--accent); color: #fff; font-family: "Manrope", sans-serif; font-size: 6rem; font-weight: 800; box-shadow: var(--shadow); transform: rotate(-4deg); }

.cta-section { padding: 25px 0 100px; }
.cta-card { padding: 58px; border-radius: 30px; background: var(--accent-dark); color: white; display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; }
.cta-card .eyebrow { color: #9fc1ad; }
.cta-card h2 { font-size: clamp(2rem, 4vw, 3.3rem); margin-bottom: 14px; max-width: 780px; }
.cta-card p { color: #c7d4cc; margin-bottom: 0; }

.site-footer { padding: 0 0 34px; }
.footer-wrap { min-height: 80px; border-top: 1px solid var(--line); display: flex; gap: 26px; align-items: center; color: var(--muted); font-size: .86rem; }
.brand-footer { color: var(--text); margin-right: auto; }
.brand-footer .brand-mark { width: 28px; height: 28px; border-radius: 8px; font-size: .82rem; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .nav { display: none; }
  .nav-wrap .button-small { margin-left: auto; }
  .hero { padding: 80px 0; }
  .hero-grid, .example-grid, .pricing-grid, .about-grid, .audience-wrap { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { min-height: 460px; }
  .value-grid, .process-grid { grid-template-columns: 1fr; }
  .value-card { min-height: auto; }
  .value-card .number { margin-bottom: 24px; }
  .process-card { min-height: auto; }
  .process-number { margin-bottom: 30px; }
  .about-mark { width: 140px; height: 140px; border-radius: 36px; font-size: 4rem; }
  .cta-card { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header .button-small { display: none; }
  h1 { font-size: clamp(2.7rem, 15vw, 4rem); }
  .hero-lead { font-size: 1.05rem; }
  .hero-visual { min-height: 420px; }
  .flow-card-main { padding: 18px; }
  .mini-card-a { top: 25px; right: -2px; }
  .mini-card-b { left: -2px; bottom: 20px; }
  .example-section, .process-section, .pricing-section, .about-section { padding: 82px 0; }
  .audience-wrap, .cta-card { padding: 34px 24px; }
  .pricing-card { padding: 28px 22px; }
  .price { font-size: 2.45rem; }
  .footer-wrap { flex-wrap: wrap; padding-top: 24px; }
  .brand-footer { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button { transition: none; }
}
