:root {
  color-scheme: light;
  --ink: #17211b;
  --muted: #5e6b62;
  --line: #dfe7df;
  --paper: #fbfcf7;
  --surface: #ffffff;
  --green: #0f6f4f;
  --green-dark: #0a4d37;
  --lime: #cbe86b;
  --gold: #d99f36;
  --shadow: 0 24px 60px rgba(23, 33, 27, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header,
.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: white;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a,
.footer-links a {
  text-decoration: none;
}

.nav a:hover,
.footer-links a:hover {
  color: var(--green);
}

.hero,
.section,
.content-page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
  align-items: center;
  gap: 56px;
  padding: 48px 0 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 780px;
  font-size: clamp(3.2rem, 8vw, 6.4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: 1.25rem;
}

.lead {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  text-decoration: none;
}

.primary {
  background: var(--green);
  color: white;
}

.secondary {
  border: 1px solid var(--line);
  background: var(--surface);
}

.phone-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f1f7ef 100%);
  box-shadow: var(--shadow);
  padding: 18px;
}

.phone-top,
.handover {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #23b26d;
}

.message,
.insight {
  margin-top: 16px;
  border-radius: 8px;
  padding: 14px;
}

.message {
  max-width: 88%;
  color: white;
  background: var(--green);
}

.inbound {
  margin-left: auto;
  background: #26362d;
}

.outbound {
  background: #16835f;
}

.insight {
  border: 1px solid var(--line);
  background: var(--surface);
}

.insight strong,
.insight span {
  display: block;
}

.insight span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.handover {
  margin-top: 14px;
  color: var(--green-dark);
  font-weight: 800;
}

.section {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 48px;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.step span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--lime);
  color: var(--green-dark);
  font-weight: 900;
}

.step p,
.card p,
.pricing-band p,
.legal p,
.contact-card p,
.contact-card li {
  margin: 0;
  color: var(--muted);
}

.card-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.card,
.contact-card,
.price-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 22px;
}

.card p {
  margin-top: 12px;
}

.pricing-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 28px;
  align-items: center;
}

.pricing-band p {
  margin-top: 16px;
  max-width: 680px;
}

.price-card {
  background: var(--green-dark);
  color: white;
}

.price-card strong {
  display: block;
  margin-top: 12px;
  font-size: 1.8rem;
  line-height: 1.1;
}

.price-card p,
.price-label {
  color: #d7ead8;
}

.content-page {
  padding: 72px 0;
  min-height: calc(100svh - 220px);
}

.content-page h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
}

.content-page h2 {
  margin-top: 34px;
  font-size: 1.45rem;
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal {
  max-width: 820px;
}

.legal p {
  margin-top: 12px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 6px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 16px 0;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .two-column,
  .pricing-band,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 36px;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 3rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
