/* ===========================================================
   Göz Gutachten — KFZ-Sachverständiger
   Brand system & layout · v3
   Display: Bricolage Grotesque · Body: Instrument Sans
   =========================================================== */

/* ===========================================================
   Selbst gehostete Schriften (latin-Subset, Variable Fonts)
   Keine externen Anfragen → keine Einwilligung erforderlich.
   =========================================================== */
@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("fonts/bricolage-grotesque.woff2") format("woff2");
}
@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/instrument-sans.woff2") format("woff2");
}
@font-face {
  font-family: "Instrument Sans";
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/instrument-sans-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Caveat";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/caveat.woff2") format("woff2");
}

:root {
  /* Brand colors (navy from business card, sharpened) */
  --navy:        #1E468B;
  --navy-deep:   #163774;
  --navy-900:    #0E2550;
  --navy-950:    #081636;
  --blue-mid:    #2E5BB0;
  --blue-bright: #3B73D6;

  /* Conversion accent — signal orange, only for CTAs & key facts */
  --accent:      #FF6B1A;
  --accent-deep: #E25608;
  --accent-soft: #FFF1E8;

  --silver:      #9AA6B8;
  --silver-2:    #C7CFDB;

  /* Warm-neutral paper tones — just off pure white, not beige */
  --bg:        #F7F6F2;
  --bg-tint:   #EFEDE7;
  --card:      #FFFEFB;
  --white:     #FFFFFF;
  --ink:       #1F2433;
  --ink-soft:  #424A5E;
  --muted:     #6E7180;
  --line:      #E6E2D9;

  --green:     #1C8A4C;
  --wa:        #25D366;

  /* Type */
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Instrument Sans", system-ui, sans-serif;
  --font-hand: "Caveat", cursive;

  /* Layout */
  --maxw: 1400px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(14, 37, 80, .06);
  --shadow-md: 0 14px 40px rgba(14, 37, 80, .12);
  --shadow-lg: 0 30px 80px rgba(8, 22, 54, .30);

  --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  /* faint paper grain over the warm base keeps light sections from feeling flat */
  background: var(--bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.06; letter-spacing: -0.015em; font-weight: 800; }
p { margin: 0; }
small { font-weight: 400; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
  display: inline-block;
}
.eyebrow.on-dark { color: #FFA266; }
.eyebrow.on-dark::before { background: var(--accent); }

/* ===== Buttons ===== */
.btn {
  --bg: var(--navy);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 15px 26px;
  border-radius: 12px;
  background: var(--bg);
  color: #fff;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(30,70,139,.32); }
.btn--accent {
  --bg: linear-gradient(180deg, var(--accent), var(--accent-deep));
  background: var(--bg);
  box-shadow: 0 8px 22px rgba(255,107,26,.34), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn--accent:hover { box-shadow: 0 14px 30px rgba(255,107,26,.45), inset 0 1px 0 rgba(255,255,255,.25); }
.btn--navy { background: var(--navy-900); }
.btn--ghost {
  background: transparent; color: var(--navy);
  border-color: rgba(30,70,139,.3);
}
.btn--ghost:hover { background: rgba(30,70,139,.06); box-shadow: none; }
.btn--glass {
  background: rgba(255,255,255,.12); color: #fff;
  border-color: rgba(255,255,255,.28);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.btn--glass:hover { background: rgba(255,255,255,.2); box-shadow: none; }
.btn--whatsapp { background: #1DA851; box-shadow: 0 8px 22px rgba(29,168,81,.3); }
.btn--whatsapp:hover { box-shadow: 0 14px 30px rgba(29,168,81,.42); }
.btn--block { width: 100%; }
.btn--xl { padding: 18px 30px; font-size: 17px; border-radius: 14px; }
.btn svg { width: 19px; height: 19px; flex: none; }

/* ===== Header ===== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .3s ease, box-shadow .3s ease, height .3s ease;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header.scrolled {
  background: rgba(253,252,249,.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
  height: 72px;
}

.brand { display: flex; align-items: center; gap: 14px; }
.brand__logo { display: block; height: 50px; width: auto; transition: filter .3s ease; }
/* Navy logo turns white on dark backgrounds (header at top, mobile drawer, footer) */
.site-header:not(.scrolled) .brand__logo { filter: brightness(0) invert(1); }
.mobile-nav .brand__logo,
.footer .brand__logo { filter: brightness(0) invert(1); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-weight: 500; font-size: 15.5px; padding: 9px 13px; border-radius: 9px;
  color: #fff; opacity: .92; transition: opacity .15s, background .15s, color .15s;
}
.nav a:hover { opacity: 1; background: rgba(255,255,255,.12); }
.site-header.scrolled .nav a { color: var(--ink-soft); }
.site-header.scrolled .nav a:hover { background: rgba(30,70,139,.07); color: var(--navy); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 16px; color: #fff; line-height: 1.15;
}
.header-phone small { display: block; font-size: 10.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; opacity: .7; }
.site-header.scrolled .header-phone { color: var(--navy); }
.header-phone svg { width: 19px; height: 19px; color: var(--accent); }

.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; transition: .25s; }
.site-header.scrolled .menu-toggle span { background: var(--ink); }

/* ===== Hero ===== */
.hero { position: relative; min-height: 100svh; display: flex; isolation: isolate; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -3; }
.hero__bg image-slot { width: 100%; height: 100%; }
.hero__overlay {
  position: absolute; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(900px 520px at 82% 88%, rgba(255,107,26,.16), transparent 65%),
    linear-gradient(180deg, rgba(6,16,40,.66) 0%, rgba(6,16,40,.42) 38%, rgba(6,16,40,.62) 70%, rgba(6,16,40,.92) 100%),
    linear-gradient(102deg, rgba(8,22,54,.92) 0%, rgba(8,22,54,.55) 46%, rgba(8,22,54,.12) 78%);
}
.hero__grain {
  position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.28'/%3E%3C/svg%3E");
}
.hero__inner {
  display: grid; grid-template-columns: 1.25fr .85fr; align-items: center;
  gap: clamp(32px, 5vw, 72px);
  padding-top: calc(var(--header-h) + clamp(28px, 5vh, 64px));
  padding-bottom: clamp(36px, 6vh, 72px);
  width: 100%;
}

.hero__pill {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: #fff;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px; padding: 9px 18px 9px 14px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  margin-bottom: 26px;
  max-width: 100%;
}
.hero__pill-dot {
  width: 9px; height: 9px; border-radius: 50%; background: #4ADE80; flex: none;
  box-shadow: 0 0 0 0 rgba(74,222,128,.6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,.55); }
  70%  { box-shadow: 0 0 0 9px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

.hero h1 {
  font-size: clamp(40px, 5.4vw, 68px);
  font-weight: 800; letter-spacing: -.025em; line-height: 1.02;
  text-wrap: balance;
}
.hero h1 em {
  font-style: normal; color: var(--accent);
  padding-bottom: .16em;
  /* hand-drawn underline stroke */
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'%3E%3Cpath d='M2 9C40 3 80 3 118 7s62 2 80-4' fill='none' stroke='%23FF6B1A' stroke-width='4' stroke-linecap='round' opacity='.85'/%3E%3C/svg%3E") left bottom / 100% .13em no-repeat;
}
.hero__lead {
  margin-top: 22px; font-size: clamp(17px, 1.5vw, 20px); line-height: 1.6;
  color: rgba(255,255,255,.88); max-width: 580px; text-wrap: pretty;
}
.hero__cta { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__trust {
  margin-top: 30px; display: flex; flex-direction: column; gap: 12px;
  font-size: 15.5px; color: rgba(255,255,255,.92); font-weight: 500;
}
.hero__trust-row { display: flex; gap: 10px 26px; flex-wrap: wrap; }
.hero__trust span { display: inline-flex; align-items: center; gap: 9px; max-width: 100%; }
.hero__trust svg { width: 17px; height: 17px; color: var(--accent); flex: none; }
.hero__scribble {
  display: inline-block; margin: 18px 0 0;
  font-family: var(--font-hand); font-weight: 600; font-size: 24px; line-height: 1.3;
  color: #FFD2B0; transform: rotate(-1.5deg);
}

/* Quickform card */
.quickform {
  background: rgba(255,254,251,.97);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
  padding: 0 clamp(22px, 2.4vw, 32px) 26px;
  position: relative;
  max-width: 460px; width: 100%; justify-self: end;
}
.quickform__badge {
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(120deg, var(--navy-900), var(--navy));
  color: #fff; font-size: 13.5px; font-weight: 600; line-height: 1.4;
  margin: 0 calc(clamp(22px, 2.4vw, 32px) * -1) 22px;
  padding: 14px clamp(22px, 2.4vw, 32px);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.quickform__badge svg { width: 26px; height: 26px; flex: none; color: var(--accent); }
.quickform__head h2 { font-size: 24px; font-weight: 800; color: var(--ink); }
.quickform__head p { margin-top: 7px; font-size: 14.5px; color: var(--muted); }
.quickform .qf-grid { margin-top: 18px; }

.qf-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; align-items: end; }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field label { font-size: 12.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-soft); }
.field label small { text-transform: none; letter-spacing: 0; color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 16px; color: var(--ink);
  padding: 13px 14px; border: 1.5px solid var(--line); border-radius: 11px;
  background: #fff; width: 100%; transition: border .15s, box-shadow .15s;
}
.field input::placeholder, .field textarea::placeholder { color: #9aa3b2; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,107,26,.18);
}
.col-2 { grid-column: span 2; }
.col-3 { grid-column: span 3; }
.col-4 { grid-column: span 4; }
.col-6 { grid-column: span 6; }
.col-12 { grid-column: span 12; }
.qf-note { margin-top: 14px; font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.qf-note svg { width: 15px; height: 15px; color: var(--navy); flex: none; }
.qf-success {
  display: none; align-items: center; gap: 14px; margin-top: 14px;
  background: #ECF6EE; border: 1px solid #BFE3C7; color: #1C5B2E;
  border-radius: 12px; padding: 16px 18px; font-size: 15.5px; font-weight: 500;
}
.qf-success.show { display: flex; }
.qf-success svg { width: 22px; height: 22px; flex: none; }
.qf-error {
  display: none; align-items: center; gap: 12px; margin-top: 14px;
  background: #FDECEC; border: 1px solid #F3C2C2; color: #9B1C1C;
  border-radius: 12px; padding: 14px 16px; font-size: 15px; font-weight: 500; line-height: 1.45;
}
.qf-error.show { display: flex; }
/* Honeypot: für Menschen unsichtbar, von Bots oft ausgefüllt */
.qf-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; }

/* ===== Ticker (service area) ===== */
.ticker {
  background: var(--navy-950); color: rgba(255,255,255,.55);
  overflow: hidden; padding: 13px 0; border-top: 1px solid rgba(255,255,255,.07);
  font-size: 14px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  white-space: nowrap;
}
.ticker__track { display: inline-flex; align-items: center; gap: 28px; animation: ticker 36s linear infinite; will-change: transform; }
.ticker__track i { font-style: normal; color: var(--accent); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } }

/* ===== Stats ===== */
.section--stats { padding: clamp(56px, 7vw, 92px) 0; background: var(--card); border-bottom: 1px solid var(--line); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 3vw, 48px); }
.stat { border-left: 3px solid var(--accent); padding-left: 22px; }
.stat b {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(38px, 4vw, 56px); line-height: 1; letter-spacing: -.03em; color: var(--navy-900);
}
.stat b sup { font-size: .45em; color: var(--accent); top: -.8em; position: relative; }
.stat span { display: block; margin-top: 10px; font-size: 15px; color: var(--muted); line-height: 1.5; }
.stats__footnote { margin-top: 34px; font-size: 13px; color: var(--muted); }

/* ===== Section scaffolding ===== */
.section { padding: clamp(72px, 9vw, 124px) 0; }
.section--tint { background: var(--bg-tint); }
.section--navy {
  background:
    radial-gradient(800px 500px at 88% 0%, rgba(59,115,214,.22), transparent 60%),
    linear-gradient(160deg, var(--navy-900), var(--navy-950));
  color: #fff;
}
/* subtle grain on dark sections — same texture as the hero */
.section--navy, .ctaband { position: relative; }
.section--navy::after, .ctaband::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.28'/%3E%3C/svg%3E");
  opacity: .35; mix-blend-mode: overlay;
}

/* Oversized ghost word behind a section */
.section--ghosted { position: relative; overflow: hidden; }
.section--ghosted .container { position: relative; z-index: 1; }
.section__ghost {
  position: absolute; top: 14px; right: -14px; z-index: 0;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(110px, 15vw, 230px); line-height: 1; letter-spacing: -.04em;
  color: transparent; -webkit-text-stroke: 1.5px rgba(30,70,139,.09);
  pointer-events: none; user-select: none; white-space: nowrap;
}
.section__head { max-width: 780px; margin-bottom: 52px; }
.section__head.center { margin-inline: auto; text-align: center; }
.section__head.center .eyebrow { justify-content: center; }
.section__head h2 { font-size: clamp(32px, 4vw, 50px); margin-top: 18px; color: var(--ink); text-wrap: balance; }
.section__head h2 em { font-style: normal; color: var(--accent); }
.section--navy .section__head h2 { color: #fff; }
.section__head p { margin-top: 18px; font-size: 19px; color: var(--muted); line-height: 1.6; text-wrap: pretty; }
.section--navy .section__head p { color: rgba(255,255,255,.78); }
h2 em, .about__body h2 em { font-style: normal; color: var(--accent); }

/* ===== Compare (loss aversion) ===== */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: stretch; }
.compare-card {
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 22px;
}
.compare-card__tag {
  display: inline-block; align-self: flex-start;
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  border-radius: 999px; padding: 7px 14px; margin-bottom: 14px;
}
.compare-card h3 { font-size: clamp(22px, 2.2vw, 28px); }
.compare-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; flex: 1; }
.compare-card li { display: flex; gap: 14px; align-items: flex-start; font-size: 16.5px; line-height: 1.55; }
.compare-card .x, .compare-card .tick {
  width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; flex: none; margin-top: 2px;
}
.compare-card .x svg, .compare-card .tick svg { width: 14px; height: 14px; }

.compare-card--neg {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.78);
}
.compare-card--neg h3 { color: rgba(255,255,255,.85); }
.compare-card--neg .compare-card__tag { background: rgba(255,255,255,.1); color: rgba(255,255,255,.65); }
.compare-card--neg .x { background: rgba(255,99,99,.16); color: #FF8585; }

.compare-card--pos {
  background: #fff; color: var(--ink-soft);
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
  position: relative;
  transform: translateY(-10px);
}
.compare-card--pos::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  border: 2px solid var(--accent); opacity: .9;
}
.compare-card--pos h3 { color: var(--ink); }
.compare-card--pos .compare-card__tag { background: var(--accent-soft); color: var(--accent-deep); }
.compare-card--pos .tick { background: #E5F4EA; color: var(--green); }
.compare-card--pos .btn { margin-top: 6px; }

/* ===== Services ===== */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px 32px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative; overflow: hidden;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--silver-2); }
.svc-card__icon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: var(--bg-tint); color: var(--navy); margin-bottom: 22px;
  transition: background .2s ease, color .2s ease;
}
.svc-card:hover .svc-card__icon { background: var(--navy); color: #fff; }
.svc-card__icon svg { width: 28px; height: 28px; }
.svc-card__euro { font-family: var(--font-display); font-weight: 800; font-size: 30px; line-height: 1; }
.svc-card h3 { font-size: 21px; font-weight: 700; letter-spacing: -.01em; }
.svc-card p { margin-top: 12px; font-size: 16px; color: var(--muted); line-height: 1.6; }
.svc-card__no { position: absolute; top: 22px; right: 26px; font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--silver-2); }
.svc-card--featured { border-color: rgba(255,107,26,.45); box-shadow: 0 8px 30px rgba(255,107,26,.1); }
.svc-card__flag {
  display: inline-block; background: var(--accent-soft); color: var(--accent-deep);
  font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  border-radius: 999px; padding: 5px 12px;
}
/* Featured card: icon and flag share one row, flag to the right of the icon */
.svc-card__head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; flex-wrap: wrap; }
.svc-card__head .svc-card__icon { margin-bottom: 0; }

/* ===== Showcase / Einblicke ===== */
.showcase {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px;
}
.showcase__item {
  margin: 0; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3;
  background: rgba(255,255,255,.06); box-shadow: var(--shadow-md);
  position: relative;
}
.showcase__item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.showcase__item::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.1);
}
.showcase__item:hover img { transform: scale(1.06); }

/* ===== Process / Ablauf ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step {
  position: relative; padding: 28px 26px 26px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.step__no {
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(180deg, var(--accent), var(--accent-deep)); color: #fff;
  box-shadow: 0 8px 18px rgba(255,107,26,.3);
}
.step h3 { font-size: 20px; font-weight: 700; color: var(--ink); }
.step p { margin-top: 11px; font-size: 15.5px; color: var(--muted); line-height: 1.6; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 50px; left: 100%; width: 26px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--silver-2) 0 5px, transparent 5px 10px);
}
.steps__cta {
  margin-top: 44px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 24px clamp(22px, 3vw, 36px); box-shadow: var(--shadow-sm);
}
.steps__cta p { font-size: 17px; font-weight: 600; color: var(--ink-soft); max-width: 560px; }

/* ===== About ===== */
.about { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.about--solo { display: block; }
.about--solo .about__body { max-width: 760px; margin: 0 auto; text-align: center; }
.about--solo .about__list { max-width: 560px; margin-left: auto; margin-right: auto; text-align: left; }
.about--solo .about__body > a { margin-left: auto; margin-right: auto; }
.about__media { position: relative; }
.about__media image-slot { display: block; width: 100%; height: 100%; }
.about__photo { position: relative; width: 100%; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 18px 18px 0 rgba(255,107,26,.16), var(--shadow-md); background: var(--bg-tint); }
.about__photo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(8,22,54,.08);
}
.about__badge {
  position: absolute; right: -22px; bottom: 30px;
  background: var(--navy-900); color: #fff; border-radius: 16px; padding: 18px 22px;
  box-shadow: var(--shadow-md); max-width: 240px;
  border-left: 4px solid var(--accent);
}
.about__badge b { font-family: var(--font-display); font-size: 17px; display: block; }
.about__badge span { font-size: 13.5px; color: rgba(255,255,255,.8); }
.about__body h2 { font-size: clamp(30px, 3.6vw, 46px); margin-top: 18px; }
.about__body > p { margin-top: 20px; font-size: 18px; color: var(--ink-soft); line-height: 1.7; }
.about__list { margin-top: 28px; display: grid; gap: 16px; padding: 0; }
.about__list li { list-style: none; display: flex; gap: 14px; align-items: flex-start; font-size: 16.5px; color: var(--ink-soft); }
.about__list .tick { width: 26px; height: 26px; border-radius: 8px; background: #E5F4EA; color: var(--green); display: grid; place-items: center; flex: none; margin-top: 1px; }
.about__list .tick svg { width: 15px; height: 15px; }
.about__sign {
  display: inline-block; margin-top: 26px;
  font-family: var(--font-hand); font-weight: 700; font-size: 36px; line-height: 1;
  color: var(--navy); transform: rotate(-2deg);
}

/* ===== Testimonials ===== */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote {
  margin: 0; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  /* slight tilt like pinned notes; `rotate` (not transform) so it survives
     the .reveal transform reset */
  rotate: -1deg;
  transition: rotate .25s ease, box-shadow .25s ease;
}
.quote:nth-child(2) { rotate: 1.1deg; }
.quote:nth-child(3) { rotate: -0.7deg; }
.quote:hover { rotate: 0deg; box-shadow: var(--shadow-md); }
.quote::before {
  content: "„"; position: absolute; top: 6px; right: 22px;
  font-family: var(--font-display); font-size: 86px; font-weight: 800; line-height: 1;
  color: var(--bg-tint); pointer-events: none;
}
.quote__stars { color: #F5A623; font-size: 17px; letter-spacing: 3px; }
.quote blockquote { margin: 0; font-size: 16px; line-height: 1.65; color: var(--ink-soft); position: relative; }
.quote figcaption { margin-top: auto; display: flex; flex-direction: column; gap: 2px; }
.quote figcaption b { font-family: var(--font-display); font-size: 15.5px; color: var(--ink); }
.quote figcaption span { font-size: 13.5px; color: var(--muted); }

/* ===== FAQ ===== */
.faq { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 5vw, 80px); align-items: start; }
.faq__intro h2 { font-size: clamp(28px, 3.2vw, 42px); margin-top: 18px; text-wrap: balance; }
.faq__intro p { margin-top: 16px; font-size: 17px; color: var(--muted); line-height: 1.65; }
.faq__list { display: grid; gap: 12px; }
.faq-item {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item[open] { border-color: rgba(255,107,26,.4); }
.faq-item summary {
  list-style: none; cursor: pointer; user-select: none;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  font-family: var(--font-display); font-weight: 700; font-size: 17.5px; color: var(--ink);
  padding: 20px 22px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__icon { position: relative; width: 22px; height: 22px; flex: none; }
.faq-item__icon::before, .faq-item__icon::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  background: var(--accent); border-radius: 2px; transition: transform .25s ease;
}
.faq-item__icon::before { width: 14px; height: 2.5px; }
.faq-item__icon::after { width: 2.5px; height: 14px; }
.faq-item[open] .faq-item__icon::after { transform: rotate(90deg); }
.faq-item__body { padding: 0 22px 22px; }
.faq-item__body p { font-size: 16px; color: var(--ink-soft); line-height: 1.65; }
.faq-item__body b { color: var(--accent-deep); }

/* ===== CTA band ===== */
.ctaband {
  background:
    radial-gradient(700px 400px at 12% 110%, rgba(255,107,26,.22), transparent 60%),
    linear-gradient(150deg, var(--navy-900), var(--navy-950));
  color: #fff; padding: clamp(64px, 8vw, 104px) 0;
}
.ctaband__inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.ctaband h2 { font-size: clamp(28px, 3.4vw, 44px); text-wrap: balance; }
.ctaband p { margin-top: 16px; font-size: 17.5px; color: rgba(255,255,255,.78); line-height: 1.65; max-width: 540px; }
.ctaband__actions { display: flex; flex-direction: column; gap: 14px; align-items: stretch; }
.ctaband__actions .btn { justify-content: center; }
.ctaband__hours { font-size: 13.5px; color: rgba(255,255,255,.55); text-align: center; }

/* ===== Contact ===== */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 70px); align-items: start; }
.contact__info .eyebrow { margin-bottom: 18px; }
.contact__info h2 { font-size: clamp(30px, 3.6vw, 46px); }
.contact__info > p { margin-top: 18px; font-size: 18px; color: var(--muted); max-width: 460px; line-height: 1.65; }
.contact__rows { margin-top: 34px; display: grid; gap: 4px; }
.crow { display: flex; align-items: center; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); transition: background .15s; }
.crow__icon { width: 48px; height: 48px; border-radius: 12px; background: var(--bg-tint); color: var(--navy); display: grid; place-items: center; flex: none; }
.crow__icon svg { width: 22px; height: 22px; }
.crow:hover .crow__icon { background: var(--navy); color: #fff; }
.crow__k { font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.crow__v { font-size: 18px; font-weight: 600; color: var(--ink); }
.contact__hours { margin-top: 26px; font-size: 15.5px; color: var(--ink-soft); }
.contact__hours b { font-family: var(--font-display); }

.contact-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 38px); box-shadow: var(--shadow-md);
  border-top: 4px solid var(--accent);
}
.contact-card h3 { font-size: 24px; font-weight: 800; }
.contact-card > p { margin-top: 8px; font-size: 15.5px; color: var(--muted); margin-bottom: 22px; }
.contact-card .qf-grid { gap: 14px; }

/* ===== Footer ===== */
.footer { background: var(--navy-950); color: rgba(255,255,255,.72); padding: 64px 0 28px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__about { margin-top: 20px; font-size: 15px; line-height: 1.65; max-width: 340px; }
.footer h4 { font-family: var(--font-display); font-size: 14px; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer__links { display: grid; gap: 11px; }
.footer__links a { font-size: 15px; transition: color .15s; }
.footer__links a:hover { color: #fff; }
.footer__contact { display: grid; gap: 12px; font-size: 15px; }
.footer__contact a { display: flex; gap: 11px; align-items: center; }
.footer__contact svg { width: 17px; height: 17px; color: var(--accent); flex: none; }
.footer__bottom { padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: rgba(255,255,255,.5); }
.footer__bottom a:hover { color: #fff; }

/* ===== Mobile sticky bar ===== */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  display: none; gap: 1px; background: var(--line);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(8,22,54,.16);
  padding-bottom: env(safe-area-inset-bottom);
}
.sticky-bar__btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 14.5px; font-weight: 700; padding: 15px 8px;
  background: #fff; color: var(--navy-900);
}
.sticky-bar__btn svg { width: 18px; height: 18px; flex: none; }
.sticky-bar__btn--call { color: var(--navy); }
.sticky-bar__btn--wa { color: #128C46; }
.sticky-bar__btn--form { background: linear-gradient(180deg, var(--accent), var(--accent-deep)); color: #fff; }

/* ===== WhatsApp floating widget ===== */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 56;
  display: flex; flex-direction: column; align-items: flex-end; gap: 14px;
}
.wa-float__btn {
  position: relative; width: 62px; height: 62px; border-radius: 50%; border: 0; cursor: pointer;
  background: linear-gradient(180deg, #2BD96A, #1DA851); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(29,168,81,.45);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float__btn:hover { transform: scale(1.08); box-shadow: 0 14px 34px rgba(29,168,81,.55); }
.wa-float__btn svg { width: 32px; height: 32px; }
.wa-float__btn::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,.45);
  animation: wa-pulse 2.4s infinite;
}
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.45); }
  70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.wa-float__badge {
  position: absolute; top: -3px; right: -3px;
  width: 23px; height: 23px; border-radius: 50%;
  background: #E5484D; color: #fff;
  font-size: 13px; font-weight: 700; line-height: 1;
  display: grid; place-items: center;
  border: 2.5px solid #fff;
}
.wa-float.seen .wa-float__badge { display: none; }

.wa-float__popup {
  width: min(340px, calc(100vw - 44px));
  background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(8,22,54,.3);
  opacity: 0; transform: translateY(14px) scale(.97); transform-origin: bottom right;
  pointer-events: none; visibility: hidden;
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
}
.wa-float.open .wa-float__popup {
  opacity: 1; transform: none; pointer-events: auto; visibility: visible;
}
.wa-float__head {
  display: flex; align-items: center; gap: 12px;
  background: linear-gradient(120deg, #128C46, #0E7A3C);
  color: #fff; padding: 15px 16px;
}
.wa-float__avatar {
  position: relative; width: 44px; height: 44px; flex: none; border-radius: 50%;
  background: linear-gradient(150deg, var(--navy), var(--navy-900));
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 16px;
}
.wa-float__avatar i {
  position: absolute; right: -1px; bottom: -1px;
  width: 12px; height: 12px; border-radius: 50%;
  background: #4ADE80; border: 2px solid #0E7A3C;
}
.wa-float__who { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.wa-float__who b { font-size: 15.5px; font-weight: 700; }
.wa-float__who span { font-size: 12px; opacity: .85; }
.wa-float__close {
  margin-left: auto; background: none; border: 0; cursor: pointer;
  color: rgba(255,255,255,.85); font-size: 24px; line-height: 1; padding: 4px 6px;
}
.wa-float__close:hover { color: #fff; }
.wa-float__body { background: var(--bg-tint); padding: 16px 16px 14px; }
.wa-float__msg {
  position: relative; background: #fff; border-radius: 4px 14px 14px 14px;
  padding: 13px 15px 22px; box-shadow: var(--shadow-sm);
  font-size: 14.5px; line-height: 1.55; color: var(--ink-soft);
  display: grid; gap: 8px;
}
.wa-float__time { position: absolute; right: 12px; bottom: 7px; font-size: 11px; color: var(--muted); }
.wa-float__cta {
  margin-top: 14px;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: linear-gradient(180deg, #2BD96A, #1DA851); color: #fff;
  font-weight: 700; font-size: 15.5px;
  border-radius: 12px; padding: 13px 16px;
  box-shadow: 0 8px 20px rgba(29,168,81,.3);
  transition: transform .18s ease, box-shadow .18s ease;
}
.wa-float__cta:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(29,168,81,.42); }
.wa-float__cta svg { width: 19px; height: 19px; flex: none; }
.wa-float__note { display: block; margin-top: 10px; text-align: center; font-size: 12px; color: var(--muted); }

@media (prefers-reduced-motion: reduce) { .wa-float__btn::before { animation: none; } }
/* mobile: sticky bar already carries the WhatsApp CTA — avoid doubling up */
@media (max-width: 1100px) { .wa-float { display: none; } }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ===== Mobile nav drawer ===== */
.mobile-nav {
  position: fixed; inset: 0; z-index: 60; background: var(--navy-950);
  display: flex; flex-direction: column; padding: 28px var(--gutter);
  transform: translateX(100%); transition: transform .3s ease; visibility: hidden;
}
.mobile-nav.open { transform: none; visibility: visible; }
.mobile-nav__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.mobile-nav__close { background: none; border: 0; color: #fff; font-size: 30px; cursor: pointer; line-height: 1; }
.mobile-nav a { color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 26px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-nav .btn { margin-top: 28px; font-size: 17px; }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 1160px) {
  .hero__inner { grid-template-columns: 1.1fr .9fr; }
}
@media (max-width: 1080px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }
  .quote-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  .hero { min-height: 0; }
  .hero__inner { grid-template-columns: 1fr; padding-top: calc(var(--header-h) + 36px); }
  .quickform { justify-self: stretch; max-width: 640px; }
}
@media (max-width: 1280px) {
  /* phone number is the widest header element — drop it first,
     the "Termin anfordern" button stays as primary CTA */
  .header-phone { display: none; }
}
@media (max-width: 1100px) {
  .nav, .header-actions .header-phone, .header-actions .btn { display: none; }
  .menu-toggle { display: block; }
  body { padding-bottom: 58px; }
  .sticky-bar { display: flex; }
}
@media (max-width: 900px) {
  /* allow long button labels to wrap so they can't force containers
     (hero column, quickform, contact-card) wider than the viewport */
  .btn { white-space: normal; }
  .hero__content, .quickform, .contact-card { min-width: 0; }
  .about { grid-template-columns: 1fr; }
  .about__media { max-width: 420px; }
  .about__badge { right: 16px; }
  .contact { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .compare-card--pos { transform: none; }
  .faq { grid-template-columns: 1fr; }
  .ctaband__inner { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .qf-grid { grid-template-columns: repeat(2, 1fr); }
  .col-3, .col-4, .col-6, .col-12, .qf-submit { grid-column: span 2; }
  .col-2 { grid-column: span 1; }
}
@media (max-width: 620px) {
  body { font-size: 17px; }
  .svc-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 28px; }
  .qf-grid { grid-template-columns: 1fr; }
  .col-2, .col-3, .col-4, .col-6, .col-12, .qf-submit { grid-column: span 1; }
  .hero__cta .btn { width: 100%; }
  .steps__cta { flex-direction: column; align-items: flex-start; }
  .steps__cta .btn { width: 100%; }
  /* hero pill wraps cleanly instead of being clipped at the edge */
  .hero__pill { align-items: flex-start; line-height: 1.35; border-radius: 16px; padding: 8px 15px; }
  .hero__pill-dot { margin-top: 5px; }
  /* trust badges: keep the check aligned to the first line when text wraps */
  .hero__trust span { align-items: flex-start; }
  .hero__trust svg { margin-top: 3px; }
  /* tighter rhythm + smaller media on phones */
  .section__head { margin-bottom: 32px; }
  .section__head p { font-size: 17px; }
  .svc-card { padding: 28px 24px 26px; }
  .showcase { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .ctaband__actions .btn { width: 100%; }
  .footer__bottom { flex-direction: column; gap: 8px; }
}
@media (max-width: 400px) {
  .brand__logo { height: 42px; }
  .hero h1 { font-size: 36px; }
  .btn--xl { font-size: 16px; padding: 16px 22px; }
  .showcase { grid-template-columns: 1fr; }
}

/* ===========================================================
   Datenschutz-Hinweis (schlanker Info-Banner)
   =========================================================== */
.cc {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  display: flex; justify-content: center;
  padding: 16px;
  transform: translateY(125%);
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.cc--open { transform: none; pointer-events: auto; }
.cc__card {
  width: 100%; max-width: 820px;
  background: var(--card); color: var(--ink);
  border: 1px solid var(--line); border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: clamp(18px, 2.6vw, 26px);
}
.cc__card--note { display: flex; align-items: center; gap: 22px; }
.cc__card--note .cc__body { flex: 1 1 auto; }
.cc__card--note .cc__actions { flex: none; }
.cc__title { font-family: var(--font-display); font-weight: 800; font-size: 18px; letter-spacing: -.01em; }
.cc__text { margin-top: 6px; font-size: 14px; line-height: 1.6; color: var(--ink-soft); }
.cc__text a { color: var(--navy); font-weight: 600; text-decoration: underline; }
.cc__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; align-items: center; }
.cc__btn {
  font-family: var(--font-body); font-weight: 700; font-size: 14.5px;
  padding: 12px 22px; border-radius: 10px; cursor: pointer;
  border: 1px solid transparent; white-space: nowrap;
  transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
}
.cc__btn:hover { transform: translateY(-1px); }
.cc__btn--ghost { background: #fff; color: var(--navy); border-color: rgba(30,70,139,.32); }
.cc__btn--ghost:hover { background: rgba(30,70,139,.06); }
.cc__btn--accept {
  background: linear-gradient(180deg, var(--accent), var(--accent-deep)); color: #fff;
  box-shadow: 0 8px 20px rgba(255,107,26,.3);
}
.cc__btn--accept:hover { box-shadow: 0 12px 26px rgba(255,107,26,.42); }
@media (max-width: 560px) {
  .cc { padding: 10px; }
  .cc__card--note { flex-direction: column; align-items: stretch; gap: 14px; }
  .cc__actions { justify-content: stretch; }
  .cc__btn { flex: 1 1 auto; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  .cc { transition: none; }
}

/* ===========================================================
   Rechtsseiten (Impressum / Datenschutz)
   =========================================================== */
.legal { padding: calc(var(--header-h) + 48px) 0 clamp(64px, 9vw, 110px); }
.legal .container { max-width: 880px; }
.legal__head { margin-bottom: 36px; }
.legal h1 { font-size: clamp(30px, 4.4vw, 46px); letter-spacing: -.02em; }
.legal__updated { margin-top: 12px; font-size: 14px; color: var(--muted); }
.legal__block {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); padding: clamp(24px, 3.4vw, 44px);
}
.legal h2 {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(20px, 2.4vw, 25px);
  color: var(--navy-900); margin: 40px 0 14px; letter-spacing: -.01em;
}
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin: 26px 0 8px; }
.legal p { font-size: 15.5px; line-height: 1.72; color: var(--ink-soft); margin-bottom: 14px; }
.legal ul { margin: 0 0 16px; padding-left: 22px; display: grid; gap: 7px; }
.legal li { font-size: 15.5px; line-height: 1.65; color: var(--ink-soft); }
.legal a { color: var(--navy); text-decoration: underline; word-break: break-word; }
.legal strong, .legal b { color: var(--ink); }
.legal__data { margin: 0 0 14px; line-height: 1.7; font-size: 15.5px; color: var(--ink-soft); }
.legal__data b { color: var(--ink); }
.legal__hr { border: 0; border-top: 1px solid var(--line); margin: 30px 0; }
.legal__back {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 30px; font-weight: 600; color: var(--navy); text-decoration: none;
}
.legal__back:hover { color: var(--accent-deep); }
.legal__back svg { width: 18px; height: 18px; }
