:root {
  color-scheme: light;
  --ink: #17211f;
  --muted: #5a6864;
  --line: #d9e0dc;
  --paper: #fbfcf8;
  --soft: #edf5f0;
  --white: #ffffff;
  --accent: #126c58;
  --accent-dark: #0a4c3d;
  --gold: #d4a43d;
  --blue: #244c6b;
  --shadow: 0 24px 64px rgba(23, 33, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid rgba(217, 224, 220, 0.82);
  background: rgba(251, 252, 248, 0.94);
  backdrop-filter: blur(14px);
}

.brand,
nav a,
.button {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.88rem;
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 28px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

nav a:hover {
  color: var(--accent-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.9fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
  padding: clamp(54px, 8vw, 98px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(135deg, rgba(18, 108, 88, 0.1), transparent 38%),
    linear-gradient(180deg, #ffffff, var(--paper));
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(3.4rem, 8vw, 7.1rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: 0;
}

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

.hero-text,
.section p,
.price-box p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-actions,
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points {
  margin-top: 24px;
}

.hero-points span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 8px 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

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

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

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

.button.secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.button.secondary:hover {
  border-color: var(--accent);
}

.button.full {
  width: 100%;
}

.hero-image {
  margin: 0;
}

.hero-image img {
  display: block;
  width: 100%;
  max-height: 620px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

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

.proof-band div {
  padding: 28px clamp(18px, 4vw, 46px);
}

.proof-band div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-band strong,
.proof-band span {
  display: block;
}

.proof-band span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
}

.section {
  padding: clamp(58px, 9vw, 110px) clamp(18px, 5vw, 64px);
}

.split-section,
.pricing,
.order-section,
.faq-section,
.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.service-list,
.step-grid,
.trust-grid,
.faq-list,
.price-grid {
  display: grid;
  gap: 16px;
}

.service-list article,
.step-grid article,
.trust-grid article,
.price-box,
.order-form,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.service-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 16px;
}

.service-list article p,
.service-list article h3 {
  grid-column: 2;
}

.icon,
.step-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--soft);
  color: var(--accent);
  font-weight: 900;
}

.trust-section,
.steps {
  background: var(--soft);
}

.trust-grid,
.step-grid {
  grid-template-columns: repeat(2, 1fr);
}

.step-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}

.pricing {
  background: var(--white);
}

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

.price-box {
  display: grid;
  align-content: start;
  gap: 12px;
}

.price-box.featured {
  border-color: rgba(18, 108, 88, 0.34);
  box-shadow: var(--shadow);
}

.tag {
  width: fit-content;
  border-radius: 999px;
  background: rgba(212, 164, 61, 0.18);
  padding: 6px 10px;
  color: #715012;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  display: block;
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 950;
  line-height: 0.9;
}

.small-price {
  color: var(--blue);
}

.price-box small {
  color: var(--muted);
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
}

.faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
}

.order-section {
  background: var(--paper);
}

.order-section a {
  color: var(--accent-dark);
  font-weight: 900;
}

.payment-reminder {
  display: grid;
  gap: 10px;
  max-width: 420px;
  margin-top: 22px;
  border: 1px solid rgba(18, 108, 88, 0.28);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
}

.payment-reminder strong,
.payment-reminder span {
  display: block;
}

.payment-reminder span {
  color: var(--muted);
}

.order-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 900;
}

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

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(18, 108, 88, 0.15);
}

.check-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-weight: 800;
}

.check-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--accent);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--accent-dark);
  font-weight: 900;
}

.email-fallback {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(18, 108, 88, 0.28);
  border-radius: 8px;
  background: var(--soft);
  padding: 18px;
}

.email-fallback[hidden] {
  display: none;
}

.email-fallback h3 {
  margin-bottom: 0;
}

.email-fallback p {
  margin-bottom: 0;
}

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

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 900;
}

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

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

  .hero,
  .split-section,
  .pricing,
  .order-section,
  .proof-band,
  .faq-section,
  .trust-section,
  .step-grid,
  .trust-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .proof-band div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-top: 14px;
  }

  nav {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 2px;
    white-space: nowrap;
  }

  h1 {
    font-size: 3.2rem;
  }

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

  .service-list article {
    grid-template-columns: 1fr;
  }

  .service-list article p,
  .service-list article h3 {
    grid-column: auto;
  }
}
