:root {
  color-scheme: light;
  --ink: #18211f;
  --muted: #64706c;
  --line: #dbe4df;
  --paper: #f8f7f1;
  --white: #ffffff;
  --teal: #0f6f68;
  --teal-dark: #084c49;
  --coral: #d96d57;
  --sage: #dce9df;
  --shadow: 0 24px 70px rgba(21, 43, 38, 0.14);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(24, 33, 31, 0.08);
  background: rgba(248, 247, 241, 0.91);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.trust-row,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

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

.nav {
  gap: 22px;
  color: var(--muted);
  font-size: 15px;
}

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

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: var(--radius);
  font-weight: 750;
}

.nav-cta {
  padding: 0 18px;
  background: var(--teal);
  color: var(--white);
}

.button {
  border: 1px solid transparent;
  padding: 0 20px;
  cursor: pointer;
  font: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(15, 111, 104, 0.22);
}

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

.button.secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
  min-height: calc(100vh - 66px);
  padding-top: clamp(42px, 6vw, 76px);
  padding-bottom: clamp(46px, 7vw, 86px);
}

.hero-copy,
.section-head,
.result-copy,
.about-copy,
.contact-section > div {
  max-width: 760px;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(46px, 6.2vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.03;
  letter-spacing: 0;
}

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

.lead {
  max-width: 690px;
  color: #44504c;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.48;
}

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

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-row span,
.deliverables span,
.method-card span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 14px;
}

.trust-row span::before,
.deliverables span::before {
  content: "✓";
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #2fa66a;
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.hero-media {
  position: relative;
}

.hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.pain-section,
.included-section,
.pricing-section {
  background: var(--white);
}

.section-head {
  margin-bottom: 34px;
}

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

.pain-grid p,
.included-grid article,
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.pain-grid p {
  min-height: 112px;
  margin: 0;
  padding: 22px;
  font-size: 18px;
  line-height: 1.42;
}

.statement {
  max-width: 820px;
  margin: 30px 0 0;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.12;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.timeline article {
  min-height: 292px;
  padding: 24px;
  background: var(--paper);
}

.timeline span {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--coral);
  font-size: 14px;
  font-weight: 900;
}

.timeline p,
.included-grid p,
.price-card p,
.about-copy p,
.audience-layout p,
.result-copy p,
.contact-section p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.result-section,
.about-section,
.contact-section,
.audience-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.large-line {
  margin-top: 28px;
  color: var(--ink) !important;
  font-size: clamp(24px, 3vw, 36px) !important;
  font-weight: 800;
  line-height: 1.16 !important;
}

.deliverables,
.method-card {
  display: grid;
  gap: 12px;
}

.deliverables span,
.method-card span {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  font-weight: 750;
}

.method-card b {
  color: #9ed3c9;
  font-size: 18px;
}

.included-grid article {
  padding: 24px;
  min-height: 210px;
}

.audience-section {
  background: var(--sage);
}

.audience-layout {
  align-items: center;
}

blockquote {
  margin: 0;
  border-left: 5px solid var(--coral);
  padding: 8px 0 8px 22px;
  color: var(--ink);
  font-size: clamp(23px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.18;
}

.pricing-grid {
  grid-template-columns: minmax(0, 680px);
}

.price-card {
  position: relative;
  padding: 28px;
}

.price-card.featured {
  border-color: rgba(15, 111, 104, 0.45);
  background: #f3faf6;
}

.badge {
  display: inline-block;
  margin-bottom: 18px;
  border-radius: 8px;
  padding: 7px 10px;
  background: var(--coral);
  color: var(--white) !important;
  font-size: 13px !important;
  font-weight: 850;
}

.price {
  margin-bottom: 16px;
  color: var(--ink) !important;
  font-size: clamp(34px, 4vw, 52px) !important;
  font-weight: 900;
  line-height: 1;
}

.price-card .button {
  margin-top: 20px;
}

.pricing-note {
  max-width: 840px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.about-section {
  background: var(--ink);
  color: var(--white);
}

.about-section .eyebrow {
  color: #9ed3c9;
}

.about-copy p {
  color: #c7d1ce;
}

.method-card span {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.contact-section {
  background: var(--white);
}

.lead-form {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--paper);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 111, 104, 0.12);
}

textarea {
  resize: vertical;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--teal) !important;
  font-size: 14px !important;
}

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

@media (max-width: 1050px) {
  .hero,
  .timeline,
  .pain-grid,
  .included-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline article {
    min-height: 240px;
  }
}

@media (max-width: 760px) {
  .topbar {
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 14px;
  }

  section {
    padding: 54px 18px;
  }

  .hero,
  .pain-grid,
  .timeline,
  .result-section,
  .included-grid,
  .audience-layout,
  .pricing-grid,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 38px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .hero-media {
    order: -1;
  }

  .hero-media img {
    aspect-ratio: 16 / 10;
  }

  .timeline article,
  .included-grid article,
  .pain-grid p {
    min-height: auto;
  }

  .footer {
    flex-direction: column;
  }
}
