:root {
  --ink: #14201f;
  --muted-ink: #50615f;
  --bg: #f7f8f4;
  --surface: #ffffff;
  --line: #d9e1dc;
  --green: #146b53;
  --green-dark: #0d4c3d;
  --blue: #1b5d7a;
  --amber: #d88732;
  --soft-green: #e8f2ec;
  --soft-blue: #e7f0f4;
  --shadow: 0 18px 50px rgba(20, 32, 31, 0.12);
  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;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

.thanks-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.thanks-page main {
  flex: 1;
}

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

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(247, 248, 244, 0.92);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 6vw;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  overflow: hidden;
  width: 42px;
}

.brand-mark img {
  height: 42px;
  object-fit: contain;
  width: 42px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 22px;
  font-size: 0.95rem;
  font-weight: 650;
}

.site-nav a {
  color: var(--muted-ink);
  text-decoration: none;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 44px;
  padding: 72px 6vw 44px;
  align-items: center;
}

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

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

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

h1 {
  font-size: clamp(2.45rem, 5.5vw, 5.35rem);
  line-height: 0.98;
  margin-bottom: 22px;
  max-width: 820px;
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 3.15rem);
  line-height: 1.08;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.12rem;
  line-height: 1.25;
  margin-bottom: 10px;
}

.lead {
  color: var(--muted-ink);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  max-width: 760px;
}

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

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}

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

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

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

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

.full {
  width: 100%;
}

.trust-strip {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 28px 0 0;
  padding-top: 18px;
}

.trust-strip div {
  min-width: 0;
}

.trust-strip dt {
  color: var(--muted-ink);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.trust-strip dd {
  font-weight: 800;
  margin: 2px 0 0;
}

.hero-media {
  border-radius: 8px;
  min-height: 420px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  width: 100%;
}

.notice {
  background: #fff8ed;
  border: 1px solid #efd0a4;
  border-radius: 8px;
  color: #4d3218;
  margin: 0 6vw 42px;
  padding: 18px 22px;
}

.bottom-notice {
  margin-top: 0;
  margin-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.notice p {
  margin: 0;
}

.section {
  padding: 76px 6vw;
}

.two-column,
.form-section {
  align-items: start;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
}

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

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

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

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

.card,
.steps article,
.checklist,
.lead-form,
.source-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.card,
.steps article {
  padding: 22px;
}

.card p,
.steps p,
.source-box p,
.checklist li,
.rich-list li {
  color: var(--muted-ink);
}

.card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.card h3 a:hover {
  color: var(--green);
}

.checklist {
  padding: 28px;
}

.checklist ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding-left: 20px;
}

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

.process-list div {
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: 42px 1fr;
  padding: 18px;
}

.process-list span {
  align-items: center;
  background: var(--soft-blue);
  border-radius: 8px;
  color: var(--blue);
  display: inline-flex;
  font-weight: 850;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.process-list p {
  margin: 7px 0 0;
}

.small {
  color: var(--muted-ink);
  font-size: 0.92rem;
}

.direct-email {
  color: var(--muted-ink);
  font-size: 0.95rem;
  margin-top: 12px;
}

.direct-email a {
  color: var(--green);
  font-weight: 800;
}

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

.steps strong {
  color: var(--amber);
  display: block;
  font-size: 0.86rem;
  margin-bottom: 20px;
}

.form-section {
  background: var(--ink);
  color: white;
}

.form-section .eyebrow {
  color: #8edfc5;
}

.form-section p {
  color: #d4dfdc;
}

.source-box {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  margin-top: 28px;
  padding: 22px;
}

.lead-form {
  color: var(--ink);
  display: grid;
  gap: 14px;
  padding: 24px;
}

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

label {
  display: grid;
  gap: 7px;
  font-size: 0.92rem;
  font-weight: 750;
}

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

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

.consent {
  align-items: start;
  display: grid;
  gap: 10px;
  grid-template-columns: 20px 1fr;
  font-weight: 500;
  line-height: 1.4;
}

.consent input {
  height: 18px;
  margin-top: 2px;
  min-height: 18px;
}

.consent a {
  color: var(--green);
  font-weight: 800;
}

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

.hidden-field {
  display: none;
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 18px 22px;
}

.faq summary {
  cursor: pointer;
  font-weight: 850;
}

.faq details p {
  color: var(--muted-ink);
  margin: 12px 0 0;
}

.site-footer {
  background: #101817;
  color: white;
  display: grid;
  gap: 28px;
  grid-template-columns: 1.2fr 1fr 1fr;
  padding: 42px 6vw;
}

.site-footer p,
.site-footer a {
  color: #c7d4d1;
}

.site-footer a {
  display: block;
  margin-top: 8px;
  text-decoration: none;
}

.site-footer a:hover {
  color: white;
}

.legal-page {
  max-width: 980px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.legal-page h2 {
  font-size: 1.5rem;
  margin-top: 34px;
}

.content-page {
  max-width: 1040px;
}

.toc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 38px;
  padding: 14px;
}

.toc a {
  background: var(--soft-green);
  border-radius: 8px;
  color: var(--green-dark);
  font-weight: 800;
  padding: 9px 12px;
  text-decoration: none;
}

.rich-list {
  display: grid;
  gap: 12px;
  padding-left: 22px;
}

.page-cta {
  margin-top: 42px;
  padding: 26px;
}

.page-cta h2 {
  font-size: 1.55rem;
}

@media (max-width: 980px) {
  .hero,
  .two-column,
  .form-section {
    grid-template-columns: 1fr;
  }

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

  .steps,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 320px;
  }

  .hero-media img {
    min-height: 320px;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 14px;
    padding-top: 14px;
    position: sticky;
    top: 0;
  }

  .site-nav {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(5, auto);
    overflow-x: auto;
    width: 100%;
  }

  .hero {
    padding-top: 44px;
  }

  .trust-strip,
  .cards,
  .compact-cards,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .notice {
    margin-left: 6vw;
    margin-right: 6vw;
  }
}
