/* ============================================================
   MAIN SITE — Marcel Kohlmeier Coaching
   Stand: 2026-06
   ============================================================ */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --gold:           #c8a96a;
  --gold-light:     #dfc08a;
  --gold-deep:      #9a7738;
  --gold-on-light:  #6b4f10;
  --gold-soft:      rgba(200,169,106,.12);
  --gold-border:    rgba(200,169,106,.30);
  --gold-frame:     rgba(200,169,106,.55);

  --anth-950: #1b1a1a;
  --anth-800: #252323;
  --anth-700: #302d2d;
  --anth-600: #3d3a3a;
  --anth-500: #4e4b4b;
  --anth-300: #8a8787;

  --warm-white: #fdfcfa;
  --cream-50:   #f9f6f1;
  --cream-100:  #f2ede4;
  --cream-200:  #e8ddd0;

  --ink:   #1e1d1d;
  --ink-2: #302d2d;
  --muted: #595656;

  --shadow:     0 20px 52px rgba(28,26,26,.10);
  --shadow-sm:  0 4px 16px rgba(28,26,26,.07);
  --shadow-gold:0 8px 32px rgba(200,169,106,.18);
  --ease: cubic-bezier(.22,1,.36,1);
  --r: 6px;
  --r-lg: 10px;
  --container: 1440px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Nunito Sans', system-ui, sans-serif;
  background: var(--warm-white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: clamp(72px, 9vw, 116px) 0; }
.section-tight { padding: clamp(52px, 6vw, 80px) 0; }
.section-center { max-width: 740px; margin-inline: auto; }

/* ============================================================
   TYPOGRAFIE
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
.eyebrow-light { color: var(--gold-on-light); }
.eyebrow-gold  { color: var(--gold); }

.h1 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 32px;
}
.h1 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(42px, 5.2vw, 72px);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -.03em;
  line-height: 1.06;
  display: block;
  margin-top: .5em;
}

.h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.025em;
  color: var(--ink);
  margin-bottom: 20px;
}
.h2 em { font-style: italic; color: var(--gold); }
.h2--dark { color: var(--warm-white); }
.h2--dark em { color: var(--gold-light); }

.lead {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.72;
  color: var(--anth-500);
  max-width: 560px;
}
.lead--dark { color: rgba(253,252,250,.80); max-width: 560px; }
.lead--center { max-width: 580px; margin-inline: auto; text-align: center; }

.micro {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .02em;
}
.micro--dark { color: rgba(253,252,250,.45); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .07em;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  text-decoration: none;
  transition:
    background-color .22s var(--ease),
    color            .22s var(--ease),
    border-color     .22s var(--ease),
    transform        .25s var(--ease),
    box-shadow       .30s var(--ease),
    letter-spacing   .22s var(--ease);
}
.btn-arrow { display: inline-block; transition: transform .28s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-primary {
  padding: 15px 32px;
  background: var(--gold);
  color: var(--anth-950);
  box-shadow: 0 2px 0 rgba(0,0,0,.10);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,169,106,.38), 0 2px 6px rgba(200,169,106,.18);
  letter-spacing: .09em;
}
.btn-primary:active { transform: translateY(0); box-shadow: 0 2px 0 rgba(0,0,0,.10); }

.btn-ghost-light {
  padding: 14px 30px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(253,252,250,.80);
}
.btn-ghost-light:hover {
  border-color: rgba(255,255,255,.45);
  color: var(--warm-white);
  background: rgba(255,255,255,.05);
}

.btn-ghost {
  padding: 14px 30px;
  background: transparent;
  border: 1px solid var(--cream-200);
  color: var(--ink-2);
}
.btn-ghost:hover {
  border-color: rgba(28,26,26,.28);
  background: rgba(28,26,26,.03);
  color: var(--ink);
}

.btn-lg { padding: 17px 38px; font-size: 14px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(27,26,26,.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(200,169,106,.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.nav-logo img { height: 28px; width: auto; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--warm-white);
  padding-top: clamp(48px, 5vw, 72px);
  overflow: hidden;
}
.hero-center {
  padding: clamp(36px, 4vw, 56px) clamp(20px, 5vw, 60px) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.hero-center .eyebrow {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.hero-center .h1 {
  text-align: center;
  width: 100%;
  max-width: 960px;
}
.hero-center .lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(17px, 1.6vw, 22px);
  max-width: 640px;
}
.hero-center .hero-cta-row {
  justify-content: center;
  width: 100%;
}
.hero-center .trust-bar {
  justify-content: center;
  width: 100%;
}
.hero-img-block {
  width: min(900px, 100%);
  margin-inline: auto;
  margin-top: 56px;
  transform: scale(0.88);
  transform-origin: center center;
  will-change: transform;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.hero-lead-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-on-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .18s;
}
.hero-lead-link:hover { color: var(--gold-deep); }
.hero-lead-link svg { opacity: .65; }

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--cream-200);
  flex-wrap: wrap;
}
.trust-item strong {
  display: block;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--ink);
  line-height: 1;
}
.trust-item span { font-size: 11px; color: var(--muted); letter-spacing: .03em; margin-top: 3px; display: block; }
.trust-sep { width: 1px; height: 32px; background: var(--cream-200); flex-shrink: 0; }

.hero-img {
  width: 100%;
  height: clamp(400px, 52vh, 640px);
  object-fit: cover;
  object-position: center 15%;
  border-radius: 14px 14px 0 0;
  display: block;
}

/* ============================================================
   PROBLEM
   ============================================================ */
.problem-list { margin-top: 48px; }
.problem-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--cream-200);
}
.problem-item:first-child { border-top: 1px solid var(--cream-200); }
.problem-item strong {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.30;
}
.problem-item p { font-size: 15px; line-height: 1.72; color: var(--anth-500); }

.bridge {
  margin-top: 44px;
  padding: 28px 32px;
  border-radius: var(--r-lg);
  border-left: 3px solid var(--gold);
  background: var(--cream-100);
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.60;
  color: var(--ink-2);
}

/* ============================================================
   REFRAME (dark)
   ============================================================ */
.reframe-wrap {
  max-width: 680px;
  margin-inline: auto;
}
.reframe-body {
  font-size: 17px;
  line-height: 1.78;
  color: rgba(253,252,250,.78);
  margin-top: 16px;
}

.belief-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.belief-card {
  background: var(--anth-700);
  border: 1px solid var(--anth-600);
  border-radius: var(--r-lg);
  padding: 28px 24px;
}
.belief-card::before {
  content: "\201C";
  display: block;
  font-family: 'Instrument Serif', serif;
  font-size: 44px;
  color: var(--gold);
  line-height: .7;
  margin-bottom: 16px;
}
.belief-card p {
  font-size: 15px;
  font-style: italic;
  color: rgba(253,252,250,.75);
  line-height: 1.60;
}

/* ============================================================
   LÖSUNG / VALUE STACK
   ============================================================ */
.solution-intro {
  font-size: 17px;
  line-height: 1.72;
  color: var(--anth-500);
  margin-top: 12px;
  max-width: 640px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.value-card {
  background: var(--warm-white);
  border: 1px solid var(--cream-200);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 40px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 22px;
  opacity: .70;
}
.value-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.25;
}
.value-body { font-size: 15px; line-height: 1.70; color: var(--anth-500); }

.exclusion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 52px;
  padding-top: 44px;
  border-top: 1px solid var(--cream-200);
}
.excl-card { border-radius: var(--r-lg); padding: 24px 28px; }
.excl-card--no  { background: rgba(28,26,26,.03); border: 1px solid var(--cream-200); }
.excl-card--yes { background: var(--gold-soft); border: 1px solid var(--gold-border); }
.excl-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.excl-card--no  .excl-label { color: var(--muted); }
.excl-card--yes .excl-label { color: var(--gold-on-light); }
.excl-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.excl-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
}
.excl-card--no  .excl-list li { color: var(--muted); }
.excl-card--yes .excl-list li { color: var(--ink-2); }
.excl-list li::before {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 13px;
  font-weight: 700;
}
.excl-card--no  .excl-list li::before { content: "–"; color: var(--muted); }
.excl-card--yes .excl-list li::before { content: "✓"; color: var(--gold-on-light); }

/* ============================================================
   GUIDE / VERTRAUEN (dark)
   ============================================================ */
.guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.guide-img-wrap { position: relative; display: block; }
.guide-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r-lg);
  display: block;
}
.guide-img-wrap::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid var(--gold-frame);
  border-radius: calc(var(--r-lg) + 7px);
  pointer-events: none;
}
.guide-img-wrap::after {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(200,169,106,.22);
  border-radius: calc(var(--r-lg) + 13px);
  pointer-events: none;
}
.guide-img-outer { padding: 18px; }

.guide-story {
  font-size: 16px;
  line-height: 1.78;
  color: rgba(253,252,250,.78);
  margin-bottom: 36px;
}
.guide-story + .guide-story { margin-top: -18px; }
.guide-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: .50;
  margin: 32px 0;
}

.auth-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.auth-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: rgba(253,252,250,.78);
  line-height: 1.55;
}
.auth-dot {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-dot::after {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
}

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.proof-number-wrap {
  text-align: center;
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--cream-200);
}
.proof-number {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(52px, 8vw, 88px);
  color: var(--gold-on-light);
  line-height: 1;
  display: block;
}
.proof-number-label { font-size: 14px; color: var(--muted); margin-top: 10px; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--warm-white);
  border: 1px solid var(--cream-200);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.testi-card--placeholder {
  border-style: dashed;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 180px;
  gap: 8px;
}
.testi-bar { width: 28px; height: 2px; background: var(--gold); margin-bottom: 18px; }
.testi-quote {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.60;
  color: var(--ink);
  margin-bottom: 20px;
}
.testi-quote::before { content: "\201C"; color: var(--gold); }
.testi-quote::after  { content: "\201D"; color: var(--gold); }
.testi-name { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.testi-role { font-size: 12px; color: var(--muted); margin-top: 3px; }
.testi-placeholder-label { font-size: 12px; color: var(--muted); font-style: italic; }

.proof-result {
  margin-top: 48px;
  padding: 32px 36px;
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  text-align: center;
}
.proof-result-big {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(40px, 6vw, 60px);
  color: var(--gold-on-light);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.proof-result p { font-size: 15px; color: var(--anth-500); line-height: 1.60; }

/* ============================================================
   TRANSFORMATION
   ============================================================ */
.transform-wrap {
  margin-top: 48px;
  border: 1px solid var(--cream-200);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.transform-grid { display: grid; grid-template-columns: 1fr 1fr; }
.transform-col--before { border-right: 1px solid var(--cream-200); }

.transform-head {
  padding: 16px 24px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 1px solid;
}
.transform-col--before .transform-head {
  background: var(--cream-100);
  color: var(--muted);
  border-bottom-color: var(--cream-200);
}
.transform-col--after .transform-head {
  background: var(--anth-800);
  color: var(--gold);
  border-bottom-color: var(--anth-700);
}

.transform-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 24px;
  font-size: 14px;
  line-height: 1.50;
  border-bottom: 1px solid;
}
.transform-item:last-child { border-bottom: none; }
.transform-col--before .transform-item {
  color: var(--anth-500);
  border-bottom-color: var(--cream-200);
  background: var(--warm-white);
}
.transform-col--after .transform-item {
  color: rgba(253,252,250,.78);
  border-bottom-color: var(--anth-700);
  background: var(--anth-800);
}
.transform-col--before .transform-item::before {
  content: "–";
  color: var(--muted);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}
.transform-col--after .transform-item::before {
  content: "✓";
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   PROZESS / PLAN
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 52px;
  border: 1px solid var(--cream-200);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.process-step {
  padding: 36px 28px;
  border-right: 1px solid var(--cream-200);
  background: var(--warm-white);
  transition: background .20s;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--cream-50); }
.process-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 44px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 22px;
  opacity: .65;
}
.process-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.25;
}
.process-body { font-size: 14px; line-height: 1.70; color: var(--anth-500); }
.process-cta { text-align: center; margin-top: 44px; }

/* ============================================================
   FINALER CTA
   ============================================================ */
.cta-section {
  background: var(--anth-950);
  background-image: radial-gradient(ellipse 60% 80% at 15% 50%, rgba(200,169,106,.10), transparent 65%);
}
.cta-inner { max-width: 680px; margin-inline: auto; text-align: center; }
.cta-body {
  font-size: 17px;
  line-height: 1.78;
  color: rgba(253,252,250,.75);
  margin: 28px 0 36px;
}
.cta-body + .cta-body { margin-top: -12px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 740px; margin-inline: auto; margin-top: 52px; }
.faq-item { border-bottom: 1px solid var(--cream-200); }
.faq-item:first-child { border-top: 1px solid var(--cream-200); }

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  line-height: 1.35;
  transition: color .18s;
}
.faq-btn:hover { color: var(--gold-on-light); }
.faq-btn[aria-expanded="true"] { color: var(--gold-on-light); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--cream-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--muted);
  line-height: 1;
  transition: transform .25s var(--ease), border-color .18s, color .18s;
}
.faq-btn:hover .faq-icon,
.faq-btn[aria-expanded="true"] .faq-icon {
  border-color: var(--gold-border);
  color: var(--gold-on-light);
}
.faq-btn[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .36s var(--ease);
}
.faq-answer-inner {
  padding-bottom: 24px;
  font-size: 15px;
  line-height: 1.74;
  color: var(--anth-500);
}
.faq-cta { text-align: center; margin-top: 44px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--anth-950);
  border-top: 1px solid rgba(200,169,106,.15);
  padding: 52px 0 36px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.footer-logo img { height: 28px; width: auto; opacity: .80; }
.footer-links {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer-links a { font-size: 12px; color: var(--anth-300); transition: color .15s; }
.footer-links a:hover { color: var(--warm-white); }
.footer-copy {
  font-size: 12px;
  color: var(--anth-500);
  padding-top: 24px;
  border-top: 1px solid var(--anth-700);
  text-align: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .belief-grid   { grid-template-columns: 1fr; gap: 14px; }
  .testi-grid    { grid-template-columns: 1fr; }
  .value-grid    { grid-template-columns: 1fr; }
  .exclusion     { grid-template-columns: 1fr; }
  .process-grid  { grid-template-columns: 1fr; border: none; gap: 16px; }
  .process-step  { border-right: none; border: 1px solid var(--cream-200); border-radius: var(--r-lg); }
}

@media (max-width: 768px) {
  .hero-center { padding-left: 0; padding-right: 0; }
  .hero-img-block { width: 100%; }
  .hero-img { border-radius: var(--r-lg); height: 340px; }

  .guide-grid { grid-template-columns: 1fr; }
  .guide-img-outer { padding: 16px; }
  .guide-img-wrap::before { inset: -4px; }
  .guide-img-wrap::after  { inset: -8px; }
  .guide-img { aspect-ratio: 4/3; }

  .transform-grid { grid-template-columns: 1fr; }
  .transform-col--before { border-right: none; border-bottom: 2px solid var(--anth-800); }

  .trust-sep { display: none; }
  .trust-bar { gap: 16px; }

  .footer-inner { justify-content: center; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .wrap { width: calc(100% - 32px); }
  .section { padding: clamp(52px, 8vw, 72px) 0; }
  .hero-img { height: 280px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
  .proof-number { font-size: 52px; }
  .process-step { padding: 24px 20px; }
  .bridge { padding: 22px 20px; font-size: 16px; }
}
