/* ════════════════════════════════════════════════════════════════════
   Suisse Homes – Online-Bewertung
   Design-Tokens: identisch mit suisse-homes.ch (Elementor Global Styles)
   ════════════════════════════════════════════════════════════════════ */

/* Mulish Variable Font (400–800), selbst gehostet */
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/mulish-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/mulish-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  /* Farben = e-global-colors von suisse-homes.ch */
  --primary:        #B73C2B;
  --primary-dark:   #8C2D20;
  --secondary:      #EDE4D7;
  --cream:          #F9F6F1;
  --cream-2:        #F7F3F0;
  --text:           #1E1E1E;
  --text-soft:      #4A4A4A;
  /* #787878 der Hauptseite fällt bei kleinen Schriften unter AA (4.42:1) –
     leicht abgedunkelt für 5.2:1 auf Weiss, 4.8:1 auf Cream */
  --text-muted:     #6A6A6A;
  --gold:           #C4A87A;      /* nur dekorativ (Icons, Sterne, Ränder) */
  --gold-text:      #8A6A35;      /* Gold als TEXT: 5.0:1 auf Weiss (AA) */
  --white:          #FFFFFF;
  --line:           #E8E0D4;
  --error:          #A93226;

  --font: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius:     7px;   /* Buttons – wie Hauptseite */
  --radius-md:  12px;
  --radius-lg:  16px;

  --shadow-sm:  0 2px 10px rgba(30, 30, 30, .06);
  --shadow-md:  0 10px 34px rgba(30, 30, 30, .10);
  --shadow-lg:  0 22px 60px rgba(30, 30, 30, .14);

  --container:  1180px;
}

/* ── Reset ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  /* Ancres (#bewertung, #ablauf) : ne pas glisser sous le header sticky */
  scroll-padding-top: 104px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

/* hidden gewinnt immer – auch gegen display:inline-flex der Buttons */
[hidden] { display: none !important; }

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

h1, h2, h3 { font-weight: 800; line-height: 1.18; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.65rem, 3.4vw, 2.35rem); }
h3 { font-size: 1.12rem; }

h1 em { font-style: italic; color: var(--gold); }
.hero h1 em { color: var(--gold-text); }

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

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; }
.center { text-align: center; margin-top: 44px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--primary); color: #fff; padding: 10px 18px; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ── Buttons (exakt wie suisse-homes.ch) ───────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font); font-size: 15px; font-weight: 600; letter-spacing: .3px;
  padding: 15px 30px; border-radius: var(--radius);
  border: 2px solid transparent; cursor: pointer;
  transition: background-color .22s ease, color .22s ease, border-color .22s ease, transform .15s ease;
  text-align: center;
}
.btn:active { transform: translateY(1px); }

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

.btn-outline-light {
  background: transparent; border-color: rgba(255, 255, 255, .85); color: #fff;
}
.btn-outline-light:hover { background: rgba(255, 255, 255, .14); border-color: #fff; color: #fff; }

/* Umriss-Button auf hellem Grund (Hero) */
.btn-outline-dark {
  background: rgba(255, 255, 255, .7); border-color: var(--text); color: var(--text);
}
.btn-outline-dark:hover { background: var(--text); border-color: var(--text); color: #fff; }

.btn-light { background: #fff; border-color: #fff; color: var(--primary); }
.btn-light:hover { background: var(--cream); border-color: var(--cream); color: var(--primary-dark); }

.btn-ghost { background: transparent; color: var(--text-soft); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--text-muted); color: var(--text); }

.btn-sm { padding: 10px 20px; font-size: 14px; white-space: nowrap; }
.btn-lg { padding: 17px 36px; font-size: 16px; }

.btn[disabled] { opacity: .6; cursor: wait; }

/* ── Eyebrow / Section-Head ────────────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 14px;
}
.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head p { margin-top: 14px; color: var(--text-soft); }

section { padding: 92px 0; }

/* ── Header ────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 13px; padding-bottom: 13px; gap: 26px;
}
.header-logo { flex-shrink: 0; }
.header-logo img { width: 164px; height: auto; }

.header-actions { display: flex; align-items: center; gap: 18px; }

/* Hauptnavigation mit Dropdowns */
.main-nav { flex: 1; }
.main-nav > ul { list-style: none; display: flex; align-items: center; gap: 4px; }
.main-nav > ul > li { position: relative; }
.main-nav a, .main-nav button {
  display: inline-flex; align-items: center; gap: 6px;
  font: inherit; font-size: 15px; font-weight: 700; color: var(--text);
  background: none; border: 0; cursor: pointer;
  padding: 10px 13px; border-radius: 8px; white-space: nowrap;
}
.main-nav a:hover, .main-nav button:hover { color: var(--primary); background: var(--cream); }
.main-nav button svg { transition: transform .2s ease; color: var(--text-muted); }
.nav-drop:hover button svg, .nav-drop:focus-within button svg { transform: rotate(180deg); }

.nav-sub {
  list-style: none; position: absolute; top: calc(100% + 6px); left: 0; min-width: 240px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-lg); padding: 8px; z-index: 60;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav-drop:hover .nav-sub, .nav-drop:focus-within .nav-sub, .nav-drop.is-open .nav-sub {
  opacity: 1; visibility: visible; transform: none;
}
.nav-sub a { display: block; width: 100%; padding: 10px 13px; font-weight: 600; border-radius: 8px; }

/* Kompakter Sprach-Dropdown */
.lang-drop { position: relative; }
.lang-drop > button {
  display: inline-flex; align-items: center; gap: 6px;
  font: inherit; font-size: 13px; font-weight: 800; letter-spacing: .05em;
  color: var(--text-soft); background: none; border: 1px solid var(--line);
  border-radius: 8px; padding: 8px 11px; cursor: pointer;
}
.lang-drop > button:hover { color: var(--primary); border-color: var(--secondary); background: var(--cream); }
.lang-sub {
  list-style: none; position: absolute; top: calc(100% + 6px); right: 0; min-width: 74px;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  box-shadow: var(--shadow-lg); padding: 6px; z-index: 60;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.lang-drop:hover .lang-sub, .lang-drop:focus-within .lang-sub, .lang-drop.is-open .lang-sub {
  opacity: 1; visibility: visible; transform: none;
}
.lang-sub a {
  display: block; text-align: center; padding: 8px 10px; border-radius: 7px;
  font-size: 13px; font-weight: 800; letter-spacing: .05em; color: var(--text-soft);
}
.lang-sub a:hover { background: var(--cream); color: var(--primary); }

.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14.5px; font-weight: 700; color: var(--text); white-space: nowrap;
}
.header-phone:hover { color: var(--primary); }

/* Burger (nur mobil) */
.nav-burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px;
  background: none; border: 1px solid var(--line); border-radius: 9px; cursor: pointer;
}
.nav-burger span {
  display: block; height: 2.5px; border-radius: 2px; background: var(--text);
  transition: transform .25s ease, opacity .2s ease;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile-Menü */
.mobile-nav {
  position: fixed; top: var(--header-h, 72px); left: 0; right: 0; bottom: 0; z-index: 99;
  background: #fff; overflow-y: auto; padding: 22px 24px 30px;
  display: flex; flex-direction: column; gap: 8px;
}
.mobile-nav-group {
  font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-muted); margin: 16px 0 4px;
}
.mobile-nav ul { list-style: none; }
.mobile-nav ul a {
  display: block; padding: 11px 2px; font-size: 17px; font-weight: 700; color: var(--text);
  border-bottom: 1px solid var(--cream-2);
}
.mobile-nav ul a:hover { color: var(--primary); }
.mobile-nav-single { margin-top: 16px; }
.mobile-nav-foot { margin-top: auto; display: flex; flex-direction: column; gap: 12px; padding-top: 26px; }
.mobile-nav-foot .btn { width: 100%; }
.mobile-nav-langs { display: flex; gap: 8px; justify-content: center; margin-bottom: 4px; }
.mobile-nav-langs a {
  flex: 1; text-align: center; padding: 10px; border: 1px solid var(--line); border-radius: 9px;
  font-size: 14px; font-weight: 800; letter-spacing: .05em; color: var(--text-soft);
}
.mobile-nav-langs a[aria-current] { border-color: var(--primary); color: var(--primary); background: var(--cream-2); }
body.nav-open { overflow: hidden; }

/* Mobile: fixer CTA unten */
.sticky-cta {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .96); backdrop-filter: blur(8px);
  border-top: 1px solid var(--line); box-shadow: 0 -6px 24px rgba(30, 30, 30, .08);
}
.sticky-cta .btn { width: 100%; }

/* ── Hero ──────────────────────────────────────────────────────────── */
.hero { position: relative; padding: 0; color: var(--text); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg picture { display: block; width: 100%; height: 100%; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
/* Heller Hero: weisser Schleier statt dunklem, Text in Anthrazit.
   Links dicht genug für sicheren Kontrast, rechts fast transparent,
   damit Haus und türkises Wasser sichtbar bleiben. */
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, .93) 4%, rgba(255, 255, 255, .80) 46%, rgba(255, 255, 255, .34) 100%),
    linear-gradient(to bottom, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, 0) 30%);
}
.hero-inner :is(h1, .hero-sub, .hero-checks, .hero-eyebrow) {
  /* zarter heller Schein: hebt dunkle Schrift über Bilddetails ab */
  text-shadow: 0 1px 2px rgba(255, 255, 255, .85);
}
.hero-inner { position: relative; z-index: 2; padding: 128px 24px 96px; max-width: var(--container); }
.hero-eyebrow { color: var(--primary); }
.hero h1 { max-width: 15ch; text-wrap: balance; }
.hero-sub { margin: 22px 0 34px; max-width: 52ch; font-size: 1.16rem; color: var(--text-soft); }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* Adresse direkt im Hero */
.hero-search { position: relative; max-width: 620px; margin-top: 4px; }
.hero-search-row {
  background: #fff; border: 2px solid var(--line); border-radius: 12px;
  padding: 6px 6px 6px 18px; gap: 10px;
  box-shadow: 0 12px 32px rgba(30, 24, 16, .14);
}
.hero-search-row:focus-within { border-color: var(--primary); box-shadow: 0 12px 32px rgba(30, 24, 16, .20); }
.hero-search-row input { padding: 13px 0; font-size: 16.5px; color: var(--text); }
.hero-search-row .btn { flex-shrink: 0; padding: 13px 22px; }
.hero-search .ac-list { color: var(--text); text-align: left; }
.hero-cta-row { margin-top: 18px; }

.hero-checks { list-style: none; display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 36px; }
.hero-checks li { display: flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 600; }
.hero-checks svg { color: var(--primary); flex-shrink: 0; }

.hero-strip { position: relative; z-index: 1; background: rgba(255, 255, 255, .88); backdrop-filter: blur(6px); border-top: 1px solid var(--line); }
.hero-strip-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  padding-top: 22px; padding-bottom: 22px;
}
.hero-stat { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 2px; }
.hero-stat strong { font-size: 1.25rem; font-weight: 800; }
.hero-stat .stars { color: var(--gold-text); letter-spacing: 2px; }
.hero-stat span { font-size: 13.5px; color: var(--text-muted); }

/* ── Trustbar ──────────────────────────────────────────────────────── */
.trustbar { background: var(--cream); padding: 34px 0; border-bottom: 1px solid var(--line); }
.trustbar-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item svg { color: var(--primary); flex-shrink: 0; }
.trust-item strong { display: block; font-size: 15px; }
.trust-item span { font-size: 13.5px; color: var(--text-muted); }

/* ── Formular ──────────────────────────────────────────────────────── */
.form-section { background: var(--white); }

.form-card {
  max-width: 860px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 34px 38px 30px;
}

.form-progress { margin-bottom: 30px; }
.form-progress-label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13.5px; font-weight: 700; margin-bottom: 9px;
}
#progressStep { color: var(--text-muted); }
#progressTitle { color: var(--primary); text-transform: uppercase; letter-spacing: .12em; font-size: 12.5px; }
.form-progress-track { height: 6px; background: var(--cream-2); border-radius: 99px; overflow: hidden; }
.form-progress-bar {
  height: 100%; background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 99px; transition: width .4s cubic-bezier(.55, 0, .3, 1);
}

.form-step { border: 0; display: none; animation: stepIn .35s ease; }
.form-step.is-active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }

.step-question { font-size: 1.35rem; font-weight: 800; margin-bottom: 6px; }
.step-hint { color: var(--text-muted); font-size: 15px; margin-bottom: 22px; }

.step-error { display: block; color: var(--error); font-size: 14.5px; font-weight: 600; margin-top: 14px; }
.step-error[hidden] { display: none; }

/* Adresse / Autocomplete */
.address-wrap { position: relative; }
.address-input-row {
  display: flex; align-items: center; gap: 12px;
  border: 2px solid var(--line); border-radius: 10px;
  padding: 0 18px; background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.address-input-row:focus-within { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(183, 60, 43, .1); }
.address-input-row svg { color: var(--primary); flex-shrink: 0; }
.address-input-row input {
  flex: 1; border: 0; outline: none; font: inherit; padding: 17px 0;
  background: transparent; min-width: 0;
}
.address-input-row.is-loading::after {
  content: ''; width: 18px; height: 18px; flex-shrink: 0;
  border: 2.5px solid var(--line); border-top-color: var(--primary);
  border-radius: 50%; animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.ac-list {
  position: absolute; z-index: 30; left: 0; right: 0; top: calc(100% + 6px);
  list-style: none; background: #fff; border: 1px solid var(--line);
  border-radius: 10px; box-shadow: var(--shadow-lg); overflow: hidden;
}
.ac-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 16px; cursor: pointer; font-size: 15.5px;
}
.ac-list li svg { color: var(--text-muted); flex-shrink: 0; }
.ac-list li:hover, .ac-list li.is-focused {
  background: var(--cream-2);
  box-shadow: inset 3px 0 0 var(--primary); /* nicht nur Farbe: 3:1-Indikator */
}
.ac-list li.is-focused svg, .ac-list li:hover svg { color: var(--primary); }
.ac-list .ac-empty { color: var(--text-muted); cursor: default; }
.ac-list .ac-empty:hover { background: none; }
.ac-list b, .ac-list .highlight { font-weight: 800; }

.parcel-note {
  display: flex; align-items: center; gap: 8px;
  margin-top: 16px; font-size: 13.5px; color: var(--text-muted);
}
.parcel-note svg { color: var(--gold); flex-shrink: 0; }

/* Karte + Chips */
.parcel-map {
  height: 380px; border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--line); background: var(--cream-2);
}
.map-fallback {
  display: flex; align-items: center; justify-content: center; height: 100%;
  padding: 24px; text-align: center; color: var(--text-soft); font-size: 15px;
}
.parcel-info { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; min-height: 38px; }

.parcel-chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--cream-2); border: 1px solid var(--secondary);
  border-radius: 99px; padding: 7px 15px;
  font-size: 13.5px; font-weight: 700; color: var(--text);
}
.parcel-chip svg { color: var(--primary); flex-shrink: 0; }
.parcel-chip span { color: var(--text-muted); font-weight: 600; }

/* Typ-Karten */
.type-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.type-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  border: 2px solid var(--line); border-radius: var(--radius-md);
  padding: 22px 10px 18px; cursor: pointer; text-align: center;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
  color: var(--text-soft); font-size: 14.5px; font-weight: 700;
}
.type-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.type-card input { position: absolute; opacity: 0; pointer-events: none; }
.type-card svg { color: var(--text-muted); transition: color .18s ease; }
.type-card:has(input:checked) {
  border-color: var(--primary); background: var(--cream-2); color: var(--text);
}
.type-card:has(input:checked) svg { color: var(--primary); }
.type-card:has(input:focus-visible) { outline: 3px solid var(--primary); outline-offset: 2px; }

/* Felder */
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.field label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 7px; }
.field .optional { font-weight: 600; color: var(--text-muted); font-size: 12.5px; }
.field input, .field select {
  width: 100%; font: inherit; font-size: 16px;
  border: 2px solid var(--line); border-radius: 10px;
  padding: 13px 15px; background: #fff; color: var(--text);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(183, 60, 43, .1);
}
.field input.is-invalid, .field select.is-invalid { border-color: var(--error); }
.field-note {
  display: flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: var(--gold-text); font-weight: 700; margin-top: 6px;
}
.field-note svg { color: var(--gold); }
.field-note-neutral { color: var(--text-muted); font-weight: 600; }
.field-note-neutral svg { color: var(--text-muted); }

/* Kontaktpräferenz-Chips */
.pref-group { margin-top: 18px; }
.pref-label { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.pref-label .optional { font-weight: 600; color: var(--text-muted); font-size: 12.5px; }
.pref-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.pref-chip { cursor: pointer; }
.pref-chip input { position: absolute; opacity: 0; pointer-events: none; }
.pref-chip span {
  display: inline-block; padding: 9px 18px; border-radius: 99px;
  border: 2px solid var(--line); font-size: 14px; font-weight: 700; color: var(--text-soft);
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.pref-chip:hover span { border-color: var(--gold); }
.pref-chip:has(input:checked) span { border-color: var(--primary); background: var(--cream-2); color: var(--text); }
.pref-chip:has(input:focus-visible) span { outline: 3px solid var(--primary); outline-offset: 2px; }


/* Pflicht-Chipgruppe im Fehlerzustand (Ausbaustandard) */
.pref-group.is-invalid .pref-label { color: var(--error); }
.pref-group.is-invalid .pref-chip span { border-color: var(--error); }
.pref-group[hidden] { display: none !important; }
.field-reno-year { margin-top: 14px; max-width: 320px; }

/* Willkommen-zurück-Banner */
.resume-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  background: var(--cream-2); border: 1px solid var(--secondary); border-radius: 10px;
  padding: 12px 16px; margin-bottom: 22px; font-size: 14.5px; font-weight: 600;
}
.resume-actions { display: flex; align-items: center; gap: 14px; }
.resume-restart {
  background: none; border: 0; cursor: pointer; font: inherit;
  font-size: 13.5px; font-weight: 700; color: var(--text-muted); text-decoration: underline;
}
.resume-restart:hover { color: var(--primary); }
.field[hidden] { display: none; }

/* Plan-Karten */
.plan-list { display: flex; flex-direction: column; gap: 12px; }
.plan-card {
  display: flex; align-items: center; gap: 16px;
  border: 2px solid var(--line); border-radius: var(--radius-md);
  padding: 18px 20px; cursor: pointer;
  transition: border-color .18s ease, background .18s ease;
}
.plan-card:hover { border-color: var(--gold); }
.plan-card input { position: absolute; opacity: 0; pointer-events: none; }
.plan-radio {
  width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%;
  border: 2px solid var(--line); position: relative; transition: border-color .18s ease;
}
.plan-card:has(input:checked) { border-color: var(--primary); background: var(--cream-2); }
.plan-card:has(input:checked) .plan-radio { border-color: var(--primary); }
.plan-card:has(input:checked) .plan-radio::after {
  content: ''; position: absolute; inset: 4px; border-radius: 50%; background: var(--primary);
}
.plan-card:has(input:focus-visible) { outline: 3px solid var(--primary); outline-offset: 2px; }
.plan-text strong { display: block; font-size: 16px; }
.plan-text span { font-size: 14px; color: var(--text-muted); }


/* Kaufinteressent: optisch abgesetzt, es ist ein anderer Anwendungsfall */
.plan-card-buy { border-style: dashed; }
.plan-card-buy:has(input:checked) { border-style: solid; }

/* Kontakt */
.step-summary {
  display: flex; align-items: center; gap: 10px;
  background: var(--cream-2); border: 1px solid var(--secondary);
  border-radius: 10px; padding: 12px 16px; margin-bottom: 20px;
  font-size: 14.5px; font-weight: 600;
}
.step-summary svg { color: var(--primary); flex-shrink: 0; }

.consent { display: flex; gap: 12px; margin-top: 20px; cursor: pointer; font-size: 14px; color: var(--text-soft); }
.consent input { width: 19px; height: 19px; margin-top: 2px; flex-shrink: 0; accent-color: var(--primary); }
.consent a { text-decoration: underline; }

/* Honeypot */
.hp-field { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }

/* Navigation */
.form-nav { display: flex; justify-content: space-between; gap: 14px; margin-top: 30px; }
.form-nav .btn-ghost { margin-right: auto; }
#btnNext, #btnSubmit { margin-left: auto; }

.form-secure {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 20px; font-size: 12.5px; color: var(--text-muted); text-align: center;
}
.form-secure svg { flex-shrink: 0; color: var(--gold); }

.form-feedback {
  margin-top: 16px; padding: 13px 16px; border-radius: 10px;
  font-size: 14.5px; font-weight: 600; text-align: center;
}
.form-feedback.is-error { background: #FBEBE9; color: var(--error); border: 1px solid #F0C6C0; }

/* ── USP ───────────────────────────────────────────────────────────── */
.usp { background: var(--cream); }
.usp-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 54px; align-items: center;
}

.usp-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.usp-card-head {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  padding: 14px 18px; border-bottom: 1px solid var(--line); flex-wrap: wrap;
}
.usp-card-step { font-size: 12.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }
.usp-card-check { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; color: #2E7D32; }
.usp-map { width: 100%; height: auto; display: block; }
.usp-chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 14px 18px; }

/* USPs als 2×2-Kacheln (Abgrenzung zum alten Layout in Listenform) */
.usp-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.usp-list li {
  display: flex; flex-direction: column; gap: 12px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 22px; box-shadow: var(--shadow-sm);
}
.usp-list li p { font-size: 14.5px; }
.usp-icon {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px;
  background: #fff; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.usp-list h3 { margin-bottom: 5px; }
.usp-list p { font-size: 15px; color: var(--text-soft); }

/* ── Bewertungsbericht (Was Sie erhalten) ─────────────────────────── */
.report { background: var(--white); }
.report-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 54px; align-items: center; max-width: 1020px; margin: 0 auto; }

.report-doc {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: 26px 26px 30px;
  max-width: 400px; margin: 0 auto; width: 100%;
  transform: rotate(-1.2deg);
}
.report-doc-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.report-doc-badge {
  font-size: 11px; font-weight: 800; letter-spacing: .1em; color: var(--primary);
  border: 1.5px solid var(--primary); border-radius: 5px; padding: 3px 7px;
}
.report-doc-title { font-size: 19px; font-weight: 800; }
.report-doc-addr { font-size: 13px; color: var(--text-muted); margin-bottom: 18px; }
.report-doc-range {
  background: var(--cream); border: 1px solid var(--secondary); border-radius: 10px;
  padding: 14px 16px; margin-bottom: 18px;
}
.report-doc-range span { display: block; font-size: 11.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }
.report-doc-range strong { display: block; font-size: 19px; font-weight: 800; color: var(--primary); margin: 3px 0 10px; }
.report-doc-bar { position: relative; height: 8px; background: var(--secondary); border-radius: 99px; }
.report-doc-bar span { position: absolute; top: 0; bottom: 0; border-radius: 99px; background: linear-gradient(90deg, var(--primary), var(--primary-dark)); }
.report-doc-lines { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.report-doc-lines li { height: 9px; border-radius: 99px; background: var(--cream-2); }

.report-list { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 14px; }
.report-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16.5px; font-weight: 600; }
.report-list svg { color: var(--primary); flex-shrink: 0; margin-top: 3px; }
.report-note { font-size: 14px; color: var(--text-muted); margin-bottom: 26px; }
.report-factors-h { font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; }
.report-factors { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.report-factors li {
  font-size: 13.5px; font-weight: 700; color: var(--text-soft);
  background: var(--cream-2); border: 1px solid var(--secondary);
  border-radius: 99px; padding: 7px 14px;
}

/* ── Ablauf: Timeline ─────────────────────────────────────────────── */
.process-grid {
  list-style: none; counter-reset: step;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  position: relative;
}
/* Verbindungslinie hinter den Nummern */
.process-grid::before {
  content: ''; position: absolute; top: 48px; left: 6%; right: 6%;
  border-top: 2px dashed var(--secondary); z-index: 0;
}
.process-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 28px 24px; box-shadow: var(--shadow-sm); position: relative; z-index: 1;
  transition: transform .2s ease, box-shadow .2s ease;
}
.process-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.process-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--cream-2); border: 2px solid var(--secondary);
  color: var(--primary); font-weight: 800; font-size: 17px; margin-bottom: 12px;
}
.process-when {
  display: block; font-size: 12px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 7px;
}
.process-card h3 { margin-bottom: 7px; }
.process-card p { font-size: 14.5px; color: var(--text-soft); }

/* ── Vergleich: zwei Karten ───────────────────────────────────────── */
.compare { background: var(--cream); }
.compare-cards {
  display: grid; grid-template-columns: 1fr 1.08fr; gap: 22px;
  max-width: 860px; margin: 0 auto; align-items: start;
}
.compare-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); padding: 28px; position: relative;
}
.compare-card.is-highlight {
  border: 2px solid var(--primary); box-shadow: var(--shadow-md);
}
.compare-badge {
  position: absolute; top: -13px; left: 26px;
  background: var(--primary); color: #fff;
  font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  border-radius: 99px; padding: 5px 14px;
}
.compare-card-title { font-size: 19px; font-weight: 800; }
.compare-card-sub { font-size: 13.5px; color: var(--text-muted); margin-bottom: 18px; }
.compare-card ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.compare-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; }
.compare-card li svg { flex-shrink: 0; margin-top: 3px; }
.compare-card li.is-no { color: var(--text-muted); }
.compare-card li.is-no svg { color: #C0392B; opacity: .55; }
.compare-card li.is-yes { color: var(--text); font-weight: 600; }
.compare-card li.is-yes svg { color: #2E7D32; }
.compare-card .btn { width: 100%; margin-top: 22px; }

/* ── Regionen ─────────────────────────────────────────────────────── */
.regions { background: var(--white); padding-top: 0; }
.regions-list {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px; max-width: 760px; margin: 0 auto;
}
.regions-list li {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14.5px; font-weight: 700; color: var(--text);
  background: var(--cream); border: 1px solid var(--secondary);
  border-radius: 99px; padding: 9px 17px;
}
.regions-list svg { color: var(--primary); }
.regions-list .regions-more {
  background: transparent; border-style: dashed; color: var(--text-muted); font-weight: 600;
}

/* ── Telefon-Band ─────────────────────────────────────────────────── */
.tel-band { background: var(--white); padding: 0 0 92px; }
.tel-band-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 40px; flex-wrap: wrap;
}
.tel-band-copy h2 { font-size: 1.45rem; margin-bottom: 6px; }
.tel-band-copy p { color: var(--text-soft); font-size: 15.5px; }
.tel-band-numbers { display: flex; gap: 14px; flex-wrap: wrap; }
.tel-card {
  display: inline-flex; align-items: center; gap: 13px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 14px 20px; box-shadow: var(--shadow-sm); color: var(--text);
  transition: border-color .18s ease, transform .18s ease;
}
.tel-card:hover { border-color: var(--primary); transform: translateY(-2px); color: var(--text); }
.tel-card svg { color: var(--primary); }
.tel-card strong { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .09em; color: var(--text-muted); }
.tel-card span { font-size: 16.5px; font-weight: 800; }

/* ── Über uns ──────────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 54px; align-items: center; }
.about-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); object-fit: cover; width: 100%; }
.about-copy p { color: var(--text-soft); margin: 6px 0 26px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 30px; }
.stat-num { display: block; font-size: 1.9rem; font-weight: 800; color: var(--primary); line-height: 1.1; }
.stat-label { font-size: 13px; color: var(--text-muted); }

/* ── FAQ ───────────────────────────────────────────────────────────── */
.faq { background: var(--cream); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq-item summary {
  cursor: pointer; list-style: none; padding: 19px 52px 19px 22px;
  font-weight: 700; font-size: 16.5px; position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ''; position: absolute; right: 22px; top: 50%;
  width: 10px; height: 10px; border-right: 2.5px solid var(--primary); border-bottom: 2.5px solid var(--primary);
  transform: translateY(-70%) rotate(45deg); transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faq-item p { padding: 0 22px 20px; color: var(--text-soft); font-size: 15.5px; }

/* ── Finaler CTA ───────────────────────────────────────────────────── */
.final-cta { background: linear-gradient(115deg, var(--primary) 0%, var(--primary-dark) 100%); color: #fff; }
.final-cta-inner { text-align: center; max-width: 640px; }
.final-cta p { margin: 14px 0 30px; color: rgba(255, 255, 255, .92); }

/* ── Footer ────────────────────────────────────────────────────────── */
.site-footer { background: var(--cream); border-top: 1px solid var(--line); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, .95fr) minmax(0, 1fr);
  gap: 34px; padding-bottom: 44px;
}
.footer-col a, .footer-brand p, .footer-col address { overflow-wrap: anywhere; }
.footer-brand img { width: 150px; margin-bottom: 16px; }
.footer-brand p { font-size: 14.5px; color: var(--text-soft); max-width: 34ch; }
.footer-col h3 { font-size: 14px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 13px; color: var(--text); }
.footer-col address { font-style: normal; font-size: 14.5px; color: var(--text-soft); line-height: 1.75; }
.footer-col p { font-size: 14.5px; line-height: 1.75; }
.footer-links { list-style: none; font-size: 14.5px; line-height: 1.9; }
.footer-links a { color: var(--text-soft); font-weight: 600; }
.footer-links a:hover { color: var(--primary); }
.footer-langs { display: flex; gap: 6px; margin-top: 14px; }
.footer-langs a {
  font-size: 12.5px; font-weight: 800; letter-spacing: .05em; color: var(--text-soft);
  border: 1px solid var(--line); border-radius: 7px; padding: 5px 10px;
}
.footer-langs a:hover { color: var(--primary); border-color: var(--secondary); }
.footer-langs a[aria-current] { color: var(--primary); border-color: var(--primary); background: var(--cream-2); }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 10px 22px;
  border-top: 1px solid var(--line); padding-top: 20px; padding-bottom: 20px;
  font-size: 13px; color: var(--text-muted);
}
.footer-attribution { font-size: 12px; }
.footer-bottom nav { display: flex; gap: 18px; }
.footer-bottom a { color: var(--text-soft); font-weight: 600; }
.footer-bottom a:hover { color: var(--primary); }

/* ── Kundenstimmen ─────────────────────────────────────────────────── */
.testimonials { background: var(--cream); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 26px; box-shadow: var(--shadow-sm); margin: 0;
}
.testi-stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 12px; }
.testi-card blockquote { font-size: 15.5px; color: var(--text-soft); margin-bottom: 14px; }
.testi-card figcaption { font-size: 13.5px; font-weight: 800; }

/* WhatsApp-Karte im Telefon-Band */
.tel-card-wa svg { color: #1FAF38; }

/* ── Exit-Intent-Dialog ────────────────────────────────────────────── */
.exit-modal { position: fixed; inset: 0; z-index: 150; display: flex; align-items: center; justify-content: center; padding: 24px; }
.exit-backdrop { position: absolute; inset: 0; background: rgba(20, 16, 12, .55); backdrop-filter: blur(3px); }
.exit-card {
  position: relative; max-width: 460px; width: 100%; text-align: center;
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 38px 34px 32px; animation: stepIn .3s ease;
}
.exit-icon {
  width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--cream-2); border: 2px solid var(--secondary);
  display: flex; align-items: center; justify-content: center; color: var(--primary);
}
.exit-card h2 { font-size: 1.5rem; margin-bottom: 10px; }
.exit-card p { color: var(--text-soft); font-size: 15.5px; margin-bottom: 24px; }
.exit-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

body.modal-open { overflow: hidden; }

/* ── Druckansicht ──────────────────────────────────────────────────── */
@media print {
  .reveal { opacity: 1 !important; transform: none !important; }
  .sticky-cta, .exit-modal, .nav-burger, .mobile-nav, .lang-drop, .header-cta { display: none !important; }
  .site-header { position: static; }
  .hero-bg::after { background: none; }
  .hero, .final-cta { color: #000; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 11px; }
}

/* ── Reveal-Animationen ────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

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

/* ── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 1300px) {
  /* Kompakter Header: Navigation & Telefon wandern ins Burger-Menü */
  .main-nav, .header-phone, .header-cta, .lang-drop { display: none; }
  .nav-burger { display: flex; }
}
@media (min-width: 1301px) {
  .mobile-nav { display: none !important; }
  /* Sicherheitsnetz: sollte JS das Menü nicht schliessen, bleibt die
     Seite trotzdem scrollbar */
  body.nav-open { overflow: visible; }
}

@media (max-width: 1024px) {
  .usp-grid, .about-grid, .report-grid { grid-template-columns: 1fr; gap: 40px; }
  .testi-grid { grid-template-columns: 1fr; }
  /* lange deutsche Wörter sprengten sonst das 5-spaltige Raster */
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 34px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .type-grid { grid-template-columns: repeat(3, 1fr); }
  .tel-band-inner { justify-content: center; text-align: center; }
}

@media (max-width: 720px) {
  section { padding: 64px 0; }
  .header-logo img { width: 148px; }
  .header-inner { padding-top: 10px; padding-bottom: 10px; }
  .hero-inner { padding: 84px 24px 60px; }
  .hero-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .trustbar-inner { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .form-card { padding: 24px 18px 22px; }
  .field-grid { grid-template-columns: 1fr; }
  .type-grid { grid-template-columns: repeat(2, 1fr); }
  .parcel-map { height: 300px; }
  .usp-list { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .compare-cards { grid-template-columns: 1fr; }
  .compare-card.is-highlight { order: -1; }
  .report-doc { transform: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .tel-band { padding-bottom: 64px; }
  .tel-band-inner { padding: 28px 22px; }
  .tel-band-numbers { width: 100%; flex-direction: column; }
  .tel-card { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-langs { justify-content: flex-start; }
  .form-nav { flex-wrap: wrap; }
  .form-nav .btn { flex: 1; }
  /* Platz für den fixen CTA am unteren Rand */
  .sticky-cta.is-visible { display: block; }
  body.has-sticky-cta { padding-bottom: 74px; }
  /* Tastaturfokus darf nicht unter der fixen Leiste landen */
  html:has(body.has-sticky-cta) { scroll-padding-bottom: 92px; }
}

@media (max-width: 560px) {
  /* Hero-Suche: Button unter das Feld, Pin-Icon ausblenden */
  .hero-search-row { flex-wrap: wrap; padding: 6px 14px; }
  .hero-search-row > svg { display: none; }
  .hero-search-row input { width: 100%; flex: 1 1 100%; padding: 11px 0; }
  .hero-search-row .btn { flex: 1 1 100%; margin-bottom: 4px; }
}

@media (max-width: 440px) {
  .header-actions { gap: 10px; }
  .header-logo img { width: 136px; }
  .hero-cta-row .btn { width: 100%; }
  .type-grid { grid-template-columns: 1fr 1fr; }
}


/* ── Kaufpreis prüfen ─────────────────────────────────────────────── */
.buy { background: var(--white); padding-top: 0; }
.buy-box {
  max-width: 820px; margin: 0 auto; text-align: center;
  background: var(--cream-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 44px 40px;
}
.buy-box h2 { font-size: 1.7rem; margin-bottom: 14px; }
.buy-box p { color: var(--text-soft); margin-bottom: 26px; }

/* ── Anlässe ──────────────────────────────────────────────────────── */
.anlaesse { background: var(--cream); }
.anl-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px;
}
.anl-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
}
.anl-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--primary); }
.anl-card p { font-size: 14.5px; color: var(--text-soft); }
.anl-note { text-align: center; margin: 26px auto 0; max-width: 720px; }

/* ── Faktenblock ──────────────────────────────────────────────────── */
.facts-h {
  font-size: 12.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-muted); margin: 54px 0 16px; text-align: center;
}
.facts {
  max-width: 860px; margin: 0 auto;
  border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden;
}
.facts-row { display: grid; grid-template-columns: 210px minmax(0, 1fr); }
.facts-row + .facts-row { border-top: 1px solid var(--line); }
.facts dt {
  padding: 14px 20px; font-weight: 700; font-size: 14.5px;
  background: var(--cream-2); color: var(--text);
}
.facts dd { padding: 14px 20px; font-size: 14.5px; color: var(--text-soft); }

@media (max-width: 900px) {
  .anl-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .anl-grid { grid-template-columns: 1fr; }
  .buy-box { padding: 34px 24px; }
  .facts-row { grid-template-columns: 1fr; }
  .facts dt { padding-bottom: 4px; background: #fff; }
  .facts dd { padding-top: 0; }
  .facts-row + .facts-row { border-top: 1px solid var(--line); }
}
