/*
Theme Name: Köpke KFZ-Sachverständigenbüro
Theme URI: https://sv-koepke.de
Author: serend.design
Author URI: https://serend.design
Description: WordPress-Theme für das unabhängige Kfz-Sachverständigenbüro Mike Köpke – One-Page-Website mit Kontaktformular, Impressum und Datenschutz.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: koepke-sv
*/

:root {
  --red: #981b28;
  --red-dark: #7e1521;
  --red-light: #e8908f;
  --dark: #1f2d31;
  --bg: #f5f3f0;
  --line: #ece8e2;
  --line-2: #e3ded7;
  --muted: #5a6b70;
  --body: #4d5b60;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

h1, h2, h3, h4 { font-family: 'Archivo', sans-serif; margin: 0; }

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--red-light); }

.section-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.06;
  letter-spacing: -.01em;
  color: var(--dark);
}

@keyframes kp-rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 16px 26px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-dark); }
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.6px solid rgba(255,255,255,.35);
  padding: 14px 24px;
}
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.btn--light { background: #fff; color: var(--red); }
.btn--light:hover { background: var(--dark); color: #fff; }
.btn--sm { font-size: 14px; padding: 13px 20px; letter-spacing: .04em; }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 16px rgba(31,45,49,.05);
}
.header__inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header__logo img { height: 48px; width: auto; }
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 15px;
}
.nav a { padding: 6px 0; }
.nav a:hover { color: var(--red); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--dark);
  color: #fff;
  overflow: hidden;
}
.hero__overlay {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  height: 135%;
  opacity: .4;
  pointer-events: none;
  user-select: none;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, var(--dark) 38%, rgba(31,45,49,.55) 75%, rgba(31,45,49,.2) 100%);
}
.hero__inner {
  position: relative;
  padding: 74px 28px 84px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.hero__text { animation: kp-rise .6s ease both; }
.hero__loc {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 22px;
}
.hero__loc::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--red);
}
.hero h1 {
  font-weight: 800;
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1.02;
  letter-spacing: -.01em;
  margin-bottom: 22px;
}
.hero h1 span { color: var(--red-light); }
.hero__lead {
  font-size: 18px;
  line-height: 1.6;
  color: #c3ccce;
  max-width: 520px;
  margin: 0 0 28px;
}
.checklist { display: flex; flex-direction: column; gap: 13px; }
.checklist--hero { margin-bottom: 34px; }
.check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
}
.check svg { flex: none; margin-top: 1px; }
.checklist--hero .check { color: #dfe5e6; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__media { position: relative; animation: kp-rise .7s ease .1s both; }

/* ---------- Media placeholder ---------- */
.media {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 12px, rgba(255,255,255,0) 12px 24px);
}
.media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.media__label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  text-align: center;
  padding: 10px 18px;
  letter-spacing: .02em;
}
.media--shadow { box-shadow: 0 16px 44px rgba(31,45,49,.16); }
.media--hero { box-shadow: 0 24px 60px rgba(0,0,0,.4); }

/* ---------- Trust ---------- */
.trust { background: var(--bg); border-bottom: 1px solid var(--line); }
.trust__grid {
  padding: 26px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.trust__item + .trust__item { border-left: 1px solid var(--line-2); }
.trust__big {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 30px;
  color: var(--red);
}
.trust__lead {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--dark);
  letter-spacing: .02em;
}
.trust__cap { font-size: 13.5px; color: var(--muted); font-weight: 600; }

/* ---------- Generic section ---------- */
.section { padding: 84px 0; }
.section--alt { background: var(--bg); border-top: 1px solid var(--line); }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.lead { font-size: 16.5px; line-height: 1.68; color: var(--body); }
.prose p { font-size: 16px; line-height: 1.7; color: var(--body); margin: 0 0 16px; }
.prose strong { color: var(--dark); }
.section-head { max-width: 720px; margin-bottom: 48px; }

.check--red svg path { stroke: var(--red); }
.checklist--dense { gap: 11px; }
.checklist--dense .check { font-size: 16px; color: var(--dark); }

/* ---------- Ablauf ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(31,45,49,.05);
}
.step .media { border-radius: 0; aspect-ratio: 16/10; }
.step__body { padding: 24px 24px 26px; }
.step__num {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 30px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 10px;
}
.step h3 { font-weight: 700; font-size: 19px; margin-bottom: 8px; color: var(--dark); }
.step p { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 0; }
.step--cta {
  background: var(--red);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 28px;
  box-shadow: 0 10px 28px rgba(152,27,40,.22);
}
.step--cta .step__num { color: rgba(255,255,255,.85); margin-bottom: 12px; }
.step--cta h3 { font-weight: 800; font-size: 21px; color: #fff; margin-bottom: 10px; }
.step--cta p { color: rgba(255,255,255,.9); font-size: 15px; margin-bottom: 18px; }

/* ---------- Service band ---------- */
.band { background: var(--dark); color: #fff; }
.band__grid {
  padding: 60px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.feature { text-align: center; display: flex; flex-direction: column; align-items: center; }
.feature__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(152,27,40,.18);
  border: 1.5px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature__icon span {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  color: var(--red-light);
  line-height: 1;
}
.feature h4 { font-weight: 700; font-size: 16.5px; margin-bottom: 7px; }
.feature p { font-size: 14px; line-height: 1.55; color: #aebbbe; margin: 0; }

/* ---------- About ---------- */
.about__media { position: relative; }
.about__media .media { aspect-ratio: 4/5; box-shadow: 0 20px 50px rgba(31,45,49,.18); }
.about__badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--red);
  color: #fff;
  padding: 20px 24px;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(152,27,40,.3);
}
.about__badge b { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 34px; line-height: 1; display: block; }
.about__badge span { font-size: 13px; font-weight: 600; letter-spacing: .02em; color: rgba(255,255,255,.9); }
.subhead { font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 18px; color: var(--red); margin: 0 0 22px; }
.about h2 { font-size: clamp(28px, 3.2vw, 42px); line-height: 1.08; letter-spacing: -.01em; margin-bottom: 8px; }
.quals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 22px;
  margin-top: 26px;
}
.quals .check { font-size: 15px; color: var(--dark); }
.quals .check svg { margin-top: 2px; }

/* ---------- Leistungen ---------- */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 6px 22px rgba(31,45,49,.05);
  transition: box-shadow .2s ease, transform .2s ease;
}
.card:hover { box-shadow: 0 14px 34px rgba(31,45,49,.1); transform: translateY(-2px); }
.card__head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.card__icon {
  width: 46px; height: 46px;
  border-radius: 8px;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.card h3 { font-weight: 700; font-size: 21px; color: var(--dark); }
.card p { font-size: 15px; line-height: 1.65; color: var(--muted); margin: 0; }

/* ---------- Difference (dark) ---------- */
.diff { position: relative; background: var(--dark); color: #fff; overflow: hidden; }
.diff__overlay {
  position: absolute;
  left: -120px;
  top: 50%;
  transform: translateY(-50%) scaleX(-1);
  height: 150%;
  opacity: .3;
  pointer-events: none;
}
.diff__inner {
  position: relative;
  padding: 74px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.diff h2 { font-size: clamp(30px, 3.4vw, 44px); line-height: 1.06; letter-spacing: -.01em; margin-bottom: 18px; }
.diff__lead { font-size: 16.5px; line-height: 1.65; color: #bcc7c9; margin: 0 0 26px; max-width: 460px; }
.diff__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 22px; }
.diff__grid .check { font-size: 15.5px; color: #dfe5e6; }

/* ---------- FAQ ---------- */
.faq { max-width: 880px; }
.faq__head { text-align: center; margin-bottom: 44px; }
.faq__list {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(31,45,49,.06);
}
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:last-child { border-bottom: none; }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 22px 26px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--dark);
}
.faq__icon {
  flex: none;
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--red);
  line-height: 1;
  transition: transform .25s ease;
}
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__a {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .3s ease, opacity .3s ease;
}
.faq__item.open .faq__a { max-height: 260px; opacity: 1; }
.faq__a p { margin: 0; padding: 0 26px 22px; font-size: 15.5px; line-height: 1.68; color: var(--muted); }

/* ---------- Contact ---------- */
.contact { background: var(--red); color: #fff; }
.contact__inner {
  padding: 72px 28px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.contact h2 { font-size: clamp(30px, 3.4vw, 46px); line-height: 1.04; letter-spacing: -.01em; margin-bottom: 16px; }
.contact__lead { font-size: 17px; line-height: 1.6; color: rgba(255,255,255,.92); margin: 0 0 28px; max-width: 480px; }
.contact__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.contact__actions .btn--ghost { border-color: rgba(255,255,255,.5); }
.contact__card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  padding: 30px 32px;
}
.contact__row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.contact__row:last-child { border-bottom: none; }
.contact__row svg { flex: none; }
.contact__row small {
  display: block;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.contact__row b { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 17px; }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: #fff; }
.footer__inner {
  padding: 64px 28px 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}
.footer__logo {
  background: #fff;
  display: inline-block;
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.footer__logo img { height: 42px; }
.footer p { font-size: 15px; line-height: 1.65; color: #9fadb0; margin: 0; max-width: 340px; }
.footer h4 {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__col { display: flex; flex-direction: column; gap: 11px; font-size: 15px; color: #9fadb0; }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  max-width: 1240px;
  margin: 48px auto 0;
  padding: 22px 28px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  font-size: 13.5px;
  color: #7e8d90;
}
.footer__bottom .links { display: flex; gap: 22px; }
.footer__bottom a:hover { color: #fff; }

/* ---------- Offcanvas / Drawer ---------- */
.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(31,45,49,.5);
  backdrop-filter: blur(2px);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.backdrop.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(430px, 93vw);
  background: #fff;
  z-index: 100;
  box-shadow: -12px 0 44px rgba(0,0,0,.22);
  transform: translateX(100%);
  transition: transform .34s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 28px;
  border-bottom: 1px solid var(--line);
  flex: none;
}
.drawer__head h2 { font-weight: 800; font-size: 23px; color: var(--dark); line-height: 1.1; }
.drawer__head p { font-size: 14px; color: var(--muted); margin: 4px 0 0; }
.drawer__close {
  flex: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: var(--bg);
  color: var(--dark);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.drawer__close:hover { background: var(--line); }
.drawer__body {
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  overflow-y: auto;
}
.wa-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #25D366;
  color: #fff;
  border-radius: 8px;
  padding: 16px 20px;
}
.wa-btn:hover { background: #1da851; }
.wa-btn b { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 16px; display: block; }
.wa-btn span { font-size: 14px; opacity: .92; }
.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #9aa6a9;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--line-2); }
.form { display: flex; flex-direction: column; gap: 18px; }
.field label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 7px;
}
.field input, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #d8d3cc;
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  color: var(--dark);
  outline: none;
}
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--red); }
.toggle { display: flex; gap: 10px; }
.toggle button {
  flex: 1;
  text-align: center;
  cursor: pointer;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 12px;
  border-radius: 6px;
  border: 1.5px solid #d8d3cc;
  background: #fff;
  color: var(--dark);
  transition: all .15s ease;
}
.toggle button.active { background: var(--red); color: #fff; border-color: var(--red); }
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-feedback {
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.5;
}
.form-feedback--success {
  background: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #a5d6a7;
}
.form-feedback--error {
  background: #ffebee;
  color: #b71c1c;
  border: 1px solid #ef9a9a;
}
.btn:disabled { opacity: .65; cursor: not-allowed; }

/* ---------- Responsive ---------- */
/* ---------- Legal pages (Impressum, Datenschutz) ---------- */
.legal {
  padding: 72px 0 96px;
  background: var(--bg);
}
.legal__inner {
  max-width: 760px;
}
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--red);
  margin-bottom: 28px;
}
.legal__back:hover { color: var(--red-dark); }
.legal__content {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 48px 56px;
}
.legal__content h1 {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  margin-bottom: 12px;
}
.legal__updated {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 36px;
}
.legal__content h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 36px 0 14px;
  color: var(--dark);
}
.legal__content h2:first-of-type { margin-top: 0; }
.legal__content p,
.legal__content li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--body);
}
.legal__content p { margin: 0 0 14px; }
.legal__content ul {
  margin: 0 0 14px;
  padding-left: 22px;
}
.legal__content li { margin-bottom: 6px; }
.legal__content a { color: var(--red); text-decoration: underline; }
.legal__content a:hover { color: var(--red-dark); }
.legal__content address {
  font-style: normal;
  line-height: 1.75;
  margin-bottom: 14px;
}

@media (max-width: 960px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: #fff;
    padding: 16px 28px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(31,45,49,.08);
  }
  .nav.open a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: flex; }
  .header__cta { display: none; }
  .hero__inner, .split, .diff__inner, .contact__inner { grid-template-columns: 1fr; }
  .hero__media, .about__media { order: -1; max-width: 460px; }
  .steps, .band__grid, .cards { grid-template-columns: 1fr 1fr; }
  .trust__grid { grid-template-columns: 1fr 1fr; gap: 22px 14px; }
  .trust__item:nth-child(3) { border-left: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .container { padding: 20px 20px; }
  .section { padding: 60px 0; }
  .hero__inner { padding: 52px 20px 64px; }
  .steps, .band__grid, .cards, .quals, .diff__grid, .footer__inner, .trust__grid { grid-template-columns: 1fr; }
  .trust__item + .trust__item { border-left: none; padding-top: 14px; border-top: 1px solid var(--line-2); }
  .about__badge { left: 0; }
  .legal__content { padding: 32px 24px; }
}

.step .media {
  display: none;
}

[data-open-drawer] svg {
  height: 20px;
  flex-shrink: 0;
}

/* ---------- Mobile fixed CTA ---------- */
.mobile-cta {
  display: none;
}

@media (max-width: 960px) {
  body.home {
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    padding: 12px 20px calc(12px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, .97);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 28px rgba(31, 45, 49, .12);
    backdrop-filter: blur(10px);
    transition: transform .28s ease, opacity .28s ease;
  }

  .mobile-cta__btn {
    width: 100%;
    justify-content: center;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  body.is-drawer-open .mobile-cta {
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
  }
}
