/* ===================================================
   X-TERMINATOR - Schädlingsbekämpfung
   Modern German Pest Control Website
   =================================================== */

:root {
  --primary: #1a3c5e;
  --primary-dark: #0f2640;
  --primary-light: #2458852;
  --accent: #e8890c;
  --accent-dark: #c4710a;
  --accent-light: #ffa726;
  --danger: #c0392b;
  --success: #27ae60;
  --text: #1a1a2e;
  --text-light: #5a6472;
  --bg: #ffffff;
  --bg-light: #f5f7fa;
  --bg-dark: #eef1f5;
  --border: #dce3ea;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius: 8px;
  --radius-lg: 16px;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary-dark);
}
h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { line-height: 1.75; color: var(--text-light); }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }

/* ===================== LAYOUT ===================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 80px 0;
}
.section-sm { padding: 48px 0; }
.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title h2 { margin-bottom: 12px; }
.section-title p { font-size: 1.1rem; max-width: 620px; margin: 0 auto; }
.section-title .divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px;
  margin: 16px auto;
}

/* ===================== HEADER ===================== */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.logo-sub {
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Nav */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}
.main-nav a {
  color: var(--text);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
  font-size: 0.9rem;
}
.main-nav a:hover { background: var(--bg-light); color: var(--primary); }
.main-nav a.active { color: var(--accent); }

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.header-phone:hover { background: var(--primary-dark); color: var(--white) !important; }
.header-phone svg { flex-shrink: 0; }

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}
/* Split layout: text left, image right */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  min-height: 100vh;
  width: 100%;
}
.hero-bg {
  position: absolute;
  inset: 0;
  /* subtle dark bg texture on left */
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}
.hero-bg img {
  display: none; /* image shown in .hero-image-col instead */
}
.hero-overlay {
  /* Left-side dark overlay only */
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 25, 45, 0.95) 0%,
    rgba(10, 25, 45, 0.85) 45%,
    rgba(10, 25, 45, 0.1) 65%,
    rgba(10, 25, 45, 0) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 110px 60px 60px 0;
  max-width: 600px;
}
.hero-image-col {
  position: relative;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}
.hero-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 137, 12, 0.2);
  border: 1px solid rgba(232, 137, 12, 0.4);
  color: var(--accent-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.hero h1 span { color: var(--accent-light); }
.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat .num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-light);
  display: block;
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232, 137, 12, 0.4);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}
.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}
.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* ===================== STOERER (Badges/Banners) ===================== */
.stoerer-strip {
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  padding: 12px 0;
  overflow: hidden;
}
.stoerer-strip .container {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.stoerer-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}
.stoerer-item svg { flex-shrink: 0; }

.stoerer-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 800;
  font-size: 0.75rem;
  line-height: 1.2;
  box-shadow: 0 4px 16px rgba(232, 137, 12, 0.5);
  z-index: 10;
  transform: rotate(10deg);
}
.stoerer-badge .big { font-size: 1.5rem; display: block; }

/* Inline Störer */
.stoerer-inline {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stoerer-inline::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}
.stoerer-inline h3 { color: var(--white); margin-bottom: 8px; }
.stoerer-inline p { color: rgba(255,255,255,0.9); margin-bottom: 20px; }

/* ===================== SERVICES ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--accent);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--bg-light), var(--bg-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
}
.service-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.service-card p { font-size: 0.9rem; }

/* ===================== WHY US ===================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.why-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.why-feature h4 { margin-bottom: 4px; }
.why-feature p { font-size: 0.9rem; }

/* ===================== PROCESS ===================== */
.process-bg { background: var(--bg-light); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  position: relative;
}
.process-step {
  text-align: center;
  position: relative;
}
.step-num {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}
.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: 0.9rem; }

/* ===================== TRUST ===================== */
.trust-strip {
  background: var(--primary-dark);
  padding: 48px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}
.trust-item .number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-light);
  display: block;
}
.trust-item .label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.trust-item .sublabel {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

/* ===================== CONTACT FORM ===================== */
.contact-section { background: var(--bg-light); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 { margin-bottom: 20px; }
.contact-info p { margin-bottom: 24px; }
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.contact-item-text .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
  margin-bottom: 2px;
}
.contact-item-text a, .contact-item-text span {
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
}
.contact-item-text a:hover { color: var(--accent); }

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-card h3 { margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 6px;
}
input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 137, 12, 0.12);
}
textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 16px;
}
.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
}

/* ===================== FAQ ===================== */
.faq-section { background: var(--bg); }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--accent); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 16px;
}
.faq-question:hover { background: var(--bg-light); }
.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: var(--white); }
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 20px;
}
.faq-answer p { font-size: 0.95rem; }

/* ===================== CITY PAGES ===================== */
.city-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.city-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}
.city-hero-bg img {
  display: none; /* shown in city-hero-image-col */
}
.city-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 25, 45, 0.95) 0%,
    rgba(10, 25, 45, 0.85) 45%,
    rgba(10, 25, 45, 0.1) 65%,
    rgba(10, 25, 45, 0) 100%
  );
  z-index: 1;
}
.city-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 60vh;
  width: 100%;
  position: relative;
  z-index: 2;
}
.city-hero-image-col {
  height: 60vh;
  overflow: hidden;
}
.city-hero-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
@media (max-width: 768px) {
  .city-hero-image-col { display: none; }
  .city-hero-bg img { display: block; }
  .city-hero-overlay {
    background: linear-gradient(135deg, rgba(10,25,45,0.92) 0%, rgba(10,25,45,0.80) 100%);
  }
  .city-hero-inner { grid-template-columns: 1fr; }
}
.city-hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 60px;
}
.city-hero-content h1 { color: var(--white); margin-bottom: 16px; }
.city-hero-content p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 32px; }
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* City images grid */
.city-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.city-images img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* ===================== MOBILE CTA FLOAT ===================== */
.mobile-cta-float {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  gap: 12px;
}
.mobile-cta-float a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
}
.mobile-cta-call {
  background: var(--accent);
  color: var(--white) !important;
}
.mobile-cta-contact {
  background: var(--primary);
  color: var(--white) !important;
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo img { height: 42px; filter: brightness(0) invert(1); }
.footer-logo-text .name { color: var(--white); font-weight: 800; font-size: 1rem; }
.footer-logo-text .sub { color: var(--accent-light); font-size: 0.7rem; }
.footer-desc { font-size: 0.88rem; line-height: 1.7; margin-bottom: 24px; }
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--accent); color: var(--white); }
.footer-col h4 { color: var(--white); margin-bottom: 16px; font-size: 0.95rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--accent-light); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
}
.footer-contact-item a { color: rgba(255,255,255,0.75); }
.footer-contact-item a:hover { color: var(--accent-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; }
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a { color: rgba(255,255,255,0.55); font-size: 0.82rem; }
.footer-bottom-links a:hover { color: var(--white); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-image { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .main-nav { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--white); padding: 20px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); z-index: 999; }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { padding: 12px 16px; display: block; }
  .nav-toggle { display: flex; }
  .header-phone { display: none; }
  .mobile-cta-float { display: flex; }
  body { padding-bottom: 80px; }
  .hero { min-height: 100dvh; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image-col { display: none; }
  .hero-overlay {
    background: linear-gradient(
      135deg,
      rgba(10, 25, 45, 0.92) 0%,
      rgba(10, 25, 45, 0.80) 100%
    );
  }
  .hero-bg img { display: block; }
  .hero-content { padding: 110px 0 60px; max-width: 100%; }
  .hero-ctas { flex-direction: column; }
  .hero-stats { gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-col:nth-child(2), .footer-col:nth-child(3) { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stoerer-badge { width: 80px; height: 80px; font-size: 0.65rem; top: 20px; right: 20px; }
  .stoerer-badge .big { font-size: 1.2rem; }
  .city-images { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .contact-card { padding: 24px 20px; }
  .stoerer-inline { padding: 28px 20px; }
  .hero-stats { gap: 16px; }
  .hero-stat .num { font-size: 1.4rem; }
  .process-steps { grid-template-columns: 1fr; }
}

/* ===================== UTILITIES ===================== */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.bg-light { background: var(--bg-light); }
.bg-primary { background: var(--primary-dark); }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-8 { margin-bottom: 32px; }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* Smooth scroll reveal */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-reveal].revealed { opacity: 1; transform: none; }
