/* =========================================================
   CURENA – Onepager Stylesheet
   Markenfarben aus dem CURENA-Branding (Blau)
   ========================================================= */

:root {
  /* Marke */
  --blue-900: #103a8e;   /* tiefes Blau */
  --blue-700: #1857d5;   /* Hauptblau (Logo) */
  --blue-600: #2f6be0;   /* helleres Blau */
  --blue-100: #d7e3fb;   /* heller Akzent */
  --blue-50:  #eef3fd;   /* sehr helles Blau */

  /* Sekundär / warm (Fürsorge) */
  --rose-600: #e0518b;
  --rose-50:  #fdeef4;
  --amber-500:#f59e0b;
  --green-500:#22c55e;
  --green-50: #ecfdf3;

  /* Neutral */
  --ink-900: #0f1b33;
  --ink-700: #334155;
  --ink-500: #64748b;
  --ink-300: #cbd5e1;
  --line:    #e6ebf3;
  --bg:      #ffffff;
  --bg-soft: #f6f9fe;
  --white:   #ffffff;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 3px rgba(16,58,142,.06), 0 1px 2px rgba(16,58,142,.04);
  --shadow:    0 10px 30px rgba(16,58,142,.10);
  --shadow-lg: 0 24px 60px rgba(16,58,142,.16);
  --maxw: 1140px;
  --gut: clamp(20px, 5vw, 48px);
  --font: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink-700);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { color: var(--ink-900); line-height: 1.15; margin: 0 0 .5em; font-weight: 800; letter-spacing: -.01em; }
h1 { font-size: clamp(1.85rem, 4.4vw, 3rem); }
h2 { font-size: clamp(1.45rem, 3vw, 2.15rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.4rem); }
p  { margin: 0 0 1rem; }
a  { color: var(--blue-700); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
ul { margin: 0 0 1rem; padding-left: 1.2rem; }
li { margin-bottom: .4rem; }

.container { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding: clamp(56px, 9vw, 110px) 0; }
.section--soft { background: var(--bg-soft); }
.section--blue {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: #e8efff;
}
.section--blue h2, .section--blue h3 { color: #fff; }

.eyebrow {
  display: inline-block;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-700);
  background: var(--blue-50);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.section--blue .eyebrow { color: #cfe0ff; background: rgba(255,255,255,.12); }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-700); }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
  text-decoration: none; line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn svg { width: 20px; height: 20px; flex: 0 0 auto; }
.btn-primary { background: var(--blue-700); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--blue-600); }
.btn-ghost { background: #fff; color: var(--blue-700); border-color: var(--blue-100); }
.btn-ghost:hover { border-color: var(--blue-600); }
.btn-white { background: #fff; color: var(--blue-700); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); }
.btn-wa { background: #25d366; color: #062b14; }
.btn-wa:hover { background: #1fc35d; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Hinweis-Band (neue Telefonnummer) ---------- */
.move-banner {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: #fff; font-size: .95rem;
}
.move-banner.is-hidden { display: none; }
.move-banner-inner {
  position: relative; display: flex; align-items: center; justify-content: center;
  gap: 16px; padding: 10px 44px;
}
.move-banner p { margin: 0; display: flex; align-items: center; gap: 10px; text-align: center; }
.move-banner svg { width: 20px; height: 20px; fill: #fff; flex: 0 0 auto; }
.move-banner b { font-weight: 800; white-space: nowrap; }
.move-banner a { color: #fff; text-decoration: underline; white-space: nowrap; font-weight: 700; }
.move-banner a:hover { text-decoration: none; }
.move-banner-close {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  background: transparent; border: 0; color: #fff; font-size: 1.5rem; line-height: 1;
  cursor: pointer; padding: 2px 10px; border-radius: 8px;
}
.move-banner-close:hover { background: rgba(255,255,255,.18); }
@media (max-width: 620px) {
  .move-banner { font-size: .86rem; }
  .move-banner-inner { padding: 9px 40px; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand img { height: 38px; width: auto; max-width: none; }
.brand-name { font-weight: 800; color: var(--blue-700); font-size: 1.35rem; letter-spacing: .02em; }
.nav-links { display: flex; align-items: center; gap: 22px; list-style: none; margin: 0; padding: 0; flex: 0 0 auto; }
.nav-links a { color: var(--ink-700); font-weight: 600; font-size: .95rem; white-space: nowrap; }
.nav-links a:hover { color: var(--blue-700); text-decoration: none; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { white-space: nowrap; padding: 9px 16px; font-size: .9rem; flex: 0 0 auto; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; color: var(--blue-900); white-space: nowrap; }
.nav-phone svg { width: 18px; height: 18px; fill: var(--blue-700); }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
  color: var(--blue-900);
}
.nav-toggle svg { width: 28px; height: 28px; fill: currentColor; }

/* Telefon-Icon im Kopf – nur auf Mobil (Desktop zeigt die volle Nummer) */
.nav-phone-icon { display: none; align-items: center; justify-content: center; padding: 6px; margin-left: auto; }
.nav-phone-icon svg { width: 26px; height: 26px; fill: var(--blue-700); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 500px at 85% -10%, var(--blue-50), transparent 60%),
    radial-gradient(800px 400px at 0% 110%, var(--rose-50), transparent 55%),
    var(--bg);
  padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 9vw, 104px);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero h1 span { color: var(--blue-700); }
.hero .lead { margin-bottom: 28px; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px 28px; color: var(--ink-500); font-size: .95rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.hero-trust svg { width: 20px; height: 20px; fill: var(--green-500); flex: 0 0 auto; }

.hero-visual { position: relative; }
.hero-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 28px; position: relative; z-index: 2;
}
.hero-figure { position: relative; margin-bottom: 20px; }
.hero-slides {
  position: relative; aspect-ratio: 4/3; border-radius: 16px; overflow: hidden;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-900));
}
.hero-slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.1s ease-in-out; display: block;
}
.hero-slide.is-active { opacity: 1; }
.hero-dots {
  position: absolute; left: 0; right: 0; bottom: 12px; z-index: 4;
  display: flex; gap: 8px; justify-content: center;
}
.hero-dot {
  width: 9px; height: 9px; border-radius: 999px; border: 0; padding: 0;
  background: rgba(255,255,255,.6); cursor: pointer;
  transition: width .2s ease, background .2s ease; box-shadow: 0 1px 2px rgba(0,0,0,.25);
}
.hero-dot:hover { background: #fff; }
.hero-dot.is-active { background: #fff; width: 22px; }
.hero-badge {
  position: absolute; z-index: 3; background: #fff; border-radius: 14px;
  box-shadow: var(--shadow); padding: 12px 16px; display: flex; align-items: center; gap: 12px;
}
/* b1 ragt über die obere/linke Bildkante hinaus; b2 sitzt an der unteren
   rechten KARTENecke (an .hero-card verankert). */
.hero-badge.b1 { top: -44px; left: -44px; }
.hero-badge.b2 { bottom: -46px; right: -22px; }
.hero-badge .ic { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; flex: 0 0 auto; }
.hero-badge .ic svg { width: 22px; height: 22px; }
.hero-badge b { display: block; color: var(--ink-900); font-size: 1.05rem; line-height: 1.1; }
.hero-badge small { color: var(--ink-500); }
.hb-text { transition: opacity .4s ease; }
.hb-text.is-fading { opacity: 0; }

.stat-row {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; text-align: center;
}
.stat-row .num { font-size: 1.5rem; font-weight: 800; color: var(--blue-700); }
.stat-row .lab { font-size: .82rem; color: var(--ink-500); line-height: 1.2; }

/* ---------- Logos / Trust strip ---------- */
.trustbar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trustbar .container { display: flex; flex-wrap: wrap; gap: 16px 40px; justify-content: center; align-items: center; padding-block: 22px; }
.trustbar .item { display: inline-flex; align-items: center; gap: 10px; color: var(--ink-700); font-weight: 600; font-size: .95rem; }
.trustbar svg { width: 22px; height: 22px; fill: var(--blue-700); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue-100); }
.card-ic {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: var(--blue-50); margin-bottom: 18px;
}
.card-ic svg { width: 30px; height: 30px; fill: var(--blue-700); }
.card h3 { margin-bottom: .4em; }
.card p { margin: 0; color: var(--ink-700); font-size: .98rem; }
.card.feature { border-color: var(--blue-100); }
.card .tag {
  display: inline-block; margin-top: 14px; font-size: .78rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase; color: var(--blue-700);
}

/* Variation für die Icon-Hintergründe */
.card-ic.rose { background: var(--rose-50); }
.card-ic.rose svg { fill: var(--rose-600); }
.card-ic.green { background: var(--green-50); }
.card-ic.green svg { fill: var(--green-500); }

/* ---------- Ablauf / Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step .n {
  width: 46px; height: 46px; border-radius: 999px; background: var(--blue-700); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 1.15rem; margin-bottom: 16px;
}
.step h3 { font-size: 1.12rem; }
.step p { font-size: .96rem; margin: 0; }

/* ---------- Über uns ---------- */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px,5vw,56px); align-items: center; }
.about-photo {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 4/5; background: linear-gradient(135deg, var(--blue-50), var(--rose-50));
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Allgemeines Sektionsbild (z. B. 24h) */
.media-img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
}

/* Foto-Band mit blauem Overlay (Abschluss-CTA) */
.cta-photo {
  position: relative;
  background-image:
    linear-gradient(135deg, rgba(16,58,142,.88), rgba(24,87,213,.82)),
    url('../assets/cta-care.jpg');
  background-size: cover;
  background-position: center 30%;
}
.quote {
  border-left: 4px solid var(--blue-700); padding: 6px 0 6px 22px; margin: 22px 0;
  font-size: 1.15rem; font-style: italic; color: var(--ink-900);
}
.signature { font-weight: 800; color: var(--blue-900); }
.signature small { display: block; font-weight: 600; color: var(--ink-500); font-style: normal; }

/* ---------- Kosten ---------- */
.cost-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm);
}
.cost-card .amount { font-size: 2.2rem; font-weight: 800; color: var(--blue-700); line-height: 1; }
.cost-card .amount small { font-size: 1rem; color: var(--ink-500); font-weight: 600; }
.cost-card h3 { margin-top: 10px; }
.callout {
  background: var(--blue-50); border-radius: var(--radius); padding: 24px 28px;
  display: flex; gap: 16px; align-items: flex-start; margin-top: 28px;
}
.callout svg { width: 28px; height: 28px; fill: var(--blue-700); flex: 0 0 auto; margin-top: 2px; }
.callout p { margin: 0; }

/* ---------- 24h Sektion ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,56px); align-items: center; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.check-list svg { width: 22px; height: 22px; flex: 0 0 auto; margin-top: 3px; fill: var(--green-500); }
.section--blue .check-list svg { fill: #7fffb0; }

/* ---------- Karriere-Teaser ---------- */
.karriere-benefits {
  max-width: 660px; margin: 0 auto 30px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 32px;
}
.karriere-cta { text-align: center; }
.karriere-alt { color: var(--ink-500); font-size: .95rem; margin: 16px 0 0; }
@media (max-width: 620px) { .karriere-benefits { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 4px 22px; margin-bottom: 14px; box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer; font-weight: 700; color: var(--ink-900); font-size: 1.08rem;
  padding: 16px 0; list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 1.6rem; color: var(--blue-700); font-weight: 400; line-height: 1; flex: 0 0 auto;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { padding-bottom: 18px; margin: 0; color: var(--ink-700); }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,56px); align-items: start; }
.contact-methods { display: grid; gap: 14px; margin: 26px 0; }
.contact-method {
  display: flex; gap: 16px; align-items: center; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 16px 20px; box-shadow: var(--shadow-sm);
}
.contact-method:hover { text-decoration: none; border-color: var(--blue-100); }
.contact-method .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--blue-50); display: grid; place-items: center; flex: 0 0 auto; }
.contact-method .ic svg { width: 24px; height: 24px; fill: var(--blue-700); }
.contact-method b { color: var(--ink-900); display: block; }
.contact-method span { color: var(--ink-500); font-size: .92rem; }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; color: var(--ink-900); margin-bottom: 6px; font-size: .95rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--ink-300); border-radius: var(--radius-sm);
  font: inherit; font-size: 1rem; color: var(--ink-900); background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--blue-600); box-shadow: 0 0 0 4px var(--blue-50);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; color: var(--ink-500); }
.consent input { width: auto; margin-top: 4px; flex: 0 0 auto; }
.form-note { font-size: .82rem; color: var(--ink-500); margin-top: 12px; text-align: center; }
.form-msg { padding: 14px 16px; border-radius: var(--radius-sm); margin-bottom: 18px; font-weight: 600; }
.form-msg.ok { background: var(--green-50); color: #15803d; border: 1px solid #bbf7d0; }
.form-msg.err { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Final CTA ---------- */
.cta-band { text-align: center; }
.cta-band .btn { margin: 6px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 26px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-900); color: #c4d0e4; padding: 64px 0 28px; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.site-footer a { color: #c4d0e4; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.footer-brand img { height: 64px; width: auto; margin-bottom: 18px; }
.footer-brand p { max-width: 300px; color: #93a3bd; }
.footer-applink {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 14px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px;
  color: #fff; font-weight: 600; font-size: .85rem; white-space: nowrap;
}
.footer-applink:hover { background: rgba(255,255,255,.08); text-decoration: none; }
.footer-applink img { height: 26px; width: 26px; margin: 0; border-radius: 7px; flex: 0 0 auto; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 24px; justify-content: space-between; color: #8295b2; font-size: .88rem;
}
.footer-bottom > span { flex: 1 1 0; min-width: 0; }
.footer-bottom > span:last-child { text-align: right; }
@media (max-width: 600px) {
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom > span, .footer-bottom > span:last-child { flex: none; text-align: center; }
}
.footer-bottom a { color: #b9c6dc; }

/* ---------- Floating WhatsApp ---------- */
.fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  width: 58px; height: 58px; border-radius: 999px; background: #25d366;
  display: grid; place-items: center; box-shadow: var(--shadow-lg);
}
.fab:hover { transform: scale(1.06); }
.fab svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; margin-inline: auto; }
  .about-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .about-photo { order: 2; }   /* Bild unter den Text legen (Mobil) */
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1080px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-phone-icon { display: inline-flex; }
  .site-header.open .nav-links {
    display: flex; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: #fff; border-bottom: 1px solid var(--line); padding: 14px var(--gut) 22px;
    box-shadow: var(--shadow);
  }
  .site-header.open .nav-links a { padding: 10px 0; width: 100%; font-size: 1.05rem; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-badge { display: none; }
  .btn { width: 100%; justify-content: center; }
  .hero-actions, .cta-actions { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  /* sanftes Crossfade der Slideshow bleibt erhalten (reine Opacity, keine Bewegung) */
}

/* ---------- Language switcher dropdown (curena.info) ---------- */
.btn-sm { padding: 7px 14px; font-size: .85rem; }
.nav-cta .btn { width: auto; }   /* override the 620px .btn{width:100%} inside the header */

.flag {
  display: inline-block; width: 22px; height: 15px; flex: 0 0 auto;
  border-radius: 3px; overflow: hidden; box-shadow: inset 0 0 0 1px rgba(0,0,0,.12);
}
.flag svg { display: block; width: 100%; height: 100%; }

.lang-dd { position: relative; flex: 0 0 auto; }
.lang-dd > summary {
  display: inline-flex; align-items: center; gap: 7px; cursor: pointer; list-style: none;
  padding: 6px 9px; border: 1px solid var(--line); border-radius: 10px; background: #fff;
  font-weight: 700; font-size: .82rem; color: var(--ink-700); line-height: 1;
  user-select: none;
}
.lang-dd > summary::-webkit-details-marker { display: none; }
.lang-dd > summary:hover { border-color: var(--blue-100); }
.lang-dd .chev { width: 16px; height: 16px; fill: var(--ink-500); transition: transform .18s ease; }
.lang-dd[open] > summary .chev { transform: rotate(180deg); }
.lang-dd[open] > summary { border-color: var(--blue-600); }

.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0; z-index: 60;
  min-width: 190px; padding: 6px; background: #fff;
  border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 2px;
}
.lang-menu a {
  display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 8px;
  color: var(--ink-700); font-size: .9rem; line-height: 1;
}
.lang-menu a:hover { background: var(--blue-50); text-decoration: none; }
.lang-menu a.is-active { background: var(--blue-50); }
.lang-menu .lang-code { font-weight: 800; min-width: 24px; color: var(--blue-700); letter-spacing: .03em; }
.lang-menu .lang-name { color: var(--ink-500); }
.lang-menu a.is-active .lang-name { color: var(--ink-700); }

/* ---------- Legal pages (imprint / privacy) ---------- */
.legal h1 { margin-bottom: 18px; }
.legal h2 { font-size: 1.25rem; margin: 28px 0 8px; }
.legal p { color: var(--ink-700); margin: 0 0 6px; }
.legal a { color: var(--blue-700); }

@media (max-width: 620px) {
  .nav-cta .btn-sm { display: none; }       /* keep header lean; apply CTAs are everywhere else */
}
