/* ============================================================
   SOCIAL OPS LAB
   Design: Editorial Studio · Deep Navy · Warm Amber
   Rule: No cards. No circles. No borders trapping content.
   Typography does the work.
   ============================================================ */

:root {
  --navy:        #0D2235;
  --navy-deep:   #081624;
  --navy-mid:    #1A3A56;
  --sage:        #7A9D92;
  --sage-soft:   #EAF0EC;
  --sage-line:   rgba(122,157,146,0.25);
  --amber:       #C9883A;
  --amber-warm:  #E2A456;
  --amber-deep:  #A86E28;
  --amber-tint:  #FBF4EA;
  --cream:       #F6F1E9;
  --paper:       #FFFFFF;
  --ink:         #171C22;
  --ink-soft:    #2E3842;
  --mute:        #5A6470;
  --mute-light:  #8A9298;
  --hairline:    rgba(13,34,53,0.09);
  --hairline-med:rgba(13,34,53,0.15);
  --section-gap: 7rem;
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'General Sans', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.015em;
  line-height: 1.1;
}

h1 { font-size: clamp(2.8rem, 5.5vw, 4.6rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.45rem); }
h4 { font-size: 1rem; }

p {
  color: var(--mute);
  font-size: 1.0625rem;
  line-height: 1.72;
}

.lede {
  font-size: 1.15rem;
  line-height: 1.68;
  color: var(--ink-soft);
}

.eyebrow {
  display: inline-block;
  font-family: 'General Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--amber);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2rem;
  border-radius: 3px;
  text-decoration: none;
  font-family: 'General Sans', sans-serif;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn-primary { background: var(--amber); color: #fff; }
.btn-primary:hover { background: var(--amber-deep); transform: translateY(-2px); box-shadow: 0 10px 24px -8px rgba(201,136,58,0.45); }

.btn-secondary { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-secondary:hover { background: var(--navy); color: #fff; }

.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-deep); transform: translateY(-2px); }

.btn-amber { background: var(--amber); color: #fff; }
.btn-amber:hover { background: var(--amber-deep); transform: translateY(-2px); }

.btn-sm { padding: 0.65rem 1.25rem; font-size: 0.68rem; }

/* ============================================================
   PROMO BAR
   ============================================================ */
.promo-bar {
  background: var(--navy-deep);
  color: #fff;
  padding: 0.72rem 0;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.promo-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.promo-content span { color: rgba(255,255,255,0.8); }
.promo-content .amber-text { color: var(--amber-warm); }

/* ============================================================
   NAVIGATION
   ============================================================ */
/* Header nav only - scoped to avoid bleeding into footer nav elements */
body > nav {
  background: var(--paper);
  padding: 0.85rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--hairline);
}

/* Footer navs must be explicitly reset */
footer nav {
  background: transparent;
  padding: 0;
  position: static;
  border: none;
  z-index: auto;
}
.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.logo-link { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 72px; width: auto; display: block; }

.nav-links {
  display: flex;
  gap: 2.4rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--amber); }
.nav-links .btn { padding: 0.65rem 1.25rem; font-size: 0.7rem; }

.mobile-toggle {
  display: none;
  cursor: pointer;
  color: var(--navy);
  background: none;
  border: none;
  padding: 0.25rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--paper);
  padding: 5.5rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 42%; height: 100%;
  background: var(--cream);
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}
.hero-eyebrow-text {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--amber);
}
.hero-eyebrow-line {
  width: 40px; height: 1.5px;
  background: var(--amber);
  flex-shrink: 0;
}
.hero h1 { margin-bottom: 1.6rem; }
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--mute);
  margin-bottom: 0.9rem;
  max-width: 490px;
}
.hero-microline {
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--mute-light);
  margin-bottom: 2.2rem;
  max-width: 490px;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-trust-strip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  padding-top: 1.8rem;
  border-top: 1px solid var(--hairline);
}
.strip-label {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute-light);
  white-space: nowrap;
}
.hero-trust-pill {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
  padding: 0.28rem 0.7rem;
  border: 1px solid var(--hairline-med);
  border-radius: 2px;
}

/* Hero image */
.hero-image-frame { position: relative; }
.hero-image-frame::before {
  content: "";
  position: absolute;
  inset: -1.5rem -1rem -1.5rem 1rem;
  background: var(--sage-soft);
  border-radius: 3px;
  z-index: 0;
}
.hero-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 3px;
  overflow: hidden;
  z-index: 1;
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-label {
  position: absolute;
  bottom: -1.5rem; left: -1.5rem;
  background: var(--navy);
  color: rgba(255,255,255,0.9);
  padding: 1.2rem 1.5rem;
  border-radius: 3px;
  font-family: 'Instrument Serif', serif;
  font-size: 0.95rem;
  line-height: 1.4;
  max-width: 200px;
  z-index: 3;
}
.hero-label .label-script {
  display: block;
  font-size: 1.25rem;
  color: var(--amber-warm);
  margin-bottom: 0.25rem;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust {
  background: var(--navy-deep);
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.trust-pill {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.trust-sep { color: rgba(255,255,255,0.15); }

/* ============================================================
   REPOSITIONING ("This is not just posting")
   ============================================================ */
.reposition {
  background: var(--navy);
  padding: 5rem 0;
}
.reposition-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: center;
}
.reposition-left h2 {
  color: #fff;
  font-size: clamp(2rem, 3.8vw, 2.9rem);
}
.reposition-right p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.72;
  margin-bottom: 1.2rem;
}
.reposition-divider {
  width: 48px; height: 2px;
  background: var(--amber);
  margin-bottom: 1.6rem;
}
.reposition-list { list-style: none; margin-top: 1.4rem; }
.reposition-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.55;
}
.reposition-list li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--amber-warm);
  flex-shrink: 0;
  margin-top: 0.55rem;
}

/* ============================================================
   PROOF / RESULTS
   No cards. No icon circles. Testimonial + clean list.
   ============================================================ */
.proof {
  padding: var(--section-gap) 0;
  background: var(--paper);
}
.proof-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.proof-left .eyebrow { margin-bottom: 1rem; display: block; }
.proof-left h2 { margin-bottom: 1.4rem; }
.proof-left .lede { margin-bottom: 1.2rem; }
.proof-left p { margin-bottom: 1rem; }

.proof-quote {
  margin-top: 2.8rem;
  padding-left: 1.6rem;
  border-left: 2px solid var(--amber);
}
.proof-quote p {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.2rem;
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 0.8rem;
}
.proof-quote cite {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}

/* Proof outcomes: clean list, no cards, no circles */
.proof-right { display: flex; flex-direction: column; gap: 0; }
.proof-outcome {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--hairline);
}
.proof-outcome:first-child { border-top: 1px solid var(--hairline); }
.proof-outcome-marker {
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.55rem;
}
.proof-outcome h4 {
  font-family: 'General Sans', sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.proof-outcome p {
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   WHO WE SUPPORT
   No cards. 2-column text layout. No numbered badges.
   ============================================================ */
.support {
  padding: var(--section-gap) 0;
  background: var(--cream);
}
.section-head { margin-bottom: 4rem; }
.section-head .eyebrow { display: block; margin-bottom: 1rem; }
.section-head h2 { margin-bottom: 1.1rem; }
.section-head p { max-width: 560px; font-size: 1.06rem; }

/* 2-column open text grid - no borders, no backgrounds */
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.5rem 5rem;
  margin-bottom: 2.4rem;
}
.support-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
  color: var(--navy);
}
.support-item p {
  font-size: 0.97rem;
  line-height: 1.65;
}

.support-cta-note {
  font-size: 0.92rem;
  color: var(--mute);
  padding-top: 1.6rem;
  border-top: 1px solid var(--hairline);
}
.support-cta-note a {
  color: var(--amber);
  text-decoration: none;
  font-weight: 600;
}
.support-cta-note a:hover { text-decoration: underline; }

/* ============================================================
   HOW WE SUPPORT YOU (merged services)
   2x2 open grid. No card borders. No containers.
   ============================================================ */
.what-we-run {
  padding: var(--section-gap) 0;
  background: var(--paper);
}
.run-intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--hairline);
}
.run-intro-left .eyebrow { display: block; margin-bottom: 1rem; }
.run-intro-left h2 { margin-bottom: 0; }
.run-intro-right .lede { margin-bottom: 1rem; }

/* Open 2x2 grid - typography only, no borders or backgrounds */
.run-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 6rem;
}
.run-block { position: relative; }
.run-block-num {
  font-family: 'Instrument Serif', serif;
  font-size: 1.8rem;
  color: var(--hairline-med);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.run-block h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--navy);
  padding-bottom: 0.8rem;
  border-bottom: 1.5px solid var(--amber);
  display: inline-block;
}
.run-block p {
  font-size: 0.97rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  color: var(--mute);
}
.run-block-list { list-style: none; margin-top: 0.8rem; }
.run-block-list li {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 0.45rem;
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}
.run-block-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.58rem;
  width: 4px; height: 4px;
  background: var(--amber);
  border-radius: 50%;
}

/* ============================================================
   PROCESS
   Clean horizontal text list. No circles. No widget lines.
   ============================================================ */
.process {
  padding: var(--section-gap) 0;
  background: var(--navy);
}
.process-head { margin-bottom: 4.5rem; }
.process-head .eyebrow { color: var(--amber-warm); margin-bottom: 0.8rem; display: block; }
.process-head h2 { color: #fff; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}
/* No circles, no connecting lines - just number + title + text */
.process-step {}
.process-step-num {
  font-family: 'Instrument Serif', serif;
  font-size: 2.2rem;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 1rem;
}
.process-step h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.process-step p {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  line-height: 1.62;
}
.process-reassurance {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  text-align: center;
}

/* ============================================================
   QUIET OPS AUDIT LEAD MAGNET
   ============================================================ */
.audit-optin {
  padding: var(--section-gap) 0;
  background: var(--navy-deep);
}
.audit-optin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.audit-optin-copy .eyebrow { color: var(--amber-warm); margin-bottom: 1.2rem; display: block; }
.audit-optin-copy h2 { color: #fff; margin-bottom: 1.2rem; }
.audit-optin-copy .lede { color: rgba(255,255,255,0.75); margin-bottom: 1.8rem; }

.audit-bullets { list-style: none; margin-bottom: 2.4rem; }
.audit-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.97rem;
  line-height: 1.6;
  margin-bottom: 0.85rem;
}
.audit-bullets li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--amber-warm);
  flex-shrink: 0;
  margin-top: 0.55rem;
}
.audit-support-line {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.4);
  margin-top: 1rem;
}

/* PDF mockup - clean, single card */
.audit-right-column { position: relative; }
.audit-preview-stage {
  display: flex;
  justify-content: center;
  align-items: center;
}
.audit-pdf {
  background: var(--paper);
  aspect-ratio: 8.5/11;
  max-width: 320px;
  width: 100%;
  padding: 2.4rem 2.2rem;
  border-radius: 3px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6);
  transform: rotate(-2deg);
  display: flex;
  flex-direction: column;
}
.pdf-brand {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute-light);
  font-weight: 700;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 1.6rem;
}
.pdf-num {
  font-family: 'Instrument Serif', serif;
  font-size: 2.6rem;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.pdf-eyebrow {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.audit-pdf h3 {
  font-size: 1.5rem;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 0.9rem;
}
.pdf-sub {
  font-size: 0.74rem;
  line-height: 1.6;
  color: var(--mute);
  margin-bottom: 1.4rem;
}
.pdf-pill {
  display: inline-block;
  background: var(--cream);
  color: var(--navy);
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.35rem 0.6rem;
  border-radius: 2px;
  align-self: flex-start;
}
.pdf-foot {
  margin-top: auto;
  padding-top: 0.8rem;
  border-top: 1px solid var(--hairline);
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute-light);
  font-weight: 700;
}

.fd-embed-stage { padding: 0.5rem; }
.fd-embed-card {
  background: var(--paper);
  border-radius: 3px;
  padding: 1.5rem;
  min-height: 340px;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.4);
}
.audit-right-column [hidden] { display: none !important; }

/* ============================================================
   CLOSING CTA
   Centered. Confident. Final.
   ============================================================ */
.cta-final {
  padding: var(--section-gap) 0;
  background: var(--cream);
  text-align: center;
}
.cta-final-inner { max-width: 620px; margin: 0 auto; }
.cta-final .eyebrow { margin-bottom: 1.2rem; }
.cta-final h2 { margin-bottom: 1.4rem; }
.cta-final p {
  margin-bottom: 2.4rem;
  font-size: 1.05rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-final-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}
.cta-microcopy {
  font-size: 0.82rem;
  color: var(--mute-light);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.65);
  padding: 4.5rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}
.footer-brand h3 { color: #fff; font-size: 1.2rem; margin-bottom: 0.6rem; }
.footer-brand .footer-tagline {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-warm);
  margin-bottom: 0.8rem;
  display: block;
}
.footer-brand p { font-size: 0.92rem; color: rgba(255,255,255,0.4); line-height: 1.65; max-width: 280px; }
.footer-links h4 {
  color: rgba(255,255,255,0.9);
  font-family: 'General Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 0.7rem; }
.footer-links ul a { font-size: 0.92rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s ease; }
.footer-links ul a:hover { color: var(--amber-warm); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.8rem; }
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.3); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  :root { --section-gap: 5rem; }
  .hero::before { display: none; }
  .hero-grid,
  .reposition-inner,
  .run-intro,
  .proof-layout,
  .audit-optin-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-image-frame { display: none; }
  .support-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .run-grid { grid-template-columns: 1fr; gap: 3rem; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .audit-pdf { transform: rotate(0); }
}

@media (max-width: 640px) {
  :root { --section-gap: 4rem; }
  .container { padding: 0 1.25rem; }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.9rem; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .logo-img { height: 56px; }
  .hero { padding: 3.5rem 0 4rem; }
  .process-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-final-btns { flex-direction: column; align-items: stretch; }
  .cta-final-btns .btn { text-align: center; }
  .audit-pdf { max-width: 260px; }
  .run-grid { gap: 2.5rem; }
}
