/* ==========================================================================
   Empax – Stylesheet
   Apple-inspiriertes, helles Design. Reines CSS, keine Abhängigkeiten.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design-Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Seitenhintergrund: heller, neutraler Verlauf mit leichtem Lila-Ton */
  --bg: #eef0fb;
  --bg-top: #fafbff;
  --bg-mid: #edeffa;
  --bg-deep: #e3e6f6;
  /* Flächen, die auf dem Hintergrund liegen (Karten, Formularfelder) */
  --surface: #ffffff;

  --white: #ffffff;
  --grey-bg: #f5f5f7;
  --grey-deep: #e8e8ed;
  --ink: #1d1d1f;
  --ink-soft: #5a5a63;
  --ink-faint: #6b6b78;
  --line: rgba(0, 0, 0, 0.1);

  --blue: #0071e3;
  --blue-hover: #0077ed;
  --blue-ink: #0062c9; /* dunkleres Blau für Text/Links auf farbigem Grund */
  --blue-soft: #e8f2fd;

  --amber: #f5a623;
  --green: #34a853;
  --violet: #6b5bd2;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-pill: 980px;

  --nav-h: 48px;
  --maxw: 1024px;
  --maxw-wide: 1220px;

  --ease: cubic-bezier(0.28, 0.11, 0.32, 1);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* --------------------------------------------------------------------------
   2. Reset & Grundlagen
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.47059;
  letter-spacing: -0.022em;
  color: var(--ink);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Hintergrundverlauf als eigene Ebene – zuverlässiger als
   background-attachment: fixed (iOS-Safari). */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(175deg, var(--bg-top) 0%, var(--bg-mid) 46%, var(--bg-deep) 100%);
  pointer-events: none;
}

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

a { color: var(--blue-ink); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.07;
}

p { margin: 0; }

ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 6px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -60px; left: 12px;
  z-index: 2000;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; text-decoration: none; }

/* --------------------------------------------------------------------------
   3. Layout-Helfer
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}
.wrap--wide { max-width: var(--maxw-wide); }

.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--grey { background: var(--grey-bg); }
.section--grey,
.footer { box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.05), inset 0 -1px 0 rgba(0, 0, 0, 0.05); }

.eyebrow {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink-faint);
  text-transform: none;
  margin-bottom: 12px;
}

.headline-xl {
  font-size: clamp(40px, 7.2vw, 80px);
  font-weight: 700;
  letter-spacing: -0.035em;
}
.headline-lg {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.033em;
}
.headline-md {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
}
.headline-sm {
  font-size: clamp(21px, 2.2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.lede {
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.014em;
  color: var(--ink-soft);
  font-weight: 400;
}

.body-text { color: var(--ink-soft); font-size: 17px; line-height: 1.6; }

.center { text-align: center; }
.measure { max-width: 720px; margin-inline: auto; }

/* --------------------------------------------------------------------------
   4. Buttons & Links
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.022em;
  cursor: pointer;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease),
    border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn:hover { text-decoration: none; }
.btn:active { transform: scale(0.97); }

.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-hover); }

.btn--secondary {
  background: transparent;
  color: var(--blue-ink);
  border-color: var(--blue-ink);
}
.btn--secondary:hover { background: var(--blue-ink); color: #fff; }

.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
}
.btn-row--start { justify-content: flex-start; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 17px;
  color: var(--blue-ink);
  white-space: nowrap;
}
.link-arrow::after {
  content: "›";
  font-size: 20px;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform 0.2s var(--ease);
}
.link-arrow:hover { text-decoration: none; }
.link-arrow:hover::after { transform: translate(3px, -1px); }

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 18px;
}

/* --------------------------------------------------------------------------
   5. Navigation
   -------------------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(224, 227, 242, 0.86);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  max-width: var(--maxw-wide);
  height: 100%;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.brand:hover { text-decoration: none; }
.brand__logo {
  height: 36px;
  width: auto;
  display: block;
  border-radius: 6px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav__link {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  opacity: 0.85;
  transition: opacity 0.2s var(--ease);
}
.nav__link:hover { opacity: 1; text-decoration: none; }
.nav__link.is-active { font-weight: 600; opacity: 1; }

.nav__cta {
  font-size: 13px;
  padding: 6px 14px;
  min-height: 0;
}

.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  margin-right: -8px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 17px;
  height: 1.5px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav__toggle span + span { margin-top: 5px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__toggle { display: block; }
  .nav__menu {
    display: block;
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    height: calc(100dvh - var(--nav-h));
    background: rgba(250, 251, 255, 0.985);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    padding: 24px 22px 48px;
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s var(--ease), transform 0.28s var(--ease),
      visibility 0.28s;
  }
  .nav__menu.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list li { border-bottom: 1px solid var(--line); }
  .nav__link {
    display: block;
    padding: 16px 2px;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
  }
  .nav__cta { margin-top: 26px; width: 100%; font-size: 17px; padding: 12px 22px; min-height: 44px; }
  body.nav-open { overflow: hidden; }
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 88px 0 76px;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(130% 95% at 50% -10%, rgba(255,255,255,0.95) 0%, rgba(244,245,253,0.6) 45%, rgba(255,255,255,0) 100%);
}
.hero__inner { position: relative; z-index: 2; }
.hero .lede { margin: 20px auto 0; max-width: 640px; }

.hero--page {
  padding: 72px 0 60px;
  background: radial-gradient(130% 105% at 50% -10%, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0) 100%);
}

.hero__glow {
  position: absolute;
  inset: auto 0 -40% 0;
  height: 70%;
  background: radial-gradient(55% 65% at 50% 100%, rgba(84, 96, 214, 0.16), transparent 72%);
  pointer-events: none;
  z-index: 1;
}

.hero__stage {
  position: relative;
  z-index: 2;
  margin-top: 44px;
  display: flex;
  justify-content: center;
}

/* Gradient-Badge (Farbakzent statt Bild) */
.pill-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 30px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 15px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: -0.01em;
}
.pill__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
}
.pill__dot--amber { background: var(--amber); }
.pill__dot--green { background: var(--green); }
.pill__dot--violet { background: var(--violet); }

/* --------------------------------------------------------------------------
   7. Produkt-Kacheln (Apple-Style Grid)
   -------------------------------------------------------------------------- */
.tiles {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}
.tiles--3 { grid-template-columns: repeat(3, 1fr); }

.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 52px 28px 44px;
  border-radius: var(--radius-lg);
  background: var(--grey-bg);
  overflow: hidden;
  min-height: 460px;
}
.tile--span2 { grid-column: span 2; }
.tile--ink { background: #101014; color: #fff; }
.tile--ink .tile__sub { color: rgba(255, 255, 255, 0.66); }
.tile--tint-taxi { background: linear-gradient(170deg, #fff8e6 0%, #ffeec2 100%); }
.tile--tint-vend { background: linear-gradient(170deg, #eef3ff 0%, #dbe6ff 100%); }
.tile--tint-shop { background: linear-gradient(170deg, #edfaf1 0%, #d6f0e0 100%); }

.tile__eyebrow {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-faint);
  margin-bottom: 8px;
}
.tile__title {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.tile__sub {
  margin-top: 12px;
  font-size: 19px;
  line-height: 1.42;
  color: var(--ink-soft);
  max-width: 30ch;
}
.tile .link-row { margin-top: 16px; }
.tile__art {
  margin-top: auto;
  padding-top: 32px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.tile__art svg, .tile__art img { width: min(280px, 78%); height: auto; }

@media (max-width: 860px) {
  .tiles, .tiles--3 { grid-template-columns: 1fr; }
  .tile--span2 { grid-column: auto; }
  .tile { min-height: 400px; padding: 44px 22px 36px; }
}

/* --------------------------------------------------------------------------
   8. Feature-Reihen
   -------------------------------------------------------------------------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.feature + .feature { margin-top: 88px; }
.feature--flip .feature__media { order: -1; }
.feature__media {
  border-radius: var(--radius-lg);
  background: var(--grey-bg);
  padding: 44px;
  display: grid;
  place-items: center;
  min-height: 300px;
}
.feature__media--tint { background: linear-gradient(160deg, #eef3ff, #e2ecff); }
.feature h3 { margin-bottom: 14px; }
.feature p + p { margin-top: 14px; }

@media (max-width: 860px) {
  .feature { grid-template-columns: 1fr; gap: 28px; }
  .feature--flip .feature__media { order: 0; }
  .feature + .feature { margin-top: 56px; }
}

/* --------------------------------------------------------------------------
   9. Karten & Listen
   -------------------------------------------------------------------------- */
.cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(218px, 1fr));
  align-items: stretch;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.section--grey .card { background: var(--surface); border-color: transparent; }
.card:hover { transform: translateY(-3px); box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08); }
.card__icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
  margin-bottom: 16px;
}
.card__icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 20px; margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: 16px; line-height: 1.55; }

.checklist { display: grid; gap: 14px; margin-top: 22px; }
.checklist li {
  position: relative;
  padding-left: 32px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.5;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* Kennzahlen */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat__value {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.035em;
  background: linear-gradient(120deg, #0062c9, #5b4bc4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label { color: var(--ink-soft); font-size: 16px; margin-top: 6px; }

/* Preis-/Info-Tabelle */
.table-wrap { overflow-x: auto; margin-top: 28px; -webkit-overflow-scrolling: touch; }
table.info {
  width: 100%;
  min-width: 460px;
  border-collapse: collapse;
  font-size: 16px;
}
table.info th, table.info td {
  text-align: left;
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
}
table.info th { font-weight: 600; color: var(--ink); }
table.info td { color: var(--ink-soft); }
table.info th:nth-child(2), table.info td:nth-child(2),
table.info th:nth-child(3), table.info td:nth-child(3) { width: 110px; white-space: nowrap; }

/* Akkordeon */
.faq { max-width: 760px; margin-inline: auto; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 6px 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 34px 18px 0;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: var(--blue-ink);
  transition: transform 0.25s var(--ease);
}
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 0 20px; color: var(--ink-soft); line-height: 1.6; }

/* --------------------------------------------------------------------------
   10. Banner / CTA
   -------------------------------------------------------------------------- */
.cta-banner {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #0071e3 0%, #6b5bd2 100%);
  color: #fff;
  padding: 64px 40px;
  text-align: center;
}
.cta-banner p { margin: 14px auto 0; max-width: 560px; color: rgba(255, 255, 255, 0.85); font-size: 19px; }
.cta-banner .btn--dark { background: #fff; color: var(--ink); }
.cta-banner .btn--dark:hover { background: rgba(255, 255, 255, 0.88); }

/* --------------------------------------------------------------------------
   11. Kontakt
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-list { display: grid; gap: 26px; margin-top: 28px; }
.contact-list dt { font-size: 14px; font-weight: 600; color: var(--ink-faint); margin-bottom: 4px; }
.contact-list dd { margin: 0; font-size: 19px; letter-spacing: -0.02em; }

.form { display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  padding: 13px 15px;
  border: 1px solid #d2d2d7;
  border-radius: var(--radius-sm);
  background: var(--surface);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  width: 100%;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-ink);
  box-shadow: 0 0 0 4px rgba(0, 98, 201, 0.18);
}
.form__note { font-size: 13px; color: var(--ink-faint); line-height: 1.5; }
.form__status { font-size: 14px; font-weight: 600; line-height: 1.5; min-height: 1em; }
.form__status--ok { color: #1a7f37; }
.form__status--error { color: #d3232f; }

/* Sichtbare Markierung für noch offene Angaben.
   Ist alles eingetragen: diesen Block löschen. */
.placeholder {
  background: #fff6d6;
  border-bottom: 1px dashed #d9a400;
  padding: 0 3px;
  border-radius: 3px;
}
.btn--primary .placeholder,
.btn--dark .placeholder,
.cta-banner .placeholder {
  background: rgba(255, 255, 255, 0.2);
  border-bottom-color: rgba(255, 255, 255, 0.7);
  color: inherit;
}
.cta-banner .btn--dark .placeholder {
  background: #fff6d6;
  border-bottom-color: #d9a400;
}

/* --------------------------------------------------------------------------
   12. Rechtstexte
   -------------------------------------------------------------------------- */
.legal { max-width: 760px; margin-inline: auto; }
.legal h2 { font-size: 27px; margin: 48px 0 14px; }
.legal h3 { font-size: 20px; margin: 30px 0 10px; }
.legal p, .legal li { color: var(--ink-soft); line-height: 1.65; font-size: 17px; }
.legal p + p { margin-top: 14px; }
.legal ul { list-style: disc; padding-left: 22px; margin-top: 12px; display: grid; gap: 8px; }

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--grey-bg);
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.5;
  padding: 40px 0 28px;
  border-top: 1px solid var(--line);
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 30px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.footer h4 { font-size: 12px; color: var(--ink); margin-bottom: 12px; }
.footer__cols li + li { margin-top: 9px; }
.footer a { color: var(--ink-soft); }
.footer a:hover { color: var(--ink); }
.footer__base {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  justify-content: space-between;
  padding-top: 20px;
  color: var(--ink-faint);
}
.footer__base ul { display: flex; flex-wrap: wrap; gap: 8px 20px; }

/* --------------------------------------------------------------------------
   14. Scroll-Reveal
   -------------------------------------------------------------------------- */
/* Nur animieren, wenn JavaScript aktiv ist – sonst bleibt alles sichtbar. */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* --------------------------------------------------------------------------
   15. Feinschliff Mobile
   -------------------------------------------------------------------------- */
@media (max-width: 620px) {
  .section { padding: 64px 0; }
  .cta-banner { padding: 48px 24px; }
  .btn-row { gap: 10px; }
  .btn { width: 100%; }
  .btn-row .btn { flex: 1 1 100%; }
}
