@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy: #1B3A6B;
  --navy-dark: #122850;
  --navy-light: #2a4f8a;
  --gold: #C8861A;
  --gold-light: #E09B2A;
  --gold-pale: #FDF3E3;
  --white: #FFFFFF;
  --off-white: #F7F8FA;
  --light-gray: #EEF0F4;
  --mid-gray: #8A94A6;
  --text: #1A2540;
  --text-light: #4A5568;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: "Outfit", sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

/* ===== ACCESSIBILITY ===== */
.skip-to-content {
  position: absolute; top: -100%; left: 16px;
  background: var(--navy); color: var(--white);
  padding: 10px 20px; border-radius: 0 0 8px 8px;
  font-size: 14px; font-weight: 600; z-index: 9999;
  text-decoration: none; transition: top 0.2s;
}
.skip-to-content:focus { top: 0; }
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ===== NAV ===== */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27,58,107,0.08);
  padding: 0 48px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 20px rgba(27,58,107,0.07);
}
.nav-logo img { height: 46px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text);
  text-decoration: none; letter-spacing: 0.02em;
  transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.25s; border-radius: 2px;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--navy); font-weight: 600; }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; }
.nav-arrow { display: inline-block; transition: transform 0.2s; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%);
  background: var(--white); border: 1px solid var(--light-gray);
  border-radius: 12px; padding: 8px;
  box-shadow: 0 12px 40px rgba(27,58,107,0.12);
  min-width: 240px; display: none; z-index: 100;
}
.nav-dropdown-menu.open { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 9px 14px; font-size: 14px;
  color: var(--text); text-decoration: none; border-radius: 7px;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu a:hover { background: var(--off-white); color: var(--navy); }
.nav-dropdown-menu a::after { display: none; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn-phone { font-size: 13px; font-weight: 500; color: var(--text-light); text-decoration: none; display: flex; align-items: center; gap: 6px; }

/* ===== HAMBURGER / MOBILE NAV ===== */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
#main-nav.mobile-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#main-nav.mobile-open .nav-hamburger span:nth-child(2) { opacity: 0; }
#main-nav.mobile-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.35);
  z-index: 99; backdrop-filter: blur(2px);
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--navy); color: var(--white); font-family: "Outfit", sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 11px 22px; border: none; border-radius: 6px; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 7px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--navy-dark); transform: translateY(-1px); }
.btn-primary.gold { background: var(--gold); }
.btn-primary.gold:hover { background: var(--gold-light); }
.btn-outline {
  background: transparent; color: var(--navy); font-family: "Outfit", sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 10px 22px; border: 2px solid var(--navy); border-radius: 6px; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 7px; transition: all 0.2s;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline.white { border-color: rgba(255,255,255,0.4); color: #fff; }
.btn-outline.white:hover { background: rgba(255,255,255,0.15); }

/* ===== SECTION SHARED ===== */
.section { padding: 96px 80px; }
.kontakt-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
.name-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.kontakt-submit { text-align: right; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.section h2, h2 {
  font-family: "Outfit", sans-serif; font-size: clamp(26px, 3vw, 42px);
  font-weight: 700; color: var(--navy); letter-spacing: -0.02em; line-height: 1.15;
}
.legal-content h1 { margin-top: 48px; margin-bottom: 20px; }
.legal-content h2 { margin-top: 40px; margin-bottom: 16px; }
.legal-content h3 { margin-top: 28px; margin-bottom: 12px; }
.legal-content h4 { margin-top: 20px; margin-bottom: 8px; }
.section-intro { font-size: 16px; line-height: 1.7; color: var(--text-light); max-width: 640px; }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 52px; flex-wrap: wrap; }

/* ===== PAGE HERO ===== */
.page-hero {
  padding-top: 72px; min-height: 480px; position: relative;
  display: flex; align-items: flex-end; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}
.page-hero-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.42; mix-blend-mode: luminosity;
}
.page-hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18,40,80,0.65) 0%, rgba(18,40,80,0.18) 60%, transparent 100%);
}
.page-hero-content {
  position: relative; z-index: 2; padding: 64px 80px;
  max-width: 760px;
}
.page-hero-content .section-label { color: rgba(200,134,26,0.9); }
.page-hero-content h1 {
  font-size: clamp(30px, 4vw, 54px); font-weight: 800;
  color: var(--white); letter-spacing: -0.025em; line-height: 1.08; margin-bottom: 16px;
}
.page-hero-content p { font-size: 17px; color: rgba(255,255,255,0.78); line-height: 1.65; margin-bottom: 28px; max-width: 560px; }

/* ===== INTRO SECTION ===== */
.intro-section { padding: 72px 80px; background: var(--white); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.intro-grid.reverse .intro-img { order: -1; }
.intro-img { border-radius: 20px; overflow: hidden; }
.intro-img img { width: 100%; height: 420px; object-fit: cover; display: block; }
.intro-text h2 { margin-bottom: 20px; }
.intro-text p { font-size: 16px; line-height: 1.75; color: var(--text-light); margin-bottom: 16px; }

/* ===== LEISTUNGS GRID ===== */
.leistungs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.leistungs-card {
  background: var(--off-white); border: 1px solid var(--light-gray);
  border-radius: 16px; padding: 32px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.leistungs-card:hover { border-color: rgba(27,58,107,0.18); box-shadow: 0 8px 32px rgba(27,58,107,0.08); transform: translateY(-3px); }
.leistungs-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.leistungs-card p { font-size: 14px; color: var(--text-light); line-height: 1.65; }

/* ===== LIST ITEMS ===== */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text-light); line-height: 1.5; }
.check-list li::before { content: ""; width: 18px; height: 18px; background: var(--navy); border-radius: 50%; flex-shrink: 0; margin-top: 2px; display: flex; align-items: center; justify-content: center; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 10px; }

/* ===== WARUM CARDS ===== */
.warum-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.warum-card { background: var(--off-white); border: 1px solid var(--light-gray); border-radius: 14px; padding: 28px 24px; text-align: center; transition: box-shadow 0.2s, transform 0.2s; }
.warum-card:hover { box-shadow: 0 8px 30px rgba(27,58,107,0.08); transform: translateY(-3px); }
.warum-card-num { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 12px; }
.warum-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.warum-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ===== FAQ ===== */
.faq-section { background: var(--off-white); }
.faq-list { margin-top: 36px; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--light-gray); }
.faq-item:first-child { border-top: 1px solid var(--light-gray); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; cursor: pointer; font-size: 16px; font-weight: 600;
  color: var(--navy); gap: 16px; transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon { width: 28px; height: 28px; background: var(--light-gray); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s, transform 0.3s; }
.faq-item.open .faq-icon { background: var(--navy); transform: rotate(45deg); }
.faq-icon svg { width: 12px; height: 12px; }
.faq-item.open .faq-icon svg { stroke: white; }
.faq-answer { display: none; padding: 0 0 20px 0; font-size: 15px; color: var(--text-light); line-height: 1.7; max-width: 760px; }
.faq-item.open .faq-answer { display: block; }

/* ===== CTA STRIP ===== */
.cta-strip { background: var(--navy); padding: 72px 80px; text-align: center; position: relative; overflow: hidden; }
.cta-strip::before { content: ""; position: absolute; top: -80px; left: 50%; transform: translateX(-50%); width: 600px; height: 300px; background: radial-gradient(ellipse, rgba(200,134,26,0.2) 0%, transparent 70%); }
.cta-strip h2 { color: var(--white); margin-bottom: 16px; position: relative; }
.cta-strip p { color: rgba(255,255,255,0.7); font-size: 16px; margin-bottom: 32px; position: relative; }
.cta-strip-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; position: relative; }

/* ===== NUMBERED LIST ===== */
.numbered-list { display: flex; flex-direction: column; gap: 0; }
.numbered-item { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--light-gray); }
.numbered-item:last-child { border-bottom: none; }
.numbered-item-num { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; color: var(--gold); width: 28px; flex-shrink: 0; padding-top: 3px; }
.numbered-item-content h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.numbered-item-content p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ===== PROCESS CARDS ===== */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.process-card { background: var(--off-white); border: 1px solid var(--light-gray); border-radius: 14px; padding: 28px; transition: box-shadow 0.2s; }
.process-card:hover { box-shadow: 0 6px 24px rgba(27,58,107,0.08); }
.process-card-num { width: 36px; height: 36px; background: var(--navy); color: var(--white); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; margin-bottom: 16px; }
.process-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.process-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ===== SPLIT SECTION ===== */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.split-navy { background: var(--navy); padding: 72px 80px; }
.split-navy .section-label { color: rgba(200,134,26,0.9); }
.split-navy h2 { color: var(--white); margin-bottom: 24px; }
.split-navy p { font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.75; margin-bottom: 16px; }
.split-light { background: var(--off-white); padding: 72px 80px; }
.split-img { position: relative; overflow: hidden; min-height: 420px; }
.split-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ===== FEATURES HIGHLIGHT ===== */
.features-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.feature-item { background: var(--white); border: 1px solid var(--light-gray); border-radius: 10px; padding: 18px 20px; }
.feature-item h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.feature-item p { font-size: 13px; color: var(--text-light); }

/* ===== CONTACT LINK BAND ===== */
.contact-link-band { background: var(--off-white); padding: 48px 80px; border-top: 1px solid var(--light-gray); }
.contact-link-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.contact-link-inner h3 { font-size: 20px; font-weight: 700; color: var(--navy); }
.contact-link-inner p { font-size: 14px; color: var(--text-light); margin-top: 4px; }
.contact-link-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== AI STRIP ===== */
.ai-strip {
  background: linear-gradient(135deg, var(--navy) 0%, #1e4080 100%);
  padding: 24px 80px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.ai-strip-left { display: flex; align-items: center; gap: 14px; }
.ai-icon { width: 44px; height: 44px; background: rgba(200,134,26,0.2); border: 1px solid rgba(200,134,26,0.4); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ai-strip h3 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.ai-strip p { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ===== FOOTER ===== */
footer { background: var(--navy-dark); padding: 64px 80px 32px; color: rgba(255,255,255,0.65); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 32px; }
.footer-logo img { height: 40px; width: auto; margin-bottom: 16px; display: block; filter: brightness(0) invert(1); }
.footer-tagline { font-size: 13px; line-height: 1.6; margin-bottom: 10px; }
.footer-addr { font-size: 13px; line-height: 1.8; }
.footer-addr a { color: #fff; text-decoration: none; transition: color 0.2s; }
.footer-addr a:hover { color: var(--gold-light); }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: #fff; text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-cookie-btn { background: none; border: none; padding: 0; color: #fff; font-size: 14px; font-family: inherit; cursor: pointer; transition: color 0.2s; text-align: left; }
.footer-cookie-btn:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; flex-direction: column; gap: 2px; margin-bottom: 10px; }
.footer-contact-item span { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.35); }
.footer-contact-item a { font-size: 14px; color: #fff; text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 13px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.65s ease both; }
.d1 { animation-delay: 0.1s; } .d2 { animation-delay: 0.2s; } .d3 { animation-delay: 0.3s; }

/* ===== RATGEBER ===== */
.ratgeber-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.ratgeber-card {
  text-decoration: none;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(27,58,107,.07);
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.ratgeber-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(27,58,107,.12); }
.ratgeber-card-img { height: 240px; overflow: hidden; }
.ratgeber-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.ratgeber-card:hover .ratgeber-card-img img { transform: scale(1.04); }
.ratgeber-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.ratgeber-card-body h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.ratgeber-card-body p { font-size: 14px; color: var(--text-light); line-height: 1.65; flex: 1; margin-bottom: 20px; }
.ratgeber-card-btn { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }

/* ===== CITIES GRID ===== */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.city-item {
  display: flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--light-gray);
  border-radius: 10px; padding: 12px 14px;
  font-size: 14px; color: var(--navy); font-weight: 500;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.city-item { cursor: pointer; }
.city-item:hover { border-color: var(--gold); box-shadow: 0 8px 28px rgba(200,134,26,.15); transform: translateY(-3px); }
.city-item svg { flex-shrink: 0; }

/* ===== KONTAKT ===== */
.kontakt-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.kontakt-form-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 10px 40px rgba(27,58,107,.07);
}
.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  font-size: 15px;
  color: var(--navy);
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
}
.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,134,26,.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .cities-grid { grid-template-columns: repeat(4, 1fr); }
  .section, .intro-section { padding: 72px 40px; }
  #main-nav { padding: 0 24px; }
  .page-hero-content { padding: 52px 40px; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .warum-grid { grid-template-columns: repeat(2, 1fr); }
  .ai-strip { padding: 24px 40px; }
  .cta-strip { padding: 64px 40px; }
  .split-navy, .split-light { padding: 56px 40px; }
  .contact-link-band { padding: 40px; }
}
@media (max-width: 768px) {
  .section, .intro-section { padding: 56px 24px; }
  #main-nav { padding: 0 20px; height: 64px; }
  .ai-strip[style*="margin-top"] { margin-top: 64px !important; }
  .nav-hamburger { display: flex; }
  .nav-actions { display: none; }
  .nav-mobile-overlay { display: block; opacity: 0; pointer-events: none; transition: opacity 0.25s; }
  #main-nav.mobile-open ~ .nav-mobile-overlay,
  #main-nav.mobile-open + .nav-mobile-overlay { opacity: 1; pointer-events: auto; }
  .nav-links {
    display: flex; flex-direction: column; align-items: flex-start;
    position: fixed; top: 0; right: -100%; width: min(320px, 85vw); height: 100dvh;
    background: var(--white); padding: 80px 24px 32px;
    box-shadow: -8px 0 40px rgba(27,58,107,0.15);
    z-index: 100; gap: 0; list-style: none;
    transition: right 0.3s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto;
  }
  #main-nav.mobile-open .nav-links { right: 0; }
  .nav-links > li { width: 100%; border-bottom: 1px solid var(--light-gray); }
  .nav-links > li > a {
    display: block; padding: 14px 0; font-size: 16px; font-weight: 500;
  }
  .nav-links a::after { display: none; }
  .nav-dropdown-menu {
    position: static; transform: none; box-shadow: none; border: none;
    border-radius: 0; padding: 0 0 8px 12px; display: none; min-width: unset;
  }
  .nav-dropdown-menu.open,
  .nav-dropdown-menu.mobile-open { display: block; }
  .nav-dropdown-menu a { padding: 9px 0; font-size: 14px; border-radius: 0; }
  .nav-dropdown-menu a:hover { background: none; color: var(--navy); }
  .page-hero-content { padding: 40px 24px; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-grid.reverse .intro-img { order: 0; }
  .leistungs-grid, .process-grid, .warum-grid, .features-2col { grid-template-columns: 1fr; }
  .split-section { grid-template-columns: 1fr; }
  .split-img { min-height: 280px; }
  footer { padding: 48px 24px 24px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .ai-strip { padding: 20px 24px; flex-direction: column; align-items: flex-start; }
  .cta-strip { padding: 56px 24px; }
  .contact-link-band { padding: 36px 24px; }
  .contact-link-inner { flex-direction: column; align-items: flex-start; }

  /* section-header stacked on mobile */
  .section-header { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 36px; }

  /* index.php hero */
  .hero-content { padding: 40px 24px !important; }
  .hero-stats { gap: 20px !important; flex-wrap: wrap; }
  .hero-stats > div { min-width: 80px; }

  /* index.php about */
  .about-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .about-grid img { height: 260px !important; }
  .img-badge { width: 100px !important; height: 100px !important; bottom: -20px !important; left: -10px !important; }

  /* index.php process */
  .process-split { grid-template-columns: 1fr !important; gap: 40px !important; }
  .process-split img { height: 260px !important; }

  /* kontakt */
  .kontakt-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .name-grid { grid-template-columns: 1fr !important; }
  .kontakt-submit { align-self: stretch !important; text-align: center; }

  /* formular inputs mobil */
  .kontakt-grid input,
  .kontakt-grid select,
  .kontakt-grid textarea,
  .kontakt-grid button { width: 100% !important; }

  /* ratgeber */
  .ratgeber-grid { grid-template-columns: 1fr; }
  .ratgeber-card-img { height: 200px; }
  .ratgeber-split { grid-template-columns: 1fr !important; gap: 40px !important; }

  /* einsatzgebiete cities grid */
  .cities-grid { grid-template-columns: repeat(2, 1fr) !important; }
  [style*="grid-template-columns:repeat(2,1fr)"],
  [style*="grid-template-columns: repeat(2, 1fr)"] { grid-template-columns: 1fr !important; }

  /* inline grids inside index.php sections */
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns: repeat(3, 1fr)"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:repeat(4,1fr)"],
  [style*="grid-template-columns: repeat(4, 1fr)"] { grid-template-columns: 1fr !important; }

  /* contact form section (index) */
  .contact-grid { grid-template-columns: 1fr !important; gap: 40px !important; }

  /* kontakt page */
  .kontakt-layout { grid-template-columns: 1fr; gap: 36px; }
  .kontakt-form-card { padding: 24px; }
  .name-grid { grid-template-columns: 1fr !important; }
}
