/* ==========================================================================
   PAUL KLARMANN_ — Onepager
   Farben & Schriften übernommen von paulklarmann.de (WordPress-Vorgänger)
   ========================================================================== */

/* ---- Fonts (lokal gehostet, DSGVO-konform) ---- */
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url("../fonts/oswald-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-latin.woff2") format("woff2");
}

/* ---- Design-Tokens ---- */
:root {
  --blue: #125e8a;
  --blue-dark: #0e4a6d;
  --blue-soft: #e8f0f5;
  --ink: #1a1a1a;
  --gray: #6f6f6f;
  --gray-light: #9a9a9a;
  --line: #e6e6e6;
  --bg: #ffffff;
  --bg-soft: #f7f7f7;
  --radius: 10px;
  --font-head: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --container: 1120px;
  --section-y: clamp(5rem, 10vw, 8.5rem);
}

/* ---- Reset / Basis ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
p { margin: 0 0 1.25em; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.section { padding-block: var(--section-y); }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--ink); color: #fff; }

/* ---- Typografie ---- */
h1, h2, h3, .h-style {
  font-family: var(--font-head);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 3.9rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.75rem); }
h3 { font-size: 1.35rem; }

.kicker {
  font-family: var(--font-head);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.95rem;
  color: var(--blue);
  margin: 0 0 1.1rem;
}
.section--dark .kicker { color: #7fb6d9; }

.lead { font-size: 1.15rem; color: var(--gray); max-width: 46rem; }
.section--dark .lead { color: rgba(255, 255, 255, 0.8); }
.muted { color: var(--gray); }

.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lead { margin-inline: auto; }

/* Unterstrich-Akzent der Marke: KLARMANN_ */
.u::after { content: "_"; color: var(--blue); }
.section--dark .u::after { color: #7fb6d9; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  border: 2px solid var(--blue);
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
  cursor: pointer;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.btn--ghost { background: transparent; color: var(--blue); }
.btn--ghost:hover { background: var(--blue-soft); }
.section--dark .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.section--dark .btn--ghost:hover { background: rgba(255, 255, 255, 0.1); }
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 82px;
}
.site-header .logo img { width: 168px; height: 42px; }
.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav a:not(.btn) {
  font-family: var(--font-head);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  color: var(--ink);
}
.site-nav a:not(.btn):hover { color: var(--blue); text-decoration: none; }
.site-nav .btn { padding: 0.65rem 1.4rem; font-size: 0.85rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  margin: 6px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---- Hero ---- */
.hero { padding-block: clamp(2rem, 4vw, 4rem); }
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-areas:
    "head img"
    "body img";
  column-gap: clamp(3rem, 6vw, 5.5rem);
  row-gap: 0;
}
.hero__head { grid-area: head; align-self: end; }
.hero__body { grid-area: body; align-self: start; }
.hero__figure { grid-area: img; align-self: center; }
.hero h1 { margin-bottom: 0.5em; }
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.25rem;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  margin-top: 2.5rem;
  padding: 0;
  list-style: none;
  color: var(--gray);
  font-size: 0.95rem;
}
.hero__meta li { display: flex; align-items: center; gap: 0.5rem; }
.hero__meta .dot { color: var(--blue); font-weight: 700; }

.hero__figure { position: relative; margin: 0; }
.hero__figure img {
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}
.hero__figure::before {
  content: "";
  position: absolute;
  inset: 1.4rem -1.4rem -1.4rem 1.4rem;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  z-index: -1;
}

/* ---- Warum Kunden zu mir kommen ---- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2.5vw, 1.75rem);
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 2.5vw, 2rem);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.why-item:hover {
  transform: translateY(-3px);
  border-color: rgba(18, 94, 138, 0.35);
  box-shadow: 0 12px 32px rgba(18, 94, 138, 0.08);
}
.why-item__arrow {
  color: var(--blue);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.5;
}
.why-item p { margin: 0; font-size: 1.05rem; }
.why-close {
  font-family: var(--font-head);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  margin: clamp(2rem, 4vw, 3rem) 0 0;
}

/* ---- Erfahrung (Stat-Band) ---- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.stat { position: relative; padding-top: 1.4rem; }
.stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  height: 3px;
  background: var(--blue);
}
.stat__value {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 0.35rem;
}
.stat__label { color: var(--gray); font-size: 0.98rem; margin: 0; }

/* ---- LinkedIn-Karte ---- */
.li-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--ink);
  max-width: 420px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.li-card:hover {
  text-decoration: none;
  transform: translateY(-3px);
  border-color: rgba(18, 94, 138, 0.4);
  box-shadow: 0 12px 32px rgba(18, 94, 138, 0.1);
}
.li-card > img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
}
.li-card__body { display: block; }
.li-card__name {
  display: block;
  font-family: var(--font-head);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
}
.li-card__info {
  display: block;
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0.2rem 0 0.4rem;
}
.li-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: var(--blue);
}
.li-card:hover .li-card__cta .arrow { transform: translateX(4px); }
.li-card .arrow { transition: transform 0.2s ease; }

/* ---- Leistungen ---- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
}
.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(18, 94, 138, 0.1);
  border-color: rgba(18, 94, 138, 0.35);
}
.card h3 { margin-bottom: 0.5em; }
.card p { color: var(--gray); font-size: 1rem; }

/* ---- Buzzword-Wolke ---- */
.tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 0.85rem;
  max-width: 56rem;
  margin-inline: auto;
  padding: 0;
  list-style: none;
}
.tags li {
  font-family: var(--font-head);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 1.15rem;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.tags li:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}
.tags li:nth-child(4n + 1) { border-color: rgba(18, 94, 138, 0.4); color: var(--blue); }

/* ---- Ablauf ---- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  counter-reset: step;
}
.step { position: relative; padding-top: 1.4rem; }
.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  height: 3px;
  background: var(--blue);
}
.step__num {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--blue);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}
.step h3 { font-size: 1.2rem; }
.step p { color: var(--gray); font-size: 0.98rem; }

/* ---- Preise (dunkles Band) ---- */
.pricing__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.pricing ul.checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.1rem;
}
.pricing ul.checks li {
  position: relative;
  padding-left: 2rem;
  color: rgba(255, 255, 255, 0.85);
}
.pricing ul.checks li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #7fb6d9;
  font-weight: 700;
}

/* ---- Über mich ---- */
.about__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  grid-template-areas:
    "img head"
    "img body";
  column-gap: clamp(2.5rem, 6vw, 5rem);
  row-gap: 0;
}
.about__head { grid-area: head; align-self: end; }
.about__body { grid-area: body; align-self: start; }
.about__figure { grid-area: img; align-self: center; }
.about__figure { position: relative; margin: 0; }
.about__figure img {
  border-radius: var(--radius);
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.about__figure::before {
  content: "";
  position: absolute;
  inset: -1.4rem 1.4rem 1.4rem -1.4rem;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  z-index: -1;
}
.about__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}
.about__facts li {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 999px;
  padding: 0.45rem 1rem;
}

/* ---- Google Bewertungen ---- */
.reviews__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 1rem 0 0;
  color: var(--gray);
}
.reviews__stars {
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  color: #fbbc04;
  line-height: 1;
}
.reviews__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.review-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
}
.review-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: left;
  font-size: 0.98rem;
  color: var(--gray);
}
.review-card__stars { color: #fbbc04; letter-spacing: 0.15rem; margin-bottom: 0.75rem; }
.review-card__name { font-weight: 600; color: var(--ink); margin-top: 1rem; }

/* ---- FAQ ---- */
.faq { max-width: 46rem; margin-inline: auto; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.35rem 0;
}
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary {
  font-family: var(--font-head);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.2rem;
  padding: 1.15rem 2.5rem 1.15rem 0;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--blue);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details .faq__answer { padding: 0 0 1.4rem; color: var(--gray); }

/* ---- Termin / Kontakt ---- */
.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact__list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 1rem;
}
.contact__list a { font-weight: 600; }
.meetergo-wrap {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1rem, 2vw, 1.5rem);
  min-height: 480px;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding-block: 3rem;
  font-size: 0.95rem;
}
.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-footer img { width: 150px; height: 38px; }
.site-footer a { color: rgba(255, 255, 255, 0.85); }
.site-footer a:hover { color: #fff; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 1.5rem; }

/* ---- Zitat-Band ---- */
.big-quote {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding-top: 3.5rem;
}
.big-quote::before {
  content: "„";
  position: absolute;
  top: -3.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 7rem;
  line-height: 1;
  color: var(--blue);
  opacity: 0.25;
}
.big-quote p {
  font-size: clamp(1.25rem, 2.6vw, 1.65rem);
  line-height: 1.55;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 1.75rem;
}
.big-quote p strong { color: var(--blue); }
.big-quote footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}
.big-quote footer img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}
.big-quote footer cite {
  font-style: normal;
  font-family: var(--font-head);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  color: var(--gray);
}

/* ---- CTA-Zeile (Sektionsabschluss) ---- */
.cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.cta-row--center { justify-content: center; }
.micro-note { color: var(--gray); font-size: 0.92rem; margin: 0; }

/* ---- Fallbeispiel ---- */
.case-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 3rem);
}
.case-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding-bottom: clamp(1.5rem, 3vw, 2.25rem);
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.case-card__head h3 { margin: 0 0 0.35rem; font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
.case-card__link {
  font-weight: 600;
  font-size: 0.98rem;
}
.case-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 26rem;
  justify-content: flex-end;
}
.case-chips li {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
}
.case-ba {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: stretch;
}
.ba-panel {
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
}
.ba-panel--before { background: var(--bg-soft); border: 1px solid var(--line); }
.ba-panel--after {
  background: var(--bg);
  border: 1px solid rgba(18, 94, 138, 0.45);
  box-shadow: 0 14px 40px rgba(18, 94, 138, 0.08);
}
.ba-panel h4 {
  font-family: var(--font-head);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
  margin: 0 0 1rem;
}
.ba-panel--after h4 { color: var(--blue); }
.ba-panel ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.ba-panel li {
  color: var(--gray);
  font-size: 0.96rem;
  line-height: 1.55;
  padding-left: 1.2rem;
  position: relative;
}
.ba-panel--before li::before { content: "×"; position: absolute; left: 0; color: var(--gray-light); font-weight: 700; }
.ba-panel--after li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.ba-arrow {
  align-self: center;
  font-size: 2rem;
  color: var(--blue);
  font-weight: 700;
}
.case-card__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  border-top: 1px solid var(--line);
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
}
.case-quote { max-width: 34rem; }
.case-quote .review-card__stars { margin-bottom: 0.4rem; }
.case-quote p { margin: 0; color: var(--gray); font-size: 0.95rem; font-style: italic; }
.case-quote .case-quote__name {
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
  margin-top: 0.35rem;
  font-size: 0.9rem;
}

/* ---- Referenz-Hinweis unter Bewertungen ---- */
.reviews__note {
  text-align: center;
  color: var(--gray);
  font-size: 0.98rem;
  margin: 1.75rem 0 0;
}

/* ---- Unterseiten (Impressum / Datenschutz / Facts) ---- */
.legal-page { max-width: 46rem; margin-inline: auto; }
.legal-page h1 { font-size: clamp(2rem, 4vw, 2.75rem); }
.legal-page h2 { font-size: 1.4rem; margin-top: 2em; }

.facts-meta { font-size: 0.88rem; color: var(--gray); margin-bottom: 2rem; }
.facts-dl {
  display: grid;
  grid-template-columns: 220px 1fr;
  margin: 1.25rem 0 0;
  font-size: 0.98rem;
}
.facts-dl dt {
  font-weight: 600;
  color: var(--ink);
  padding: 0.6rem 1rem 0.6rem 0;
  border-bottom: 1px solid var(--line);
}
.facts-dl dd {
  margin: 0;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--gray);
}
.facts-dl dt:nth-last-of-type(1), .facts-dl dd:last-of-type { border-bottom: 0; }
.facts-note {
  font-size: 0.85rem;
  color: var(--gray-light);
  border-top: 1px solid var(--line);
  margin-top: 3rem;
  padding-top: 1.25rem;
}
@media (max-width: 600px) {
  .facts-dl { grid-template-columns: 1fr; }
  .facts-dl dt { border-bottom: 0; padding-bottom: 0.1rem; }
}

/* ---- Scroll-Reveal ---- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.is-visible { opacity: 1; transform: none; }
}

/* ---- Skip-Link ---- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--blue);
  color: #fff;
  padding: 0.75rem 1.25rem;
  z-index: 200;
}
.skip-link:focus { left: 0; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .pricing__grid, .contact__grid { grid-template-columns: 1fr; }
  .hero__grid {
    grid-template-columns: 1fr;
    grid-template-areas: "head" "img" "body";
    row-gap: 2rem;
  }
  .about__grid {
    grid-template-columns: 1fr;
    grid-template-areas: "head" "img" "body";
    row-gap: 2rem;
  }
  .about__body { margin-top: 0.5rem; }
  .hero__figure { max-width: 420px; }
  .about__figure { max-width: 380px; }
  .cards, .steps, .review-cards { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .case-ba { grid-template-columns: 1fr; }
  .ba-arrow { transform: rotate(90deg); justify-self: center; }
  .case-chips { justify-content: flex-start; max-width: none; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.25rem 1.25rem;
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a:not(.btn) { padding: 0.85rem 0; width: 100%; }
  .site-nav .btn { margin-top: 0.75rem; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .cards, .steps, .review-cards { grid-template-columns: 1fr; }
  .why-grid, .stats { grid-template-columns: 1fr; }
  .hero__figure::before, .about__figure::before { display: none; }
}
