/* ============================================================
   Meister Räumung – Main Stylesheet
   Optimized for PageSpeed: ~18KB, no framework
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --navy: #1a2744;
  --navy-dark: #111c33;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --green: #25D366;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --white: #ffffff;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
  --font-heading: 'Manrope', system-ui, sans-serif;
  --font-body: 'Source Sans 3', 'Source Sans Pro', system-ui, sans-serif;
  --transition: 180ms ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
p { line-height: 1.7; }

/* --- Layout --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 4rem 0; }
.section-lg { padding: 5rem 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* --- Badge / Tag --- */
.badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--orange);
  background: rgba(249,115,22,.1);
  padding: .3rem .75rem;
  border-radius: 999px;
  margin-bottom: .75rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-heading); font-weight: 700;
  padding: .85rem 1.75rem;
  border-radius: var(--radius); border: 2px solid transparent;
  cursor: pointer; transition: background var(--transition), transform var(--transition), border-color var(--transition);
  font-size: .9rem; text-decoration: none; white-space: nowrap;
}
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); }
.btn-outline { border-color: rgba(255,255,255,.35); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-whatsapp { background: var(--green); color: var(--white); }
.btn-whatsapp:hover { background: #1fba5a; }
.btn-ghost { background: transparent; border-color: var(--gray-200); color: var(--navy); }
.btn-ghost:hover { background: var(--gray-50); border-color: var(--orange); color: var(--orange); }
.btn-sm { padding: .6rem 1.2rem; font-size: .82rem; }

/* --- Header --- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo { display: flex; align-items: center; gap: .65rem; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .line1 { font-family: var(--font-heading); font-weight: 800; font-size: 1.15rem; color: var(--navy); }
.logo-text .line2 { font-family: var(--font-heading); font-weight: 800; font-size: 1.15rem; color: var(--orange); margin-top: -2px; }

.nav { display: flex; align-items: center; gap: .25rem; }
.nav-link {
  padding: .5rem .75rem; font-size: .87rem; font-weight: 600;
  color: var(--gray-600); border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--orange); background: rgba(249,115,22,.06); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  display: flex; align-items: center; gap: .3rem;
  padding: .5rem .75rem; font-size: .87rem; font-weight: 600;
  color: var(--gray-600); border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  cursor: pointer;
}
.nav-dropdown-btn:hover, .nav-dropdown.open .nav-dropdown-btn {
  color: var(--orange); background: rgba(249,115,22,.06);
}
.nav-dropdown-btn svg { transition: transform var(--transition); }
.nav-dropdown.open .nav-dropdown-btn svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 220px; padding: .5rem;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 200;
}
.dropdown-menu.wide { min-width: 280px; max-height: 380px; overflow-y: auto; }
.nav-dropdown.open .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block; padding: .55rem 1rem; font-size: .85rem; color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.dropdown-menu a:hover { color: var(--orange); background: rgba(249,115,22,.06); }
.dropdown-menu .divider { border: none; border-top: 1px solid var(--gray-100); margin: .35rem 0; }
.dropdown-menu .section-title { padding: .35rem 1rem; font-size: .72rem; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: .06em; }

.header-cta { display: flex; align-items: center; gap: .75rem; }
.phone-link {
  display: flex; align-items: center; gap: .4rem;
  font-weight: 700; font-size: .87rem; color: var(--navy);
  transition: color var(--transition);
}
.phone-link:hover { color: var(--orange); }

/* Mobile hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: .5rem; border-radius: var(--radius-sm);
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--white); border-top: 1px solid var(--gray-100);
  box-shadow: var(--shadow-lg);
  max-height: 80vh; overflow-y: auto;
  padding: 1rem;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: .65rem 1rem; font-size: .92rem; font-weight: 600;
  color: var(--gray-600); border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.mobile-nav a:hover { color: var(--orange); background: rgba(249,115,22,.06); }
.mobile-nav .indent { padding-left: 2rem; font-size: .87rem; font-weight: 400; }
.mobile-nav .divider { border: none; border-top: 1px solid var(--gray-100); margin: .5rem 0; }
.mobile-nav .btns { display: flex; flex-direction: column; gap: .5rem; margin-top: .75rem; }

@media (max-width: 1020px) {
  .nav, .header-cta .btn, .header-cta .phone-link { display: none; }
  .hamburger { display: flex; }
}

/* Header spacer */
.header-spacer { height: 64px; }

/* --- Hero Section --- */
.hero {
  background: var(--navy);
  position: relative; overflow: hidden;
  padding: 4.5rem 0 6rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .18;
}
.hero-content { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1fr 480px; gap: 3rem; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(249,115,22,.18); border: 1px solid rgba(249,115,22,.3);
  border-radius: 999px; padding: .4rem 1rem; margin-bottom: 1.25rem;
}
.hero-badge .dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; animation: pulse 1.8s infinite; }
.hero-badge span { color: var(--orange); font-size: .82rem; font-weight: 700; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .5; } }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 .accent { color: var(--orange); }
.hero-sub { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 540px; margin-bottom: 2rem; }
.hero-usps { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem .75rem; margin-bottom: 2rem; }
.hero-usp { display: flex; align-items: center; gap: .4rem; font-size: .87rem; color: rgba(255,255,255,.85); }
.hero-usp svg { color: var(--orange); flex-shrink: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2.5rem; }
.social-proof { display: flex; align-items: center; gap: 1rem; }
.avatar-stack { display: flex; }
.avatar-stack span {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, #64748b, #94a3b8);
  border: 2px solid var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700; color: var(--white);
  margin-left: -8px;
}
.avatar-stack span:first-child { margin-left: 0; }
.stars { color: var(--orange); font-size: .85rem; letter-spacing: -.5px; }
.proof-text { font-size: .78rem; color: rgba(255,255,255,.6); margin-top: 2px; }

/* Hero Form Card */
.hero-card {
  background: var(--white); border-radius: 1.25rem;
  padding: 2rem; box-shadow: var(--shadow-lg);
}
.hero-card h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.hero-card p { color: var(--gray-500); font-size: .87rem; margin-bottom: 1.5rem; }
.hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0;
  overflow: hidden; line-height: 0;
}
.hero-wave svg { display: block; width: 100%; }

/* --- Trust Badges --- */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 2rem 0;
}
.trust-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.trust-badge {
  display: flex; align-items: center; gap: .65rem;
  padding: .75rem 1.25rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  transition: background var(--transition), border-color var(--transition);
}
.trust-badge:hover { background: rgba(249,115,22,.05); border-color: rgba(249,115,22,.25); }
.trust-badge-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--orange);
}
.trust-badge-text strong { display: block; font-size: .78rem; color: var(--navy); }
.trust-badge-text small { font-size: .72rem; color: var(--gray-400); }

/* --- Section Headers --- */
.section-header { margin-bottom: 3rem; }
.section-header h2 { margin: .5rem 0 1rem; }
.section-header p { color: var(--gray-500); font-size: 1.05rem; max-width: 640px; }

/* --- Services Grid --- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  display: block; padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  text-decoration: none;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(249,115,22,.3);
  transform: translateY(-2px);
}
.service-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(249,115,22,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); margin-bottom: 1rem;
  transition: background var(--transition), color var(--transition);
}
.service-card:hover .service-icon { background: var(--orange); color: var(--white); }
.service-card h3 { font-size: 1rem; margin-bottom: .35rem; }
.service-card .price { font-size: .8rem; color: var(--gray-400); margin-bottom: .75rem; }
.service-card .arrow { color: var(--orange); font-size: .82rem; font-weight: 700; opacity: 0; transition: opacity var(--transition); }
.service-card:hover .arrow { opacity: 1; }
.service-card-cta {
  background: var(--navy); color: var(--white); border-radius: var(--radius);
  padding: 1.5rem; display: flex; flex-direction: column;
}
.service-card-cta h3 { color: var(--white); font-size: 1rem; margin-bottom: .5rem; }
.service-card-cta p { color: rgba(255,255,255,.6); font-size: .85rem; margin-bottom: 1rem; flex: 1; }

/* --- Process Steps --- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; }
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .process-grid { grid-template-columns: 1fr; } }
.process-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius); padding: 1.5rem;
  box-shadow: var(--shadow-sm); position: relative;
}
.step-num {
  position: absolute; top: -12px; left: -12px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  font-family: var(--font-heading); font-weight: 700; font-size: .87rem;
  display: flex; align-items: center; justify-content: center;
}
.step-icon {
  width: 44px; height: 44px; background: rgba(249,115,22,.08);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--orange); margin: .5rem 0 .85rem;
}
.process-card h3 { font-size: .95rem; margin-bottom: .5rem; }
.process-card p { font-size: .85rem; color: var(--gray-500); }

/* --- Before/After --- */
.before-after-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .before-after-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .before-after-grid { grid-template-columns: 1fr; } }
.ba-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm); }
.ba-images { display: grid; grid-template-columns: 1fr 1fr; }
.ba-img { position: relative; height: 160px; overflow: hidden; }
.ba-img img { width: 100%; height: 100%; object-fit: cover; }
.ba-label {
  position: absolute; top: 8px; left: 8px;
  font-size: .7rem; font-weight: 700; padding: .2rem .6rem;
  border-radius: 999px; color: var(--white);
}
.ba-label.before { background: #ef4444; }
.ba-label.after { background: #22c55e; }
.ba-title { padding: .85rem 1rem; font-size: .87rem; font-weight: 700; color: var(--navy); background: var(--white); }

/* --- Testimonials --- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testi-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius); padding: 1.5rem;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: box-shadow var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-md); }
.testi-quote { font-size: 2rem; color: rgba(249,115,22,.25); margin-bottom: .5rem; line-height: 1; }
.testi-stars { color: var(--orange); font-size: .9rem; margin-bottom: .75rem; }
.testi-text { font-size: .88rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 1rem; flex: 1; font-style: italic; }
.testi-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.testi-name { font-weight: 700; font-size: .85rem; color: var(--navy); }
.testi-loc { font-size: .72rem; color: var(--gray-400); }
.testi-service { font-size: .72rem; background: rgba(249,115,22,.08); color: var(--orange); padding: .2rem .6rem; border-radius: 999px; font-weight: 600; }
.stats-bar { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 1.75rem; margin-top: 2rem; box-shadow: var(--shadow-sm); }
.stat-item { text-align: center; }
.stat-value { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--orange); }
.stat-label { font-size: .82rem; color: var(--gray-500); margin-top: .2rem; }

/* --- Districts --- */
.districts-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.district-tag {
  display: inline-block; padding: .4rem .9rem;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 999px; font-size: .82rem; font-weight: 600; color: var(--navy);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.district-tag:hover { border-color: var(--orange); color: var(--orange); background: rgba(249,115,22,.04); }

/* --- CTA Banner --- */
.cta-banner { background: var(--navy); padding: 4.5rem 0; text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,.7); font-size: 1.1rem; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }

/* --- Page Hero --- */
.page-hero { background: var(--navy); padding: 4rem 0; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: rgba(255,255,255,.5); margin-bottom: 1.5rem; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: rgba(255,255,255,.3); }
.breadcrumb .current { color: var(--white); }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero h1 .accent { color: var(--orange); }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 640px; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }

/* --- Price Table --- */
.price-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius); margin-bottom: .75rem;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.price-row:hover { box-shadow: var(--shadow-md); border-color: rgba(249,115,22,.2); }
.price-row-info { display: flex; align-items: center; gap: 1rem; }
.price-check {
  width: 40px; height: 40px; background: rgba(249,115,22,.08);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--orange); flex-shrink: 0;
  transition: background var(--transition);
}
.price-row:hover .price-check { background: var(--orange); color: var(--white); }
.price-row-name { font-weight: 700; color: var(--navy); font-size: .95rem; }
.price-row-sub { font-size: .8rem; color: var(--gray-400); }
.price-amount { text-align: right; }
.price-from { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800; color: var(--orange); }
.price-to { font-size: .8rem; color: var(--gray-400); }

/* --- Info Box --- */
.info-box {
  display: flex; gap: .75rem;
  background: #eff6ff; border: 1px solid #bfdbfe;
  border-radius: var(--radius); padding: 1rem 1.25rem;
  font-size: .87rem; color: #1e40af; margin-bottom: 2rem;
}
.info-box svg { flex-shrink: 0; margin-top: 2px; }

/* --- Card Boxes --- */
.card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius); padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.card-navy { background: var(--navy); color: var(--white); }
.card-navy h3 { color: var(--white); }
.card-orange { background: rgba(249,115,22,.05); border-color: rgba(249,115,22,.15); }

/* --- Forms --- */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: .85rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.form-control {
  width: 100%; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); padding: .75rem 1rem;
  font-size: .9rem; font-family: inherit; color: var(--gray-700);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}
.form-control:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,.12);
}
.form-control::placeholder { color: var(--gray-400); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.form-row-full { grid-column: 1 / -1; }
.checkbox-group { display: flex; align-items: flex-start; gap: .65rem; }
.checkbox-group input[type="checkbox"] { margin-top: 3px; accent-color: var(--orange); flex-shrink: 0; }
.checkbox-group label { font-size: .8rem; color: var(--gray-500); cursor: pointer; }
.gdpr-note {
  background: #eff6ff; border: 1px solid #bfdbfe;
  border-radius: var(--radius-sm); padding: .75rem 1rem;
  font-size: .78rem; color: #1e40af; margin-bottom: 1rem;
}
.form-submit {
  width: 100%; padding: 1rem;
  background: var(--orange); color: var(--white);
  font-family: var(--font-heading); font-weight: 700; font-size: 1rem;
  border-radius: var(--radius); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  transition: background var(--transition); margin-top: .5rem;
}
.form-submit:hover { background: var(--orange-dark); }
.form-submit:disabled { opacity: .6; cursor: not-allowed; }
.form-success {
  text-align: center; padding: 2.5rem;
}
.form-success .icon { width: 64px; height: 64px; background: #dcfce7; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; color: #16a34a; }
.form-success h3 { margin-bottom: .5rem; }
.form-success p { color: var(--gray-500); font-size: .9rem; }
.form-error { background: #fef2f2; border: 1px solid #fecaca; color: #dc2626; border-radius: var(--radius-sm); padding: .75rem 1rem; font-size: .85rem; margin-bottom: 1rem; }

/* --- FAQ Accordion --- */
.faq-item {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius); margin-bottom: .6rem;
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.5rem; text-align: left;
  background: transparent; border: none; cursor: pointer;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--gray-50); }
.faq-question span { font-weight: 600; color: var(--navy); font-size: .92rem; padding-right: 1rem; }
.faq-chevron { color: var(--orange); flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.faq-item.open .faq-answer { padding-bottom: 1.25rem; max-height: 400px; }
.faq-answer p { font-size: .88rem; color: var(--gray-600); line-height: 1.7; border-top: 1px solid var(--gray-100); padding-top: 1rem; }

/* --- Sidebar Contact Card --- */
.sidebar-card { position: sticky; top: 80px; }
.contact-card { background: var(--navy); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1rem; }
.contact-card h3 { color: var(--white); margin-bottom: .4rem; }
.contact-card p { color: rgba(255,255,255,.65); font-size: .85rem; margin-bottom: 1.25rem; }
.contact-btns { display: flex; flex-direction: column; gap: .6rem; }
.contact-btn {
  display: flex; align-items: center; gap: .6rem;
  padding: .8rem 1rem; border-radius: var(--radius-sm);
  font-weight: 700; font-size: .85rem; text-decoration: none;
  transition: opacity var(--transition);
}
.contact-btn:hover { opacity: .88; }
.contact-btn.orange { background: var(--orange); color: var(--white); }
.contact-btn.wa { background: var(--green); color: var(--white); }
.contact-btn.ghost { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); color: var(--white); }

/* --- Two-Column Layout --- */
.two-col { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; }
.three-col { display: grid; grid-template-columns: 1fr 1fr 320px; gap: 2rem; }
@media (max-width: 1000px) { .two-col { grid-template-columns: 1fr; } .three-col { grid-template-columns: 1fr; } }

/* --- USP List --- */
.usp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin: 1.5rem 0; }
.usp-item { display: flex; align-items: flex-start; gap: .5rem; font-size: .87rem; color: var(--gray-600); }
.usp-item svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }

/* --- SEO Keyword Block --- */
.seo-block {
  background: var(--gray-50); border: 1px solid var(--gray-100);
  border-radius: var(--radius); padding: 2rem; margin-bottom: 1.5rem;
}
.seo-kw-tag {
  display: inline-block; background: rgba(249,115,22,.1); color: var(--orange);
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  padding: .25rem .7rem; border-radius: 999px; margin-bottom: .85rem;
}
.seo-block h3 { font-size: 1.1rem; margin-bottom: 1rem; line-height: 1.35; }
.seo-block p { font-size: .87rem; color: var(--gray-600); line-height: 1.75; margin-bottom: .85rem; }
.seo-block-actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }

/* --- Districts Grid (einsatzgebiete) --- */
.bezirke-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 900px) { .bezirke-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .bezirke-grid { grid-template-columns: 1fr; } }
.bezirk-card {
  display: block; padding: 1.1rem;
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.bezirk-card:hover { box-shadow: var(--shadow-md); border-color: rgba(249,115,22,.3); transform: translateY(-2px); }
.bezirk-num {
  width: 36px; height: 36px; background: rgba(249,115,22,.08);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: .85rem; color: var(--orange);
  margin-bottom: .6rem; flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
}
.bezirk-card:hover .bezirk-num { background: var(--orange); color: var(--white); }
.bezirk-name { font-weight: 700; font-size: .87rem; color: var(--navy); }
.bezirk-desc { font-size: .75rem; color: var(--gray-400); margin-top: 2px; }

/* --- Icon utilities --- */
.icon-sm { width: 18px; height: 18px; }
.icon-md { width: 22px; height: 22px; }
.icon-lg { width: 28px; height: 28px; }

/* --- Color Utilities --- */
.bg-gray { background: var(--gray-50); }
.bg-navy { background: var(--navy); }
.bg-white { background: var(--white); }
.text-orange { color: var(--orange); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--gray-500); }
.text-sm { font-size: .87rem; }
.text-xs { font-size: .78rem; }
.font-bold { font-weight: 700; }
.mt-1 { margin-top: .4rem; } .mt-2 { margin-top: .75rem; } .mt-3 { margin-top: 1.25rem; } .mt-4 { margin-top: 1.75rem; }
.mb-1 { margin-bottom: .4rem; } .mb-2 { margin-bottom: .75rem; } .mb-3 { margin-bottom: 1.25rem; } .mb-4 { margin-bottom: 1.75rem; }

/* --- Rating Box --- */
.rating-box { border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 1rem 1.25rem; box-shadow: var(--shadow-sm); }
.rating-stars { display: flex; gap: 2px; margin-bottom: .35rem; }
.rating-stars svg { color: var(--orange); }
.rating-label { font-weight: 700; font-size: .87rem; color: var(--navy); }
.rating-sub { font-size: .75rem; color: var(--gray-400); }
.rating-quote { font-size: .78rem; color: var(--gray-500); font-style: italic; margin-top: .75rem; padding-top: .75rem; border-top: 1px solid var(--gray-100); }

/* --- Included Box --- */
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; }
.included-item { display: flex; align-items: flex-start; gap: .5rem; font-size: .85rem; color: var(--gray-600); }
.included-item svg { color: #22c55e; flex-shrink: 0; margin-top: 2px; }

/* --- Footer --- */
.footer { background: var(--navy); color: var(--white); }
.footer-top { background: var(--orange); padding: 1.1rem 0; }
.footer-top-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-top-title { display: flex; align-items: center; gap: .65rem; font-weight: 700; font-size: 1.05rem; }
.footer-top-btns { display: flex; gap: .65rem; }
.footer-top-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .6rem 1.25rem; border-radius: var(--radius-sm);
  font-weight: 700; font-size: .85rem; transition: opacity var(--transition);
}
.footer-top-btn:hover { opacity: .85; }
.footer-top-btn.white { background: var(--white); color: var(--orange); }
.footer-top-btn.wa { background: var(--green); color: var(--white); }
.footer-main { padding: 4rem 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.5fr 1.2fr; gap: 2.5rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { color: rgba(255,255,255,.6); font-size: .87rem; line-height: 1.65; margin: 1rem 0 1.25rem; }
.footer-usp { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: rgba(255,255,255,.65); margin-bottom: .4rem; }
.footer-usp svg { color: var(--orange); flex-shrink: 0; }
.footer-heading { font-family: var(--font-heading); font-weight: 700; font-size: .95rem; margin-bottom: 1.25rem; color: var(--white); }
.footer-links a { display: block; color: rgba(255,255,255,.6); font-size: .85rem; margin-bottom: .5rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--orange); }
.footer-bezirke { display: grid; grid-template-columns: 1fr 1fr; gap: .15rem .5rem; }
.footer-bezirke a { color: rgba(255,255,255,.5); font-size: .78rem; padding: .1rem 0; transition: color var(--transition); }
.footer-bezirke a:hover { color: var(--orange); }
.footer-contact a, .footer-contact div { display: flex; align-items: flex-start; gap: .65rem; color: rgba(255,255,255,.65); font-size: .85rem; margin-bottom: .85rem; }
.footer-contact a { transition: color var(--transition); }
.footer-contact a:hover { color: var(--orange); }
.footer-contact svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-contact .label { font-size: .72rem; color: rgba(255,255,255,.4); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.1rem 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem; }
.footer-bottom-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,.45); font-size: .78rem; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }
.footer-copy { color: rgba(255,255,255,.35); font-size: .78rem; }

/* --- Sticky Mobile Bar --- */
.sticky-wa {
  position: fixed; bottom: 80px; right: 1rem; z-index: 90;
  background: var(--green); color: var(--white);
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform var(--transition);
}
.sticky-wa:hover { transform: scale(1.08); }
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 89;
  display: none; height: 64px;
}
.sticky-bar-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; height: 100%; }
.sticky-bar a {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  font-weight: 700; font-size: .82rem; color: var(--white);
}
.sticky-bar a.phone { background: var(--navy); }
.sticky-bar a.wa { background: var(--green); }
.sticky-bar a.book { background: var(--orange); }
@media (max-width: 1020px) {
  .sticky-bar { display: block; }
  body { padding-bottom: 64px; }
}

/* --- SVG Icons inline reuse --- */
svg { vertical-align: middle; }

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp .5s ease both; }

/* --- Print --- */
@media print {
  .site-header, .sticky-wa, .sticky-bar, .hero-card { display: none !important; }
}
