:root {
  color-scheme: light;
  --ink: #17211f;
  --muted: #596663;
  --subtle: #eef2ef;
  --paper: #ffffff;
  --wash: #f7f8f5;
  --line: #d9dfda;
  --teal: #0a6b66;
  --teal-dark: #064641;
  --blue: #2f5f76;
  --gold: #b68743;
  --shadow: 0 18px 42px rgba(23, 33, 31, 0.08);
}

* {
  box-sizing: border-box;
}

.hidden {
  display: none;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--wash);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 248, 245, 0.96);
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.logo-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.logo-link {
  width: 232px;
  height: 58px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a,
.site-footer a,
.text-link {
  text-decoration: none;
}

.nav-links a:hover,
.site-footer a:hover,
.text-link:hover {
  color: var(--teal-dark);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--teal);
  border-radius: 4px;
  padding: 11px 16px;
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: none;
}

.button.primary,
.nav-cta {
  background: var(--teal);
  color: #ffffff;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
}

.button.secondary.light {
  background: #ffffff;
  border-color: var(--line);
  color: var(--teal-dark);
}

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

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 86px clamp(20px, 6vw, 82px);
  background: #14211f;
  color: #ffffff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.16) 11%, #000 35%, #000 100%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.16) 11%, #000 35%, #000 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

.hero-brand-panel {
  position: absolute;
  z-index: 1;
  inset: 0 0 0 auto;
  width: min(62vw, 1040px);
  overflow: hidden;
}

.hero-brand-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, #14211f 0%, rgba(20, 33, 31, 0.78) 22%, rgba(20, 33, 31, 0.28) 58%, rgba(20, 33, 31, 0.04) 100%),
    linear-gradient(to bottom, rgba(20, 33, 31, 0.28), rgba(20, 33, 31, 0) 30%, rgba(20, 33, 31, 0.36));
  pointer-events: none;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(46px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  width: min(680px, 100%);
  margin: 26px 0 0;
  color: #d8e2df;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-line {
  margin-top: 18px;
  color: #b8c9c4;
  font-size: 14px;
}

.section {
  padding: 84px clamp(20px, 6vw, 82px);
  border-bottom: 1px solid var(--line);
  background: var(--wash);
}

.section:nth-of-type(even) {
  background: var(--paper);
}

.split,
.section-heading,
.useful {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.split p,
.section-heading p,
.feature-main p,
.responsible p,
.final-cta p {
  color: var(--muted);
  font-size: 18px;
}

.card-grid,
.lead-preview-grid,
.service-grid,
.useful-grid {
  display: grid;
  gap: 18px;
}

.card-grid.three,
.lead-preview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.insight-card,
.lead-preview,
.useful-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.card-number {
  display: block;
  margin-bottom: 26px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.insight-card p,
.lead-preview p,
.useful-grid p {
  margin-top: 14px;
  color: var(--muted);
}

.sample-disclaimer {
  width: min(760px, 100%);
  margin-top: 18px;
  color: var(--muted);
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
  background: #f1f5f2;
}

.feature-main .button {
  margin-top: 28px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
}

.feature-list div {
  min-height: 120px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-list div:nth-child(2n) {
  border-right: none;
}

.feature-list div:nth-last-child(-n+2) {
  border-bottom: none;
}

.feature-list strong {
  display: block;
  font-size: 18px;
}

.feature-list span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.text-link {
  align-self: end;
  justify-self: end;
  color: var(--teal-dark);
  font-weight: 800;
}

.lead-topline {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.score {
  flex: 0 0 auto;
  border: 1px solid var(--teal);
  border-radius: 4px;
  padding: 5px 8px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 800;
}

dl {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 2px 0 0;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.service-grid div {
  min-height: 94px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
}

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

.responsible {
  background: #162522;
  color: #ffffff;
}

.responsible p {
  width: min(850px, 100%);
  margin-top: 18px;
  color: #d7e1de;
}

.final-cta {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 84px clamp(20px, 6vw, 82px);
  text-align: center;
  background: var(--paper);
}

.request-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  padding: 84px clamp(20px, 6vw, 82px);
  background: #eef4ef;
  border-top: 1px solid var(--line);
}

.request-copy p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.email-fallback a {
  color: var(--teal-dark);
  font-weight: 800;
}

.request-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}

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

.request-form label {
  display: grid;
  gap: 7px;
}

.request-form label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 13px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

.request-form textarea {
  resize: vertical;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  outline: 2px solid rgba(10, 107, 102, 0.24);
  border-color: var(--teal);
}

.full-span {
  grid-column: 1 / -1;
}

.request-form button {
  margin-top: 18px;
  cursor: pointer;
}

.thank-you-actions {
  justify-content: center;
}

.final-cta p a {
  color: var(--teal-dark);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 38px clamp(20px, 6vw, 82px);
  background: #101816;
  color: #d8e1de;
}

.site-footer img {
  width: 300px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  margin-bottom: 12px;
  border-radius: 6px;
}

.footer-wordmark {
  display: block;
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 20px;
}

.site-footer p {
  margin-bottom: 8px;
  color: #b8c9c4;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-content: flex-start;
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr;
  }

  .nav-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .nav-cta {
    justify-self: start;
  }

  .hero {
    min-height: auto;
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .hero-brand-panel {
    width: 72vw;
    opacity: 0.34;
  }

  .split,
  .section-heading,
  .feature,
  .useful,
  .request-section {
    grid-template-columns: 1fr;
  }

  .card-grid.three,
  .lead-preview-grid,
  .service-grid,
  .useful-grid {
    grid-template-columns: 1fr;
  }

  .text-link {
    justify-self: start;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .logo-link {
    width: 196px;
    height: 50px;
  }

  .hero-brand-panel {
    display: none;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

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

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

  .feature-list div,
  .feature-list div:nth-child(2n),
  .feature-list div:nth-last-child(-n+2) {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .feature-list div:last-child {
    border-bottom: none;
  }
}
