/* ============================================================
   LOCKSMITH EXPERTS — Design System
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   Colors: Navy #0f2b5b | Gold #f0b429 | White #ffffff
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

/* --- Variables --- */
:root {
  --navy:        #0f2b5b;
  --navy-dark:   #091f42;
  --navy-light:  #1a3f7a;
  --gold:        #f0b429;
  --gold-light:  #f5c842;
  --gold-dark:   #c9930f;
  --white:       #ffffff;
  --off-white:   #f6f5f0;
  --gray-100:    #f0efea;
  --gray-200:    #e0dfd8;
  --text:        #0d1b2a;
  --text-muted:  #5c6b84;
  --border:      rgba(15, 43, 91, 0.12);
  --shadow-sm:   0 2px 8px rgba(15,43,91,.07);
  --shadow-md:   0 8px 32px rgba(15,43,91,.11);
  --shadow-lg:   0 24px 64px rgba(15,43,91,.16);
  --transition:  0.24s cubic-bezier(.4,0,.2,1);
  --radius:      6px;
  --radius-lg:   12px;
  --max-w:       1200px;
  --font-display:'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:   'DM Sans', system-ui, -apple-system, sans-serif;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.65rem); }
h4 { font-size: 1.1rem; font-family: var(--font-body); }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; }

/* --- Layout --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}
.section { padding: clamp(3rem, 6vw, 6rem) 0; }
.section--dark   { background: var(--navy);      color: var(--white); }
.section--deeper { background: var(--navy-dark);  color: var(--white); }
.section--off    { background: var(--off-white); }
.section--gray   { background: var(--gray-100); }

/* --- Skip link --- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--gold);
  color: var(--navy);
  padding: 0.5rem 1rem;
  font-weight: 700;
  z-index: 9999;
  transition: top 0.2s;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { top: 0; }

/* ============================================================
   EMERGENCY BAR
   ============================================================ */
.emergency-bar {
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 101;
}
.emergency-bar a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(15,43,91,.35);
  text-decoration-thickness: 1.5px;
}
.emergency-bar a:hover { text-decoration-color: var(--navy); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.18);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1.5rem;
}
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img { height: 46px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  justify-content: center;
}
.nav__links a {
  color: rgba(255,255,255,.82);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--gold);
  background: rgba(240,180,41,.1);
}

/* ── Nav Dropdown ── */
.nav__dropdown { position: relative; }
.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  color: rgba(255,255,255,.85);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
}
.nav__dropdown-toggle:hover,
.nav__dropdown.open .nav__dropdown-toggle {
  color: var(--gold);
  background: rgba(240,180,41,.1);
}
.nav__dropdown-toggle svg { transition: transform 0.2s; }
.nav__dropdown.open .nav__dropdown-toggle svg { transform: rotate(180deg); }
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--navy-dark);
  border: 1px solid rgba(240,180,41,.15);
  border-radius: var(--radius);
  padding: 0.4rem;
  min-width: 210px;
  box-shadow: 0 10px 36px rgba(0,0,0,.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s, visibility 0.18s, transform 0.18s;
  z-index: 200;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-menu li { list-style: none; }
.nav__dropdown-menu a {
  display: block;
  padding: 0.55rem 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  color: rgba(255,255,255,.82);
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.nav__dropdown-menu a:hover,
.nav__dropdown-menu a.active { background: rgba(240,180,41,.1); color: var(--gold); }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav__phone {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  background: rgba(240,180,41,.12);
  border: 1px solid rgba(240,180,41,.25);
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.nav__phone:hover {
  background: rgba(240,180,41,.2);
  border-color: rgba(240,180,41,.5);
}
.nav__phone-icon { flex-shrink: 0; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  border-radius: var(--radius);
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 900px) {
  .nav__links a { padding: 0.4rem 0.6rem; font-size: 0.82rem; }
}
@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    gap: 0;
    box-shadow: var(--shadow-md);
  }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 0.7rem 1rem; border-radius: var(--radius); width: 100%; }
  .nav__burger { display: flex; }
  .nav__phone .nav__phone-text { display: none; }
  .nav__phone { padding: 0.45rem 0.6rem; }
  /* Dropdown becomes inline list in mobile nav */
  .nav__dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,.04);
    border-radius: var(--radius);
    padding: 0.25rem 0.5rem;
    margin: 0.25rem 0;
    min-width: 0;
  }
  .nav__dropdown-toggle { width: 100%; padding: 0.7rem 1rem; border-radius: var(--radius); justify-content: space-between; }
  .nav__dropdown-toggle svg { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero,
.stadtseite-hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(3.5rem, 7vw, 6rem);
  min-height: 500px;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
  z-index: 0;
}
.hero__pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 0 L60 30 L30 60 L0 30 Z' fill='none' stroke='rgba(240%2C180%2C41%2C0.07)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  z-index: 1;
}
.hero__img {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(9,31,66,.92) 0%, rgba(15,43,91,.75) 55%, rgba(15,43,91,.45) 100%);
  z-index: 3;
}
.hero__content {
  position: relative;
  z-index: 4;
  max-width: 700px;
}
/* When inside two-col hero__inner the above max-width is overridden by .hero__inner .hero__content */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(240,180,41,.14);
  border: 1px solid rgba(240,180,41,.3);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.hero__title {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.78);
  margin-bottom: 2rem;
  max-width: 540px;
  font-weight: 300;
  line-height: 1.75;
}
.hero__ctas {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,.75);
  font-size: 0.85rem;
  font-weight: 500;
}
.hero__trust-item svg { color: var(--gold); flex-shrink: 0; }

.hero__inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: 100%;
  position: relative;
  z-index: 4;
}
.hero__inner .hero__content {
  flex: 0 0 57%;
  max-width: none;
}
.hero__card {
  flex: 1;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 1.75rem 2rem;
}
.hero__card-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.hero__card-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 1.25rem;
  transition: opacity .15s;
}
.hero__card-phone:hover { opacity: .85; }
.hero__card-trust {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.hero__card-trust li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255,255,255,.82);
  font-size: 0.85rem;
}
.hero__card-trust li svg { color: var(--gold); flex-shrink: 0; }
.hero__card .btn { width: 100%; justify-content: center; }

@media (max-width: 900px) {
  .hero__inner { flex-direction: column; gap: 2rem; }
  .hero__inner .hero__content { flex: none; max-width: 100%; }
  .hero__card { width: 100%; max-width: 420px; }
}
@media (max-width: 480px) {
  .hero { min-height: 420px; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { text-align: center; justify-content: center; }
  .hero__card { display: none; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn--primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--primary:hover { background: var(--navy-light); border-color: var(--navy-light); transform: translateY(-2px); }
.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 4px 18px rgba(240,180,41,.32);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(240,180,41,.4);
  color: var(--navy);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.38);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
  color: var(--white);
}
.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.btn--navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}
.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}
.btn--lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn--sm { padding: 0.5rem 1.1rem; font-size: 0.875rem; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(240,180,41,.2);
}
.trust-strip__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  color: rgba(255,255,255,.75);
  font-size: 0.875rem;
  font-weight: 500;
  border-right: 1px solid rgba(255,255,255,.07);
}
.trust-badge:last-child { border-right: none; }
.trust-badge__icon { color: var(--gold); flex-shrink: 0; }
.trust-badge strong {
  display: block;
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.1rem;
}
@media (max-width: 700px) {
  .trust-badge { padding: 0.75rem 1rem; font-size: 0.8rem; gap: 0.4rem; }
  .trust-badge span:not(.trust-badge__icon):not(strong) { display: none; }
}
@media (max-width: 460px) {
  .trust-badge strong { font-size: 0.7rem; }
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.section-header__eyebrow {
  display: inline-block;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}
.section--dark .section-header__eyebrow,
.section--deeper .section-header__eyebrow { color: var(--gold); }
.section-header h2 { color: var(--navy); }
.section--dark .section-header h2,
.section--deeper .section-header h2 { color: var(--white); }
.section-header__line {
  display: block;
  width: 44px;
  height: 3px;
  background: var(--gold);
  margin: 1rem auto 0;
  border-radius: 2px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 1rem auto 0;
  line-height: 1.7;
}
.section--dark .section-header p,
.section--deeper .section-header p { color: rgba(255,255,255,.68); }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.service-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(15,43,91,.06);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--navy);
  transition: background var(--transition), color var(--transition);
}
.service-card:hover .service-card__icon {
  background: rgba(240,180,41,.15);
  color: var(--gold-dark);
}
.service-card h3 { color: var(--navy); font-size: 1.3rem; margin-bottom: 0.75rem; }
.service-card p { color: var(--text-muted); font-size: 0.94rem; flex: 1; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: 1.5rem;
  transition: gap var(--transition), color var(--transition);
  text-decoration: none;
}
.service-card__link:hover { color: var(--gold-dark); gap: 0.6rem; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem 1.5rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 29px;
  left: calc(100% / var(--step-count, 4) / 2);
  right: calc(100% / var(--step-count, 4) / 2);
  height: 2px;
  background: linear-gradient(to right, transparent 0%, rgba(240,180,41,.25) 20%, rgba(240,180,41,.25) 80%, transparent 100%);
  pointer-events: none;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-step__num {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid rgba(240,180,41,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--white);
  margin: 0 auto 1.25rem;
  transition: var(--transition);
  box-shadow: 0 0 0 6px rgba(240,180,41,.06);
}
.section--dark .process-step__num { background: var(--navy-light); color: var(--gold); border-color: var(--gold); box-shadow: 0 0 0 6px rgba(240,180,41,.08); }
.process-step:hover .process-step__num { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.process-step h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem; }
.section--dark .process-step h3 { color: var(--white); }
.process-step p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
.section--dark .process-step p { color: rgba(255,255,255,.62); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.section--dark .faq-item { border-color: rgba(255,255,255,.1); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  text-align: left;
  width: 100%;
  background: none;
  border: none;
  font-family: var(--font-body);
  line-height: 1.4;
  transition: color var(--transition);
}
.section--dark .faq-question { color: var(--white); }
.faq-question:hover { color: var(--gold-dark); }
.section--dark .faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--navy);
}
.section--dark .faq-icon { border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.7); }
.faq-item.open .faq-icon { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 2.5rem 1.25rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}
.section--dark .faq-answer { color: rgba(255,255,255,.65); }
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   STÖRER / CTA BANNER
   ============================================================ */
.cta-stoerer {
  background: var(--navy-dark);
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-stoerer__pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 0 L60 30 L30 60 L0 30 Z' fill='none' stroke='rgba(240%2C180%2C41%2C0.055)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}
.cta-stoerer__content { position: relative; z-index: 1; }
.cta-stoerer h2 { color: var(--white); margin-bottom: 1rem; }
.cta-stoerer p {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  margin-bottom: 2.25rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.phone-big {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
  line-height: 1;
}
.phone-big:hover { color: var(--gold-light); }

/* ============================================================
   CONTENT WITH IMAGE (two-col)
   ============================================================ */
.content-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4.5rem;
  align-items: center;
}
.content-image--reverse { direction: rtl; }
.content-image--reverse > * { direction: ltr; }
.content-image--top { align-items: start; }
@media (max-width: 768px) {
  .content-image { grid-template-columns: 1fr; gap: 2rem; }
  .content-image--reverse { direction: ltr; }
}
.content-image__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background: var(--gray-100);
}
.content-image__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.content-image__text h2 { color: var(--navy); margin-bottom: 1.1rem; }
.content-image__text p { color: var(--text-muted); line-height: 1.75; }
.content-image__text .btn { margin-top: 1.25rem; }

/* ============================================================
   FEATURES GRID (Why Us)
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(240,180,41,.12);
  border-radius: var(--radius);
  transition: background var(--transition), border-color var(--transition);
}
.feature-item:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(240,180,41,.28);
}
.feature-item__icon {
  width: 56px;
  height: 56px;
  background: rgba(240,180,41,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.1rem;
  flex-shrink: 0;
}
.feature-item h3 { font-size: 1rem; color: var(--white); margin-bottom: 0.5rem; }
.feature-item p { font-size: 0.855rem; color: rgba(255,255,255,.62); line-height: 1.65; margin: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 0.85rem;
  color: var(--gold);
}
.testimonial-card__text {
  font-size: 0.94rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 1.25rem;
  font-style: italic;
  line-height: 1.7;
}
.testimonial-card__text::before { content: '\201C'; }
.testimonial-card__text::after  { content: '\201D'; }
.testimonial-card__author { font-weight: 600; color: var(--white); font-size: 0.9rem; }
.testimonial-card__location { font-size: 0.8rem; color: rgba(255,255,255,.45); margin-top: 0.15rem; }

/* ============================================================
   COVERAGE / CITY GRID
   ============================================================ */
.coverage-states {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 0.75rem;
}
.state-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  color: rgba(255,255,255,.78);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}
.state-link:hover {
  background: rgba(240,180,41,.12);
  border-color: rgba(240,180,41,.3);
  color: var(--gold);
}
.state-link svg { opacity: 0.5; flex-shrink: 0; }

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 0.6rem;
}
.city-link {
  display: block;
  padding: 0.6rem 0.9rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
  text-align: center;
}
.city-link:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form { max-width: 620px; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15,43,91,.08);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.3rem; }
.form-success {
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: #065f46;
  font-weight: 500;
  margin-top: 1rem;
  display: none;
}

/* ============================================================
   ARTICLE CONTENT (Ratgeber / Leistung)
   ============================================================ */
.article-hero {
  background: var(--navy);
  color: var(--white);
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}
.article-hero__pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 0 L60 30 L30 60 L0 30 Z' fill='none' stroke='rgba(240%2C180%2C41%2C0.06)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}
.article-hero__img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.article-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.article-hero__content { position: relative; z-index: 1; }
.article-hero__eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.article-hero h1 { color: var(--white); margin-bottom: 1rem; max-width: 820px; }
.article-hero p { color: rgba(255,255,255,.72); font-size: 1.1rem; max-width: 680px; line-height: 1.7; }

.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: flex-start;
}
@media (max-width: 900px) { .article-layout { grid-template-columns: 1fr; } }

.article-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--navy);
  margin: 2.75rem 0 1rem;
}
.article-content h2:first-child { margin-top: 0; }
.article-content h3 { font-size: 1.2rem; color: var(--navy); margin: 2rem 0 0.75rem; }
.article-content p { color: var(--text); line-height: 1.78; margin-bottom: 1.25rem; }
.article-content ul, .article-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.article-content li { color: var(--text); margin-bottom: 0.5rem; line-height: 1.65; }
.article-content ul > li { list-style: disc; }
.article-content ol > li { list-style: decimal; }
.article-content .callout {
  background: rgba(15,43,91,.04);
  border-left: 4px solid var(--gold);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}
.article-content .callout p { color: var(--navy); font-weight: 500; margin-bottom: 0; }

.article-sidebar { position: sticky; top: 90px; }
.sidebar-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.sidebar-box h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}
.sidebar-toc { list-style: none; padding: 0; }
.sidebar-toc li { margin-bottom: 0.5rem; }
.sidebar-toc a {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
  transition: color var(--transition);
  line-height: 1.4;
}
.sidebar-toc a:hover { color: var(--navy); }
.sidebar-cta {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  color: var(--white);
}
.sidebar-cta h4 { color: var(--white); font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 0.6rem; }
.sidebar-cta p { color: rgba(255,255,255,.7); font-size: 0.875rem; margin-bottom: 1.25rem; }
.sidebar-phone { display: block; font-size: 1.1rem; font-weight: 700; color: var(--gold); margin-bottom: 1rem; }

/* ── Article intro (guide pages) ── */
.article-intro { font-size: 1.08rem; line-height: 1.75; color: var(--text); margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }

/* ── Service page article body ── */
.article-body h2 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); color: var(--navy); margin: 2.5rem 0 0.9rem; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { font-size: 1.1rem; color: var(--navy); margin: 1.75rem 0 0.65rem; }
.article-body p { color: var(--text); line-height: 1.78; margin-bottom: 1.2rem; }
.article-body ul, .article-body ol { padding-left: 1.4rem; margin-bottom: 1.2rem; }
.article-body li { color: var(--text); margin-bottom: 0.45rem; line-height: 1.65; }
.article-body ul > li { list-style: disc; }
.article-body ol > li { list-style: decimal; }

/* ── Sidebar card (service pages) ── */
.sidebar-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.25rem;
  text-align: center;
}
.sidebar-card h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--white); margin-bottom: 0.75rem; }
.sidebar-card p { color: rgba(255,255,255,.7); font-size: 0.855rem; line-height: 1.6; margin: 0.5rem 0 0; }
.sidebar-card ul { list-style: none; padding: 0; margin: 0; text-align: left; }
.sidebar-card ul li { margin-bottom: 0.35rem; }
.sidebar-card ul a { color: rgba(255,255,255,.8); font-size: 0.875rem; transition: color var(--transition); }
.sidebar-card ul a:hover { color: var(--gold); }

/* ── Inline CTA in article body ── */
.cta-inline {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin: 2.5rem 0;
  padding: 1.75rem;
  background: rgba(15,43,91,.04);
  border: 1px solid rgba(15,43,91,.1);
  border-radius: var(--radius-lg);
}
.cta-inline__note { font-size: 0.875rem; color: var(--text-muted); }

/* ── Phone number size modifier ── */
.phone-big--sm { font-size: 1.35rem; display: block; margin-bottom: 0.5rem; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  background: var(--off-white);
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  flex-wrap: wrap;
}
.breadcrumb__item { color: var(--text-muted); }
.breadcrumb__item a { color: var(--navy); font-weight: 500; }
.breadcrumb__item a:hover { color: var(--gold-dark); text-decoration: underline; }
.breadcrumb__sep { color: var(--text-muted); opacity: 0.45; }

/* ============================================================
   INFOBOXES / CALLOUTS
   ============================================================ */
.infobox {
  background: rgba(240,180,41,.06);
  border: 1px solid rgba(240,180,41,.22);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}
.infobox h4 { color: var(--navy); margin-bottom: 0.6rem; font-size: 1rem; font-family: var(--font-body); }
.infobox p { color: var(--text); font-size: 0.95rem; margin-bottom: 0; }
.infobox--emergency { background: rgba(240,60,60,.04); border-color: rgba(240,60,60,.2); }
.infobox--emergency h4 { color: #b91c1c; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.68);
  padding: clamp(3rem, 6vw, 5rem) 0 1.75rem;
  border-top: 3px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

.footer-brand__logo { margin-bottom: 1.25rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 290px; }

.footer-col h4 {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  color: rgba(255,255,255,.62);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}
.footer-contact-item__icon { color: var(--gold); flex-shrink: 0; line-height: 0; }
.footer-contact-item a { color: rgba(255,255,255,.75); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,.38);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom__links { display: flex; gap: 1.25rem; }

/* ============================================================
   OVERVIEW PAGES (Bundesland / Landkreis)
   ============================================================ */
.overview-filter {
  background: var(--white);
  padding: 1rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 70px;
  z-index: 50;
}
.overview-filter__inner {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}
.overview-filter input[type="search"] {
  flex: 1;
  min-width: 200px;
  padding: 0.6rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.overview-filter input[type="search"]:focus { border-color: var(--navy); }
.filter-count {
  font-size: 0.85rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.city-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}
.city-list-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  transition: var(--transition);
}
.city-list-item:hover { border-color: var(--navy); box-shadow: var(--shadow-sm); }
.city-list-item h3 {
  font-size: 0.95rem;
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.city-list-item__links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.city-list-item__links a {
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  background: rgba(15,43,91,.06);
  border-radius: 4px;
  color: var(--navy);
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}
.city-list-item__links a:hover { background: var(--navy); color: var(--white); }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card__img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--gray-100);
}
.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card__img img { transform: scale(1.04); }
.blog-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card__cat {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}
.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.blog-card p { font-size: 0.9rem; color: var(--text-muted); flex: 1; }
.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 1.1rem;
  transition: gap var(--transition);
}
.blog-card__link:hover { gap: 0.55rem; color: var(--gold-dark); }

/* ── Guide filter bar (guides overview page) ── */
.guide-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.guide-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  background: var(--white);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.guide-filter-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.guide-filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.guide-filter-btn__count {
  font-weight: 400;
  opacity: 0.7;
  font-size: 0.78rem;
}

/* ── Inline CTA body wrapper ── */
.cta-inline__body {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  flex: 1;
}

/* ── Blog card image link wrapper ── */
.blog-card__img-link {
  display: block;
  text-decoration: none;
}

/* ============================================================
   STATIC PAGES (Impressum / Datenschutz)
   ============================================================ */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 4rem) 0;
}
.legal-content h1 { color: var(--navy); margin-bottom: 0.75rem; font-size: clamp(1.8rem, 3vw, 2.4rem); }
.legal-content h2 { color: var(--navy); font-size: 1.25rem; margin: 2.5rem 0 0.75rem; border-bottom: 2px solid var(--gold); padding-bottom: 0.4rem; display: inline-block; }
.legal-content h3 { color: var(--navy); font-size: 1rem; margin: 1.5rem 0 0.5rem; font-family: var(--font-body); font-weight: 700; }
.legal-content p { color: var(--text); line-height: 1.78; margin-bottom: 1rem; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul li { list-style: disc; margin-bottom: 0.35rem; color: var(--text); font-size: 0.95rem; }
.legal-content a { color: var(--navy); text-decoration: underline; }
.legal-content a:hover { color: var(--gold-dark); }
.legal-content address p { font-style: normal; }

/* ── Disclaimer bar ── */
.disclaimer-bar {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 0.9rem 0;
}
.disclaimer-bar__text {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.65;
  margin: 0;
  max-width: 900px;
  margin-inline: auto;
}
.disclaimer-bar__text strong { color: var(--navy); font-weight: 600; }
.disclaimer-bar__sep { opacity: 0.4; }

/* ── Legal page language divider ── */
.legal-lang-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.legal-lang-divider::before,
.legal-lang-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ============================================================
   404
   ============================================================ */
.error-page {
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}
.error-page__code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 9rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
  opacity: 0.9;
}
.error-page h1 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--navy); margin-bottom: 1rem; }
.error-page p { color: var(--text-muted); max-width: 380px; margin: 0 auto 2rem; }
.error-page__actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   MOBILE PHONE FAB
   ============================================================ */
.phone-fab {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 58px;
  height: 58px;
  background: var(--gold);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(240,180,41,.5);
  z-index: 200;
  transition: var(--transition);
  color: var(--navy);
}
.phone-fab:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(240,180,41,.6); }
@media (max-width: 768px) { .phone-fab { display: flex; } }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-gold   { color: var(--gold); }
.text-navy   { color: var(--navy); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--text-muted); }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 2rem; }
.gold-line {
  display: block;
  width: 44px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 1.1rem 0;
}
.gold-line--center { margin: 1.1rem auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================================
   IMG PLACEHOLDER (before real images are generated)
   ============================================================ */
.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(15,43,91,.07) 0%, rgba(15,43,91,.03) 100%);
  color: var(--text-muted);
  font-size: 0.85rem;
  border-radius: inherit;
  width: 100%;
  height: 100%;
  min-height: 200px;
}

/* ============================================================
   SPIN BADGE (Stadtseite variant labels)
   ============================================================ */
.spin-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-right: 0.4rem;
}
.spin-badge--emergency { background: rgba(220,38,38,.15); color: #dc2626; border: 1px solid rgba(220,38,38,.25); }
.spin-badge--service   { background: rgba(15,43,91,.1);   color: var(--navy); border: 1px solid var(--border); }
.spin-badge--general   { background: rgba(240,180,41,.15); color: var(--gold-dark); border: 1px solid rgba(240,180,41,.3); }

/* ============================================================
   LOKALER BEZUG SECTION
   ============================================================ */
.local-note {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  font-size: 0.94rem;
  color: var(--text);
  margin: 2rem 0;
  line-height: 1.7;
}

/* ============================================================
   RESPONSIVE CATCH-ALL
   ============================================================ */
@media (max-width: 768px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
}
@media (max-width: 380px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ── Spin Navigation ──────────────────────────────────────────────────────── */
.spin-nav {
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
}
.spin-nav__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}
.spin-nav__item a {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .85rem 1.4rem;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .02em;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  transition: color .18s, border-color .18s, background .18s;
}
.spin-nav__item a:hover {
  color: #fff;
  background: rgba(255,255,255,.06);
}
.spin-nav__item--active a {
  color: var(--gold);
  border-bottom-color: var(--gold);
  font-weight: 700;
}
@media (max-width: 600px) {
  .spin-nav__list { flex-direction: column; }
  .spin-nav__item a { padding: .7rem 1rem; border-bottom: none; border-left: 3px solid transparent; margin: 0; }
  .spin-nav__item--active a { border-left-color: var(--gold); border-bottom-color: transparent; }
}

/* ── Section Body (full-width text below content-image) ──────────────────── */
.section-body {
  margin-top: 2rem;
  max-width: 80ch;
}
.section-body p { margin-bottom: 1em; }

@media print {
  .cta-stoerer { background: var(--navy-dark) !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .cta-stoerer h2, .cta-stoerer p, .cta-stoerer a, .phone-big { color: #fff !important; }
}

/* ============================================================
   SERVICE AREAS PAGE
   ============================================================ */

/* City-state cards (3 large horizontal cards) */
.sa-city-states {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}
.sa-city-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.sa-city-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.sa-city-card__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(240,180,41,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
}
.sa-city-card__body { flex: 1; }
.sa-city-card__body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.sa-city-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(240,180,41,.12);
  border-radius: 100px;
  padding: 0.15rem 0.6rem;
  margin-bottom: 0.4rem;
}
.sa-city-card__body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}
.sa-city-card__arrow { color: var(--navy); opacity: .4; flex-shrink: 0; }
.sa-city-card:hover .sa-city-card__arrow { opacity: 1; color: var(--gold-dark); }

/* Regular state grid (13 cards) */
.sa-states-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.sa-state-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.sa-state-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.sa-state-card__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: rgba(15,43,91,.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}
.sa-state-card:hover .sa-state-card__icon {
  background: rgba(240,180,41,.12);
  color: var(--gold-dark);
}
.sa-state-card__body { flex: 1; }
.sa-state-card__body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.15rem;
}
.sa-state-card__body span {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.sa-state-card__arrow { color: var(--navy); opacity: .3; flex-shrink: 0; }
.sa-state-card:hover .sa-state-card__arrow { opacity: 1; color: var(--gold-dark); }

/* Can't find your city callout */
.sa-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
}
.sa-callout h2 { color: var(--white); margin-bottom: 0.5rem; }
.sa-callout p { color: rgba(255,255,255,.78); max-width: 50ch; margin: 0; }

@media (max-width: 768px) {
  .sa-city-card { flex-direction: column; align-items: flex-start; }
  .sa-city-card__arrow { display: none; }
  .sa-callout { flex-direction: column; padding: 2rem 1.5rem; text-align: center; }
  .sa-callout p { max-width: 100%; }
}

/* ── Bundesland Page ─────────────────────────────────────────────────────── */

/* Hero: extend stadtseite-hero, centered layout (no side card on narrow) */
.bl-hero__inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: center;
  padding: 5rem 0 4rem;
}
.bl-hero__content { max-width: 640px; }
.bl-hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  margin: 1rem 0 1.75rem;
  max-width: 52ch;
  line-height: 1.6;
}

/* Trust strip */
.bl-trust {
  background: var(--navy-dark);
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 1.1rem 0;
}
.bl-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 0;
}
.bl-trust__item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.6rem 1rem;
  border-right: 1px solid rgba(255,255,255,.1);
}
.bl-trust__item:last-child { border-right: none; }
.bl-trust__num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.bl-trust__label {
  font-size: 0.78rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Intro two-column */
.bl-intro {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}
.bl-intro__text h2 { margin: 0.5rem 0 0.75rem; }
.bl-intro__text p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.75; }

/* Services callout card (right column of intro) */
.bl-callout {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: sticky;
  top: 5rem;
}
.bl-callout__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.bl-callout__list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.bl-callout__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: rgba(255,255,255,.8);
}
.bl-callout__list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}
.bl-callout__list li strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}
.bl-callout__list li span {
  font-size: 0.82rem;
  color: rgba(255,255,255,.6);
}

/* Why us section */
.bl-why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.bl-why__text h2 { margin: 0.5rem 0 0.75rem; }
.bl-why__text p { margin-bottom: 1rem; line-height: 1.75; }
.bl-why__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.bl-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.bl-feature__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(240,180,41,.12);
  border: 1px solid rgba(240,180,41,.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.bl-feature strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.bl-feature p {
  font-size: 0.88rem;
  color: rgba(255,255,255,.6);
  margin: 0;
}

/* City section intro text */
.bl-city-intro {
  max-width: 70ch;
  color: var(--text-muted);
  margin: 0.75rem auto 1.75rem;
  text-align: center;
  line-height: 1.7;
}

/* Filter strip inside city section (no outer wrapper needed) */
.section .overview-filter { margin: 0 0 2rem; }

/* Responsive */
@media (max-width: 1024px) {
  .bl-hero__inner { grid-template-columns: 1fr; padding: 3.5rem 0 3rem; }
  .bl-hero__card { display: none; }
  .bl-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .bl-callout { position: static; }
  .bl-why { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 640px) {
  .bl-trust__grid { grid-template-columns: repeat(2, 1fr); }
  .bl-trust__item:nth-child(2) { border-right: none; }
  .bl-trust__item { border-bottom: 1px solid rgba(255,255,255,.1); }
  .bl-trust__item:nth-child(3),
  .bl-trust__item:nth-child(4) { border-bottom: none; }
}
