/* ==========================================================
   AUT-Umzüge — Stylesheet
   ========================================================== */

:root {
  --color-primary: #0e94a8;
  --color-primary-dark: #0a7383;
  --color-primary-darker: #085b68;
  --color-primary-light: #e6f5f7;
  --color-accent: #1fb8cf;
  --color-dark: #12181f;
  --color-dark-2: #1b232c;
  --color-text: #384752;
  --color-text-light: #64747f;
  --color-bg: #ffffff;
  --color-bg-alt: #f4f9fa;
  --color-border: #e3edef;
  --shadow-sm: 0 2px 10px rgba(15, 30, 40, .06);
  --shadow-md: 0 10px 30px rgba(15, 30, 40, .10);
  --radius: 14px;
  --radius-lg: 22px;
  --header-h: 76px;
  --container-w: 1180px;
  --header-container-w: 1320px;
  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5 { color: var(--color-dark); line-height: 1.18; margin: 0 0 .5em; font-weight: 800; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--color-primary-dark); color: #fff; box-shadow: 0 8px 20px rgba(14,148,168,.35); }
.btn-primary:hover { background: var(--color-primary-darker); }
.btn-outline { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.7); backdrop-filter: blur(4px); }
.btn-outline:hover { background: #fff; color: var(--color-dark); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-outline-light:hover { background: #fff; color: var(--color-dark-2); }
.btn-lg { padding: 16px 32px; font-size: 1.02rem; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 500; }
.header-bar { background: rgba(255,255,255,.98); box-shadow: var(--shadow-sm); backdrop-filter: blur(6px); }
.header-bar .container { max-width: var(--header-container-w); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 24px; }
.logo img { height: 38px; width: auto; }

.main-nav { flex: 1; display: flex; justify-content: center; }
.main-nav ul { display: flex; align-items: center; gap: 22px; }
.main-nav > ul > li { position: relative; }
.main-nav a { font-weight: 500; font-size: .9rem; color: var(--color-dark-2); padding: 8px 0; letter-spacing: .01em; transition: color .15s ease; white-space: nowrap; }
.main-nav > ul > li > a { display: flex; align-items: center; gap: 5px; }
.has-dropdown > a::after { content: ""; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); margin-left: 1px; opacity: .6; }
.main-nav a:hover { color: var(--color-primary); }

.dropdown {
  position: absolute; top: 100%; left: -14px; min-width: 220px;
  background: #fff; border-radius: 14px; box-shadow: var(--shadow-md);
  padding: 10px; opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: all .18s ease;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { display: block; padding: 11px 14px; border-radius: 9px; font-weight: 500; }
.dropdown li a:hover { background: var(--color-primary-light); color: var(--color-primary-dark); }

.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.lang-switch { position: relative; }
.lang-trigger {
  display: flex; align-items: center; gap: 6px; background: none; border: none; cursor: pointer;
  color: var(--color-text-light); font-weight: 600; font-size: .82rem; padding: 8px 6px; border-radius: 8px;
  transition: color .15s ease, background .15s ease;
}
.lang-trigger:hover, .lang-switch.open .lang-trigger { color: var(--color-primary); background: var(--color-bg-alt); }
.lang-dropdown {
  position: absolute; top: 100%; right: 0; margin-top: 8px; min-width: 140px;
  background: #fff; border-radius: 12px; box-shadow: var(--shadow-md);
  padding: 6px; opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: all .18s ease; display: flex; flex-direction: column;
}
.lang-switch.open .lang-dropdown,
.lang-switch:hover .lang-dropdown,
.lang-switch:focus-within .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-btn {
  background: none; border: none; cursor: pointer; text-align: left; font-family: inherit;
  color: var(--color-text-light); font-weight: 500; font-size: .88rem; padding: 9px 12px; border-radius: 8px;
}
.lang-btn:hover { background: var(--color-bg-alt); }
.lang-btn.active { color: var(--color-primary-dark); font-weight: 700; background: var(--color-primary-light); }

.header-divider { width: 1px; height: 22px; background: var(--color-border); flex-shrink: 0; }

.phone-pill { display: flex; align-items: center; gap: 7px; font-weight: 600; font-size: .88rem; color: var(--color-dark-2); white-space: nowrap; }
.phone-pill svg { color: var(--color-primary); }

.whatsapp-pill {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: #e9f9ec; color: #25D366; flex-shrink: 0;
  transition: background .15s ease, transform .15s ease;
}
.whatsapp-pill:hover { background: #25D366; color: #fff; transform: translateY(-2px); }

.whatsapp-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 800;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #25D366; color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  transition: transform .15s ease, box-shadow .15s ease;
}
.whatsapp-fab:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 30px rgba(37,211,102,.55); }

/* Offset in-page anchor targets so the sticky header never covers the heading */
#top, #leistungen, #einsatzgebiet, #galerie, #bewertungen, #ueber-uns, #faq, #kontakt {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; background: none; border: none; cursor: pointer; }
.burger span { display: block; height: 2px; width: 24px; background: var(--color-dark); border-radius: 2px; transition: transform .2s, opacity .2s; }
.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 { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(6,20,26,.90) 10%, rgba(8,30,38,.70) 45%, rgba(10,40,48,.42) 75%); }
.hero .container { max-width: none; width: 100%; padding-left: clamp(24px, 7vw, 120px); padding-right: 24px; }
.hero-content { position: relative; z-index: 1; color: #fff; max-width: 680px; padding-top: 40px; padding-bottom: 40px; }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .8rem; font-weight: 700; color: var(--color-accent); margin-bottom: 14px; }
.hero-rating {
  display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  padding: 8px 16px; border-radius: 100px; margin-bottom: 18px; backdrop-filter: blur(2px); transition: background .15s ease;
}
.hero-rating:hover { background: rgba(255,255,255,.2); }
.hero-rating-stars { color: #ffb400; letter-spacing: 1px; font-size: .95rem; }
.hero-rating-text { color: #fff; font-size: .88rem; font-weight: 600; }
.hero-rating-text strong { font-weight: 800; }
.hero h1 { font-size: clamp(2.4rem, 5.2vw, 3.9rem); color: #fff; margin-bottom: 18px; }
.hero-sub { font-size: 1.12rem; color: rgba(255,255,255,.88); max-width: 560px; margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 26px; }
.trust-badges li { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: .92rem; color: rgba(255,255,255,.92); }
.trust-badges svg { color: var(--color-accent); flex-shrink: 0; }

.scroll-down { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 1; color: #fff; opacity: .8; animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-alt { background: var(--color-bg-alt); }
.section-head { max-width: 680px; margin-bottom: 52px; }
.section-head.center { max-width: 700px; margin-left: auto; margin-right: auto; text-align: center; }
.kicker { text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; font-weight: 800; color: var(--color-primary); margin-bottom: 12px; }
.kicker-light { color: var(--color-accent); }
.section h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
.light-title { color: #fff; }
.section-lead { color: var(--color-text-light); font-size: 1.05rem; }
.light-lead { color: rgba(255,255,255,.78); }
.split-head { margin-bottom: 52px; max-width: 720px; }

/* ---------- Service grid ---------- */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: 30px 26px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-icon {
  width: 54px; height: 54px; border-radius: 14px; background: var(--color-primary-light);
  color: var(--color-primary); display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.service-card p { font-size: .93rem; color: var(--color-text-light); margin-bottom: 14px; }
.service-count { font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--color-primary); }

/* ---------- Tag gallery ---------- */
.tag-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.tag-card {
  background: #fff; border-radius: var(--radius); padding: 26px 20px 22px; border: 1px solid var(--color-border);
  transition: transform .2s ease, box-shadow .2s ease;
}
.tag-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.tag-card h4 { font-size: 1.02rem; margin: 0; }
.tag { display: inline-block; font-size: .68rem; font-weight: 800; letter-spacing: .07em; padding: 5px 10px; border-radius: 100px; margin-bottom: 14px; }
.tag-umzug { background: var(--color-primary-light); color: var(--color-primary-dark); }
.tag-entruempelung { background: #fdeee0; color: #b25b12; }
.tag-zusatz { background: #eef1fb; color: #4650b5; }

/* ---------- Process (dark) ---------- */
.process-section { background: linear-gradient(160deg, var(--color-dark) 0%, var(--color-primary-darker) 130%); }
.process-section .section-head { max-width: 640px; }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 20px; }
.process-step { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10); border-radius: var(--radius); padding: 24px 20px; }
.step-num { display: block; font-size: 1.6rem; font-weight: 900; color: var(--color-accent); margin-bottom: 10px; }
.process-step h4 { color: #fff; font-size: 1.02rem; margin-bottom: 8px; }
.process-step p { color: rgba(255,255,255,.7); font-size: .88rem; margin: 0; }

/* ---------- USP split ---------- */
.usp-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.usp-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.usp-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.usp-media-badge { position: absolute; left: 16px; bottom: 16px; background: rgba(10,20,26,.78); color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .05em; padding: 8px 14px; border-radius: 100px; backdrop-filter: blur(4px); }
.usp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 26px; margin: 28px 0 30px; }
.usp-item h5 { font-size: 1rem; margin-bottom: 4px; }
.usp-item p { font-size: .88rem; color: var(--color-text-light); margin: 0; }

/* ---------- Before/After Slider ---------- */
.ba-slider {
  position: relative; max-width: 900px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); cursor: ew-resize; user-select: none; aspect-ratio: 4/3;
}
.ba-img { width: 100%; height: 100%; display: block; object-fit: cover; -webkit-user-drag: none; user-drag: none; pointer-events: none; }
.ba-img-after { position: absolute; inset: 0; }
.ba-before-wrap { position: absolute; inset: 0; clip-path: inset(0 38% 0 0); }
.ba-before-wrap .ba-img-before { width: 100%; height: 100%; }
.ba-tag { position: absolute; top: 18px; z-index: 3; font-size: .74rem; font-weight: 800; letter-spacing: .05em; padding: 7px 14px; border-radius: 100px; color: #fff; pointer-events: none; transition: opacity .15s ease; }
.ba-tag-left { left: 18px; background: rgba(10,20,26,.72); }
.ba-tag-right { right: 18px; background: var(--color-primary); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 62%; width: 0; z-index: 4;
  display: flex; align-items: center; justify-content: center; pointer-events: none;
}
.ba-handle::before { content: ""; position: absolute; top: 0; bottom: 0; left: -1px; width: 3px; background: #fff; box-shadow: 0 0 0 1px rgba(0,0,0,.12); }
.ba-handle svg {
  position: relative; width: 42px; height: 42px; padding: 10px; border-radius: 50%;
  background: #fff; color: var(--color-primary-dark); box-shadow: var(--shadow-sm);
}

/* ---------- Interactive house hotspots ---------- */
.hotspot-wrap { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: stretch; }
.hotspot-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 3/4; max-height: 620px; border: 1px solid var(--color-border); background: var(--color-bg-alt); }
.hotspot-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hotspot-dot {
  position: absolute; width: 30px; height: 30px; margin: -15px 0 0 -15px; border-radius: 50%;
  background: rgba(10,20,26,.55); border: 2px solid #fff; color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 700; line-height: 1;
  transition: background .18s ease, transform .18s ease; z-index: 2;
}
.hotspot-dot::after {
  content: ""; position: absolute; inset: -8px; border-radius: 50%; border: 2px solid rgba(255,255,255,.75);
  animation: hotspot-pulse 2.2s ease-out infinite;
}
.hotspot-dot:hover { transform: scale(1.12); }
.hotspot-dot.active { background: var(--color-primary); border-color: #fff; transform: scale(1.08); }
.hotspot-dot.active::after { display: none; }
@keyframes hotspot-pulse {
  0% { transform: scale(.7); opacity: .9; }
  75% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}
.hotspot-tag {
  position: absolute; transform: translate(-50%, -130%); background: #fff; color: var(--color-dark-2);
  padding: 7px 12px; border-radius: 8px; font-size: .74rem; font-weight: 800; letter-spacing: .03em;
  white-space: nowrap; box-shadow: var(--shadow-sm); pointer-events: none; z-index: 3;
  opacity: 0; transition: opacity .15s ease, transform .15s ease;
}
.hotspot-tag.show { opacity: 1; transform: translate(-50%, -145%); }

.hotspot-panel { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 34px 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; min-height: 340px; }
.hotspot-num { font-size: 2.6rem; font-weight: 900; color: var(--color-primary-light); line-height: 1; margin-bottom: 6px; }
.hotspot-panel h3 { font-size: 1.35rem; margin-bottom: 4px; }
.hotspot-tagline { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--color-primary); margin-bottom: 14px; }
.hotspot-panel p.hotspot-desc { color: var(--color-text-light); font-size: .95rem; margin-bottom: 20px; }
.hotspot-list { border-top: 1px solid var(--color-border); margin-top: auto; padding-top: 18px; display: flex; flex-direction: column; gap: 2px; }
.hotspot-list button {
  display: flex; align-items: center; gap: 10px; width: 100%; text-align: left; background: none; border: none;
  padding: 10px 8px; border-radius: 8px; cursor: pointer; font-family: inherit; font-size: .88rem; font-weight: 600;
  color: var(--color-text-light); transition: background .15s ease, color .15s ease;
}
.hotspot-list button .num { font-size: .78rem; font-weight: 800; color: var(--color-text-light); width: 20px; flex-shrink: 0; }
.hotspot-list button:hover { background: var(--color-bg-alt); }
.hotspot-list button.active { color: var(--color-dark-2); background: var(--color-primary-light); }
.hotspot-list button.active .num { color: var(--color-primary-dark); }
.hotspot-panel .btn { margin-top: 20px; align-self: flex-start; }

/* ---------- Photo grid / gallery ---------- */
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.photo-item { position: relative; border: none; padding: 0; cursor: pointer; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: var(--color-bg-alt); }
.photo-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.photo-item:hover img { transform: scale(1.06); }
.photo-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.28), transparent 45%); opacity: 0; transition: opacity .2s; }
.photo-item:hover::after { opacity: 1; }

/* ---------- Why us ---------- */
.why-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.why-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.why-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; }
.why-caption { position: absolute; left: 16px; bottom: 16px; background: rgba(10,20,26,.78); color: #fff; font-size: .7rem; font-weight: 800; letter-spacing: .05em; padding: 8px 14px; border-radius: 100px; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 26px; margin-top: 28px; }
.why-item h5 { font-size: 1rem; margin-bottom: 4px; }
.why-item p { font-size: .89rem; color: var(--color-text-light); margin: 0; }

/* ---------- Audience ---------- */
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.audience-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 38px 34px; }
.audience-card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.audience-card p { color: var(--color-text-light); font-size: .95rem; }
.audience-card-dark { background: linear-gradient(160deg, var(--color-dark) 0%, var(--color-primary-darker) 140%); border-color: transparent; }
.audience-card-dark h3, .audience-card-dark p { color: #fff; }
.audience-card-dark p { color: rgba(255,255,255,.78); }
.check-list { margin: 18px 0 22px; display: flex; flex-direction: column; gap: 10px; }
.check-list li { position: relative; padding-left: 28px; font-size: .92rem; font-weight: 600; }
.audience-card .check-list li { color: var(--color-dark-2); }
.audience-card-dark .check-list li { color: #fff; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%; background: var(--color-primary-light); }
.check-list li::after { content: ""; position: absolute; left: 5px; top: 7px; width: 8px; height: 4px; border-left: 2px solid var(--color-primary); border-bottom: 2px solid var(--color-primary); transform: rotate(-45deg); }
.audience-card-dark .check-list li::before { background: rgba(255,255,255,.16); }
.audience-card-dark .check-list li::after { border-color: var(--color-accent); }
.link-arrow { display: inline-block; font-weight: 700; color: var(--color-primary); font-size: .95rem; }
.link-arrow-light { color: #fff; }

/* ---------- Reviews ---------- */
.reviews-section { background: linear-gradient(160deg, var(--color-dark) 0%, var(--color-primary-darker) 140%); text-align: center; }
.google-g { color: #4285F4; font-weight: 900; }
.reviews-footer { margin-top: 36px; }

.reviews-grid {
  display: flex; gap: 20px; overflow-x: auto; padding: 8px 4px 20px; margin: 0 -4px;
  scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
}
.reviews-grid::-webkit-scrollbar { height: 6px; }
.reviews-grid::-webkit-scrollbar-thumb { background: rgba(255,255,255,.2); border-radius: 10px; }

.review-card {
  flex: 0 0 300px; background: #fff; border-radius: var(--radius); padding: 24px; text-align: left;
  scroll-snap-align: start; box-shadow: var(--shadow-sm);
}
.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; color: #fff; font-weight: 800;
  display: flex; align-items: center; justify-content: center; font-size: .95rem;
}
.review-head strong { display: block; font-size: .92rem; color: var(--color-dark-2); }
.review-meta { font-size: .76rem; color: var(--color-text-light); }
.review-stars { color: #ffb400; letter-spacing: 1px; font-size: .9rem; margin-bottom: 6px; }
.review-tag {
  display: inline-block; font-size: .7rem; font-weight: 700; color: var(--color-primary-dark);
  background: var(--color-primary-light); padding: 3px 10px; border-radius: 100px; margin-bottom: 8px;
}
.review-card p { font-size: .86rem; color: var(--color-text); line-height: 1.55; margin: 0; }

/* ---------- Contact ---------- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.15fr; gap: 28px; align-items: stretch; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex; flex-direction: column; gap: 6px; background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius); padding: 24px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.contact-card svg { color: var(--color-primary); margin-bottom: 4px; }
.contact-card span { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 800; color: var(--color-text-light); }
.contact-card strong { font-size: 1.05rem; color: var(--color-dark-2); }
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: transparent; }
.contact-card-static { cursor: default; }
.contact-card-static:hover { transform: none; box-shadow: none; border-color: var(--color-border); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; min-height: 340px; box-shadow: var(--shadow-sm); }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-dark); color: rgba(255,255,255,.72); padding-top: 64px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-logo { height: 40px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { font-size: .9rem; color: rgba(255,255,255,.55); max-width: 260px; }
.footer-col h5 { color: #fff; font-size: .92rem; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .9rem; color: rgba(255,255,255,.62); }
.footer-col a:hover { color: var(--color-accent); }
.footer-col li { font-size: .9rem; color: rgba(255,255,255,.62); }
.footer-link-btn { background: none; border: none; padding: 0; margin: 0; font: inherit; font-size: .9rem; color: rgba(255,255,255,.62); cursor: pointer; text-align: left; }
.footer-link-btn:hover { color: var(--color-accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.10); padding: 22px 0; font-size: .82rem; color: rgba(255,255,255,.45); }
.footer-bottom .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 6px 16px; }
.footer-credit a { color: rgba(255,255,255,.6); font-weight: 600; text-decoration: none; }
.footer-credit a:hover { color: #fff; text-decoration: underline; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; background: rgba(6,12,16,.92); z-index: 1000; display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 10px; }
.lightbox-close { position: absolute; top: 22px; right: 28px; background: none; border: none; color: #fff; font-size: 2.2rem; cursor: pointer; line-height: 1; }

/* ---------- Legal pages ---------- */
.legal-page { padding: 140px 0 100px; max-width: 820px; margin: 0 auto; }
.legal-page h1 { margin-bottom: 8px; }
.legal-page h2 { font-size: 1.2rem; margin-top: 2.2em; }
.legal-page p, .legal-page li { color: var(--color-text); font-size: .96rem; }
.legal-page a { color: var(--color-primary); font-weight: 600; }
.legal-link-btn { background: none; border: none; padding: 0; margin: 0; font: inherit; font-size: inherit; color: var(--color-primary); font-weight: 600; text-decoration: underline; cursor: pointer; }
.legal-back { display: inline-block; margin-bottom: 26px; font-weight: 700; color: var(--color-primary); }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .tag-gallery { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .usp-wrap, .why-wrap, .hotspot-wrap { grid-template-columns: 1fr; }
  .why-media { order: -1; }
  .hotspot-media { aspect-ratio: 4/3; }
  .audience-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .main-nav { position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; background: #fff; padding: 20px 24px; transform: translateX(100%); transition: transform .25s ease; overflow-y: auto; z-index: 400; }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
  .main-nav > ul > li { width: 100%; }
  .main-nav > ul > li > a { padding: 14px 0; width: 100%; justify-content: space-between; border-bottom: 1px solid var(--color-border); }
  .main-nav .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; display: none; flex-direction: column; padding-left: 12px; }
  .main-nav .has-dropdown.open .dropdown { display: flex; }
  .phone-pill span, .phone-pill { display: none; }
  .whatsapp-pill { display: none; }
  .header-divider { display: none; }
  .burger { display: flex; }
  .lang-switch { order: -1; }
  .header-actions .btn-primary { display: none; }
}

@media (max-width: 720px) {
  :root { --header-h: 68px; }
  .section { padding: 64px 0; }
  .logo img { height: 38px; }
  .service-grid { grid-template-columns: 1fr; }
  .tag-gallery { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .usp-grid, .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px 24px; padding-bottom: 36px; }
  .footer-brand, .footer-col:first-of-type { grid-column: 1 / -1; }
  .footer-brand p { max-width: none; }
  .hero { min-height: 100vh; }
  .trust-badges { gap: 16px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .audience-card { padding: 30px 24px; }
  .hotspot-panel { padding: 28px 22px; }
  .contact-card { padding: 20px; }
  .map-embed { min-height: 280px; }
  .review-card { flex: 0 0 82vw; }
  .lightbox { padding: 20px; }
  .legal-page { padding: 110px 0 70px; }
}

/* ---------- Small phones ---------- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .hero { min-height: 100svh; }
  .hero-content { padding-top: 20px; padding-bottom: 30px; }
  .hero h1 { font-size: clamp(1.9rem, 9vw, 2.5rem); }
  .hero-sub { font-size: 1rem; }
  .hero-rating { padding: 7px 12px; }
  .trust-badges { flex-direction: column; align-items: flex-start; gap: 10px; }
  .tag-gallery { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr; }
  .service-card { padding: 24px 20px; }
  .audience-card { padding: 26px 20px; }
  .hotspot-panel { padding: 24px 18px; }
  .hotspot-media { aspect-ratio: 1/1; }
  .contact-card { padding: 18px; }
  .footer-inner { gap: 28px 20px; }
  .lang-btn { padding: 4px 2px; font-size: .82rem; }
  .btn-lg { padding: 14px 24px; font-size: .96rem; }
  .header-inner { gap: 8px; }
  .site-header .btn-primary { padding: 11px 16px; font-size: .85rem; }
  .legal-page { padding: 100px 0 50px; }
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1200;
  background: #fff;
  box-shadow: 0 -10px 30px rgba(15, 30, 40, .14);
  border-top: 1px solid var(--color-border);
  transform: translateY(100%);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}
.cookie-banner.show { transform: translateY(0); opacity: 1; }
.cookie-banner-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner-text { flex: 1 1 420px; margin: 0; font-size: .92rem; color: var(--color-text); line-height: 1.5; }
.cookie-banner-text a { color: var(--color-primary-dark); font-weight: 600; text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 12px; flex: 0 0 auto; }
.cookie-banner-actions .btn { padding: 12px 22px; font-size: .92rem; }

@media (max-width: 600px) {
  .cookie-banner-inner { padding: 14px 16px; gap: 12px; flex-direction: column; align-items: stretch; }
  .cookie-banner-text { font-size: .82rem; line-height: 1.45; }
  .cookie-banner-actions { width: 100%; gap: 8px; }
  .cookie-banner-actions .btn { flex: 1 1 0; padding: 10px 14px; font-size: .85rem; }
}

/* ---------- Einsatzgebiet / Städte ---------- */
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.area-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px 22px 20px;
}
.area-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.area-card p { font-size: .9rem; color: var(--color-text-light); margin: 0; }
.area-footnote {
  text-align: center;
  margin-top: 32px;
  font-size: .95rem;
  color: var(--color-text-light);
}
.area-footnote a { color: var(--color-primary); font-weight: 700; }

@media (max-width: 980px) {
  .area-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .area-grid { grid-template-columns: 1fr; }
}

/* ---------- FAQ Accordion ---------- */
.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 6px 22px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 30px 16px 0;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-dark-2);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-primary);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "–"; }
.faq-a { padding: 0 0 18px; color: var(--color-text-light); font-size: .95rem; line-height: 1.6; }

/* ---------- Blog / Ratgeber ---------- */
.blog-hero { padding: 130px 0 40px; }
.blog-hero .kicker { display: block; text-align: center; }
.blog-hero h1 { text-align: center; max-width: 760px; margin: 0 auto 14px; }
.blog-hero p { text-align: center; max-width: 640px; margin: 0 auto; color: var(--color-text-light); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 40px auto 100px;
  padding: 0 24px;
}
.blog-card {
  display: block;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.blog-card:hover { box-shadow: 0 14px 30px rgba(15,30,40,.10); transform: translateY(-2px); }
.blog-card .kicker { margin-bottom: 10px; }
.blog-card h2 { font-size: 1.25rem; margin-bottom: 10px; }
.blog-card p { color: var(--color-text-light); font-size: .93rem; margin: 0; }
.blog-card .link-arrow { display: inline-block; margin-top: 14px; }

.article-page { padding: 140px 0 60px; max-width: 780px; margin: 0 auto; }
.article-page .kicker { display: block; }
.article-page h1 { margin: 10px 0 18px; font-size: clamp(1.8rem, 4vw, 2.4rem); }
.article-meta { color: var(--color-text-light); font-size: .88rem; margin-bottom: 30px; }
.article-body h2 { font-size: 1.4rem; margin-top: 1.7em; }
.article-body h3 { font-size: 1.12rem; margin-top: 1.4em; }
.article-body p, .article-body li { color: var(--color-text); font-size: 1rem; line-height: 1.7; }
.article-body ul, .article-body ol { padding-left: 22px; margin: 1em 0; }
.article-body a { color: var(--color-primary); font-weight: 600; }
.article-body a.btn-primary { color: #fff; }
.article-cta {
  margin: 40px 0;
  padding: 26px;
  background: var(--color-primary-light);
  border-radius: var(--radius-lg);
  text-align: center;
}
.article-cta p { margin-bottom: 14px; font-weight: 600; color: var(--color-dark-2); }
.article-related { margin-top: 50px; padding-top: 30px; border-top: 1px solid var(--color-border); }
.article-related h3 { margin-bottom: 14px; }
.article-related ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.article-related a { color: var(--color-primary); font-weight: 600; }
.legal-back { display: inline-block; margin-bottom: 20px; color: var(--color-text-light); font-weight: 600; font-size: .9rem; }
.legal-back:hover { color: var(--color-primary); }

@media (max-width: 760px) {
  .blog-grid { grid-template-columns: 1fr; margin: 30px auto 70px; }
  .article-page { padding: 110px 0 50px; }
}
