:root {
  --ink: #15201c;
  --muted: #60716a;
  --paper: #f6f2ea;
  --paper-strong: #fffaf0;
  --warm-white: #fbf8f0;
  --soft-sage: #edf3ed;
  --line: #d8d0c1;
  --forest: #214f3d;
  --forest-dark: #123427;
  --copper: #b75d36;
  --wine: #7c3142;
  --steel: #37423f;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(21, 32, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section,
#top,
#format,
#program,
#tariffs,
#apply,
#experts,
#outcome {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

body.modal-open {
  overflow: hidden;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(246, 242, 234, 0.94);
  box-shadow: 0 12px 30px rgba(21, 32, 28, 0.08);
  backdrop-filter: blur(14px);
}

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

.wordmark {
  display: grid;
  gap: 2px;
  line-height: 1.05;
}

.wordmark small {
  color: currentColor;
  opacity: 0.72;
  font-size: 11px;
  font-weight: 600;
  text-transform: lowercase;
}

.desktop-nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
}

.desktop-nav a {
  opacity: 0.86;
}

.desktop-nav a:hover {
  opacity: 1;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
}

.mobile-label {
  display: none;
}

.hero {
  position: relative;
  min-height: 730px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 30, 26, 0.84) 0%, rgba(18, 30, 26, 0.62) 40%, rgba(18, 30, 26, 0.14) 76%),
    linear-gradient(0deg, rgba(18, 30, 26, 0.58) 0%, rgba(18, 30, 26, 0.04) 42%);
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 42px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero .eyebrow {
  color: #f2b287;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(38px, 5.1vw, 64px);
  line-height: 1.04;
  letter-spacing: 0;
}

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

h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.2;
}

.hero-subtitle {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.hero-problem {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.18;
  font-weight: 800;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

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

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

.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
}

.text-button {
  color: var(--white);
  border-color: transparent;
  background: transparent;
  padding-inline: 8px;
}

.microcopy {
  max-width: 650px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.microcopy::before {
  content: "◷";
  margin-right: 6px;
  color: #f2b287;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-facts li {
  padding: 18px;
  background: rgba(18, 30, 26, 0.58);
}

.hero-facts strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.hero-facts span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.section {
  padding: clamp(70px, 9vw, 120px) 0;
}

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

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

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

.section-heading {
  max-width: 840px;
  margin-bottom: 42px;
}

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

.pain-grid article {
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--steel);
  font-size: 17px;
  font-weight: 700;
}

.problem-card {
  position: relative;
  border-left: 4px solid var(--copper) !important;
}

.problem-card span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--forest);
  background: var(--soft-sage);
  font-size: 12px;
  font-weight: 900;
}

.problem-card h3 {
  margin-bottom: 8px;
}

.problem-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

.pain-conclusion {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 18px;
  padding: 24px;
  border-radius: 8px;
  color: var(--white);
  background: var(--forest-dark);
}

.pain-conclusion p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.pain-conclusion h3 {
  color: var(--white);
}

.section-cta {
  margin-top: 24px;
}

.section-heading p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.section-heading.compact {
  max-width: 760px;
}

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

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

.solution-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
}

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

.solution-timeline::before {
  content: "";
  position: absolute;
  top: 43px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--line);
}

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

.method-grid article,
.solution-grid article,
.solution-timeline article,
.tariff-card,
.expert-card,
.trust-card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(21, 32, 28, 0.05);
}

.solution-grid article {
  border-top: 4px solid var(--forest);
}

.solution-timeline article {
  position: relative;
  z-index: 1;
  padding: 0 18px 22px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.solution-timeline .step-number {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest);
}

.solution-timeline p {
  color: var(--muted);
}

.format-ratio {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 22px;
  padding: 14px 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--forest);
}

.format-ratio strong {
  font-size: 38px;
  line-height: 1;
}

.button-microcopy {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.66) !important;
  font-size: 14px;
}

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

.experts-expanded .trust-card {
  grid-column: 1 / -1;
}

.expert-card p + p {
  margin-top: 12px;
}

.step-number,
.tariff-label {
  display: block;
  margin-bottom: 18px;
  color: var(--copper);
  font-weight: 800;
  font-size: 13px;
}

.method-grid p,
.solution-grid p,
.program-list p,
.tariff-card p,
.expert-grid p,
.trust-card p {
  margin: 0;
  color: var(--muted);
}

.artifact-label {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 10px !important;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--forest) !important;
  background: var(--soft-sage);
  font-size: 13px;
  font-weight: 900;
}

.outcome-band {
  color: var(--white);
  background: var(--forest-dark);
}

.outcome-band .eyebrow {
  color: #f2b287;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.outcome-grid div {
  position: relative;
  min-height: 112px;
  padding: 48px 22px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.outcome-grid div::before {
  content: "□";
  position: absolute;
  top: 18px;
  left: 22px;
  color: #f2b287;
  font-weight: 900;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.proof-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.proof-grid .trust-card {
  background: var(--ink);
}

.proof-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -18px 0 24px;
}

.proof-badges span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--warm-white);
  color: var(--steel);
  font-weight: 800;
  font-size: 14px;
}

.expert-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft-sage);
}

.expert-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 26%;
}

.expert-role {
  color: var(--steel) !important;
  font-weight: 800;
}

.expert-facts {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.expert-facts li + li {
  margin-top: 8px;
}

.expert-details {
  margin-top: 18px;
  border: 0;
  background: transparent;
}

.expert-details summary {
  padding: 0;
  color: var(--forest);
}

.expert-details p,
.expert-details ul {
  padding: 12px 0 0;
}

.expert-details ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.expert-details li + li {
  margin-top: 6px;
}

.client-logo-row {
  margin-top: 24px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.client-logo-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.client-logo-heading .eyebrow {
  margin: 0;
}

.client-logo-heading h3 {
  max-width: 560px;
  margin: 0;
  color: var(--steel);
  font-size: 18px;
  text-align: right;
}

.logo-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: logo-scroll 34s linear infinite;
}

.logo-track span {
  display: grid;
  place-items: center;
  width: 180px;
  height: 74px;
  border: 1px dashed rgba(96, 113, 106, 0.36);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  color: rgba(55, 66, 63, 0.48);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
  }
}

.case-list,
.fit-grid ul,
.prep-box ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.case-list li + li,
.fit-grid li + li,
.prep-box li + li {
  margin-top: 8px;
}

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

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

.fit-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.fit-grid article:first-child {
  border-left: 4px solid var(--forest);
}

.fit-grid article:last-child {
  border-left: 4px solid var(--copper);
}

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

.program-list article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.program-list span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest);
  font-weight: 800;
}

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

.tool-cloud {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tool-cloud li {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--steel);
  font-size: 15px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest);
  font-weight: 800;
}

.trust-card {
  background: var(--ink);
  color: var(--white);
}

.trust-card p {
  color: rgba(255, 255, 255, 0.76);
}

.interview-band {
  background: var(--ink);
  color: var(--white);
}

.interview-band .eyebrow {
  color: #f2b287;
}

.interview-band p {
  color: rgba(255, 255, 255, 0.76);
}

.interview-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.interview-list li {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.interview-note {
  margin: 20px 0;
  padding: 18px;
  border-left: 4px solid var(--copper);
  background: rgba(255, 255, 255, 0.07);
}

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

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  list-style: none;
  background: var(--line);
}

.process-list li {
  min-height: 210px;
  padding: 22px;
  background: var(--white);
  font-weight: 700;
}

.process-list p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 500;
}

.process-list span {
  display: block;
  margin-bottom: 28px;
  color: var(--copper);
  font-weight: 900;
}

.process-note {
  margin: 18px 0 0;
  color: var(--steel);
}

.tariff-card {
  display: flex;
  flex-direction: column;
}

.tariff-card.featured {
  border-color: var(--forest);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.tariff-label.pill {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--forest);
}

.tariff-list {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.tariff-list li {
  position: relative;
  padding-left: 24px;
}

.tariff-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--forest);
  font-weight: 900;
}

.tariff-reason {
  margin-top: 14px !important;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--steel) !important;
  font-weight: 700;
}

.price {
  margin: 0 0 18px;
  color: var(--ink) !important;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.tariff-card .button {
  width: 100%;
  margin-top: auto;
}

.tariff-button {
  border-color: var(--forest);
  color: var(--forest);
  background: transparent;
}

.tariff-note {
  margin: 18px 0 0;
  padding: 18px 22px;
  border-left: 4px solid var(--wine);
  background: var(--paper-strong);
  color: var(--steel);
}

.addon-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--warm-white);
}

.addon-card strong {
  color: var(--wine);
  font-size: 34px;
}

.addon-card p {
  margin: 0;
  color: var(--steel);
}

.urgency-band {
  color: var(--white);
  background: var(--forest-dark);
}

.urgency-band .eyebrow {
  color: #f2b287;
}

.urgency-band p {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

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

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

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

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 800;
}

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

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

.apply-section .eyebrow {
  color: #f2b287;
}

.apply-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 6vw, 76px);
}

.apply-grid p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.apply-points {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.apply-points p {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.apply-points strong {
  color: var(--white);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--steel);
  font-size: 14px;
  font-weight: 800;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-extra {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
}

.form-extra summary {
  padding: 14px;
  color: var(--steel);
}

.form-extra label {
  padding: 0 14px 14px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--paper-strong);
}

textarea {
  min-height: 94px;
  padding-top: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(33, 79, 61, 0.18);
  border-color: var(--forest);
}

.optional-field {
  opacity: 0.88;
}

.checkbox {
  display: flex !important;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px !important;
  font-weight: 600 !important;
}

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

.form-button {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  color: var(--muted) !important;
  font-size: 13px !important;
}

.editor-toolbar {
  position: fixed;
  z-index: 90;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: min(460px, calc(100% - 36px));
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(16, 24, 22, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.editor-toolbar button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  cursor: pointer;
}

.editor-toolbar button.is-active,
.editor-toolbar button:hover {
  background: var(--forest);
}

.editor-hint {
  position: fixed;
  z-index: 89;
  right: 18px;
  bottom: 78px;
  max-width: min(440px, calc(100% - 36px));
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(18, 52, 39, 0.96);
  font-size: 14px;
  box-shadow: var(--shadow);
}

body.editor-mode [data-editor-key] {
  outline: 2px dashed rgba(183, 93, 54, 0.58);
  outline-offset: 4px;
  cursor: text;
}

body.editor-mode [data-editor-key]:focus {
  outline: 3px solid var(--copper);
  background: rgba(255, 250, 240, 0.16);
}

.form-trust {
  padding: 16px 18px;
  border-left: 4px solid var(--copper);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.checkbox a {
  color: var(--forest);
  text-decoration: underline;
}

.diagnostic-modal[hidden] {
  display: none;
}

.diagnostic-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
}

.diagnostic-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 22, 0.68);
  backdrop-filter: blur(8px);
}

.diagnostic-panel {
  position: relative;
  width: min(720px, 100%);
  max-height: min(820px, calc(100vh - 36px));
  overflow: auto;
  padding: clamp(26px, 5vw, 44px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.diagnostic-panel h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.diagnostic-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper-strong);
  color: var(--ink);
  cursor: pointer;
  font-size: 22px;
}

.diagnostic-form {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.diagnostic-form label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
}

.diagnostic-form input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.diagnostic-result {
  margin-bottom: 18px;
  padding: 16px;
  border-left: 4px solid var(--copper);
  background: var(--paper-strong);
  color: var(--steel);
  font-weight: 800;
}

.site-footer {
  padding: 42px 0;
  background: #101816;
  color: rgba(255, 255, 255, 0.74);
}

.footer-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

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

.site-footer p {
  max-width: 560px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer p strong {
  color: var(--white);
}

.footer-legal {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.footer-legal p {
  margin: 0;
}

.footer-disclaimer {
  max-width: 760px;
  padding-top: 10px;
  font-size: 14px;
  line-height: 1.55;
}

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

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

.cookie-consent {
  position: fixed;
  z-index: 40;
  right: 18px;
  bottom: 18px;
  width: min(620px, calc(100% - 36px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(16, 24, 22, 0.96);
  color: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.cookie-consent p {
  margin: 0;
  font-size: 14px;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.cookie-actions a {
  color: var(--white);
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-actions .button {
  margin-left: auto;
  padding: 12px 18px;
}

.simple-page {
  min-height: 100vh;
  background: var(--paper);
}

.simple-shell {
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
  padding: 48px 0;
}

.simple-panel {
  margin-top: 80px;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.simple-panel h1,
.legal h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.02;
}

.simple-panel p,
.legal p {
  color: var(--muted);
  font-size: 18px;
}

.prep-box {
  margin: 26px 0;
  padding: 22px;
  border-left: 4px solid var(--copper);
  border-radius: 8px;
  background: var(--paper-strong);
}

.prep-box h2 {
  font-size: 24px;
  margin-bottom: 14px;
}

.legal {
  max-width: 900px;
}

.legal h1 {
  margin-top: 70px;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: 700px;
  }

  .method-grid,
  .pain-grid,
  .solution-timeline,
  .solution-grid,
  .tariff-grid,
  .expert-grid,
  .proof-grid,
  .fit-grid,
  .outcome-grid,
  .process-list,
  .two-col,
  .apply-grid {
    grid-template-columns: 1fr 1fr;
  }

  .apply-grid {
    align-items: start;
  }
}

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

  .wordmark span {
    font-size: 14px;
  }

  .wordmark small {
    font-size: 10px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
  }

  .desktop-label {
    display: none;
  }

  .mobile-label {
    display: inline;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    object-position: 64% center;
    filter: saturate(0.88) contrast(0.9);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(18, 30, 26, 0.91) 0%, rgba(18, 30, 26, 0.76) 66%, rgba(18, 30, 26, 0.36) 100%),
      linear-gradient(0deg, rgba(18, 30, 26, 0.68) 0%, rgba(18, 30, 26, 0.12) 48%);
  }

  .hero-content {
    width: min(100% - 28px, 1120px);
    padding: 112px 0 32px;
  }

  h1 {
    font-size: 37px;
    line-height: 1.08;
  }

  h2 {
    font-size: 29px;
    line-height: 1.12;
  }

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

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

  .hero-actions .text-button {
    display: none;
  }

  .method-grid,
  .pain-grid,
  .solution-timeline,
  .solution-grid,
  .tariff-grid,
  .expert-grid,
  .proof-grid,
  .fit-grid,
  .outcome-grid,
  .process-list,
  .two-col,
  .apply-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
  }

  .hero-facts li {
    padding: 14px;
  }

  .hero-facts strong {
    font-size: 26px;
  }

  .hero-facts span {
    font-size: 13px;
  }

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

  .apply-points p {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .pain-conclusion {
    grid-template-columns: 1fr;
  }

  .tariff-card.featured {
    transform: none;
  }

  .addon-card {
    grid-template-columns: 1fr;
  }

  .client-logo-heading {
    align-items: start;
    flex-direction: column;
  }

  .client-logo-heading h3 {
    text-align: left;
  }

  .logo-track span {
    width: 150px;
    height: 64px;
  }

  .solution-timeline::before {
    top: 0;
    bottom: 0;
    left: 27px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .solution-timeline article {
    padding-left: 76px;
  }

  .solution-timeline .step-number {
    position: absolute;
    left: 0;
    top: 0;
  }

  .editor-toolbar {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .editor-hint {
    left: 12px;
    right: 12px;
    bottom: 72px;
  }

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

  .cookie-actions .button {
    width: 100%;
    margin-left: 0;
  }
}
