:root {
  color-scheme: light;
  --ink: #17211d;
  --muted: #607067;
  --line: #dbe4df;
  --panel: #ffffff;
  --soft: #f3f7f4;
  --mint: #d9efe4;
  --green: #126241;
  --green-dark: #0a3c2b;
  --gold: #f4b23f;
  --coral: #e76f51;
  --shadow: 0 20px 60px rgba(20, 37, 29, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 253, 251, 0.92);
  border-bottom: 1px solid rgba(219, 228, 223, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 178px;
  min-width: 156px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a:hover,
.header-action:hover {
  color: var(--green);
}

.header-action {
  color: var(--green-dark);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: calc(100vh - 132px);
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(34px, 6vw, 72px) clamp(18px, 5vw, 72px);
}

.hero::after {
  content: "";
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  right: clamp(18px, 5vw, 72px);
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.26);
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 27, 20, 0.86) 0%, rgba(7, 27, 20, 0.66) 38%, rgba(7, 27, 20, 0.14) 74%),
    linear-gradient(0deg, rgba(7, 27, 20, 0.45), rgba(7, 27, 20, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  color: white;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(54px, 6vw, 84px);
  line-height: 0.96;
  letter-spacing: 0;
}

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

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

.hero-copy {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 1.6vw, 1.24rem);
  line-height: 1.65;
}

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

.button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: #112018;
  background: var(--gold);
  box-shadow: 0 14px 34px rgba(244, 178, 63, 0.26);
}

.button-secondary {
  color: white;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

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

.hero-stats {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(650px, 100%);
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
}

.hero-stats div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 1.08rem;
}

.hero-stats span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip span {
  padding: 18px clamp(16px, 3vw, 32px);
  background: var(--panel);
  color: var(--green-dark);
  font-weight: 800;
  text-align: center;
}

.section,
.quote-section,
.forms-section,
.mover-section {
  padding: clamp(62px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.section-heading {
  width: min(820px, 100%);
  margin-bottom: 34px;
}

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

.step-card,
.quote-card,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 8px 30px rgba(25, 51, 38, 0.06);
}

.step-card {
  min-height: 220px;
  padding: 26px;
}

.step-number {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--coral);
  font-weight: 900;
}

.step-card p,
.quote-copy p,
.mover-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: var(--soft);
}

.quote-copy {
  max-width: 560px;
}

.quote-board {
  display: grid;
  gap: 14px;
}

.quote-card {
  padding: 22px;
}

.quote-card.featured {
  border-color: rgba(18, 98, 65, 0.42);
  box-shadow: var(--shadow);
}

.quote-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.quote-topline span {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--mint);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.price {
  display: block;
  margin-top: 12px;
  font-size: 2rem;
}

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

dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.ghost-button {
  min-height: 42px;
  color: var(--green-dark);
  background: #edf5f0;
}

.ghost-button.danger {
  color: #8d2f20;
  background: #fff0ed;
}

.forms-section {
  background: #ffffff;
}

.lead-form {
  width: min(980px, 100%);
  padding: clamp(20px, 4vw, 34px);
}

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

label,
fieldset {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  color: var(--ink);
  border: 1px solid #cfd9d3;
  border-radius: 8px;
  background: #fff;
  outline: none;
}

input:focus,
select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(18, 98, 65, 0.12);
}

fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  border: 0;
}

legend {
  width: 100%;
  margin-bottom: 2px;
}

.check-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  margin: 0;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.check-label input {
  width: 16px;
  min-height: auto;
}

.form-message {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--green);
  font-weight: 800;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(7, 27, 20, 0.62);
  backdrop-filter: blur(10px);
}

.modal-backdrop[hidden] {
  display: none;
}

.success-modal {
  position: relative;
  width: min(560px, 100%);
  padding: clamp(24px, 5vw, 38px);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.success-modal h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.success-modal p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  color: var(--green-dark);
  background: var(--soft);
  cursor: pointer;
  font-weight: 900;
}

.modal-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: 900;
}

.modal-points {
  display: grid;
  gap: 8px;
  margin: 18px 0 24px;
}

.modal-points span {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green-dark);
  background: var(--soft);
  font-weight: 800;
}

.mover-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(340px, 0.8fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  background: var(--green-dark);
  color: white;
}

.mover-section .eyebrow {
  color: var(--gold);
}

.mover-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.partner-points {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.partner-points span {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.lead-form.compact {
  width: 100%;
}

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

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

  .hero {
    min-height: 680px;
    align-items: end;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(7, 27, 20, 0.9) 0%, rgba(7, 27, 20, 0.7) 56%, rgba(7, 27, 20, 0.08) 100%);
  }

  .hero-content {
    padding-top: 180px;
  }

  .trust-strip,
  .steps-grid,
  .quote-section,
  .mover-section {
    grid-template-columns: 1fr;
  }

  .quote-section,
  .mover-section {
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
  }

  .header-action {
    display: none;
  }

  .hero {
    min-height: 660px;
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 64px);
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .button,
  .ghost-button {
    width: 100%;
  }

  .form-grid,
  dl {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    padding: 14px;
  }

  .section,
  .quote-section,
  .forms-section,
  .mover-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }
}

@media (min-height: 860px) and (min-width: 760px) {
  .hero-stats {
    display: grid;
  }
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 72px);
  background: var(--soft);
}

.thank-you-panel {
  width: min(760px, 100%);
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.thank-you-panel .brand {
  margin-bottom: 42px;
  width: 220px;
}

.thank-you-panel h1 {
  color: var(--ink);
  font-size: clamp(46px, 7vw, 78px);
}

.thank-you-panel p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.7;
}
