:root {
  --ink: #13201a;
  --ink-soft: #34483e;
  --forest: #123d2b;
  --forest-2: #1d5a42;
  --teal: #2f6f65;
  --gold: #c7a33b;
  --gold-dark: #9b7922;
  --clay: #a75d45;
  --paper: #f7f8f4;
  --white: #ffffff;
  --line: #d9dfd8;
  --muted: #647269;
  --success: #1e7048;
  --warning: #9a6818;
  --danger: #93483b;
  --shadow: 0 16px 42px rgba(19, 32, 26, 0.09);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.12;
}

h1 {
  font-size: 5.25rem;
  font-weight: 850;
}

h2 {
  font-size: 3.45rem;
  font-weight: 800;
}

h3 {
  font-size: 1.28rem;
  font-weight: 780;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--forest);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(19, 32, 26, 0.08);
  background: rgba(255, 255, 255, 0.97);
}

.nav-shell {
  width: min(calc(100% - 40px), var(--max));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

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

.brand img {
  width: auto;
  height: 70px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
}

.nav-links a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  min-height: 44px;
  padding: 11px 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
  border: 1px solid var(--forest);
  border-radius: 4px;
  background: var(--forest);
}

.nav-cta:hover {
  background: var(--forest-2);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  padding: 0;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  width: 20px;
  height: 2px;
  display: block;
  content: "";
  background: var(--ink);
  transition: transform 160ms ease;
}

.nav-toggle span::before {
  transform: translateY(-6px);
}

.nav-toggle span::after {
  transform: translateY(4px);
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.container.narrow {
  max-width: 820px;
}

.band {
  padding: 94px 0;
}

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

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

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

.band-muted {
  background: #edf1eb;
}

.eyebrow {
  margin-bottom: 17px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}

.band-dark .eyebrow,
.band-forest .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow {
  color: #e1bd51;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 48px;
}

.section-heading h2 {
  margin-bottom: 18px;
}

.section-heading p,
.lead {
  color: var(--muted);
  font-size: 1.12rem;
}

.band-dark .section-heading p,
.band-forest .section-heading p,
.band-dark .lead,
.band-forest .lead {
  color: rgba(255, 255, 255, 0.72);
}

.hero {
  position: relative;
  min-height: min(780px, calc(100vh - 82px));
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background-color: #101d17;
  background-image: url("/assets/images/operations-hero.png");
  background-position: center;
  background-size: cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(8, 19, 14, 0.7);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 910px;
  padding: 88px 0 104px;
}

.hero h1 {
  max-width: 870px;
  margin-bottom: 26px;
  text-wrap: balance;
}

.hero h1 span {
  color: #e2bd4a;
}

.hero-copy {
  max-width: 780px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.24rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.btn {
  min-height: 50px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, border 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.btn-primary {
  color: #111810;
  background: #e1bb48;
  border-color: #e1bb48;
}

.btn-primary:hover {
  background: #f0cf68;
  border-color: #f0cf68;
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(18, 61, 43, 0.42);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(18, 61, 43, 0.72);
}

.btn-dark {
  color: var(--white);
  border-color: var(--forest);
  background: var(--forest);
}

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

.btn-outline {
  color: var(--forest);
  border-color: var(--forest);
  background: transparent;
}

.btn-outline:hover {
  color: var(--white);
  background: var(--forest);
}

.microcopy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.hero .microcopy {
  color: rgba(255, 255, 255, 0.58);
}

.proof-bar {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.proof-grid {
  min-height: 112px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-value {
  color: var(--forest);
  font-size: 1.2rem;
  font-weight: 850;
}

.proof-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.symptom-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.symptom {
  min-height: 128px;
  padding: 30px 28px 28px 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  border-bottom: 1px solid var(--line);
}

.symptom:nth-child(odd) {
  padding-right: 44px;
  border-right: 1px solid var(--line);
}

.symptom:nth-child(even) {
  padding-left: 44px;
}

.symptom-number {
  color: var(--gold-dark);
  font-weight: 850;
}

.symptom p {
  margin: 0;
  color: var(--ink-soft);
}

.callout {
  margin-top: 38px;
  padding: 26px 30px;
  border-left: 4px solid var(--gold);
  background: #edf2ec;
}

.callout p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 720;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.comparison-item {
  min-height: 260px;
  padding: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.comparison-item:last-child {
  border-right: 0;
  background: rgba(255, 255, 255, 0.06);
}

.comparison-item h3 {
  margin-bottom: 14px;
}

.comparison-item p {
  color: rgba(255, 255, 255, 0.68);
}

.comparison-label {
  margin-bottom: 26px;
  color: #e1bd51;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.method-step {
  min-height: 260px;
  padding: 30px 24px;
  border-right: 1px solid var(--line);
}

.method-step:last-child {
  border-right: 0;
}

.method-number {
  margin-bottom: 34px;
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 850;
}

.method-step h3 {
  margin-bottom: 12px;
  color: var(--forest);
}

.method-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.timeline::before {
  position: absolute;
  top: 34px;
  right: 10%;
  left: 10%;
  height: 2px;
  content: "";
  background: rgba(255, 255, 255, 0.22);
}

.timeline-item {
  position: relative;
  z-index: 1;
  padding: 0 22px 24px;
}

.timeline-dot {
  width: 18px;
  height: 18px;
  margin: 26px 0 34px;
  border: 4px solid var(--forest);
  border-radius: 50%;
  background: #e1bd51;
  box-shadow: 0 0 0 2px rgba(225, 189, 81, 0.34);
}

.timeline-days {
  color: #e1bd51;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-item h3 {
  min-height: 58px;
  margin: 10px 0 14px;
}

.timeline-item p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

.timeline-price {
  margin-top: 18px;
  font-weight: 850;
}

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

.case-card {
  min-height: 330px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 6px 20px rgba(19, 32, 26, 0.04);
}

.case-card:hover {
  border-color: #aab9ae;
  box-shadow: var(--shadow);
}

.case-sector {
  margin-bottom: 18px;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.case-card h3 {
  margin-bottom: 14px;
  color: var(--forest);
}

.case-card p {
  color: var(--muted);
  font-size: 0.93rem;
}

.case-outcome {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 720;
}

.trust-layout,
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 76px;
  align-items: start;
}

.trust-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
}

.trust-metric {
  min-height: 150px;
  padding: 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-metric:nth-child(even) {
  border-right: 0;
}

.trust-metric:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.trust-value {
  color: var(--forest);
  font-size: 1.6rem;
  font-weight: 850;
}

.trust-label {
  color: var(--muted);
  font-size: 0.82rem;
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

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

.fit-column.not-fit {
  border-top: 4px solid var(--clay);
}

.fit-column.good-fit {
  border-top: 4px solid var(--forest);
}

.check-list,
.plain-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 25px;
  color: var(--ink-soft);
}

.check-list li::before {
  position: absolute;
  left: 0;
  content: "\2713";
  color: var(--success);
  font-weight: 900;
}

.not-fit .check-list li::before {
  content: "\00d7";
  color: var(--clay);
}

.plain-list li::before {
  position: absolute;
  left: 4px;
  content: "\2022";
  color: var(--gold-dark);
  font-weight: 900;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  min-height: 76px;
  padding: 23px 48px 23px 0;
  display: flex;
  align-items: center;
  color: var(--ink);
  font-weight: 780;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  margin-left: auto;
  content: "+";
  color: var(--gold-dark);
  font-size: 1.4rem;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-answer {
  max-width: 830px;
  padding: 0 0 25px;
  color: var(--muted);
}

.cta-band {
  padding: 86px 0;
  color: var(--white);
  background: var(--forest);
}

.cta-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.cta-layout h2 {
  max-width: 780px;
  margin-bottom: 14px;
}

.cta-layout p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.page-hero {
  padding: 104px 0 86px;
  color: var(--white);
  background: var(--ink);
}

.page-hero h1 {
  max-width: 950px;
  margin-bottom: 22px;
  font-size: 4.8rem;
}

.page-hero p {
  max-width: 820px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 1.18rem;
}

.breadcrumbs {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.offer-hero {
  padding: 42px;
  border: 1px solid #7f9488;
  border-top: 5px solid var(--gold);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.offer-kicker {
  color: var(--clay);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-price {
  margin: 18px 0 6px;
  color: var(--forest);
  font-size: 4rem;
  font-weight: 880;
  line-height: 1;
}

.offer-meta {
  color: var(--muted);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.offer-card {
  min-height: 420px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.offer-card h3 {
  margin-top: 10px;
  font-size: 1.65rem;
}

.offer-card .btn {
  margin-top: auto;
}

.boundary-note {
  margin: 24px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--clay);
  color: var(--ink-soft);
  background: #f5ece8;
  font-size: 0.9rem;
  font-weight: 720;
}

.case-full {
  padding: 38px 0;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  border-top: 1px solid var(--line);
}

.case-full:last-child {
  border-bottom: 1px solid var(--line);
}

.case-index {
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.case-full h2 {
  margin: 10px 0 18px;
  font-size: 1.75rem;
}

.case-facts {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.case-fact {
  padding: 18px;
  border-right: 1px solid var(--line);
}

.case-fact:last-child {
  border-right: 0;
}

.case-fact strong {
  display: block;
  color: var(--forest);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.case-fact span {
  color: var(--muted);
  font-size: 0.9rem;
}

.case-copy h3 {
  margin: 26px 0 8px;
  color: var(--forest);
  font-size: 1rem;
}

.case-copy p {
  margin-bottom: 12px;
  color: var(--ink-soft);
}

.answer-box {
  margin: 34px 0;
  padding: 28px 30px;
  border-left: 4px solid var(--gold);
  background: #edf2ec;
}

.answer-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--forest);
}

.article-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.article-card {
  min-height: 285px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.article-card a {
  color: var(--forest);
  text-decoration: none;
}

.article-card p {
  color: var(--muted);
}

.article-meta {
  margin-bottom: 22px;
  color: var(--clay);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.article-body {
  max-width: 840px;
}

.article-body h2 {
  margin: 56px 0 18px;
  font-size: 2.55rem;
}

.article-body h3 {
  margin: 35px 0 12px;
}

.article-body p,
.article-body li {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.article-body li {
  margin-bottom: 10px;
}

.form-shell {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.form-field {
  min-width: 0;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label,
.question legend {
  margin-bottom: 8px;
  display: block;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 760;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 49px;
  padding: 11px 13px;
  color: var(--ink);
  border: 1px solid #aeb9b1;
  border-radius: 4px;
  background: var(--white);
}

.form-field textarea {
  min-height: 128px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--forest-2);
  outline: 3px solid rgba(47, 111, 101, 0.15);
}

.form-actions {
  margin-top: 24px;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
}

.process-list {
  counter-reset: process;
}

.process-item {
  min-height: 122px;
  padding: 26px 0;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.process-item::before {
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  color: var(--gold-dark);
  font-weight: 850;
}

.process-item h3 {
  margin-bottom: 8px;
}

.process-item p {
  margin: 0;
  color: var(--muted);
}

.assessment {
  max-width: 900px;
}

.question {
  margin: 0;
  padding: 28px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.question legend {
  padding: 0;
  font-size: 1rem;
}

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

.question-options label {
  min-height: 46px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  cursor: pointer;
}

.question-options label:hover {
  border-color: var(--teal);
}

.assessment-result {
  margin-top: 30px;
  padding: 32px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  border-radius: 8px;
  background: var(--white);
}

.assessment-result[hidden] {
  display: none;
}

.result-level {
  margin-bottom: 8px;
  color: var(--forest);
  font-size: 1.8rem;
  font-weight: 850;
}

.site-footer {
  color: rgba(255, 255, 255, 0.66);
  background: #0a1510;
}

.footer-main {
  padding: 62px 0 42px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  width: 154px;
  margin-bottom: 22px;
  padding: 8px;
  background: var(--white);
}

.footer-main h3 {
  margin-bottom: 17px;
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.footer-main a {
  margin-bottom: 10px;
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  text-decoration: none;
}

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

.footer-copy {
  max-width: 330px;
  font-size: 0.86rem;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
}

.notice {
  padding: 18px 20px;
  border: 1px solid #c6d3c9;
  border-left: 4px solid var(--teal);
  background: #edf3f0;
}

.notice strong {
  color: var(--forest);
}

.hide-mobile {
  display: initial;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 4.45rem;
  }

  h2 {
    font-size: 3rem;
  }

  .page-hero h1 {
    font-size: 4.15rem;
  }

  .nav-links {
    gap: 17px;
  }

  .nav-links a {
    font-size: 0.8rem;
  }

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

  .method-step:nth-child(3) {
    border-right: 0;
  }

  .method-step:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .case-grid,
  .case-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  h1 {
    font-size: 3.85rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .page-hero h1 {
    font-size: 3.65rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    z-index: 99;
    top: 82px;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 26px 20px 40px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    background: var(--white);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 18px;
    padding: 13px 16px !important;
  }

  .hero {
    min-height: 680px;
    background-position: 60% center;
  }

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

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .comparison-grid,
  .timeline,
  .trust-layout,
  .split,
  .cta-layout {
    grid-template-columns: 1fr;
  }

  .comparison-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .comparison-item:last-child {
    border-bottom: 0;
  }

  .timeline::before {
    display: none;
  }

  .timeline-item {
    padding-left: 54px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }

  .timeline-dot {
    position: absolute;
    top: 0;
    left: -9px;
  }

  .timeline-item h3 {
    min-height: auto;
  }

  .case-full {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .case-facts {
    grid-template-columns: 1fr;
  }

  .case-fact {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .case-fact:last-child {
    border-bottom: 0;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 2rem;
  }

  .container,
  .nav-shell {
    width: min(calc(100% - 30px), var(--max));
  }

  .nav-shell {
    min-height: 72px;
  }

  .brand img {
    width: auto;
    height: 62px;
  }

  .nav-links {
    top: 72px;
  }

  .band {
    padding: 70px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 28px 0 34px;
  }

  .hero .eyebrow {
    margin-bottom: 11px;
    font-size: 0.68rem;
  }

  .hero h1 {
    margin-bottom: 14px;
    font-size: 2.15rem;
  }

  .hero-copy {
    margin-bottom: 18px;
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .hero .button-row {
    gap: 8px;
  }

  .hero .btn {
    min-height: 46px;
    padding: 10px 14px;
  }

  .hero .microcopy {
    margin-top: 8px;
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .btn {
    width: 100%;
  }

  .proof-item {
    padding: 20px 16px;
  }

  .proof-value {
    font-size: 1rem;
  }

  .symptom-list,
  .fit-grid,
  .offer-grid,
  .case-grid,
  .case-preview-grid,
  .article-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .symptom {
    min-height: auto;
    padding: 24px 0 !important;
    border-right: 0 !important;
  }

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

  .method-step {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .method-step:last-child {
    border-bottom: 0;
  }

  .page-hero {
    padding: 82px 0 68px;
  }

  .page-hero h1 {
    font-size: 2.45rem;
  }

  .offer-price {
    font-size: 2.2rem;
  }

  .article-body h2 {
    font-size: 1.8rem;
  }

  .offer-hero,
  .offer-card,
  .form-shell {
    padding: 26px 22px;
  }

  .case-card {
    min-height: 290px;
  }

  .trust-metrics {
    grid-template-columns: 1fr;
  }

  .trust-metric,
  .trust-metric:nth-child(even) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-metric:last-child {
    border-bottom: 0;
  }

  .question-options {
    grid-template-columns: 1fr;
  }

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

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

  .hide-mobile {
    display: none;
  }
}
