/* ==========================================
   GEOKOS – STYLESHEET v2 (Orange Design)
   ========================================== */

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

/* Scrollbalken global ausblenden */
* { scrollbar-width: none; }
*::-webkit-scrollbar { display: none; }

:root {
  --orange:        #F97316;
  --orange-dark:   #EA6A0A;
  --orange-light:  #FFF7ED;
  --dark:          #0F172A;
  --text:          #374151;
  --muted:         #64748B;
  --border:        #E5E7EB;
  --bg:            #FFFFFF;
  --bg-alt:        #F9FAFB;
  --radius:        14px;
  --radius-lg:     20px;
  --shadow-sm:     0 2px 8px rgba(0,0,0,.04), 0 1px 3px rgba(0,0,0,.04);
  --shadow:        0 10px 25px rgba(0,0,0,.05);
  --shadow-lg:     0 20px 50px rgba(0,0,0,.08);
  --transition:    0.2s ease;
  --font-heading:  'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  height: -webkit-fill-available; /* Safari: volle Höhe inkl. Browser-UI */
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dark); }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--dark);
  line-height: 1.15;
}

.container { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 48px; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn--primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(249,115,22,.35);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--ghost:hover {
  background: var(--bg-alt);
  border-color: #D1D5DB;
  color: var(--dark);
}

.btn--full { width: 100%; justify-content: center; }
.btn--cta-ghost {
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.4);
  color: #fff;
  margin-top: 10px;
}
.btn--cta-ghost:hover {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.7);
  color: #fff;
}

/* === TOP BAR === */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,.07);
  height: 36px;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.topbar__msg {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--muted);
}
.topbar__msg svg { color: #22C55E; flex-shrink: 0; }
.topbar__contact {
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar__link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.topbar__link:hover { color: var(--dark); }
.topbar__wa { color: #16a34a !important; }
.topbar__wa:hover { color: #22c55e !important; }
.topbar__divider { color: var(--border); font-size: 0.75rem; }

/* === HEADER === */
.header {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

/* === LOGO === */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo__icon {
  width: 36px; height: 36px;
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
}

.logo__text {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}
.header.scrolled .logo__text { color: #fff; }

.logo__img {
  height: 40px;
  width: auto;
  display: block;
  filter: brightness(0);
  transition: filter 0.3s ease;
}
.header.scrolled .logo__img {
  filter: brightness(0);
}

/* === NAV === */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
  transition: all 0.3s ease;
}
.nav__link:hover { color: var(--orange); background: rgba(249,115,22,.08); }
.header.scrolled .nav__link { color: var(--dark); }
.header.scrolled .nav__link:hover { color: var(--orange); background: rgba(249,115,22,.08); }

.nav__cta { margin-left: 8px; }

/* === MOBILE HEADER ACTIONS === */
.header__mobile-actions {
  display: none;
  align-items: center;
  gap: 4px;
}
.header__icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--dark);
  transition: background 0.2s ease;
  text-decoration: none;
}
.header__icon-btn:hover { background: rgba(15,23,42,.08); color: var(--dark); }
.header__icon-btn--wa { color: #16a34a; }
.header__icon-btn--wa:hover { background: rgba(22,163,74,.12); color: #16a34a; }
.header.scrolled .header__icon-btn { color: var(--dark); }
.header.scrolled .header__icon-btn:hover { background: rgba(15,23,42,.08); }
.header.scrolled .header__icon-btn--wa { color: #16a34a; }

/* === BURGER === */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all var(--transition); }
.header.scrolled .burger span { background: var(--dark); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO === */
/* ==========================================
   HERO – Neu (Hintergrundbild)
   ========================================== */
.hero {
  position: relative;
  padding: 156px 0 90px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(253,186,116,.45) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 10% 90%, rgba(196,181,253,.35) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(254,215,170,.25) 0%, transparent 60%),
    linear-gradient(135deg, #FFF7ED 0%, #FEF3C7 35%, #EDE9FE 70%, #DBEAFE 100%);
}


.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT COPY */
.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(249,115,22,.12);
  color: var(--orange-dark);
  border: 1px solid rgba(249,115,22,.3);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 22px;
  width: fit-content;
}
.hero__badge svg { color: var(--orange); }

.hero__title {
  font-size: clamp(2.2rem, 3.8vw, 5rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.hero__accent { color: var(--orange); }

.hero__sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 28px;
}

/* Feature-Items */
.hero__features {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(249,115,22,.14);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}
.hero__feature-icon svg { width: 16px; height: 16px; }

.hero__feature strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}
.hero__feature span {
  display: block;
  font-size: 0.73rem;
  color: var(--muted);
}

/* CTAs */
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  align-items: center;
  margin-bottom: 32px;
}

.hero__ghost-btn {
  color: var(--dark) !important;
  border-color: rgba(15,23,42,.25) !important;
}
.hero__ghost-btn:hover {
  background: rgba(15,23,42,.06) !important;
  border-color: rgba(15,23,42,.45) !important;
}

/* Social Proof */
.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__avatars {
  display: flex;
}
.hero__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  border: 2px solid rgba(255,255,255,.8);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  margin-left: -8px;
}
.hero__avatar:first-child { margin-left: 0; }
.hero__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 2px;
}
.hero__stars span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-left: 4px;
}

.hero__social-text p {
  font-size: 0.73rem;
  color: var(--muted);
}

/* Info-Leiste Teaser */
.teaser-info-bar {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-top: 12px;
  overflow: hidden;
  background: var(--bg-alt);
}

.teaser-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  padding: 12px 12px;
  border-right: 1px solid var(--border);
}
.teaser-info-item:last-child { border-right: none; }
.teaser-info-item svg { color: var(--orange); flex-shrink: 0; }
.ti-label {
  display: block;
  font-size: 0.62rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.ti-val {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
}

/* Weiter-Button volle Breite */
.teaser-weiter-btn {
  width: 100%;
  justify-content: center;
}

/* Rechte Spalte: Karte + Trust-Bar gestapelt */
.hero__right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Trust-Bar: eigenständig, getrennt von der Karte */
.teaser-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 14px 20px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  margin-top: 0;
}
.teaser-trust-bar span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
}
.teaser-trust-bar svg { color: #22C55E; flex-shrink: 0; }

/* Legacy trust-item (für andere Bereiche) */
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--muted);
}
.trust-item svg {
  width: 16px; height: 16px;
  color: var(--orange);
  flex-shrink: 0;
}

/* === WIZARD CARD === */
.wizard-wrap { position: relative; }

.wizard-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* TABS */
.wizard-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 0 4px;
}

.wt {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 4px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--muted);
  transition: all var(--transition);
}

.wt svg { width: 16px; height: 16px; }

.wt.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
  background: #fff;
}

.wt.done { color: #16A34A; }
.wt.done svg { color: #16A34A; }

/* STEP CONTENT */
.wizard-step { display: none; padding: 28px; }
.wizard-step.active { display: block; }

.ws-head { margin-bottom: 20px; }

.ws-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: .06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.ws-head h3 {
  font-size: 1.15rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
  letter-spacing: -0.025em;
}

.ws-head p { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }

.ws-question {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

/* Input with icon */
.input-icon {
  position: relative;
}

.input-icon svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  color: var(--muted);
  pointer-events: none;
}

.input-icon input {
  width: 100%;
  padding: 11px 14px 11px 38px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.input-icon input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,.12);
}

/* Radius pills */
.radius-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.rpill {
  padding: 8px 14px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  background: #fff;
  cursor: pointer;
  transition: all var(--transition);
}

.rpill:hover { border-color: var(--orange); color: var(--orange); }
.rpill.active { background: var(--orange); color: #fff; border-color: var(--orange); }

/* Qty cards */
.qty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.qty-card {
  padding: 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.qty-card strong { font-size: 0.83rem; color: var(--dark); font-weight: 700; }
.qty-card span { font-size: 0.72rem; color: var(--muted); }
.qty-card:hover { border-color: var(--orange); }
.qty-card.active { border-color: var(--orange); background: var(--orange-light); }
.qty-card.active strong { color: var(--orange); }

/* Frequency list */
.freq-list { display: flex; flex-direction: column; gap: 8px; }

.freq-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: all var(--transition);
}

.freq-icon {
  width: 36px; height: 36px;
  background: var(--bg-alt);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--muted);
  flex-shrink: 0;
}

.freq-item strong { display: block; font-size: 0.87rem; color: var(--dark); margin-bottom: 2px; }
.freq-item span { font-size: 0.75rem; color: var(--muted); }
.freq-item:hover { border-color: var(--orange); }
.freq-item.active { border-color: var(--orange); background: var(--orange-light); }
.freq-item.active .freq-icon { background: var(--orange); color: #fff; }
.freq-item.active strong { color: var(--orange); }

/* Start grid */
.start-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.start-card {
  padding: 14px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.start-card svg { width: 18px; height: 18px; color: var(--muted); }
.start-card strong { display: block; font-size: 0.82rem; color: var(--dark); font-weight: 700; }
.start-card span { font-size: 0.72rem; color: var(--muted); }
.start-card:hover { border-color: var(--orange); }
.start-card.active { border-color: var(--orange); background: var(--orange-light); }
.start-card.active svg { color: var(--orange); }
.start-card.active strong { color: var(--orange); }

/* Summary box */
.summary-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 16px;
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.7;
}

.summary-box strong { color: var(--dark); }

/* Final form */
.final-form { display: flex; flex-direction: column; gap: 0; }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.form-group:last-child { margin-bottom: 0; }

.form-group label { font-size: 0.78rem; font-weight: 600; color: var(--dark); }
.req { color: var(--orange); margin-left: 2px; }

/* Pflichtfeld-Fehler */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.12);
}
.form-group .field-error {
  font-size: 0.72rem;
  color: #EF4444;
  margin-top: -2px;
  display: none;
}
.form-group.error .field-error { display: block; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* WS footer */
.ws-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-top: 20px;
}

.ws-footer .btn--ghost { padding: 10px 18px; font-size: 0.85rem; }
.ws-footer .btn--primary { padding: 10px 22px; font-size: 0.85rem; }

.ws-summary { font-size: 0.78rem; color: var(--muted); margin-right: auto; }

/* === NEW TABS (wt-new) === */
.wt-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px 16px 0;
  background: #fff;
  position: relative;
}

.wt-bar::after {
  content: '';
  position: absolute;
  top: 38px;
  left: calc(10% + 20px);
  right: calc(10% + 20px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.wt-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  background: none;
  border: none;
  cursor: default;
  font-family: inherit;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .05em;
  padding-bottom: 16px;
  position: relative;
  z-index: 1;
  transition: color var(--transition);
}

.wt-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F1F5F9;
  border: 2px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: all var(--transition);
}

.wt-circle svg { width: 16px; height: 16px; }

.wt-new.active .wt-circle {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 4px 12px rgba(249,115,22,.35);
}
.wt-new.active { color: var(--orange); }

.wt-new.done .wt-circle {
  background: #16A34A;
  border-color: #16A34A;
  color: #fff;
}
.wt-new.done { color: #16A34A; }
.wt-new.done .wt-circle svg { display: none; }
.wt-new.done .wt-circle::after {
  content: '';
  width: 10px; height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-2px);
}

/* Teaser-Card Tabs (ohne bar wrapper) */
.wizard-card--teaser .wizard-tabs {
  display: flex;
  padding: 14px 12px 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  justify-content: center;
  gap: 0;
}

.wizard-card--teaser .wt-new {
  padding-bottom: 12px;
  font-size: 0.62rem;
  gap: 6px;
}

.wizard-card--teaser .wt-circle {
  width: 36px;
  height: 36px;
}

.wizard-card--teaser .wt-circle svg { width: 15px; height: 15px; }

/* === NEW RADIUS PILLS === */
.rpill-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
  flex: 1;
  min-width: 0;
}

.rpill-km {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
}

.rpill-hh {
  font-size: 0.65rem;
  color: var(--muted);
  white-space: nowrap;
}

.rpill-new:hover { border-color: var(--orange); }
.rpill-new.active {
  border-color: var(--orange);
  background: var(--orange-light);
}
.rpill-new.active .rpill-km { color: var(--orange); }

.radius-pills { display: flex; gap: 8px; }

/* === QTY GRID NEW === */
.qty-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.qty-card-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 10px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
}

.qty-card-new svg { width: 22px; height: 22px; color: var(--muted); }
.qty-card-new strong { font-size: 0.93rem; font-weight: 700; color: var(--dark); }
.qty-card-new span { font-size: 0.72rem; color: var(--muted); }

.qty-card-new:hover { border-color: var(--orange); }
.qty-card-new.active {
  border-color: var(--orange);
  background: var(--orange-light);
}
.qty-card-new.active svg { color: var(--orange); }
.qty-card-new.active strong { color: var(--orange); }

.custom-qty-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}

.custom-qty-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,.12);
}

/* === FREQUENZ RADIO === */
.freq-radio-list { display: flex; flex-direction: column; gap: 10px; }

.freq-radio {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  transition: all var(--transition);
  position: relative;
}

.freq-radio__dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  transition: all var(--transition);
  position: relative;
}

.freq-radio.active {
  border-color: var(--orange);
  background: #fff;
}

.freq-radio.active .freq-radio__dot {
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: inset 0 0 0 3px #fff;
}

.freq-badge {
  margin-left: auto;
  background: #DCFCE7;
  color: #16A34A;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}

/* === BEBAUUNG === */
.bebauung-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.beb-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 10px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
}

.beb-card svg { width: 24px; height: 24px; color: var(--muted); }
.beb-card:hover { border-color: var(--orange); }
.beb-card.active {
  border-color: var(--orange);
  background: var(--orange-light);
  color: var(--orange);
}
.beb-card.active svg { color: var(--orange); }

/* === SERVICE === */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: all var(--transition);
}

.service-card strong { font-size: 0.9rem; color: var(--dark); font-weight: 700; }
.service-card span { font-size: 0.75rem; color: var(--muted); }
.service-card:hover { border-color: var(--orange); }
.service-card.active {
  border-color: var(--orange);
  background: var(--orange-light);
}
.service-card.active strong { color: var(--orange); }

/* === OBJEKT-KARTEN (mit Icon) === */
.objekt-grid { grid-template-columns: repeat(2, 1fr) !important; }

.objekt-card {
  gap: 10px;
  padding: 16px;
}

.objekt-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}

.objekt-icon svg {
  width: 20px;
  height: 20px;
  color: var(--muted);
  transition: color var(--transition);
}

.objekt-card:hover .objekt-icon { background: #FFF7ED; }
.objekt-card:hover .objekt-icon svg { color: var(--orange); }
.objekt-card.active .objekt-icon { background: #FFF7ED; }
.objekt-card.active .objekt-icon svg { color: var(--orange); }

/* === GEWICHT-POPUP === */
.gewicht-popup {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(15,23,42,.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.gewicht-popup.open {
  opacity: 1;
  pointer-events: all;
}

.gewicht-popup__inner {
  background: #fff;
  border-radius: 16px;
  width: min(420px, 100%);
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  transform: scale(0.95) translateY(8px);
  transition: transform 0.2s ease;
  overflow: hidden;
}

.gewicht-popup.open .gewicht-popup__inner {
  transform: scale(1) translateY(0);
}

.gewicht-popup__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--border);
}

.gewicht-popup__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}

.gewicht-popup__icon svg { width: 22px; height: 22px; }

.gewicht-popup__header h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 2px;
}

.gewicht-popup__header p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

.gewicht-popup__body { padding: 20px 24px; }

.gewicht-input-wrap {
  position: relative;
  margin-top: 8px;
  margin-bottom: 16px;
}

.gewicht-input-wrap .custom-qty-input {
  width: 100%;
  padding-right: 40px;
}

.gewicht-unit {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
  pointer-events: none;
}

.gewicht-presets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.gewicht-preset {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 6px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  transition: all var(--transition);
}

.gewicht-preset small {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--muted);
}

.gewicht-preset:hover,
.gewicht-preset.active {
  border-color: var(--orange);
  background: var(--orange-light);
  color: var(--orange);
}

.gewicht-preset.active small,
.gewicht-preset:hover small { color: var(--orange); }

.gewicht-popup__footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
  .gewicht-popup { padding: 16px; }
  .gewicht-popup__inner { border-radius: 14px; }
}

/* === CALENDAR === */
.calendar-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}

.cal-wrap {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  min-width: 240px;
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--dark);
}

.cal-nav {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--muted);
  padding: 4px 8px;
  border-radius: 6px;
  transition: all var(--transition);
  line-height: 1;
}
.cal-nav:hover { background: var(--border); color: var(--dark); }

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 6px;
}

.cal-weekdays span {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
  padding: 4px 0;
}

.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  border-radius: 6px;
  cursor: pointer;
  color: var(--text);
  border: none;
  background: none;
  font-family: inherit;
  transition: all var(--transition);
}

.cal-day:hover:not(.cal-day--empty):not(.cal-day--past) { background: var(--orange-light); color: var(--orange); }
.cal-day--empty { cursor: default; }
.cal-day--past { color: #CBD5E1; cursor: not-allowed; }
.cal-day--today { font-weight: 700; color: var(--orange); }
.cal-day--selected { background: var(--orange); color: #fff; font-weight: 700; }
.cal-day--selected:hover { background: var(--orange-dark); color: #fff; }

.cal-info {
  padding-top: 8px;
}

.cal-info__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cal-info__date {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

/* === ANGEBOT BOX (Step 5) === */
.angebot-box {
  background: linear-gradient(135deg, #F0FDF4, #DCFCE7);
  border: 1.5px solid #BBF7D0;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.angebot-box__check {
  width: 52px; height: 52px;
  background: #16A34A;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  margin-bottom: 4px;
}

.angebot-box__check svg { width: 24px; height: 24px; }

.angebot-box h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #166534;
  line-height: 1.4;
}

.angebot-box p {
  font-size: 0.85rem;
  color: #16A34A;
  line-height: 1.6;
  max-width: 360px;
}

/* === WIZARD OVERLAY === */
.wizard-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: linear-gradient(135deg, rgba(255,247,237,.92) 0%, rgba(254,243,199,.90) 35%, rgba(237,233,254,.90) 70%, rgba(219,234,254,.92) 100%);
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.wizard-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.wizard-overlay__inner {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  width: min(730px, 100%);
  height: min(820px, 90vh);  /* feste Höhe → flex-children füllen korrekt aus */
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.3);
  transform: scale(0.94) translateY(12px);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
}
/* Tab-Bar: immer fix oben */
.wizard-overlay__inner .wt-bar {
  flex: 0 0 auto;
}
/* Aktiver Step: scrollbarer Mittelbereich */
.wizard-overlay__inner .ow-step.active {
  flex: 1 1 0px;
  min-height: 0;
  overflow-y: auto;
}
/* Gemeinsamer Footer: immer fix unten (kein margin-top, flex-shrink:0) */
#owSharedFooter {
  flex: 0 0 auto;
  margin-top: 0;
  padding: 16px 28px;
  justify-content: space-between;
}

.wizard-overlay.open .wizard-overlay__inner {
  transform: scale(1) translateY(0);
}

/* Custom scrollbar inside overlay */
.wizard-overlay__inner::-webkit-scrollbar { width: 4px; }
.wizard-overlay__inner::-webkit-scrollbar-track { background: transparent; }
.wizard-overlay__inner::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

/* Zurück-Header (ersetzt den alten ×-Button) */
.ow-back-bar {
  flex: 0 0 auto;
  padding: 14px 20px 10px;
  border-bottom: 1px solid var(--border);
}

.ow-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  padding: 4px 0;
  transition: color var(--transition);
}

.ow-back-btn:hover {
  color: var(--dark);
}

.ow-back-btn svg {
  flex-shrink: 0;
}

/* Teaser card cursor hint */
.wizard-card--teaser { cursor: pointer; }
.wizard-card--teaser .input-icon input { cursor: pointer; }

/* === MOBILE WIZARD BUTTON === */
.wizard-mobile-btn {
  display: none;
}

/* === SECTIONS === */
.section { padding: 96px 0; }
.section--alt { background: var(--bg-alt); }

.section__head { text-align: center; max-width: 600px; margin: 0 auto 56px; }

.section__label {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  line-height: 1.15;
}

.section__sub { color: var(--muted); font-size: 0.97rem; line-height: 1.75; }

/* === LEISTUNGEN CARDS === */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}

.card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.card__icon {
  width: 48px; height: 48px;
  background: var(--orange-light);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--orange);
}

.card__icon svg { width: 22px; height: 22px; }

.card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.87rem; line-height: 1.7; }

/* === ABLAUF === */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step-item {
  flex: 1;
  text-align: center;
  padding: 32px 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.step-divider {
  width: 40px;
  height: 2px;
  background: var(--border);
  flex-shrink: 0;
  margin-top: 52px;
}

.step-num {
  width: 44px; height: 44px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 800;
  margin: 0 auto 16px;
}

.step-item h4 { font-size: 0.97rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.step-item p { font-size: 0.83rem; color: var(--muted); line-height: 1.7; }

/* === VORTEILE === */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
}

.benefit-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.benefit-card__icon {
  width: 44px; height: 44px;
  background: var(--orange-light);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--orange);
  margin-bottom: 16px;
}

.benefit-card__icon svg { width: 20px; height: 20px; }
.benefit-card h4 { font-size: 0.93rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.benefit-card p { font-size: 0.83rem; color: var(--muted); line-height: 1.7; }

/* === CTA BANNER === */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
}
.cta-banner__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,17,34,.95) 0%, rgba(10,17,34,.80) 100%);
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner__text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.cta-banner__text p {
  color: rgba(255,255,255,.75);
  font-size: 1rem;
}
.cta-banner__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.cta-banner__btn {
  font-size: 1rem;
  padding: 14px 28px;
}
.cta-banner__tel {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.85);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.cta-banner__tel:hover { color: #fff; }

@media (max-width: 768px) {
  .cta-banner { padding: 60px 0; }
  .cta-banner__inner { flex-direction: column; align-items: flex-start; }
  .cta-banner__btn { width: 100%; justify-content: center; }
}

/* === KONTAKT === */
.contact-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
}
.contact-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

.contact-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-note { margin-top: 12px; font-size: 0.75rem; color: var(--muted); text-align: center; }

.contact-aside { display: flex; flex-direction: column; gap: 16px; }

.info-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.info-card h4 { font-size: 0.93rem; font-weight: 700; color: var(--dark); margin-bottom: 18px; }

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.info-item:last-child { margin-bottom: 0; }

.info-item__icon {
  width: 36px; height: 36px;
  background: var(--orange-light);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--orange);
  flex-shrink: 0;
}

.info-item__icon svg { width: 16px; height: 16px; }
.info-item strong { display: block; font-size: 0.75rem; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.info-item a, .info-item span { font-size: 0.83rem; color: var(--muted); }
.info-item a:hover { color: var(--orange); }

.info-card--cta {
  background: var(--orange);
  border-color: var(--orange-dark);
}

.info-card--cta h4 { color: #fff; }
.info-card--cta p { color: rgba(255,255,255,.85); font-size: 0.87rem; margin-bottom: 16px; line-height: 1.6; }

.info-card--cta .btn--primary {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.4);
  color: #fff;
  width: 100%;
  justify-content: center;
  box-shadow: none;
}
.info-card--cta .btn--primary:hover {
  background: rgba(255,255,255,.3);
  transform: none;
  box-shadow: none;
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: min(680px, calc(100vw - 32px));
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.14);
  border: 1px solid #E5E7EB;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  pointer-events: none;
}
.cookie-banner__icon {
  flex-shrink: 0;
  font-size: 1.8rem;
  line-height: 1;
}
.cookie-banner__text { flex: 1; min-width: 0; }
.cookie-banner__text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}
.cookie-banner__text p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}
.cookie-banner__text a { color: var(--orange); font-size: 0.78rem; }
.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: all 0.2s;
  white-space: nowrap;
}
.cookie-btn--accept { background: var(--orange); color: #fff; }
.cookie-btn--accept:hover { background: var(--orange-dark); }
.cookie-btn--decline { background: var(--bg-alt); color: var(--muted); border: 1px solid var(--border); }
.cookie-btn--decline:hover { background: var(--border); }

@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 14px; bottom: 16px; }
  .cookie-banner__actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* === FOOTER === */
.footer { background: var(--dark); }

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding: 60px 24px 48px;
}

.footer__brand .logo { margin-bottom: 14px; }
.footer__brand p { font-size: 0.85rem; color: rgba(255,255,255,.5); line-height: 1.7; max-width: 260px; }

.footer__links h5,
.footer__contact-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.9);
  margin-bottom: 14px;
}

.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 0.85rem; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer__links a:hover { color: rgba(255,255,255,.9); }

.footer__contact-col { display: flex; flex-direction: column; gap: 8px; }
.footer__contact-col p { font-size: 0.85rem; color: rgba(255,255,255,.5); line-height: 1.6; }
.footer__contact-col a { font-size: 0.85rem; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer__contact-col a:hover { color: rgba(255,255,255,.9); }

.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); }
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  gap: 16px;
}

.footer__bottom-inner p { font-size: 0.8rem; color: rgba(255,255,255,.35); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 0.8rem; color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer__legal a:hover { color: rgba(255,255,255,.7); }

/* === STEP 7: ZUSAMMENFASSUNG + KANALWAHL === */
.summary-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 20px;
  font-size: 0.85rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.summary-row:last-child { border-bottom: none; }
.summary-row__label { color: var(--muted); }
.summary-row__val { font-weight: 600; color: var(--dark); text-align: right; }

.channel-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 4px;
}
.channel-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 22px 16px;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}
.channel-btn__title { font-size: 0.9rem; font-weight: 700; color: var(--dark); }
.channel-btn__sub { font-size: 0.75rem; color: var(--muted); }
.channel-btn--email {
  background: #EFF6FF;
  border-color: #BFDBFE;
}
.channel-btn--email svg { color: #2563EB; }
.channel-btn--email:hover { background: #DBEAFE; border-color: #93C5FD; }
.channel-btn--wa {
  background: #F0FDF4;
  border-color: #BBF7D0;
}
.channel-btn--wa svg { color: #16a34a; }
.channel-btn--wa:hover { background: #DCFCE7; border-color: #86EFAC; }

@media (max-width: 480px) {
  .channel-choice { grid-template-columns: 1fr; }
}

/* === SUCCESS MESSAGE === */
.wizard-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 28px;
  gap: 12px;
}

.wizard-success.show { display: flex; }

.wizard-success__icon {
  width: 60px; height: 60px;
  background: #DCFCE7;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #16A34A;
  margin-bottom: 8px;
}

.wizard-success__icon svg { width: 28px; height: 28px; }
.wizard-success h3 { font-size: 1.2rem; font-family: var(--font-heading); font-weight: 800; color: var(--dark); letter-spacing: -0.02em; }
.wizard-success p { font-size: 0.87rem; color: var(--muted); line-height: 1.7; }

/* === RESPONSIVE === */
@media (max-width: 1280px) {
  .container { padding: 0 32px; }
}

@media (max-width: 1100px) {
  .container { padding: 0 24px; }
  .hero__inner { grid-template-columns: 58% 42%; gap: 0; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero {
    background:
      radial-gradient(ellipse 80% 60% at 80% 20%, rgba(253,186,116,.45) 0%, transparent 55%),
      radial-gradient(ellipse 60% 70% at 10% 90%, rgba(196,181,253,.35) 0%, transparent 50%),
      radial-gradient(ellipse 60% 50% at 50% 50%, rgba(254,215,170,.25) 0%, transparent 60%),
      linear-gradient(135deg, #FFF7ED 0%, #FEF3C7 35%, #EDE9FE 70%, #DBEAFE 100%);
  }
  .hero__sub { max-width: 100%; }
  .wizard-wrap { max-width: 560px; margin: 0 auto; }
  .teaser-info-bar { flex-wrap: wrap; }
  .teaser-info-item { min-width: 120px; }
  .steps { flex-wrap: wrap; }
  .step-divider { display: none; }
  .step-item { min-width: 200px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-img { min-height: 220px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  /* iOS-Zoom bei Fokus verhindern: font-size muss ≥ 16px sein */
  input, textarea, select {
    font-size: 16px !important;
  }

  .nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: #fff;
    justify-content: center;
    align-items: center;
    z-index: 1002;
    gap: 8px;
    overflow: hidden;
  }
  .nav.open { display: flex; }
  .nav.open .nav__link { font-size: 1.1rem; padding: 12px 32px; color: var(--dark) !important; }
  .nav__link:hover { color: var(--orange) !important; background: var(--orange-light); }
  .nav__cta { margin-left: 0; margin-top: 8px; }
  .header__mobile-actions { display: flex; z-index: 1003; }
  /* Wenn Menü offen: Icons + Burger dunkel auf weißem Hintergrund */
  body.nav-open .header__icon-btn { color: var(--dark) !important; }
  body.nav-open .header__icon-btn--wa { color: #16a34a !important; }
  body.nav-open .burger span { background: var(--dark) !important; }
  .burger { display: flex; }
  .logo__img { height: 36px; }
  .topbar { display: none; }
  .header { top: 0; }
  .hero { padding: 90px 0 60px; }
  /* Wizard-Card auf Mobile verstecken */
  .hero__right { display: none; }
  /* Doppelten CTA verstecken, Mobile-Button anzeigen */
  #heroAngebot { display: none; }
  .wizard-mobile-btn { display: flex; }
  /* === MOBILE OVERLAY: 3-Div-Struktur (Tab-Bar / Scroll-Content / Footer) ===
     backdrop-filter auf Android blockiert Flex-Layout → deaktiviert.
     .wizard-overlay__inner wird direkt position:fixed gesetzt. */
  .wizard-overlay {
    padding: 0;
    background: rgba(15,23,42,.5);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
  }
  .wizard-overlay__inner {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100vh !important;          /* Fallback */
    height: 100dvh !important;         /* Dynamic Viewport Height – Android/iOS */
    height: -webkit-fill-available !important; /* Safari-Fallback */
    max-height: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    background: #fff;
    transform: translateY(40px) !important;
    z-index: 2001;
  }
  .wizard-overlay.open .wizard-overlay__inner {
    transform: translateY(0) !important;
  }
  /* Back-Bar auf Mobile: kompakter */
  .ow-back-bar { padding: 10px 16px 8px; }
  .ow-back-btn { font-size: 0.82rem; }

  /* 1) Tab-Bar: flex-shrink:0 — immer fix oben */
  .wizard-overlay__inner .wt-bar {
    flex: 0 0 auto !important;
  }

  /* 2) Aktiver Step: flex:1 + overflow-y:auto = scrollbarer Mittelbereich */
  .wizard-overlay__inner .ow-step {
    display: none;
    padding: 0;
  }
  .wizard-overlay__inner .ow-step.active {
    display: block !important;
    flex: 1 1 0px !important;
    min-height: 0 !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }
  .wizard-overlay__inner .ow-step .ws-head {
    padding: 20px 20px 14px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0;
  }
  .wizard-overlay__inner .ow-step .ws-body {
    padding: 20px 20px 16px;
  }

  /* 3) Gemeinsamer Footer: flex-shrink:0 — immer fix unten inkl. Safe-Area */
  #owSharedFooter {
    flex: 0 0 auto !important;
    border-top: 1px solid var(--border);
    padding: 14px 20px;
    padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -4px 16px rgba(0,0,0,.08);
    z-index: 10;
  }
  #owSharedFooter .btn {
    flex: 1;
    justify-content: center;
    padding: 14px 16px;
    font-size: 0.95rem;
  }
  .cards { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .qty-grid { grid-template-columns: 1fr 1fr; }
  .start-grid { grid-template-columns: 1fr 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .qty-grid-new { grid-template-columns: repeat(2, 1fr); }
  .calendar-layout { grid-template-columns: 1fr; }
  .cal-wrap { min-width: 0; }
  .bebauung-grid { grid-template-columns: repeat(3, 1fr); }
  /* OBJEKT-Karten: 2 Spalten auf Mobile */
  #owObjektGrid.service-grid { grid-template-columns: repeat(2, 1fr); }
  /* Service-Karten (FREQUENZ-Step): 3 Spalten bleiben */
  #owService.service-grid { grid-template-columns: repeat(3, 1fr); }

  /* Radius-Karten auf Mobile: horizontal scrollbar, jede Karte feste Breite wie im Screenshot */
  .wizard-overlay__inner .radius-pills {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;        /* Firefox */
    padding-bottom: 4px;
  }
  .wizard-overlay__inner .radius-pills::-webkit-scrollbar { display: none; }
  .wizard-overlay__inner .rpill-new {
    flex: 0 0 auto;
    width: calc((100vw - 40px - 32px) / 5); /* 5 Karten sichtbar */
    min-width: 58px;
    padding: 10px 6px;
  }
  .wizard-overlay__inner .rpill-km {
    font-size: 0.82rem;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }
  .wizard-overlay__inner .rpill-hh {
    font-size: 0.58rem;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
  }
  .wt-bar::after { display: none; }

  /* 6 Tabs auf Mobile: kompakter, Labels ausblenden */
  .wizard-overlay__inner .wt-bar {
    padding: 8px 8px 0;
    gap: 0;
    border-bottom: 1px solid var(--border);
  }
  .wizard-overlay__inner .wt-new span {
    display: none; /* Labels auf Mobile ausblenden */
  }
  .wizard-overlay__inner .wt-new {
    padding-bottom: 10px;
    gap: 0;
  }
  .wizard-overlay__inner .wt-circle {
    width: 28px;
    height: 28px;
  }
  .wizard-overlay__inner .wt-circle svg {
    width: 12px;
    height: 12px;
  }
  /* Aktiver Step-Name unter dem Tab-Header anzeigen */
  .wizard-overlay__inner .ow-step.active .ws-label::before {
    content: attr(data-stepname);
  }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero__title { font-size: 2rem; }
  .section__title { font-size: 1.5rem; }
  .benefits-grid { grid-template-columns: 1fr; }
  .start-grid { grid-template-columns: 1fr; }

  /* Footer Mobile – saubere Abstände */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 24px 40px;
  }
  .footer__brand { padding-bottom: 4px; }
  .footer__brand p { max-width: 100%; }
  .footer__links h5,
  .footer__contact-col h5 { margin-bottom: 16px; }
  .footer__links { gap: 14px; }
  .footer__contact-col { gap: 12px; }
  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    padding: 20px 24px;
    gap: 10px;
  }
}
