:root {
  --ink: #141712;
  --muted: #586158;
  --paper: #f6f3eb;
  --panel: #fffdf7;
  --line: #d8d1c2;
  --green: #2f6b4f;
  --green-dark: #214a38;
  --gold: #c58a2d;
  --steel: #3c5364;
  --white: #ffffff;
  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;
  color: var(--ink);
  background: var(--paper);
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(246, 243, 235, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.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: 7px;
  font-size: 13px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-button {
  color: var(--white);
  background: var(--ink);
  padding: 9px 14px;
  border-radius: 7px;
}

.hero {
  position: relative;
  min-height: clamp(580px, 86vh, 780px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 21, 17, 0.9) 0%, rgba(18, 21, 17, 0.74) 38%, rgba(18, 21, 17, 0.18) 75%),
    linear-gradient(0deg, rgba(18, 21, 17, 0.2), rgba(18, 21, 17, 0.2));
}

.hero-content {
  position: relative;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 86px);
  padding-top: 44px;
  color: var(--white);
}

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

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

h1 {
  margin: 0;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.94;
  letter-spacing: 0;
}

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

h3 {
  margin: 0;
  font-size: 22px;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 850;
  cursor: pointer;
}

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

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

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.band,
.section,
.cta-band,
.footer {
  padding-right: clamp(18px, 6vw, 76px);
  padding-left: clamp(18px, 6vw, 76px);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric {
  display: grid;
  gap: 4px;
  padding: 24px;
  background: var(--panel);
}

.metric strong {
  font-size: clamp(22px, 3vw, 34px);
}

.metric span,
.muted,
.fine-print {
  color: var(--muted);
}

.section {
  padding-top: clamp(58px, 8vw, 96px);
  padding-bottom: clamp(58px, 8vw, 96px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1.08fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

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

.check-list p {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 12px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.check-list span {
  width: 10px;
  height: 10px;
  margin-top: 9px;
  background: var(--gold);
  border-radius: 50%;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.package-card,
.review-tool {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(20, 23, 18, 0.06);
}

.package-card.featured {
  border-color: rgba(47, 107, 79, 0.5);
  box-shadow: 0 18px 48px rgba(47, 107, 79, 0.14);
}

.price {
  margin: 12px 0;
  color: var(--green);
  font-size: 24px;
  font-weight: 900;
}

.package-card p:not(.price) {
  color: var(--muted);
  line-height: 1.5;
}

.package-card ul {
  margin: 20px 0 0;
  padding-left: 20px;
  color: var(--ink);
  line-height: 1.8;
}

.review-section {
  background: #eef2ed;
}

.review-tool {
  display: grid;
  gap: 10px;
}

label {
  font-size: 13px;
  font-weight: 850;
}

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

textarea {
  resize: vertical;
}

.full {
  width: 100%;
  margin-top: 6px;
}

.fine-print {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 42px;
  padding-bottom: 42px;
  color: var(--white);
  background: var(--steel);
}

.cta-band h2 {
  max-width: 860px;
  font-size: clamp(26px, 4vw, 44px);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  padding-bottom: 24px;
  color: var(--muted);
  background: var(--ink);
}

.footer span {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 820px) {
  .topbar,
  .footer,
  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 690px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(18, 21, 17, 0.9) 0%, rgba(18, 21, 17, 0.75) 54%, rgba(18, 21, 17, 0.22) 100%);
  }

  .hero-content {
    margin: 0 auto;
  }

  .intro-band,
  .split,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .metric {
    padding: 20px;
  }
}

@media (max-width: 520px) {
  .nav-links a:not(.nav-button) {
    display: none;
  }

  .hero-actions .button {
    width: 100%;
  }

  .package-card,
  .review-tool {
    padding: 20px;
  }
}
