:root {
  --ink: #16211d;
  --muted: #5f6f68;
  --forest: #1f6f4a;
  --teal: #0e8177;
  --mint: #dff4ea;
  --sage: #f3f8f4;
  --coral: #d96f4a;
  --cream: #fbfaf6;
  --white: #ffffff;
  --line: #d8e3dc;
  --shadow: 0 18px 48px rgba(22, 33, 29, 0.12);
  --radius: 8px;
  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(--cream);
  font-size: 16px;
  line-height: 1.6;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  isolation: isolate;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 10px clamp(18px, 4vw, 54px);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 26px rgba(22, 33, 29, 0);
  transition: box-shadow 0.24s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 32px rgba(22, 33, 29, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: clamp(190px, 21vw, 305px);
  max-height: 66px;
  height: auto;
  object-fit: contain;
  opacity: 0.98;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.58));
  transition: opacity 0.24s ease;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(16px, 2.4vw, 32px);
  min-width: 0;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.94rem;
  font-weight: 700;
  color: #34463f;
}

.site-nav a,
.footer-inner a {
  transition: color 0.2s ease;
}

.site-nav a:hover,
.footer-inner a:hover {
  color: var(--teal);
}

.header-offer,
.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-weight: 800;
  white-space: nowrap;
}

.header-offer {
  border: 1px solid var(--coral);
  background: var(--coral);
  color: var(--white);
  font-size: 0.88rem;
}

.header-offer:hover {
  background: #c75f3e;
}

.header-call {
  border: 1px solid var(--forest);
  color: var(--forest);
}

.hero {
  position: relative;
  min-height: min(680px, calc(100vh - 124px));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--forest);
}

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

.hero-image {
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 34, 27, 0.86), rgba(18, 34, 27, 0.55) 46%, rgba(18, 34, 27, 0.1)),
    linear-gradient(0deg, rgba(18, 34, 27, 0.55), transparent 36%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: 64px 0 92px;
  color: var(--white);
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffb295;
}

h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

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

h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button.primary:hover {
  background: #c75f3e;
}

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

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.13);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 800;
}

.section,
.intro-section {
  padding: clamp(64px, 9vw, 118px) 0;
}

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

.intro-section {
  background: var(--white);
}

.intro-grid,
.split-grid,
.about-grid,
.form-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

.intro-grid p:last-child,
.split-grid p,
.form-grid p,
.about-grid p,
.faq-grid p,
.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.band {
  background: var(--sage);
}

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

.section-heading.narrow {
  max-width: 720px;
}

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

.situation-card,
.testimonial,
.step,
.contact-panel,
.offer-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.situation-card {
  min-height: 180px;
  padding: 26px;
}

.situation-card p,
.testimonial blockquote,
.step p,
.benefit-list span {
  margin-bottom: 0;
  color: var(--muted);
}

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

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

.step span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--forest);
  font-weight: 900;
}

.split-section {
  background: var(--white);
}

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

.benefit-list div {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border-left: 5px solid var(--teal);
  background: var(--sage);
  border-radius: var(--radius);
}

.benefit-list strong {
  font-size: 1.03rem;
}

.form-section {
  background: linear-gradient(135deg, var(--forest), var(--teal));
  color: var(--white);
}

.form-section .eyebrow {
  color: #ffb295;
}

.form-section p,
.form-section .plain-list {
  color: rgba(255, 255, 255, 0.84);
}

.plain-list {
  margin: 26px 0 0;
  padding-left: 20px;
}

.plain-list li + li {
  margin-top: 8px;
}

.offer-form {
  display: grid;
  gap: 15px;
  padding: clamp(20px, 4vw, 34px);
  color: var(--ink);
}

.offer-form label {
  display: grid;
  gap: 6px;
  color: #31423b;
  font-size: 0.92rem;
  font-weight: 800;
}

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

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
summary:focus-visible,
.button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(217, 111, 74, 0.38);
  outline-offset: 3px;
}

.checkbox-row {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
}

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

.form-button {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}

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

.form-note a {
  color: var(--forest);
  font-weight: 800;
}

.form-success {
  min-height: 22px;
  color: var(--forest);
  font-weight: 800;
}

.testimonial {
  padding: 28px;
}

.rating {
  margin-bottom: 10px;
  color: var(--coral);
  font-weight: 900;
}

blockquote {
  margin: 0 0 22px;
}

cite {
  color: var(--forest);
  font-style: normal;
  font-weight: 900;
}

.contact-panel {
  padding: 28px;
  font-style: normal;
}

.contact-panel p {
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}

.contact-panel a {
  color: var(--teal);
  font-weight: 800;
}

.faq-section {
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--coral);
  font-size: 1.5rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: -4px 22px 22px;
  color: var(--muted);
}

.final-cta {
  padding: clamp(64px, 8vw, 96px) 0;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.final-cta .section-inner {
  max-width: 760px;
}

.final-cta .eyebrow {
  color: #ffb295;
}

.final-cta p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  background: #f7fbf8;
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(1180px, calc(100% - 36px));
  display: grid;
  grid-template-columns: 1.7fr 0.8fr 1fr 0.8fr;
  gap: 34px;
  margin: 0 auto;
  padding: 48px 0 30px;
}

.footer-inner img {
  width: 270px;
  margin-bottom: 14px;
  opacity: 0.96;
}

.footer-inner p,
.footer-inner span {
  color: var(--muted);
}

.footer-inner h3 {
  margin-bottom: 12px;
}

.footer-inner a,
.footer-inner span {
  display: block;
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}

.copyright {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-page {
  background: var(--cream);
}

.legal-main {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0;
}

.legal-main h1 {
  color: var(--ink);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.legal-main section {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.legal-main p,
.legal-main li {
  color: var(--muted);
}

.legal-main a {
  color: var(--teal);
  font-weight: 800;
}

.legal-list {
  padding-left: 20px;
}

.blank-lines {
  padding: 18px;
  border: 1px dashed #aabbb2;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--muted);
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .header-actions {
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
  }

  .site-nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .intro-grid,
  .split-grid,
  .about-grid,
  .form-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .situation-grid,
  .testimonial-grid,
  .steps,
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 10px;
    padding: 10px 16px;
  }

  .header-actions {
    align-items: stretch;
    gap: 10px;
  }

  .brand img {
    width: 188px;
    max-height: 48px;
  }

  .header-call {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.9rem;
  }

  .header-offer {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .site-nav {
    gap: 16px;
    font-size: 0.9rem;
    min-height: 40px;
    align-items: center;
  }

  .hero {
    min-height: min(620px, calc(100vh - 138px));
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(18, 34, 27, 0.9), rgba(18, 34, 27, 0.62)),
      linear-gradient(0deg, rgba(18, 34, 27, 0.68), transparent 42%);
  }

  .hero-content {
    width: min(100% - 32px, 620px);
    margin: 0 auto;
    padding: 54px 0 74px;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

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

  .hero-points span {
    width: 100%;
  }

  .situation-grid,
  .testimonial-grid,
  .steps,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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