:root {
  --ink: #17211d;
  --muted: #5f6b66;
  --line: #dbe4df;
  --paper: #fbfdfb;
  --soft: #edf4f0;
  --green: #1f6b4b;
  --green-dark: #12412e;
  --blue: #295f7a;
  --gold: #c79a3b;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(23, 33, 29, 0.12);
}

* {
  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;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(251, 253, 251, 0.92);
  border-bottom: 1px solid rgba(219, 228, 223, 0.9);
  backdrop-filter: blur(18px);
}

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

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

.brand-logo {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.site-header nav {
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.header-cta {
  padding: 10px 16px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 8px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 92vh;
  padding: 142px clamp(18px, 5vw, 72px) 58px;
  overflow: hidden;
  display: grid;
  align-items: center;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(251, 253, 251, 0.98) 0%, rgba(251, 253, 251, 0.92) 33%, rgba(251, 253, 251, 0.34) 68%, rgba(251, 253, 251, 0.12) 100%),
    linear-gradient(0deg, rgba(251, 253, 251, 0.42), rgba(251, 253, 251, 0));
}

.hero-content {
  position: relative;
  max-width: 660px;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 7vw, 6.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
}

h3 {
  font-size: 1.25rem;
}

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
}

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

.button.primary:hover,
.header-cta:hover {
  background: #0e3324;
}

.button.secondary {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--line);
}

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

.trust-row span {
  padding: 8px 11px;
  color: var(--green-dark);
  background: rgba(237, 244, 240, 0.92);
  border: 1px solid rgba(219, 228, 223, 0.9);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 700;
}

.section,
.band,
.cta-section {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 72px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

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

.intro .eyebrow {
  color: #a9d8bf;
}

.intro-grid,
.split,
.outcome-grid,
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.intro-grid p:last-child,
.outcome-grid p,
.cta-grid p {
  margin: 0;
  color: currentColor;
  font-size: 1.12rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.cards,
.steps {
  display: grid;
  gap: 16px;
}

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

.card,
.step,
details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.card {
  min-height: 280px;
  padding: 26px;
  box-shadow: 0 1px 0 rgba(23, 33, 29, 0.03);
}

.icon {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--blue);
  font-weight: 900;
}

.card p,
.step p,
.proof-list p,
.faq p,
.site-footer p {
  color: var(--muted);
}

.muted {
  background: var(--soft);
}

.proof-list {
  display: grid;
  gap: 18px;
}

.proof-list div {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(23, 33, 29, 0.12);
}

.proof-list p {
  margin: 6px 0 0;
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  counter-reset: step;
}

.step {
  padding: 24px;
}

.step span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 54px;
  color: var(--green-dark);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 16px 18px 16px 46px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
}

.cta-section {
  color: var(--white);
  background: #14241f;
}

.cta-section .eyebrow {
  color: #a9d8bf;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: #2c3833;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #f8faf8;
  border: 1px solid #cfdad4;
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(31, 107, 75, 0.18);
  border-color: var(--green);
}

.form-button {
  width: 100%;
  margin-top: 4px;
  font-size: 1rem;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.faq {
  max-width: 880px;
}

details {
  padding: 20px 22px;
  margin-top: 12px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
}

.site-footer {
  padding: 34px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: var(--white);
}

.footer-inner,
.footer-links {
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-links {
  width: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.site-footer p {
  margin: 6px 0 0;
  color: #c9d5cf;
}

.site-footer a {
  color: #a9d8bf;
  font-weight: 800;
}

.plain-page {
  min-height: 100vh;
  background: var(--soft);
}

.plain-content {
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 56px 0;
}

.plain-content .brand {
  margin-bottom: 64px;
}

.plain-content h1 {
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.plain-content p {
  color: var(--muted);
  font-size: 1.08rem;
}

.plain-content .button {
  margin-top: 22px;
}

.report-preview {
  margin: 24px 0;
  padding: 22px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(23, 33, 29, 0.03);
}

.booking-popup[hidden] {
  display: none;
}

.booking-popup {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: end center;
  padding: 22px;
  background: rgba(18, 31, 26, 0.42);
}

.booking-popup-panel {
  position: relative;
  width: min(520px, 100%);
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.booking-popup-panel h2 {
  max-width: 12ch;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.booking-popup-panel p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--muted);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.popup-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 22px;
}

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

  .hero {
    min-height: 94vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(251, 253, 251, 0.98) 0%, rgba(251, 253, 251, 0.84) 55%, rgba(251, 253, 251, 0.3) 100%),
      linear-gradient(0deg, rgba(251, 253, 251, 0.55), rgba(251, 253, 251, 0));
  }

  h1 {
    max-width: 10ch;
  }

  .intro-grid,
  .split,
  .outcome-grid,
  .cta-grid,
  .three,
  .steps {
    grid-template-columns: 1fr;
  }

  .card,
  .step {
    min-height: auto;
  }

  .icon,
  .step span {
    margin-bottom: 24px;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 66px;
    gap: 12px;
  }

  .brand span:last-child {
    max-width: 118px;
    line-height: 1.05;
  }

  .header-cta {
    padding: 9px 11px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 95vh;
    padding-top: 116px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .button {
    width: 100%;
  }

  .booking-popup {
    place-items: end center;
    padding: 12px;
  }

  .booking-popup-panel {
    padding: 22px;
  }

  .popup-actions {
    grid-template-columns: 1fr;
  }

  .trust-row span {
    width: 100%;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
