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

:root {
  --pink:    #c0176b;
  --pink-d:  #96115a;
  --pink-l:  #e8196e;
  --rose:    #f7d6e8;
  --dark:    #1a0a12;
  --grey:    #f8f4f6;
  --text:    #2d1a26;
  --muted:   #7a5a6e;
  --white:   #ffffff;
  --radius:  1.25rem;
  --shadow:  0 8px 40px rgba(192,23,107,.15);
  --trans:   .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; scroll-padding-top: 5rem; overflow-x: hidden; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: clip;
  max-width: 100vw;
}

/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 1.1rem; left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 3rem);
  max-width: 980px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: .45rem .45rem .45rem 1rem;
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 2rem;
  box-shadow: 0 4px 28px rgba(192,23,107,.1), 0 1px 6px rgba(0,0,0,.05);
  transition: transform .45s cubic-bezier(.4,0,.2,1), opacity .45s, box-shadow .3s;
}
nav.nav-hidden {
  transform: translateX(-50%) translateY(calc(-100% - 2rem));
  opacity: 0; pointer-events: none;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 36px; width: auto; display: block; }
.nav-links {
  display: flex; gap: .1rem; list-style: none;
  justify-content: center;
}
.nav-links a {
  text-decoration: none; color: var(--muted); font-weight: 500; font-size: .875rem;
  padding: .5rem .95rem; border-radius: 1.5rem;
  transition: color var(--trans), background var(--trans);
  white-space: nowrap; position: relative;
}
.nav-links a:hover { color: var(--pink); background: rgba(192,23,107,.07); }
.nav-links a.active { color: var(--pink); background: rgba(192,23,107,.09); font-weight: 600; }
.nav-right { display: flex; align-items: center; gap: .45rem; flex-shrink: 0; }
.nav-cta {
  background: linear-gradient(135deg, var(--pink), var(--pink-l));
  color: #fff; border: none; padding: .55rem 1.15rem;
  border-radius: 1.5rem; font-weight: 600; font-size: .85rem;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 3px 14px rgba(192,23,107,.3);
  transition: transform var(--trans), box-shadow var(--trans);
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(192,23,107,.42); }
/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column;
  align-items: center; justify-content: center; gap: 4.5px;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(192,23,107,.07); border: none; cursor: pointer;
  transition: background var(--trans);
  flex-shrink: 0;
}
.nav-hamburger:hover { background: rgba(192,23,107,.13); }
.nav-hamburger span {
  display: block; width: 16px; height: 1.5px;
  background: var(--pink); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease, width .3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
/* Mobile overlay */
.mobile-overlay {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: rgba(253,248,251,.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
  opacity: 0; transition: opacity .35s ease;
}
.mobile-overlay.open { display: flex; }
.mobile-overlay.visible { opacity: 1; }
[data-theme="dark"] .mobile-overlay { background: rgba(13,6,9,.97); }
.mobile-nav-links { list-style: none; text-align: center; display: flex; flex-direction: column; gap: .5rem; }
.mobile-nav-links a {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700; text-decoration: none;
  background: linear-gradient(135deg, var(--pink), var(--pink-l));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  transition: opacity var(--trans);
}
.mobile-nav-links a:hover { opacity: .7; }
.mobile-cta {
  background: linear-gradient(135deg, var(--pink), var(--pink-l));
  color: #fff; padding: .9rem 2.2rem; border-radius: 2rem;
  font-weight: 700; font-size: 1.05rem; text-decoration: none;
  box-shadow: 0 6px 24px rgba(192,23,107,.35);
  transition: transform var(--trans), box-shadow var(--trans);
}
.mobile-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(192,23,107,.45); }
.mobile-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(192,23,107,.08); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--pink);
  transition: background var(--trans), transform var(--trans);
}
.mobile-close:hover { background: rgba(192,23,107,.15); transform: rotate(90deg); }
@media (max-width: 740px) {
  nav {
    width: calc(100% - 2rem);
    top: .75rem;
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: .4rem .4rem .4rem .85rem;
    background: rgba(255,255,255,.88);
    border-color: rgba(255,255,255,.8);
    box-shadow: 0 4px 20px rgba(192,23,107,.14), 0 1px 4px rgba(0,0,0,.06);
  }
  [data-theme="dark"] nav {
    background: rgba(19,8,14,.88);
  }
  .nav-logo img { height: 32px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-right { gap: .35rem; }
  .nav-hamburger {
    display: flex;
    width: 36px; height: 36px;
    background: rgba(192,23,107,.1);
  }
  .nav-hamburger span { width: 15px; }
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(145deg, #6b0d3e 0%, #c0176b 45%, #e8196e 80%, #f45c9b 100%);
  position: relative; overflow: hidden;
  padding: 8rem 2rem 4rem;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .25;
}
.hero-blob-1 { width: 500px; height: 500px; background: #fff; top: -100px; right: -100px; }
.hero-blob-2 { width: 350px; height: 350px; background: #f45c9b; bottom: 0; left: -80px; }

.hero-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.2); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 2rem; padding: .4rem 1rem; font-size: .85rem;
  color: #fff; font-weight: 500; margin-bottom: 1.5rem;
}
.hero-badge::before { content: '✓'; font-weight: 700; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900; color: #fff;
  line-height: 1.1; margin-bottom: 1.25rem;
}
.hero h1 em { font-style: normal; color: #fce7f3; }
.hero p {
  font-size: 1.15rem; color: rgba(255,255,255,.85);
  line-height: 1.7; margin-bottom: 2rem; font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: #fff; color: var(--pink);
  padding: .9rem 2rem; border-radius: 2rem; font-weight: 700;
  font-size: 1rem; text-decoration: none;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  transition: transform var(--trans), box-shadow var(--trans);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,.25); }
.btn-outline {
  border: 2px solid rgba(255,255,255,.6); color: #fff;
  padding: .85rem 1.8rem; border-radius: 2rem; font-weight: 600;
  font-size: 1rem; text-decoration: none;
  transition: background var(--trans), border-color var(--trans);
}
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: #fff; }

.hero-card {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  padding: 2.5rem;
  color: #fff;
}
.hero-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1.5rem; }
.hero-kasse {
  display: flex; align-items: center; gap: .75rem;
  font-size: .95rem; font-weight: 500;
  background: rgba(255,255,255,.1);
  border-radius: .75rem; padding: .75rem 1rem;
  margin-bottom: .75rem;
}
.hero-kasse .icon { font-size: 1.4rem; }
.hero-kasse-big {
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 1rem; padding: 1.25rem;
  text-align: center; margin-top: 1.25rem;
}
.hero-kasse-big .num { font-size: 2.5rem; font-weight: 900; display: block; }
.hero-kasse-big .label { font-size: .85rem; opacity: .85; }

/* ── TRUST BAR ───────────────────────────────────────── */
.trust-bar {
  background: var(--grey);
  padding: 1.5rem 2rem;
}
.trust-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: .6rem;
  font-size: .9rem; font-weight: 500; color: var(--muted);
}
.trust-item .icon { font-size: 1.3rem; }

/* ── SECTION BASE ────────────────────────────────────── */
section { padding: 5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  display: inline-block;
  background: var(--rose); color: var(--pink);
  font-size: .8rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; border-radius: 2rem;
  padding: .35rem .9rem; margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.2;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem; color: var(--muted); line-height: 1.7;
  max-width: 560px;
}
.section-header { margin-bottom: 3.5rem; }

/* ── SERVICES ────────────────────────────────────────── */
#leistungen { background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(192,23,107,.08);
  transition: transform var(--trans), box-shadow var(--trans);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card-header {
  padding: 2rem 2rem 1.5rem;
  background: linear-gradient(135deg, var(--pink-d), var(--pink-l));
  color: #fff;
}
.service-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.service-card-header h3 { font-size: 1.35rem; font-weight: 700; }
.service-card-header p { font-size: .9rem; opacity: .85; margin-top: .4rem; line-height: 1.5; }
.service-card-body { padding: 1.75rem 2rem; background: var(--white); }
.service-list { list-style: none; }
.service-list li {
  padding: .55rem 0;
  border-bottom: 1px solid rgba(192,23,107,.08);
  display: flex; align-items: center; gap: .75rem;
  font-size: .95rem; color: var(--text);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '→';
  color: var(--pink); font-weight: 700; flex-shrink: 0;
}

/* ── HOW IT WORKS ────────────────────────────────────── */
#ablauf {
  background: linear-gradient(135deg, #fdf0f6 0%, #fce7f3 100%);
}
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.step {
  text-align: center; padding: 2rem 1rem;
}
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--pink-l));
  color: #fff; font-size: 1.3rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 6px 20px rgba(192,23,107,.3);
}
.step h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: .6rem; }
.step p { font-size: .9rem; color: var(--muted); line-height: 1.6; }
.step-divider {
  display: flex; align-items: center; justify-content: center;
  color: var(--pink); font-size: 1.5rem; opacity: .4;
  padding-top: 1.7rem;
}

/* ── PFLEGEKASSEN CALLOUT ─────────────────────────────── */
.callout-section { padding: 3rem 2rem; }
.callout {
  background: linear-gradient(135deg, var(--pink-d), var(--pink-l));
  border-radius: calc(var(--radius) * 1.5);
  padding: 3.5rem; color: #fff;
  display: flex; align-items: center; gap: 3rem;
  margin: 0 auto; max-width: 1100px;
}
.callout-icon { font-size: 4rem; flex-shrink: 0; }
.callout h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; margin-bottom: .75rem;
}
.callout p { font-size: 1rem; opacity: .9; line-height: 1.7; max-width: 500px; }
.callout-badges { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.25rem; }
.callout-badge {
  background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.3);
  border-radius: 2rem; padding: .4rem .9rem;
  font-size: .85rem; font-weight: 600;
}

/* ── CONTACT ─────────────────────────────────────────── */
#kontakt { background: var(--dark); color: #fff; }
#kontakt .section-title { color: #fff; }
#kontakt .section-label { background: rgba(255,255,255,.1); color: #fce7f3; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.contact-info p { color: rgba(255,255,255,.7); line-height: 1.8; font-size: 1rem; margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1rem; padding: 1.25rem 1.5rem;
  text-decoration: none; color: #fff;
  transition: background var(--trans), transform var(--trans);
}
.contact-item:hover { background: rgba(255,255,255,.12); transform: translateX(4px); }
.contact-item .ci-icon { font-size: 1.6rem; }
.contact-item .ci-label { font-size: .8rem; color: rgba(255,255,255,.5); margin-bottom: .15rem; }
.contact-item .ci-val { font-size: 1.05rem; font-weight: 600; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: .75rem;
  padding: .9rem 1.2rem;
  color: #fff;
  font-family: inherit;
  font-size: .95rem;
  outline: none;
  transition: border-color var(--trans), background var(--trans);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.35); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--pink-l); background: rgba(255,255,255,.1); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form select option { background: var(--dark); }
.btn-send {
  background: linear-gradient(135deg, var(--pink), var(--pink-l));
  color: #fff; border: none;
  padding: 1rem 2.5rem; border-radius: 2rem;
  font-size: 1rem; font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(192,23,107,.4);
  transition: transform var(--trans), box-shadow var(--trans);
  align-self: flex-start;
}
.btn-send:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(192,23,107,.5); }

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: #120a0e;
  color: rgba(255,255,255,.5);
  text-align: center;
  padding: 2rem;
  font-size: .875rem;
}
footer a { color: var(--pink-l); text-decoration: none; }

/* ── THEME SWITCH ────────────────────────────────────── */
.theme-switch {
  background: none; border: none; padding: 0;
  cursor: pointer; display: flex; align-items: center; flex-shrink: 0;
}
.switch-track {
  width: 52px; height: 28px; border-radius: 14px;
  background: linear-gradient(135deg, #fce7f3, #fbcfe8);
  border: 1.5px solid rgba(192,23,107,.25);
  position: relative; display: flex; align-items: center; padding: 3px;
  transition: background .4s ease, border-color .4s ease, box-shadow .4s ease;
  box-shadow: inset 0 1px 4px rgba(192,23,107,.1);
}
.switch-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; line-height: 1;
  box-shadow: 0 2px 8px rgba(192,23,107,.25);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), background .4s, box-shadow .4s;
  flex-shrink: 0;
}
.theme-switch:hover .switch-track { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(192,23,107,.12); }
[data-theme="dark"] .switch-track {
  background: linear-gradient(135deg, #2d1040, #4c1d95);
  border-color: rgba(139,92,246,.4);
  box-shadow: inset 0 1px 4px rgba(0,0,0,.3);
}
[data-theme="dark"] .switch-thumb {
  transform: translateX(24px);
  background: #ede9fe;
  box-shadow: 0 2px 8px rgba(109,40,217,.45);
}
[data-theme="dark"] .theme-switch:hover .switch-track { border-color: #a78bfa; box-shadow: 0 0 0 3px rgba(139,92,246,.2); }

/* ── ANIMATIONS ──────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────────── */

/* Tablet */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-card { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step-divider { display: none; }
  .callout { flex-direction: column; gap: 1.5rem; text-align: center; }
  .callout p { max-width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 740px) {
  section { padding: 3.5rem 1.25rem; }
  .section-header { margin-bottom: 2rem; }
  .section-sub { font-size: .95rem; }

  .hero {
    padding: 6.5rem 1.5rem 3.5rem;
    min-height: 100svh; min-height: 100vh;
    align-items: flex-start;
  }
  .hero-inner { gap: 1.5rem; }
  .hero-badge { font-size: .78rem; padding: .3rem .8rem; }
  .hero p { font-size: .975rem; }
  .hero-actions { flex-direction: column; gap: .75rem; }
  .btn-primary, .btn-outline {
    text-align: center; width: 100%;
    padding: .9rem 1.5rem;
  }
  .hero-blob-1 { width: 260px; height: 260px; }
  .hero-blob-2 { width: 180px; height: 180px; }

  .trust-bar { padding: 1rem 0; overflow: hidden; }
  .trust-inner {
    flex-wrap: nowrap; gap: 0;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; justify-content: flex-start;
    padding: .25rem 1.25rem; max-width: 100vw;
  }
  .trust-inner::-webkit-scrollbar { display: none; }
  .trust-item {
    flex-shrink: 0; white-space: nowrap;
    background: rgba(192,23,107,.07);
    border: 1px solid rgba(192,23,107,.12);
    border-radius: 2rem; padding: .45rem 1rem;
    margin-right: .5rem; font-size: .85rem;
  }

  #leistungen { overflow: visible; }
  .services-grid {
    display: grid; grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .service-card { flex: none; max-width: 100%; }
  .swipe-hint { display: none; }

  .steps-grid { grid-template-columns: 1fr; gap: 0; }
  .step {
    display: grid;
    grid-template-columns: 52px 1fr;
    grid-template-rows: auto auto;
    column-gap: 1.25rem; row-gap: .3rem;
    text-align: left; padding: 0 0 2.25rem;
    position: relative;
  }
  .step:not(:last-child)::after {
    content: ''; position: absolute;
    left: 25px; top: 52px; bottom: 0; width: 2px;
    background: linear-gradient(to bottom, rgba(192,23,107,.3), transparent);
  }
  .step-num {
    grid-row: 1 / 3; align-self: start; margin: 0;
    width: 52px; height: 52px; font-size: 1.1rem;
  }
  .step h4 { grid-column: 2; align-self: flex-end; font-size: .95rem; }
  .step p  { grid-column: 2; font-size: .875rem; }

  .callout-section { padding: 1.5rem 1.25rem; }
  .callout {
    padding: 1.5rem; border-radius: var(--radius);
    gap: .75rem; width: 100%; box-sizing: border-box; overflow: hidden;
  }
  .callout > div { min-width: 0; width: 100%; }
  .callout-icon { font-size: 2rem; }
  .callout h2 {
    font-size: 1.2rem; word-break: break-word;
    hyphens: auto; overflow-wrap: anywhere;
  }
  .callout p {
    font-size: .875rem; max-width: 100% !important;
    word-break: break-word; overflow-wrap: anywhere;
  }
  .callout-badges { flex-wrap: wrap; gap: .5rem; }
  .callout-badge { font-size: .78rem; padding: .35rem .75rem; }

  .contact-item { padding: 1rem 1.25rem; }
  .contact-item .ci-val { font-size: .95rem; }
  .btn-send { width: 100%; text-align: center; align-self: stretch; justify-content: center; }

  footer { padding: 2rem 1.25rem; line-height: 2.2; }
  footer p + p { margin-top: .25rem; }
}

/* Small phones */
@media (max-width: 400px) {
  .hero h1 { font-size: 2.2rem; }
  .service-card { flex: 0 0 88vw; }
  .hero-badge { display: none; }
}

/* ── DARK MODE ───────────────────────────────────────── */
[data-theme="dark"] {
  --white:  #130a10;
  --grey:   #1c0e16;
  --text:   #f0e6ec;
  --muted:  #c9a8bc;
  --rose:   rgba(192,23,107,.25);
  --shadow: 0 8px 40px rgba(0,0,0,.5);
}
[data-theme="dark"] body { color: #f0e6ec; }
[data-theme="dark"] nav { background: rgba(13,6,9,.82); border-color: rgba(192,23,107,.12); box-shadow: 0 4px 28px rgba(0,0,0,.45), 0 1px 6px rgba(0,0,0,.2); }
[data-theme="dark"] .nav-links a { color: #c9a8bc; }
[data-theme="dark"] .nav-links a:hover { color: #f0a0c8; background: rgba(192,23,107,.12); }
[data-theme="dark"] .nav-links a.active { color: #f0a0c8; background: rgba(192,23,107,.14); }
[data-theme="dark"] .nav-hamburger { background: rgba(192,23,107,.1); }
[data-theme="dark"] .section-title { color: #f0e6ec; }
[data-theme="dark"] .section-sub { color: #c9a8bc; }
[data-theme="dark"] .section-label { color: #f0a0c8; }
[data-theme="dark"] #ablauf { background: linear-gradient(135deg, #180910 0%, #210d18 100%); }
[data-theme="dark"] .step h4 { color: #f0e6ec; }
[data-theme="dark"] .step p { color: #c9a8bc; }
[data-theme="dark"] .service-card { box-shadow: 0 4px 24px rgba(0,0,0,.5); }
[data-theme="dark"] .service-card-body { background: #1c0e16; }
[data-theme="dark"] .service-list li { color: #f0e6ec; border-bottom-color: rgba(192,23,107,.15); }
[data-theme="dark"] footer { background: #080305; }
[data-theme="dark"] .trust-item { color: #c9a8bc; background: rgba(192,23,107,.1); border-color: rgba(192,23,107,.2); }
