:root {
  --bg: #f5f7f4;
  --surface: #ffffff;
  --surface-2: #eef3ef;
  --ink: #18221f;
  --muted: #66736d;
  --line: #dbe3dd;
  --teal: #0d766e;
  --teal-dark: #09554f;
  --amber: #d88b21;
  --graphite: #26312d;
  --shadow: 0 24px 70px rgba(24, 34, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(245, 247, 244, 0.88);
  border-bottom: 1px solid rgba(219, 227, 221, 0.78);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--teal);
  border-radius: 8px;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav a:hover {
  color: var(--ink);
}

.header-cta,
.button,
.lead-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.header-cta,
.button.primary,
.lead-form button {
  color: #fff;
  background: var(--teal);
}

.header-cta:hover,
.button.primary:hover,
.lead-form button:hover {
  background: var(--teal-dark);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(48px, 7vw, 92px) clamp(18px, 4vw, 56px) 42px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
}

.hero-text {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 38px 0 0;
}

.hero-metrics div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-metrics dt {
  font-size: 24px;
  font-weight: 800;
}

.hero-metrics dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

section {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 4vw, 56px);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 860px;
}

.pain-band {
  background: var(--graphite);
  color: #fff;
}

.pain-band .eyebrow {
  color: #8bd8cb;
}

.pain-grid,
.solution-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pain-grid article,
.solution-card,
.pricing-grid article,
.case-list article,
.steps li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pain-grid article {
  min-height: 230px;
  padding: 24px;
  color: var(--ink);
}

.pain-grid span,
.case-tag {
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
}

.pain-grid p,
.solution-card p,
.case-list p,
.steps p,
.pricing-grid p,
.contact-copy p,
.form-note {
  color: var(--muted);
}

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

.solution-card {
  min-height: 280px;
  padding: 24px;
}

.icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 26px;
  color: #fff;
  background: var(--teal);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
}

.cases {
  background: var(--surface-2);
}

.case-list {
  display: grid;
  gap: 14px;
}

.case-list article {
  display: grid;
  grid-template-columns: 120px minmax(220px, 0.65fr) minmax(280px, 1fr);
  gap: 24px;
  align-items: start;
  padding: 24px;
}

.case-list p {
  margin: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  min-height: 250px;
  padding: 24px;
}

.steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 38px;
  color: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 8px;
  font-weight: 800;
}

.pricing {
  background: #fff;
}

.pricing-grid article {
  padding: 26px;
}

.pricing-grid .featured {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}

.price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin: 16px 0;
  color: var(--ink) !important;
  font-size: 28px;
  font-weight: 800;
}

.old-price {
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 0.7fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  background: var(--graphite);
  color: #fff;
}

.contact .eyebrow {
  color: #8bd8cb;
}

.contact-copy p {
  max-width: 650px;
  color: #c7d1cc;
  font-size: 18px;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border-radius: 8px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 700;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 14px 14px;
  color: var(--ink);
  background: #f8faf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.lead-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 13px;
}

.form-status {
  min-height: 20px;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.form-status.success {
  color: var(--teal);
}

.form-status.error {
  color: #b8422a;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .pain-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .case-list article {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: stretch;
  }

  .header-cta {
    display: none;
  }

  .hero-metrics,
  .solution-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 40px;
  }

  .hero-text {
    font-size: 17px;
  }

  .footer {
    flex-direction: column;
  }
}
