/* ============================================
   UmzugsExpress GmbH — Design System
   Farben: Tiefes Marineblau (Vertrauen) + Express-Orange (Energie)
   ============================================ */

/* Globaler Overflow-Schutz (verhindert horizontales Scrollen auf Mobile) */
html, body { max-width: 100%; overflow-x: hidden; }
*, *::before, *::after { box-sizing: border-box; }
img, svg, iframe, video { max-width: 100%; }

:root {
  --navy: #0f2748;
  --navy-800: #16345e;
  --navy-600: #24507f;
  --orange: #ff5b1e;
  --orange-600: #e64a10;
  --orange-50: #fff2ec;
  --ink: #1a222e;
  --slate: #5a6572;
  --line: #e4e8ee;
  --paper: #ffffff;
  --cloud: #f5f7fa;
  --cloud-2: #eef2f7;
  --gold: #f5b301;
  --green: #1f9d55;
  --maxw: 1200px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(15,39,72,.06);
  --shadow: 0 8px 30px rgba(15,39,72,.10);
  --shadow-lg: 0 20px 60px rgba(15,39,72,.16);
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

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

h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { margin-bottom: 1rem; }
a { color: var(--navy-600); text-decoration: none; transition: color .2s; }
a:hover { color: var(--orange); }

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

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.bg-cloud { background: var(--cloud); }
.bg-navy { background: var(--navy); color: #dfe7f2; }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform .18s, box-shadow .18s, background .18s;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 6px 20px rgba(255,91,30,.35); }
.btn-primary:hover { background: var(--orange-600); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,91,30,.45); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-800); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--navy); border: 2px solid var(--line); }
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--cloud); color: var(--navy); transform: translateY(-2px); }
.btn-lg { padding: 18px 38px; font-size: 1.1rem; }

/* ---------- Header ---------- */
.topbar {
  background: var(--navy);
  color: #cdd9ea;
  font-size: .88rem;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; padding: 8px 24px; gap: 16px; }
.topbar a { color: #cdd9ea; }
.topbar a:hover { color: #fff; }
.topbar-items { display: flex; gap: 22px; align-items: center; }
.topbar-items .t-item { display: inline-flex; align-items: center; gap: 7px; }

header.site {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; max-width: var(--maxw); margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--navy); }
.logo .mark {
  width: 42px; height: 42px; border-radius: 11px;
  background: linear-gradient(135deg, var(--orange), var(--orange-600));
  display: grid; place-items: center; color: #fff; font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(255,91,30,.4);
}
.logo .mark svg { width: 24px; height: 24px; }
.logo small { display: block; font-size: .68rem; font-weight: 500; color: var(--slate); letter-spacing: .12em; text-transform: uppercase; font-family: var(--font-body); }

.menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.menu > li { position: relative; }
.menu > li > a {
  display: block; padding: 10px 15px; font-weight: 500; color: var(--ink);
  font-size: .96rem; border-radius: 9px;
}
.menu > li > a:hover { background: var(--cloud); color: var(--navy); }
.menu .has-drop > a::after { content: '▾'; margin-left: 5px; font-size: .8em; opacity: .6; }

.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 260px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 10px; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .2s; z-index: 50;
}
.menu > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { display: block; padding: 9px 14px; border-radius: 8px; font-size: .92rem; color: var(--slate); font-weight: 500; }
.dropdown li a:hover { background: var(--orange-50); color: var(--orange); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { width: 26px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-800) 55%, var(--navy-600) 100%);
  color: #fff;
  overflow: hidden;
  padding: 80px 0 90px;
}
.hero::before {
  content: ''; position: absolute; top: -20%; right: -10%;
  width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,91,30,.22), transparent 65%);
}
.hero::after {
  content: ''; position: absolute; bottom: -30%; left: -8%;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(36,80,127,.4), transparent 60%);
}
.hero .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; align-items: center; }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 .accent { color: var(--orange); }
.hero .lead { font-size: 1.22rem; color: #c8d6ea; margin-bottom: 30px; max-width: 560px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); padding: 8px 16px; border-radius: 100px; font-size: .9rem; font-weight: 500; }
.hero-badge svg { width: 17px; height: 17px; color: var(--orange); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust { margin-top: 30px; display: flex; align-items: center; gap: 16px; font-size: .9rem; color: #a9bcd6; }
.stars { color: var(--gold); letter-spacing: 2px; }

/* Offerte card in hero */
.offer-card { background: #fff; border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-lg); color: var(--ink); }
.offer-card h3 { margin-bottom: 6px; }
.offer-card .sub { color: var(--slate); font-size: .92rem; margin-bottom: 20px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: .84rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: .95rem; color: var(--ink); background: var(--cloud); transition: border .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); background: #fff; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note { font-size: .8rem; color: var(--slate); text-align: center; margin-top: 12px; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--navy-800); padding: 26px 0; }
.trust-strip .wrap { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 24px; text-align: center; }
.trust-strip .ts-item { color: #cdd9ea; }
.trust-strip .ts-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: #fff; display: block; }
.trust-strip .ts-num .u { color: var(--orange); }
.trust-strip .ts-label { font-size: .88rem; }

/* ---------- Section heading ---------- */
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 54px; }
.sec-head p { color: var(--slate); font-size: 1.1rem; margin-top: 12px; }
.sec-head.left { text-align: left; margin-left: 0; }

/* ---------- Service cards ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.svc-icon {
  width: 54px; height: 54px; border-radius: 13px; background: var(--orange-50);
  display: grid; place-items: center; margin-bottom: 18px; color: var(--orange);
}
.svc-icon svg { width: 28px; height: 28px; }
.svc-card h3 { margin-bottom: 10px; }
.svc-card p { color: var(--slate); font-size: .96rem; flex-grow: 1; }
.svc-price { font-family: var(--font-display); font-weight: 600; color: var(--navy); margin-top: 14px; font-size: 1rem; }
.svc-price span { color: var(--orange); }
.svc-link { margin-top: 14px; font-weight: 600; color: var(--navy); font-family: var(--font-display); font-size: .95rem; display: inline-flex; align-items: center; gap: 6px; }
.svc-link svg { width: 16px; height: 16px; transition: transform .2s; }
.svc-card:hover .svc-link svg { transform: translateX(4px); }
.svc-card:hover .svc-link { color: var(--orange); }

/* ---------- Feature / why us ---------- */
.feat { display: flex; gap: 18px; }
.feat-icon { flex-shrink: 0; width: 50px; height: 50px; border-radius: 12px; background: var(--navy); color: #fff; display: grid; place-items: center; }
.feat-icon svg { width: 26px; height: 26px; color: var(--orange); }
.feat h3 { font-size: 1.15rem; margin-bottom: 6px; }
.feat p { color: var(--slate); font-size: .95rem; margin: 0; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 28px; }
.step { display: flex; gap: 22px; align-items: flex-start; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-weight: 700; font-size: 1.5rem;
  color: #fff; background: var(--orange); width: 56px; height: 56px; border-radius: 15px;
  display: grid; place-items: center; flex-shrink: 0;
}
.step h3 { margin-bottom: 6px; }
.step p { color: var(--slate); margin: 0; }

/* ---------- Regions ---------- */
.region-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
.region-chip {
  background: #fff; border: 1px solid var(--line); border-radius: 11px; padding: 14px 16px;
  font-weight: 500; color: var(--navy); transition: all .18s; display: flex; align-items: center; justify-content: space-between;
}
.region-chip:hover { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-2px); }
.region-chip .km { font-size: .78rem; color: var(--slate); }
.region-chip:hover .km { color: #9fb4d2; }
.region-chip .top { font-size: .62rem; background: var(--orange); color: #fff; padding: 2px 7px; border-radius: 6px; font-weight: 700; }

/* ---------- Testimonials ---------- */
.testi { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.testi .stars { font-size: 1.1rem; margin-bottom: 12px; }
.testi p { font-style: italic; color: var(--ink); }
.testi .who { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.testi .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; font-weight: 600; font-family: var(--font-display); }
.testi .who b { display: block; color: var(--navy); font-size: .95rem; }
.testi .who small { color: var(--slate); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--orange), var(--orange-600)); color: #fff; border-radius: var(--radius-lg); padding: 54px; text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.92); font-size: 1.15rem; margin-bottom: 26px; max-width: 620px; margin-left: auto; margin-right: auto; }
.cta-band .btn-white { box-shadow: 0 8px 24px rgba(0,0,0,.18); }

/* ---------- FAQ ---------- */
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-q { padding: 20px 24px; font-family: var(--font-display); font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 1.05rem; }
.faq-q::after { content: '+'; font-size: 1.6rem; color: var(--orange); flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s; }
.faq-a-inner { padding: 0 24px 22px; color: var(--slate); }
.faq-item.open .faq-a { max-height: 500px; }

/* ---------- Footer ---------- */
footer.site { background: var(--navy); color: #a9bcd6; padding: 64px 0 30px; }
footer.site h4 { color: #fff; font-size: 1.05rem; margin-bottom: 18px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; }
footer.site a { color: #a9bcd6; display: block; padding: 4px 0; font-size: .93rem; }
footer.site a:hover { color: var(--orange); }
.foot-logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: #fff; margin-bottom: 16px; }
.foot-logo .mark { width: 42px; height: 42px; border-radius: 11px; background: linear-gradient(135deg, var(--orange), var(--orange-600)); display: grid; place-items: center; }
.foot-about { font-size: .93rem; line-height: 1.7; }
.foot-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: .93rem; }
.foot-contact-item svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: .86rem; }
.foot-bottom a { display: inline; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: linear-gradient(150deg, var(--navy), var(--navy-800)); color: #fff; padding: 60px 0; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -30%; right: -5%; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(255,91,30,.18), transparent 65%); }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; max-width: 800px; }
.page-hero .lead { color: #c8d6ea; font-size: 1.15rem; max-width: 640px; margin-top: 14px; }
.breadcrumb { font-size: .86rem; color: #9fb4d2; margin-bottom: 18px; }
.breadcrumb a { color: #9fb4d2; }
.breadcrumb a:hover { color: var(--orange); }

/* ---------- Article / content ---------- */
.article { padding: 70px 0; }
.article h2 { margin: 40px 0 16px; }
.article h3 { margin: 28px 0 12px; }
.article p { color: #333b47; }
.article ul, .article ol { margin: 0 0 20px 22px; color: #333b47; }
.article li { margin-bottom: 8px; }
.article .lead-p { font-size: 1.2rem; color: var(--navy); font-weight: 500; }
.callout { background: var(--orange-50); border-left: 4px solid var(--orange); padding: 20px 24px; border-radius: 0 12px 12px 0; margin: 24px 0; }
.callout strong { color: var(--navy); }
.check-list { list-style: none; margin-left: 0 !important; }
.check-list li { padding-left: 32px; position: relative; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; background: #e6f6ee; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: .8rem; top: 2px; }

.content-cols { display: grid; grid-template-columns: 1fr 340px; gap: 50px; align-items: start; }
.sidebar-card { background: var(--navy); color: #dfe7f2; border-radius: var(--radius-lg); padding: 30px; position: sticky; top: 100px; }
.sidebar-card h3 { color: #fff; margin-bottom: 14px; }
.sidebar-card .btn { width: 100%; justify-content: center; margin-top: 8px; }
.sidebar-phone { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: #fff; margin: 10px 0; }

/* ---------- Price table ---------- */
.price-table { width: 100%; border-collapse: collapse; margin: 24px 0; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.price-table th { background: var(--navy); color: #fff; padding: 16px; text-align: left; font-family: var(--font-display); font-size: .95rem; }
.price-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); color: #333b47; }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:nth-child(even) td { background: var(--cloud); }

/* ---------- WhatsApp float ---------- */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 90; width: 60px; height: 60px; border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: 0 6px 24px rgba(37,211,102,.5); transition: transform .2s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 34px; height: 34px; color: #fff; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.tag { display: inline-block; background: var(--orange-50); color: var(--orange); font-size: .78rem; font-weight: 600; padding: 4px 12px; border-radius: 100px; margin: 0 6px 6px 0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .offer-card { max-width: 480px; }
  .content-cols { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .menu, .topbar-items .hide-mob { display: none; }
  .burger { display: flex; }
  .menu.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 12px; box-shadow: var(--shadow); z-index: 50; }
  .menu.open > li { width: 100%; }
  .menu.open .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .cta-band { padding: 36px 24px; }
  .hero { padding: 50px 0 60px; }
  /* Header'da CTA butonunu gizle, dil seçiciyi küçült */
  .nav-cta .btn-primary { display: none; }
  .nav-cta { gap: 8px; }
  .lang-btn { padding: 9px 12px; font-size: .82rem; }
}

/* ---------- Language Switcher ---------- */
.lang-switch { position: relative; }
.lang-btn {
  background: transparent; border: 2px solid var(--line); color: var(--navy);
  font-family: var(--font-display); font-weight: 600; font-size: .9rem;
  padding: 12px 16px; border-radius: 100px; cursor: pointer; transition: all .2s;
  white-space: nowrap;
}
.lang-btn:hover { border-color: var(--navy); }
.lang-menu {
  position: absolute; top: 100%; right: 0; margin-top: 8px; min-width: 160px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 8px; z-index: 60;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .2s;
}
.lang-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-opt { display: block; padding: 10px 14px; border-radius: 8px; font-size: .92rem; font-weight: 500; color: var(--slate); }
.lang-opt:hover { background: var(--orange-50); color: var(--orange); }
.lang-opt.active { background: var(--navy); color: #fff; }
.lang-opt.active:hover { background: var(--navy); color: #fff; }
@media (max-width: 760px) {
  .lang-switch { order: -1; }
  .lang-menu { right: auto; left: 0; }
}

/* ---------- Echtes Logo ---------- */
.logo-img { height: 48px; width: auto; display: block; }
.logo-link { display: inline-flex; align-items: center; }
@media (max-width: 760px) {
  .logo-img { height: 40px; }
}
.foot-logo-box {
  background: #fff; border-radius: 12px; padding: 12px 16px; display: inline-block; margin-bottom: 18px;
}
.foot-logo-box img { height: 44px; width: auto; display: block; }

/* ---------- Mehrstufiges Offerten-Formular (Stepper) ---------- */
.wizard { max-width: 720px; margin: 0 auto; }
.stepper { display: flex; justify-content: space-between; margin-bottom: 40px; position: relative; }
.stepper::before {
  content: ''; position: absolute; top: 22px; left: 8%; right: 8%; height: 3px;
  background: var(--line); z-index: 0;
}
.stepper-fill {
  position: absolute; top: 22px; left: 8%; height: 3px; background: var(--orange);
  z-index: 1; transition: width .35s ease; width: 0;
}
.step-dot { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 1; }
.step-dot .num {
  width: 46px; height: 46px; border-radius: 50%; background: #fff; border: 3px solid var(--line);
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700;
  font-size: 1.1rem; color: var(--slate); transition: all .3s;
}
.step-dot .lbl { font-size: .82rem; font-weight: 600; color: var(--slate); font-family: var(--font-display); text-align: center; transition: color .3s; }
.step-dot.active .num { background: var(--orange); border-color: var(--orange); color: #fff; box-shadow: 0 4px 14px rgba(255,91,30,.4); }
.step-dot.active .lbl { color: var(--navy); }
.step-dot.done .num { background: var(--navy); border-color: var(--navy); color: #fff; }
.step-dot.done .num::after { content: '✓'; }
.step-dot.done .num .n { display: none; }

.wizard-step { display: none; animation: fadeIn .35s ease; }
.wizard-step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.wizard-step h3 { margin-bottom: 6px; }
.wizard-step .step-hint { color: var(--slate); font-size: .95rem; margin-bottom: 24px; }

/* Auswahl-Kacheln (Service-Auswahl) */
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 8px; }
.choice-tile {
  border: 2px solid var(--line); border-radius: 12px; padding: 16px; cursor: pointer;
  display: flex; align-items: center; gap: 12px; transition: all .18s; background: #fff;
  font-weight: 500; font-size: .95rem;
}
.choice-tile:hover { border-color: var(--orange); background: var(--orange-50); }
.choice-tile.selected { border-color: var(--orange); background: var(--orange-50); box-shadow: 0 2px 10px rgba(255,91,30,.15); }
.choice-tile .ci { width: 40px; height: 40px; border-radius: 10px; background: var(--orange-50); display: grid; place-items: center; flex-shrink: 0; color: var(--orange); }
.choice-tile.selected .ci { background: var(--orange); color: #fff; }
.choice-tile .ci svg { width: 22px; height: 22px; }
.choice-tile input { display: none; }

.extras-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.extra-chip {
  border: 2px solid var(--line); border-radius: 10px; padding: 12px 14px; cursor: pointer;
  display: flex; align-items: center; gap: 10px; transition: all .18s; font-size: .92rem; font-weight: 500;
}
.extra-chip:hover { border-color: var(--orange); }
.extra-chip.selected { border-color: var(--orange); background: var(--orange-50); }
.extra-chip .box {
  width: 22px; height: 22px; border-radius: 6px; border: 2px solid var(--line); flex-shrink: 0;
  display: grid; place-items: center; transition: all .18s;
}
.extra-chip.selected .box { background: var(--orange); border-color: var(--orange); color: #fff; }
.extra-chip.selected .box::after { content: '✓'; font-size: .8rem; font-weight: 700; }
.extra-chip input { display: none; }

.wizard-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 28px; }
.wizard-nav .btn { min-width: 120px; justify-content: center; }
.wizard-nav .btn-back { visibility: hidden; }
.wizard-nav .btn-back.show { visibility: visible; }

.summary-box { background: var(--cloud); border-radius: 14px; padding: 20px 24px; margin-bottom: 20px; }
.summary-box h4 { font-family: var(--font-display); color: var(--navy); margin-bottom: 12px; font-size: 1rem; }
.summary-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid var(--line); font-size: .92rem; }
.summary-row:last-child { border-bottom: none; }
.summary-row .k { color: var(--slate); }
.summary-row .v { color: var(--navy); font-weight: 600; text-align: right; }

@media (max-width: 620px) {
  .choice-grid, .extras-grid { grid-template-columns: 1fr; }
  .step-dot .lbl { font-size: .72rem; }
  .step-dot .num { width: 40px; height: 40px; font-size: 1rem; }
  .stepper::before, .stepper-fill { top: 19px; }
}
