:root {
  --bg: #f5f1e8;
  --surface: #ffffff;
  --surface-alt: #eae4d8;
  --surface-soft: #f9f7f1;
  --ink: #12161d;
  --muted: #5e6773;
  --line: #d7d0c1;
  --line-strong: #c7bfad;
  --green: #0f6d5e;
  --green-soft: #dcefe8;
  --gold: #b88a33;
  --rust: #b55642;
  --dark: #131920;
  --shadow: 0 22px 60px rgba(18, 22, 29, 0.09);
  --radius: 8px;
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

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

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

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  background: rgba(19, 25, 32, 0.72);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
}

.brand {
  color: #f7fafc;
  font-size: 1rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(247, 250, 252, 0.78);
  font-size: 0.95rem;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 140ms ease, background 140ms ease, color 140ms ease, border-color 140ms ease;
}

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

.header-cta,
.button.primary {
  color: #ffffff;
  background: var(--green);
}

.button.secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.button.full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 21, 27, 0.88) 0%, rgba(16, 21, 27, 0.72) 36%, rgba(16, 21, 27, 0.42) 100%),
    linear-gradient(180deg, rgba(16, 21, 27, 0.14) 0%, rgba(16, 21, 27, 0.78) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 122px 0 72px;
}

.hero-copy {
  max-width: 760px;
  color: #f7fafc;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #d8e9e1;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.eyebrow.dark {
  color: var(--green);
  border-color: rgba(18, 22, 29, 0.08);
  background: rgba(15, 109, 94, 0.08);
}

h1,
h2,
h3,
summary {
  letter-spacing: 0;
}

h1 {
  max-width: 10ch;
  margin: 18px 0 0;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.93;
}

.hero-lead {
  max-width: 58ch;
  margin: 22px 0 0;
  font-size: 1.14rem;
  line-height: 1.7;
  color: rgba(247, 250, 252, 0.84);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(247, 250, 252, 0.8);
  font-size: 0.96rem;
}

.hero-points li {
  position: relative;
  padding-left: 18px;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.proof-band {
  border-bottom: 1px solid rgba(18, 22, 29, 0.05);
  background: var(--surface);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 26px 0;
}

.proof-item {
  min-height: 132px;
}

.proof-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-item p,
.section-head p,
.problem-card p,
.card-copy,
.check-list,
.difference-copy p,
.reason-card p,
.product-card p,
.process-step p,
.plain-list,
.contact-copy p,
.form-note,
.site-footer p,
.legal-copy p,
.legal-copy li {
  color: var(--muted);
  line-height: 1.68;
}

.section {
  padding: 92px 0;
}

.section-head {
  max-width: 70ch;
  margin-bottom: 36px;
}

.section-head.narrow {
  max-width: 52ch;
}

h2 {
  margin: 16px 0 0;
  font-size: clamp(2rem, 4vw, 3.9rem);
  line-height: 1.02;
}

h3 {
  margin: 0;
  font-size: 1.42rem;
  line-height: 1.16;
}

.problem-grid,
.offer-grid,
.reason-grid,
.product-grid,
.process-grid {
  display: grid;
  gap: 20px;
}

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

.problem-card,
.offer-card,
.reason-card,
.product-card,
.process-step,
.fit-panel,
.contact-form,
.legal-copy {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.problem-card,
.offer-card,
.reason-card,
.product-card,
.process-step,
.fit-panel,
.contact-form,
.legal-copy {
  padding: 24px;
}

.alt-section {
  background: var(--surface-alt);
}

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

.card-kicker {
  margin: 0 0 12px;
  color: var(--rust);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.check-list,
.plain-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li,
.legal-copy li {
  position: relative;
  padding-left: 18px;
  margin-top: 10px;
}

.check-list li::before,
.plain-list li::before,
.legal-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
}

.check-list li::before {
  background: var(--green);
}

.plain-list li::before,
.legal-copy li::before {
  background: var(--gold);
}

.price-line {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(18, 22, 29, 0.08);
  font-size: 0.98rem;
  color: var(--ink);
}

.difference-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: start;
}

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

.dark-section {
  background: var(--dark);
}

.dark-section .section-head h2,
.dark-section .product-card h3 {
  color: #f7fafc;
}

.dark-section .section-head p,
.dark-section .product-card p {
  color: rgba(247, 250, 252, 0.72);
}

.dark-section .product-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

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

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

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 800;
}

.process-step h3 {
  margin-top: 18px;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 36px;
  align-items: start;
}

.compact li {
  margin-top: 8px;
}

.contact-direct {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  font-weight: 600;
  color: var(--ink);
}

.contact-direct a,
.footer-links a,
.legal-copy a {
  color: var(--green);
}

.dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--gold);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(15, 109, 94, 0.12);
  border-color: var(--green);
}

.site-footer {
  border-top: 1px solid rgba(18, 22, 29, 0.06);
  background: var(--surface);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0 30px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.legal-main {
  padding: 128px 0 88px;
}

.legal-layout {
  display: grid;
  gap: 24px;
}

.legal-copy {
  max-width: 820px;
}

.legal-copy h1 {
  max-width: none;
  color: var(--ink);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
}

.legal-copy h2 {
  margin-top: 28px;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.legal-copy ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 1080px) {
  .offer-grid,
  .product-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .difference-layout,
  .contact-layout,
  .fit-grid,
  .problem-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .topbar {
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 18px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-inner {
    padding: 100px 0 54px;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.6rem, 12vw, 4.2rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .proof-grid,
  .offer-grid,
  .reason-grid,
  .product-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 76px 0;
  }

  .footer-row,
  .footer-links {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .legal-main {
    padding-top: 112px;
  }
}
