/* =========================================================
   EDENIO Immobilien GmbH – Design-System
   Brand-Farb-DNA: #285da9 (Primärblau) + #000000 (Text/Logo-Schwarz)
   Stand: 31.08.2026 – CI an neues Logo (2026_EDENIO_Logo_final) angepasst
   Keine externen Schriften (Datenschutz – ohne Google Fonts)
   ========================================================= */

:root {
  /* Brand-Blau (Primary DNA) – abgeleitet aus neuem Logo #285da9 */
  --c-brand:        #285da9;
  --c-brand-700:    #204a86;
  --c-brand-800:    #183764;
  --c-brand-900:    #112746;
  --c-brand-500:    #4d79b8;
  --c-brand-400:    #6d91c5;
  --c-brand-300:    #a0b8d9;
  --c-brand-200:    #c4d3e8;
  --c-brand-100:    #e2e9f3;
  --c-brand-50:     #f1f5fa;

  /* Aliase (Kompatibilität) */
  --c-primary:      var(--c-brand-900);
  --c-primary-700:  var(--c-brand-800);
  --c-primary-600:  var(--c-brand);
  --c-primary-500:  var(--c-brand-500);
  --c-primary-300:  var(--c-brand-300);
  --c-primary-200:  var(--c-brand-200);
  --c-primary-100:  var(--c-brand-100);
  --c-primary-50:   var(--c-brand-50);

  /* Neutral */
  --c-bg:        #FFFFFF;
  --c-surface:   #F4F8FD;
  --c-surface-2: #E8F0FA;
  --c-border:    #DCE6F2;
  --c-border-strong: #C5D5E8;
  --c-text:      #000000;
  --c-text-muted:#4C4C4C;
  --c-text-light:#7E7E7E;

  /* Akzente */
  --c-success: #1E8E5C;
  --c-success-light: #E5F4ED;
  --c-warn:    #C7821B;
  --c-danger:  #C04A4A;
  --c-danger-light: #FCEBEB;

  /* Layout */
  --container: 1200px;
  --container-narrow: 920px;
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(2,93,201,.06), 0 1px 3px rgba(2,37,84,.05);
  --shadow:    0 8px 24px rgba(17,39,70,.10);
  --shadow-lg: 0 24px 60px rgba(1,72,160,.18);

  /* Typo - System-Font-Stack (kein externer Webfont) */
  --ff-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', 'Arial', sans-serif;
  --ff-display: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', 'Arial', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  color: var(--c-text);
  background: var(--c-bg);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }

a {
  color: var(--c-brand);
  text-decoration: none;
  transition: color .2s ease;
}
a:hover { color: var(--c-brand-700); }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  color: var(--c-text);
  line-height: 1.2;
  margin: 0 0 .6em;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { margin: 0 0 1rem; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.55rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-brand);
  color: #fff;
  box-shadow: 0 6px 16px rgba(2,93,201,.25);
}
.btn-primary:hover {
  background: var(--c-brand-700);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(2,93,201,.35);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--c-brand);
  border-color: var(--c-brand-200);
}
.btn-outline:hover {
  background: var(--c-brand-50);
  border-color: var(--c-brand);
  color: var(--c-brand-700);
}
.btn-light {
  background: #fff;
  color: var(--c-brand);
}
.btn-light:hover { background: var(--c-brand-50); color: var(--c-brand-700); }
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--c-border);
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}
.brand img {
  height: 60px;
  width: auto;
  display: block;
}

@media (max-width: 720px) { .brand img { height: 48px; } }

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav a {
  color: var(--c-text);
  font-weight: 500;
  font-size: .95rem;
  padding: .55rem .9rem;
  border-radius: 8px;
  transition: background .15s ease, color .15s ease;
}
.nav a:hover { background: var(--c-brand-50); color: var(--c-brand); }
.nav a.active { color: var(--c-brand); font-weight: 600; }

.header-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}
.header-cta .btn { padding: .6rem 1.15rem; font-size: .9rem; }

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--c-border);
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-brand);
  margin: 5px 0;
  transition: transform .25s ease, opacity .25s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1100px) {
  .nav, .header-cta .btn-outline { display: none; }
  .menu-toggle { display: block; }
}

.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  width: min(86vw, 360px);
  height: 100vh;
  background: #fff;
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform .3s ease;
  z-index: 200;
  padding: 80px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  padding: .9rem 1rem;
  border-radius: 10px;
  color: var(--c-text);
  font-weight: 500;
  font-size: 1.05rem;
}
.mobile-nav a:hover { background: var(--c-brand-50); color: var(--c-brand); }
.mobile-nav .btn { margin-top: 12px; justify-content: center; }
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2,37,84,.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 150;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: auto; }

/* ========== Hero ========== */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 600px at 88% -10%, rgba(142,184,238,.4), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(185,211,244,.5), transparent 60%),
    linear-gradient(180deg, #EFF5FC 0%, #FFFFFF 100%);
  overflow: hidden;
  padding: 100px 0 90px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 50px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--c-border);
  color: var(--c-brand);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-success);
  box-shadow: 0 0 0 4px rgba(30,142,92,.18);
}
.hero h1 { margin-bottom: .45em; }

/* WICHTIG: Farbverlauf "Vertrauenssache" beibehalten */
.hero h1 .accent {
  background: linear-gradient(120deg, var(--c-brand) 0%, var(--c-brand-700) 50%, var(--c-brand-900) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.hero-lead {
  font-size: 1.18rem;
  color: var(--c-text-muted);
  max-width: 580px;
  margin-bottom: 20px;
  line-height: 1.65;
}
.hero-name-note {
  font-size: .92rem;
  color: var(--c-text-muted);
  max-width: 560px;
  margin-bottom: 28px;
  padding-left: 16px;
  border-left: 3px solid var(--c-brand-200);
  line-height: 1.6;
}
.hero-name-note strong { color: var(--c-brand); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid var(--c-border);
}
.hero-trust-item { font-size: .88rem; color: var(--c-text-muted); }
.hero-trust-item strong {
  display: block;
  color: var(--c-brand);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 4px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -40px; /* darf leicht rechts hinausragen für mehr Präsenz */
}
.hero-visual-img {
  width: 115%;
  max-width: none;
  height: auto;
  display: block;
  /* Sanfte Eck- und Randausblendung – Bild verschmilzt mit dem Hero-Hintergrund */
  -webkit-mask-image:
    radial-gradient(ellipse 95% 80% at 50% 42%, #000 50%, rgba(0,0,0,0.85) 70%, transparent 100%);
  mask-image:
    radial-gradient(ellipse 95% 80% at 50% 42%, #000 50%, rgba(0,0,0,0.85) 70%, transparent 100%);
  filter: drop-shadow(0 22px 30px rgba(17,39,70,0.14));
}
@media (max-width: 980px) {
  .hero-visual { margin-right: 0; }
  .hero-visual-img { width: 100%; }
}
.ai-image-label {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(17,39,70,.72);
  color: #fff;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 5px 10px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  z-index: 1;
  cursor: default;
}
.hv-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.3);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 500;
  align-self: flex-start;
  backdrop-filter: blur(6px);
}
.hv-stat {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(10px);
}
.hv-stat strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.hv-stat span {
  color: var(--c-brand-200);
  font-size: .92rem;
}
.hv-floating {
  position: absolute;
  background: #fff;
  color: var(--c-text);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  z-index: 2;
}
.hv-floating .icon {
  width: 38px; height: 38px;
  background: var(--c-success-light);
  color: var(--c-success);
  border-radius: 10px;
  display: grid; place-items: center;
}
.hv-floating .icon svg { width: 20px; height: 20px; }
.hv-floating.f1 { top: 20%; left: -28px; }
.hv-floating.f2 { bottom: 18%; right: -28px; }
.hv-floating strong { display: block; font-weight: 600; }
.hv-floating small { color: var(--c-text-muted); }

@media (max-width: 980px) {
  .hero { padding: 60px 0 50px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 560px; margin: 0 auto; }
  .hero-trust { grid-template-columns: repeat(2, 1fr); }
}

/* ========== Sections base ========== */
.section { padding: 90px 0; }
.section-tight { padding: 70px 0; }
.section-bg { background: var(--c-surface); }
.section-dark {
  background: linear-gradient(135deg, var(--c-brand-800) 0%, var(--c-brand-900) 100%);
  color: #fff;
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: var(--c-brand-200); }

.section-head {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 56px;
}
.section-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--c-brand);
  font-weight: 700;
  font-size: .8rem;
  margin-bottom: 14px;
}
.section-head p { color: var(--c-text-muted); font-size: 1.08rem; }
.section-dark .section-eyebrow { color: var(--c-brand-300); }

/* ========== Service cards ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--c-brand), var(--c-brand-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--c-brand-200);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon-box {
  width: 58px; height: 58px;
  border-radius: 14px;
  background: var(--c-brand-50);
  color: var(--c-brand);
  display: grid; place-items: center;
  margin-bottom: 22px;
  transition: background .25s, color .25s;
}
.service-card .icon-box svg { width: 28px; height: 28px; }
.service-card:hover .icon-box {
  background: var(--c-brand);
  color: #fff;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--c-text-muted); margin-bottom: 18px; flex: 1; }
.service-card .more {
  font-weight: 600;
  font-size: .92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--c-brand);
}
.service-card .more:hover { color: var(--c-brand-700); }
.service-card .more span { transition: transform .2s; display: inline-block; }
.service-card:hover .more span { transform: translateX(4px); }

/* ========== USP / Differentiators ========== */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .usp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .usp-grid { grid-template-columns: 1fr; } }
.usp-item {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: left;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.usp-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--c-brand-200);
}
.usp-item .icon-box {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--c-brand), var(--c-brand-700));
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 20px;
  box-shadow: 0 6px 14px rgba(2,93,201,.25);
}
.usp-item .icon-box svg { width: 24px; height: 24px; }
.usp-item h4 { margin-bottom: 8px; font-size: 1.08rem; }
.usp-item p { color: var(--c-text-muted); font-size: .95rem; margin: 0; }

/* ========== Comparison table ========== */
.compare-wrap {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
}
.compare-table th, .compare-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
  vertical-align: middle;
}
.compare-table thead th {
  background: var(--c-surface);
  font-weight: 700;
  font-size: .82rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  text-align: center;
}
.compare-table thead th:first-child { text-align: left; }
.compare-table thead th.us {
  background: linear-gradient(135deg, var(--c-brand), var(--c-brand-700));
  color: #fff;
}
.compare-table tbody td:first-child {
  font-weight: 500;
  text-align: left;
  width: 42%;
}
.compare-table td.us {
  background: var(--c-brand-50);
  text-align: center;
  font-weight: 500;
  color: var(--c-brand-800);
}
.compare-table td.them { text-align: center; color: var(--c-text-muted); }
.compare-table tr:last-child th, .compare-table tr:last-child td { border-bottom: 0; }
.check, .cross {
  display: inline-grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
}
.check { background: var(--c-success-light); color: var(--c-success); }
.cross { background: var(--c-danger-light); color: var(--c-danger); }
.check svg, .cross svg { width: 16px; height: 16px; }
@media (max-width: 720px) {
  .compare-table th, .compare-table td { padding: 13px 10px; font-size: .88rem; }
  .compare-table tbody td:first-child { width: 50%; }
}

/* ========== Trust badges (verbessert) ========== */
.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .badges-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .badges-grid { grid-template-columns: 1fr; } }
.badge-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  position: relative;
}
.badge-card:hover {
  border-color: var(--c-brand-300);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.badge-card .icon-box {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--c-brand-50), var(--c-brand-100));
  color: var(--c-brand);
  display: grid; place-items: center;
  border: 1px solid var(--c-brand-100);
}
.badge-card .icon-box svg { width: 24px; height: 24px; }
.badge-card h4 {
  font-size: 1rem;
  margin: 0 0 4px;
  color: var(--c-text);
}
.badge-card p {
  margin: 0;
  font-size: .87rem;
  color: var(--c-text-muted);
  line-height: 1.55;
}

/* Partner-Logos: Mitgliedschaften & Zertifizierungen */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}
@media (max-width: 880px) { .partner-grid { grid-template-columns: repeat(2, 1fr); } }
.membership-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  margin-top: 28px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 700px) { .membership-grid { flex-direction: column; align-items: stretch; } }
.certificate-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 20px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 620px) { .certificate-grid { grid-template-columns: 1fr; } }
.partner-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  transition: border-color .25s, background .25s, transform .25s, box-shadow .25s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  text-decoration: none;
}
.partner-card.card-lg { min-height: 190px; padding: 28px 34px; flex: 1 1 260px; max-width: 380px; }
.partner-card.card-xl { min-height: 280px; padding: 34px; }
.partner-card:hover {
  border-color: var(--c-brand-300);
  background: var(--c-brand-50);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(17,39,70,.08);
}
.partner-card .ph-logo {
  height: 48px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--c-brand);
  margin-bottom: 10px;
  letter-spacing: .04em;
}
.partner-card .ph-logo-img {
  height: 56px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}
.partner-card .ph-logo-img.logo-md { height: 175px; max-height: 175px; }
.partner-card .ph-logo-img.logo-lg { height: 240px; max-height: 240px; }
.partner-card small {
  display: block;
  color: var(--c-text-muted);
  font-size: .82rem;
}
.partner-card .ph-tag {
  display: inline-block;
  margin-top: 6px;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--c-text-light);
  background: var(--c-surface);
  padding: 2px 8px;
  border-radius: 999px;
}
.partner-group-label {
  text-align: center;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--c-text-light);
  margin: 40px 0 4px;
}
.partner-group-label:first-of-type { margin-top: 0; }

/* ========== Contact / Erreichbarkeit ========== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 920px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: center;
  border: 1px solid var(--c-border);
  transition: all .25s ease;
}
.contact-card:hover {
  border-color: var(--c-brand-300);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.contact-card .icon-circle {
  width: 68px; height: 68px;
  border-radius: 50%;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, var(--c-brand), var(--c-brand-700));
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 18px rgba(2,93,201,.3);
}
.contact-card .icon-circle svg { width: 30px; height: 30px; }
.contact-card h3 { margin-bottom: 8px; }
.contact-card p { color: var(--c-text-muted); margin-bottom: 18px; }
.contact-card .tag {
  display: inline-block;
  background: var(--c-success-light);
  color: var(--c-success);
  font-size: .78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ========== CTA Banner ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--c-brand) 0%, var(--c-brand-800) 100%);
  border-radius: var(--radius-lg);
  padding: 56px;
  color: #fff;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(142,184,238,.35), transparent 50%);
}
.cta-banner > * { position: relative; }
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.85); margin: 0; }
.cta-banner .cta-actions { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; }
@media (max-width: 820px) {
  .cta-banner { grid-template-columns: 1fr; padding: 36px; }
  .cta-banner .cta-actions { justify-content: flex-start; }
}

/* ========== Form ========== */
.form-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 720px) { .form-grid { grid-template-columns: 1fr; } }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row.full { grid-column: 1 / -1; }
.form-row label {
  font-size: .88rem;
  font-weight: 500;
  color: var(--c-text);
}
.form-row label .req { color: var(--c-danger); }
.form-row input,
.form-row select,
.form-row textarea {
  font-family: inherit;
  font-size: .98rem;
  padding: .85rem 1rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  color: var(--c-text);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--c-brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(2,93,201,.16);
}
.form-row textarea { min-height: 140px; resize: vertical; }
.form-check { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: var(--c-text-muted); }
.form-check input { margin-top: 4px; }
.form-actions {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* ========== Page header (Unterseiten) ========== */
.page-header {
  background:
    radial-gradient(900px 450px at 90% -20%, rgba(142,184,238,.32), transparent 60%),
    linear-gradient(180deg, var(--c-brand-50) 0%, #fff 100%);
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--c-border);
}
.page-header h1 { margin-bottom: 14px; }
.page-header p {
  font-size: 1.12rem;
  color: var(--c-text-muted);
  max-width: 760px;
  margin: 0;
}
.breadcrumb {
  font-size: .85rem;
  color: var(--c-text-muted);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--c-text-muted); }
.breadcrumb a:hover { color: var(--c-brand); }

/* ========== Detail content blocks ========== */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.content-block:last-child { margin-bottom: 0; }
.content-block.reverse > :first-child { order: 2; }
@media (max-width: 880px) {
  .content-block, .content-block.reverse { grid-template-columns: 1fr; gap: 32px; }
  .content-block.reverse > :first-child { order: 0; }
}
.content-block h2 { margin-bottom: 18px; }
.content-block .feature-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.content-block .feature-list li {
  position: relative;
  padding-left: 34px;
  font-size: .98rem;
  line-height: 1.5;
  color: var(--c-text);
}
.content-block .feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c-success-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E8E5C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='5 12 10 17 19 7'/%3E%3C/svg%3E") center/14px no-repeat;
}
.content-visual {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--c-brand-100), var(--c-brand-200));
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.content-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.45), transparent 55%);
}
.content-visual svg { width: 60%; height: auto; opacity: .9; position: relative; z-index: 1; }

/* ========== Pricing ========== */
.price-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
@media (max-width: 880px) { .price-intro { grid-template-columns: 1fr; } }
.price-points {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}
.price-points li {
  display: flex;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 18px 22px;
  transition: border-color .25s, transform .25s;
}
.price-points li:hover {
  border-color: var(--c-brand-200);
  transform: translateX(4px);
}
.price-points .icon-box {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--c-brand-50);
  color: var(--c-brand);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.price-points .icon-box svg { width: 20px; height: 20px; }
.price-points h4 { margin: 0 0 4px; font-size: 1rem; }
.price-points p { margin: 0; color: var(--c-text-muted); font-size: .92rem; }

/* ========== Region / Lokal ========== */
.region-band {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 880px) { .region-band { grid-template-columns: 1fr; padding: 32px; } }
.region-flag {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.flag {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 14px;
  background: var(--c-surface);
  font-weight: 600;
  border: 1px solid var(--c-border);
}
.flag .colors { display: flex; gap: 4px; }
.flag .colors span { display: block; width: 18px; height: 28px; border-radius: 3px; }
.flag-abbr {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 10px;
  background: var(--c-brand-50);
  color: var(--c-brand);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .02em;
  flex-shrink: 0;
}
.flag-de-graphic {
  display: flex;
  flex-direction: column;
  width: 52px; height: 34px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08);
}
.flag-de-graphic span { display: block; flex: 1; }
.flag-de-graphic span:nth-child(1) { background: #000; }
.flag-de-graphic span:nth-child(2) { background: #DD0000; }
.flag-de-graphic span:nth-child(3) { background: #FFCE00; }
.flag small { display: block; color: var(--c-text-muted); font-weight: 400; font-size: .85rem; }

.region-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
@media (max-width: 760px) { .region-pillars { grid-template-columns: 1fr; } }
.region-pillar {
  background: #fff;
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-brand);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.region-pillar:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.region-pillar h4 { margin: 0 0 8px; color: var(--c-text); }
.region-pillar p { margin: 0; color: var(--c-text-muted); font-size: .94rem; }

/* Erweiterte Säulen mit Icon, Claim und Bullet-Liste */
.region-pillars-rich .region-pillar {
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
}
.region-pillars-rich .pillar-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--c-brand-50);
  color: var(--c-brand);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.region-pillars-rich .pillar-icon svg { width: 24px; height: 24px; }
.region-pillars-rich .region-pillar h4 {
  font-size: 1.18rem;
  margin-bottom: 6px;
}
.region-pillars-rich .pillar-claim {
  color: var(--c-brand) !important;
  font-weight: 600;
  font-size: .98rem !important;
  font-style: italic;
  margin: 0 0 14px !important;
  border-left: 3px solid var(--c-brand-200);
  padding-left: 12px;
}
.region-pillars-rich .region-pillar > p:not(.pillar-claim) {
  font-size: .94rem;
  margin-bottom: 14px !important;
  line-height: 1.6;
}
.pillar-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pillar-list li {
  position: relative;
  padding-left: 22px;
  font-size: .92rem;
  color: var(--c-text);
  line-height: 1.5;
}
.pillar-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--c-success-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E8E5C' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='5 12 10 17 19 7'/%3E%3C/svg%3E") center/9px no-repeat;
}

.region-closing {
  text-align: center;
  margin-top: 50px;
  font-size: 1.15rem;
  color: var(--c-text);
  line-height: 1.6;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.region-closing strong {
  color: var(--c-brand);
  font-size: 1.3rem;
  display: inline-block;
  margin-top: 6px;
}

/* ========== Footer ========== */
.site-footer {
  background: linear-gradient(180deg, var(--c-brand) 0%, var(--c-brand-700) 100%);
  color: #d6e4f5;
  padding: 70px 0 30px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand img { height: 70px; margin-bottom: 18px; }
.footer-brand p { color: #b9d3f4; font-size: .92rem; }
.site-footer h4 {
  color: #fff;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: #d6e4f5;
  font-size: .94rem;
}
.footer-links a:hover { color: #fff; }
.footer-contact { font-size: .94rem; line-height: 1.8; color: #d6e4f5; }
.footer-contact a { color: #fff; }

.memberships {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.membership-pill {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-size: .76rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: .03em;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.18);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .85rem;
  color: #b9d3f4;
}
.footer-bottom a { color: #e0ecf9; }
.footer-bottom a:hover { color: #fff; }
.footer-bottom .made {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-bottom .made .heart { color: #ff7a8b; }
.green-hosting-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: inherit;
}
.green-hosting-badge svg { flex-shrink: 0; color: #4CAF7D; }

/* ========== Cookie Banner (transparent & ehrlich) ========== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px; right: 20px;
  max-width: 460px;
  margin-left: auto;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-lg);
  z-index: 250;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s ease, opacity .3s ease;
}
.cookie-banner.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
.cookie-banner h4 { margin: 0 0 6px; font-size: 1rem; }
.cookie-banner p { margin: 0 0 14px; font-size: .87rem; color: var(--c-text-muted); }
.cookie-banner .cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner .btn { padding: .55rem 1.1rem; font-size: .85rem; }

/* ========== Misc ========== */
.legal-prose {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.78;
}
.legal-prose h2 { margin-top: 40px; font-size: 1.5rem; }
.legal-prose h2:first-child { margin-top: 0; }
.legal-prose h3 { margin-top: 26px; font-size: 1.15rem; }
.legal-prose ul { padding-left: 1.4rem; }
.legal-prose li { margin-bottom: 8px; }
.legal-prose .info-box {
  background: var(--c-brand-50);
  border-left: 4px solid var(--c-brand);
  padding: 18px 22px;
  border-radius: 6px;
  margin: 24px 0;
  font-size: .95rem;
}

/* Tipps / Hinweise Layout */
.tip-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 50px;
}
@media (max-width: 880px) { .tip-categories { grid-template-columns: 1fr; } }
.tip-cat {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
  text-decoration: none;
  color: var(--c-text);
  transition: all .25s;
}
.tip-cat:hover {
  border-color: var(--c-brand);
  background: var(--c-brand-50);
  transform: translateY(-3px);
}
.tip-cat .icon-circle {
  width: 56px; height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-brand), var(--c-brand-700));
  color: #fff;
  display: grid; place-items: center;
}
.tip-cat .icon-circle svg { width: 26px; height: 26px; }
.tip-cat h3 { margin-bottom: 6px; font-size: 1.05rem; }
.tip-cat p { margin: 0; font-size: .88rem; color: var(--c-text-muted); }

.tip-block {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 22px;
}
.tip-block h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.tip-block h3 .num {
  display: inline-grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--c-brand-50);
  color: var(--c-brand);
  font-size: .85rem;
  font-weight: 700;
}
.tip-block ul { padding-left: 1.3rem; margin: 12px 0; color: var(--c-text-muted); }
.tip-block ul li { margin-bottom: 6px; }
.tip-block .source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: .85rem;
  color: var(--c-brand);
  font-weight: 500;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 12px; top: 12px;
  z-index: 999;
  background: var(--c-brand);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
}

::selection { background: var(--c-brand-200); color: var(--c-brand-900); }
