/* =============================================
   MAIN KAMMERJÄGER - Global Stylesheet
   Colors: Navy #0D2137 | Orange #E05C1A
============================================= */

:root {
  --navy: #0D2137;
  --navy-light: #163352;
  --orange: #E05C1A;
  --orange-hover: #C44D12;
  --orange-light: #FF6B2B;
  --white: #FFFFFF;
  --off-white: #F5F7FA;
  --gray-light: #E8ECF0;
  --gray: #8A9AAB;
  --text: #1A2332;
  --text-light: #4A5568;
  --shadow: 0 4px 24px rgba(13,33,55,0.12);
  --shadow-lg: 0 8px 48px rgba(13,33,55,0.2);
  --radius: 8px;
  --radius-lg: 16px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(1.8rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
p { color: var(--text-light); line-height: 1.7; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(224,92,26,0.35);
}
.btn-primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(224,92,26,0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
}

.btn-phone {
  background: var(--orange);
  color: var(--white);
  font-size: 1.1rem;
  padding: 16px 32px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(224,92,26,0.4);
}
.btn-phone:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(224,92,26,0.5);
}
.btn-phone svg { flex-shrink: 0; }

.btn-lg { padding: 18px 40px; font-size: 1.1rem; }

/* ===================== HEADER / NAV ===================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(-10deg);
}
.nav-logo-text {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}
.nav-logo-text span { color: var(--orange); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-menu a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-menu a:hover { color: var(--orange); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  background: var(--orange);
  padding: 10px 20px;
  border-radius: 50px;
  transition: all 0.2s;
}
.nav-phone-link:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  z-index: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,33,55,0.92) 0%,
    rgba(13,33,55,0.75) 50%,
    rgba(13,33,55,0.4) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 20px 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224,92,26,0.2);
  border: 1px solid rgba(224,92,26,0.5);
  color: var(--orange-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero h1 {
  color: var(--white);
  max-width: 700px;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--orange); }

.hero-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}
.trust-item svg { color: var(--orange); flex-shrink: 0; }

/* ===================== STÖRER ===================== */
.stoerer {
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.stoerer-badge {
  background: var(--orange);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(224,92,26,0.4);
  display: flex;
  align-items: center;
  gap: 6px;
  animation: pulse-badge 3s ease-in-out infinite;
  white-space: nowrap;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.stoerer-badge.green {
  background: #22A355;
  box-shadow: 0 4px 16px rgba(34,163,85,0.4);
}

/* ===================== SECTION BASICS ===================== */
.section {
  padding: 80px 20px;
}
.section-alt { background: var(--off-white); }
.section-dark {
  background: var(--navy);
  color: var(--white);
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.75); }

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  background: rgba(224,92,26,0.1);
  color: var(--orange);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { max-width: 560px; margin: 0 auto; }

/* ===================== USP STRIP ===================== */
.usp-strip {
  background: var(--orange);
  padding: 0;
}
.usp-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.usp-item:last-child { border-right: none; }
.usp-item svg { flex-shrink: 0; color: var(--white); }
.usp-text strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
}
.usp-text span {
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(224,92,26,0.2);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(224,92,26,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--orange);
}
.service-card h3 { margin-bottom: 10px; color: var(--navy); }
.service-card p { font-size: 0.95rem; margin-bottom: 16px; }
.service-link {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.service-card:hover .service-link { gap: 8px; }

/* ===================== WHY US ===================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.why-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--orange);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 700;
}

.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon {
  width: 44px;
  height: 44px;
  background: rgba(224,92,26,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.why-item-text strong {
  display: block;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 4px;
}

/* ===================== CITY CARDS ===================== */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.city-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  background: var(--navy-light);
}
.city-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.city-card:hover img { transform: scale(1.06); }
.city-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,33,55,0.9) 0%, rgba(13,33,55,0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.city-card-overlay h3 { color: var(--white); margin-bottom: 4px; }
.city-card-overlay span {
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ===================== PROCESS ===================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(to right, var(--orange), var(--navy-light));
}

.process-step {
  text-align: center;
  padding: 24px 16px;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 56px;
  height: 56px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(224,92,26,0.35);
}
.process-step h4 { color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: 0.9rem; }

/* ===================== TESTIMONIALS ===================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.stars { color: var(--orange); margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card p {
  color: rgba(255,255,255,0.85);
  font-style: italic;
  margin-bottom: 16px;
}
.reviewer strong { color: var(--white); display: block; }
.reviewer span { color: rgba(255,255,255,0.5); font-size: 0.85rem; }

/* ===================== CTA SECTION ===================== */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-hover) 100%);
  padding: 80px 20px;
  text-align: center;
}
.cta-section h2, .cta-section p { color: var(--white); }
.cta-section h2 { margin-bottom: 12px; }
.cta-section p { opacity: 0.9; margin-bottom: 36px; }
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.btn-white {
  background: var(--white);
  color: var(--orange);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* ===================== CONTACT FORM ===================== */
.contact-section {
  background: var(--off-white);
  padding: 80px 20px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 28px; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-light);
}
.contact-detail:first-of-type { border-top: 1px solid var(--gray-light); }
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.contact-detail-text strong { display: block; color: var(--navy); font-weight: 600; }
.contact-detail-text a { color: var(--text-light); transition: color 0.2s; }
.contact-detail-text a:hover { color: var(--orange); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form-card h3 { margin-bottom: 8px; }
.contact-form-card > p { margin-bottom: 24px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(224,92,26,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 16px; font-size: 1rem; }

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

/* ===================== FOOTER ===================== */
.site-footer {
  background: #080F1A;
  color: rgba(255,255,255,0.6);
  padding: 64px 20px 0;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img {
  height: 48px;
  filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(-10deg);
  margin-bottom: 16px;
}
.footer-brand p { font-size: 0.9rem; margin-bottom: 20px; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--orange); }

.footer-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  margin-bottom: 12px;
  transition: background 0.2s;
}
.footer-phone:hover { background: var(--orange-hover); color: var(--white); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}
.footer-legal a {
  color: rgba(255,255,255,0.4);
  margin-left: 16px;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--orange); }
.footer-vermittlung {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 0 24px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
}

/* ===================== MOBILE STICKY CTA ===================== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 950;
  background: var(--white);
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  gap: 10px;
}
.mobile-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
}
.mobile-call {
  background: var(--orange);
  color: var(--white);
}
.mobile-form {
  background: var(--navy);
  color: var(--white);
}

/* ===================== CITY PAGE SPECIFICS ===================== */
.city-hero-mini {
  min-height: 70vh;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

.city-images-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.city-img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.city-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.city-img-card:hover img { transform: scale(1.05); }

/* ===================== INLINE STÖRER ===================== */
.stoerer-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}
.stoerer-inline-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}
.stoerer-inline-item.orange {
  background: var(--orange);
}
.stoerer-inline-item.green {
  background: #22A355;
}

/* Ping animation for live badge */
.ping-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: ping 1.5s ease infinite;
}
@keyframes ping {
  0% { transform: scale(1); opacity: 1; }
  70%, 100% { transform: scale(2); opacity: 0; }
}
.ping-wrap { position: relative; width: 8px; height: 8px; }
.ping-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  animation: ping 1.5s ease infinite;
}
.ping-dot-static {
  position: relative;
  z-index: 1;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .usp-inner { grid-template-columns: repeat(2, 1fr); }
  .usp-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .usp-item:nth-child(2n) { border-right: none; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-cta .nav-phone-link { display: none; }
  .hamburger { display: flex; }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--navy);
    padding: 20px;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }

  .hero { min-height: 100svh; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-img { display: none; }
  .cities-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .city-images-grid { grid-template-columns: 1fr 1fr; }

  .mobile-cta-bar { display: flex; }

  /* Give body space for mobile CTA bar */
  body { padding-bottom: 72px; }

  .stoerer { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .cities-grid { grid-template-columns: 1fr; }
  .usp-inner { grid-template-columns: 1fr; }
  .city-images-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .process-steps { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px 20px; }
}
