:root {
  color-scheme: light;
  --ink: #17211b;
  --muted: #627066;
  --line: #d9e0d9;
  --paper: #fbfaf5;
  --white: #ffffff;
  --green: #146b4f;
  --green-dark: #0d4636;
  --gold: #d89b2b;
  --blue: #315f8c;
  --rose: #b84855;
  --shadow: 0 24px 60px rgba(20, 39, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(251, 250, 245, 0.92);
  border-bottom: 1px solid rgba(217, 224, 217, 0.8);
  backdrop-filter: blur(16px);
}

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

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

.nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-weight: 650;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
  min-height: calc(100svh - 72px);
  padding: clamp(48px, 7vw, 86px) clamp(20px, 5vw, 72px) 36px;
}

.hero-content {
  max-width: 720px;
}

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

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

h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.7rem, 6.8vw, 6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: #3f4c43;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 26px rgba(20, 107, 79, 0.24);
}

.primary:hover {
  background: var(--green-dark);
}

.secondary {
  color: var(--green-dark);
  background: var(--white);
  border-color: var(--line);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

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

.stats dt {
  font-size: 1.35rem;
  font-weight: 900;
}

.stats dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.hero-visual {
  margin: 0;
}

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

.section {
  padding: clamp(56px, 8vw, 100px) clamp(20px, 5vw, 72px);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--green-dark);
}

.trust-band p {
  min-height: 96px;
  margin: 0;
  padding: 28px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  font-size: 1.05rem;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 6vw, 72px);
}

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

.outcomes article,
.module-grid article,
.price-card,
.checkout,
.format-panel,
.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.outcomes article {
  padding: 24px;
}

.outcomes span {
  display: block;
  margin-bottom: 18px;
  color: var(--rose);
  font-weight: 900;
}

.outcomes p,
.module-grid span,
.format li,
.price-note,
.form-note,
.quote span {
  color: var(--muted);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.module-grid article {
  display: grid;
  gap: 18px;
  min-height: 150px;
  padding: 22px;
}

.module-grid strong {
  color: var(--blue);
  font-size: 1.45rem;
}

.format {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 18px;
  background: #edf3ee;
}

.format-panel,
.quote {
  padding: clamp(24px, 4vw, 42px);
}

.format ul,
.price-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding-left: 20px;
}

.quote {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-color: rgba(49, 95, 140, 0.25);
}

.quote p {
  margin: 0 0 40px;
  color: var(--blue);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 800;
  line-height: 1.2;
}

.purchase {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(300px, 1fr);
  gap: 18px;
}

.price-card,
.checkout {
  padding: clamp(24px, 4vw, 42px);
}

.price {
  margin: 20px 0 6px;
  color: var(--green-dark);
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  font-weight: 950;
  line-height: 1;
}

.checkout {
  display: grid;
  gap: 16px;
}

.checkout label {
  display: grid;
  gap: 8px;
  color: #344239;
  font-weight: 750;
}

.checkout input,
.checkout select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #f7f8f4;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.checkout input:focus,
.checkout select:focus {
  outline: 3px solid rgba(216, 155, 43, 0.28);
  border-color: var(--gold);
}

.full {
  width: 100%;
}

.form-note {
  min-height: 24px;
  margin: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .hero,
  .split,
  .format,
  .purchase {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    font-size: 0.95rem;
  }

  .hero {
    padding-top: 34px;
  }

  .stats,
  .trust-band,
  .module-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .footer {
    flex-direction: column;
  }
}
