:root {
  color-scheme: light;
  --ink: #101716;
  --muted: #5b6965;
  --line: #dce6e1;
  --bg: #f7f9f6;
  --paper: #ffffff;
  --wash: #edf5f1;
  --teal: #0b756b;
  --teal-dark: #084d47;
  --lime: #b7d968;
  --coral: #e46955;
  --blue: #2d6388;
  --shadow: 0 24px 70px rgba(12, 34, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

body,
button,
input,
select,
textarea {
  font: 16px/1.5 Inter, "Segoe UI", Arial, sans-serif;
}

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

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

button,
select,
input,
textarea {
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 18px 32px;
  color: #ffffff;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-solid {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 8px 30px rgba(12, 34, 31, 0.08);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--lime);
  color: var(--teal-dark);
  font-weight: 900;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: currentColor;
  font-weight: 700;
  opacity: 0.9;
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border-radius: 8px;
  font-weight: 850;
  cursor: pointer;
}

i[data-lucide] {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  border: 2px solid currentColor;
  border-radius: 6px;
}

i[data-lucide]::after {
  content: "";
  position: absolute;
  inset: 5px 3px 3px 5px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(35deg);
  transform-origin: center;
}

.header-cta {
  padding: 0 16px;
  background: var(--lime);
  color: var(--teal-dark);
}

.primary-button {
  padding: 0 20px;
  background: var(--teal);
  color: #ffffff;
}

.secondary-button {
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.site-header.is-solid .secondary-button {
  border-color: var(--line);
  background: #ffffff;
  color: var(--teal-dark);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  align-items: end;
  min-height: 92vh;
  padding: 130px 32px 58px;
  overflow: hidden;
  color: #ffffff;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 17, 17, 0.82), rgba(6, 17, 17, 0.48) 48%, rgba(6, 17, 17, 0.2)),
    linear-gradient(0deg, rgba(6, 17, 17, 0.58), rgba(6, 17, 17, 0.08) 42%);
}

.hero-content,
.hero-console {
  position: relative;
  z-index: 1;
}

.hero-content {
  width: min(760px, 100%);
  padding-bottom: 14px;
}

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

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 8vw, 86px);
  line-height: 0.96;
  max-width: 820px;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 23px);
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 12px;
  width: min(680px, 100%);
}

.hero-proof div {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

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

.hero-proof strong {
  font-size: 20px;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.hero-console {
  align-self: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(5, 25, 24, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.console-top {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
}

.console-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
}

.console-top span:nth-child(2) {
  background: #e9bf5d;
}

.console-top span:nth-child(3) {
  background: var(--lime);
}

.console-label {
  margin-bottom: 6px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-console h2 {
  margin-bottom: 18px;
  font-size: 28px;
}

.hero-console dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.hero-console dl div {
  display: grid;
  gap: 3px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-console dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-console dd {
  margin: 0;
}

.subpage-main {
  background: var(--bg);
}

.subpage-hero {
  padding: 138px 32px 82px;
  background:
    linear-gradient(90deg, rgba(6, 17, 17, 0.88), rgba(6, 17, 17, 0.6)),
    url("./assets/hero-support-1600.webp") center / cover;
  color: #ffffff;
}

.subpage-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(280px, 380px);
  gap: 42px;
  align-items: end;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.subpage-hero h1 {
  font-size: clamp(40px, 6vw, 68px);
}

.subpage-hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.subpage-panel {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(5, 25, 24, 0.72);
  backdrop-filter: blur(14px);
}

.subpage-panel strong {
  display: block;
  margin-bottom: 12px;
  color: var(--lime);
  font-size: 18px;
}

.subpage-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.content-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 42px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.content-grid h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.content-stack {
  display: grid;
  gap: 14px;
}

.content-stack article {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.content-stack h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.content-stack p {
  margin-bottom: 0;
  color: var(--muted);
}

.cta-band {
  background: var(--teal-dark);
  color: #ffffff;
}

.cta-band .section-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 0;
}

.cta-band .section-lead {
  color: rgba(255, 255, 255, 0.76);
}

.cta-band .primary-button {
  background: var(--lime);
  color: var(--teal-dark);
}

.section {
  padding: 86px 32px;
}

.section-heading,
.section-grid,
.service-grid,
.case-list,
.process-grid,
.pricing-grid,
.quiz-section,
.faq-list,
.footer {
  width: min(1180px, 100%);
  margin: 0 auto;
}

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

.section-lead {
  max-width: 780px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section-heading h2,
.section-grid h2,
.quiz-copy h2 {
  margin-bottom: 0;
  max-width: 800px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
}

.intro-band {
  background: var(--paper);
}

.section-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: start;
}

.section-grid p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
}

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

.answer-section .section-heading {
  margin-bottom: 20px;
}

.author-note {
  max-width: 820px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.answer-block {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 24px 28px;
  border: 1px solid rgba(11, 117, 107, 0.22);
  border-radius: 8px;
  background: #f5fbf8;
  color: var(--ink);
  font-size: 18px;
}

.source-list,
.trust-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  width: min(980px, 100%);
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 14px;
}

.source-list a,
.trust-links a {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.metrics-table {
  width: min(980px, 100%);
  margin: 18px auto 0;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 0 0 1px var(--line);
}

.metrics-table caption {
  padding: 0 0 10px;
  color: var(--muted);
  text-align: left;
  font-size: 14px;
}

.metrics-table th,
.metrics-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.metrics-table th {
  color: var(--teal-dark);
  font-size: 13px;
  text-transform: uppercase;
}

.metrics-table tr:last-child td {
  border-bottom: 0;
}

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

.service-link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.service-card,
.service-link-card,
.price-card,
.process-step,
.case-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.service-links-section {
  background: #f1f7f3;
}

.service-link-card {
  display: grid;
  align-content: start;
  min-height: 250px;
  padding: 24px;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.service-link-card:hover,
.service-link-card:focus-visible {
  border-color: rgba(11, 117, 107, 0.42);
  box-shadow: 0 18px 48px rgba(12, 34, 31, 0.12);
  transform: translateY(-2px);
}

.service-link-card span {
  margin-bottom: 28px;
  color: var(--coral);
  font-weight: 900;
}

.service-link-card h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.12;
}

.service-link-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-card {
  padding: 24px;
}

.service-card svg {
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  color: var(--teal);
}

.service-card h3,
.case-list h3,
.process-step h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.16;
}

.service-card p,
.case-list p,
.process-step p,
.price-card p {
  color: var(--muted);
}

.service-card ul,
.price-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--ink);
}

.card-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--teal-dark);
  font-weight: 850;
}

.muted-section,
.quiz-section {
  background: var(--wash);
}

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

.case-list article {
  padding: 26px;
}

.case-list span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--coral);
  font-weight: 900;
}

.feature-table {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
}

.feature-table div {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 22px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.feature-table div:last-child {
  border-bottom: 0;
}

.feature-table strong {
  color: var(--teal-dark);
  font-size: 18px;
}

.feature-table span {
  color: var(--muted);
}

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

.process-step {
  padding: 24px;
}

.process-step strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 8px;
  background: var(--teal);
  color: #ffffff;
}

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

.price-card {
  padding: 28px;
}

.price-card.is-featured {
  border-color: rgba(11, 117, 107, 0.35);
  background: #f5fbf8;
  box-shadow: var(--shadow);
}

.price-kicker {
  margin-bottom: 6px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card h3 {
  margin-bottom: 12px;
  font-size: 34px;
  line-height: 1;
}

.price-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: min(1180px, 100%);
  margin: 18px auto 0;
}

.price-notes div {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--wash);
}

.price-notes strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 18px;
}

.price-notes p {
  margin: 0;
  color: var(--muted);
}

.quiz-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 42px;
  align-items: start;
}

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

.quiz-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 22px;
  padding: 16px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--teal-dark);
}

.quiz-note svg {
  flex: 0 0 auto;
  color: var(--teal);
}

.quiz-form {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label,
fieldset {
  display: grid;
  gap: 8px;
}

label span,
legend {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

select,
input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfb;
  color: var(--ink);
}

select,
input {
  min-height: 46px;
  padding: 0 12px;
}

textarea {
  resize: vertical;
  padding: 12px;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.check-grid label {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfb;
  font-weight: 700;
}

.check-grid input {
  width: auto;
  min-height: auto;
  margin: 0 8px 0 0;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.form-actions .primary-button {
  border: 0;
}

.text-link {
  color: var(--teal-dark);
  font-weight: 850;
}

.form-output {
  padding: 16px;
  border-radius: 8px;
  background: #eef8f4;
  color: var(--teal-dark);
  white-space: pre-line;
}

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

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

summary {
  cursor: pointer;
  padding: 20px;
  font-size: 18px;
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 34px 32px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer .brand {
  color: var(--ink);
}

.footer p {
  margin: 10px 0 0;
  max-width: 620px;
}

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

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

  .nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-console {
    width: min(520px, 100%);
  }

  .service-grid,
  .service-link-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quiz-section,
  .section-grid,
  .subpage-hero-inner,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .subpage-panel {
    width: min(520px, 100%);
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 12px 16px;
  }

  .header-cta span {
    display: none;
  }

  .hero {
    min-height: 100vh;
    padding: 110px 16px 34px;
  }

  .subpage-hero {
    padding: 112px 16px 56px;
  }

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

  .hero-proof,
  .service-grid,
  .service-link-grid,
  .case-list,
  .process-grid,
  .pricing-grid,
  .price-notes,
  .form-grid,
  .check-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .feature-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .section {
    padding: 64px 16px;
  }

  .cta-band .section-heading {
    grid-template-columns: 1fr;
  }

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