/* =================================================================
   Betreuungsdienst Erol – Stylesheet
   Farbwelt & Stil nach Flyer | senioren-freundlich | barrierefrei (WCAG AA)
   ================================================================= */

/* ---------- Selbst gehostete Schrift (DSGVO-konform, kein Google) ---------- */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/poppins-400.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/poppins-500.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/poppins-600.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/poppins-700.woff2") format("woff2");
}

/* ---------- Design-Tokens ---------- */
:root {
  /* Farben (Flyer) */
  --cream:       #f8f0e1;
  --cream-2:     #f3e7d1;
  --paper:       #fffdf8;
  --green:       #4d6a31;
  --green-dark:  #3a5121;
  --green-darker:#2a3b18;
  --olive:       #7e9a4e;
  --sage:        #9bb074;
  --orange:      #e39a42;
  --orange-dark: #c87f25;
  --peach:       #f6d6a6;
  --peach-soft:  #fbe7c9;
  --ink:         #2c281f;
  --ink-soft:    #5c5647;
  --line:        #e7d9bf;
  --white:       #ffffff;

  /* Typo */
  --font: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Maße */
  --maxw: 1160px;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --shadow:    0 6px 22px rgba(60, 45, 20, .08);
  --shadow-lg: 0 16px 44px rgba(60, 45, 20, .14);
  --focus: 3px solid var(--orange-dark);
}

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.125rem;          /* 18px – gut lesbar für Senioren */
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); }
a:hover { color: var(--orange-dark); }

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--green-dark);
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.3rem); }
h3 { font-size: clamp(1.25rem, 1.05rem + .8vw, 1.5rem); }
p  { margin: 0 0 1rem; }
strong { font-weight: 600; }

/* ---------- Hilfsklassen ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 5vw, 2rem); }
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--tight { padding-block: clamp(2rem, 4vw, 3rem); }
.bg-cream2 { background: var(--cream-2); }
.bg-paper  { background: var(--paper); }
.bg-green  { background: var(--green-dark); color: #f3eedd; }
.bg-green h2, .bg-green h3 { color: #fff; }
.measure { max-width: 65ch; }
.center { text-align: center; }
.center .measure { margin-inline: auto; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 1000;
  background: var(--green-dark); color: #fff; padding: .7rem 1.1rem;
  border-radius: var(--radius-sm); transition: top .2s;
}
.skip-link:focus { top: 1rem; color:#fff; }

/* Sichtbarer Fokus für Tastatur-Navigation */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, summary:focus-visible {
  outline: var(--focus); outline-offset: 2px; border-radius: 4px;
}

.eyebrow {
  display: inline-block; font-weight: 600; font-size: .95rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--olive);
  margin-bottom: .6rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font: inherit; font-weight: 600; line-height: 1;
  padding: .95rem 1.5rem; min-height: 52px;
  border-radius: var(--radius-pill); border: 2px solid transparent;
  cursor: pointer; text-decoration: none; transition: transform .12s, background .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn-primary { background: var(--green-dark); color: #fff; }
.btn-primary:hover { background: var(--green-darker); color:#fff; box-shadow: var(--shadow); }
.btn-accent { background: var(--orange); color: var(--ink); }
.btn-accent:hover { background: var(--orange-dark); color: #fff; box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--green-dark); border-color: var(--green); }
.btn-ghost:hover { background: var(--green-dark); color: #fff; }
.btn-lg { font-size: 1.1rem; padding: 1.1rem 1.8rem; min-height: 58px; }
.btn-block { width: 100%; justify-content: center; }

.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }

/* ---------- Kopfzeile / Navigation ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248,240,225,.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 76px; }

.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; }
.brand:hover { color: inherit; }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-weight: 700; font-size: 1.15rem; color: var(--green-dark); white-space: nowrap; }
.brand__name b { color: var(--orange-dark); font-weight: 700; }
.brand__tag { font-size: .72rem; letter-spacing: .04em; color: var(--ink-soft); white-space: nowrap; }
/* Auf schmaleren Desktops Slogan ausblenden, damit die Navi locker in eine Zeile passt */
@media (max-width: 1200px) and (min-width: 1101px) { .brand__tag { display: none; } }

.nav-toggle {
  display: none; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-sm); width: 50px; height: 46px; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 26px; height: 26px; color: var(--green-dark); }

.nav-menu { display: flex; align-items: center; gap: .12rem; list-style: none; margin: 0; padding: 0; }
.nav-menu a {
  display: inline-block; padding: .55rem .7rem; border-radius: var(--radius-sm);
  text-decoration: none; color: var(--ink); font-weight: 500; font-size: 1rem; white-space: nowrap;
}
.nav-menu a:hover { background: var(--cream-2); color: var(--green-dark); }
.nav-menu a[aria-current="page"] { color: var(--green-dark); font-weight: 600; background: var(--cream-2); }
.nav-cta { margin-left: .4rem; }

@media (max-width: 1100px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: .15rem;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: .8rem clamp(1.1rem, 5vw, 2rem) 1.4rem; box-shadow: var(--shadow);
    display: none;
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu a { padding: .85rem 1rem; font-size: 1.1rem; }
  .nav-cta { margin: .4rem 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--cream); }
.hero__grid {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center; padding-block: clamp(2.5rem, 6vw, 5rem);
}
.hero__content { position: relative; z-index: 2; }
.hero h1 { margin-bottom: .4em; }
.hero__lead { font-size: 1.2rem; color: var(--ink-soft); max-width: 46ch; }
.hero__pills { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.3rem 0 1.6rem; padding: 0; list-style: none; }
.pill {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--paper); border: 1px solid var(--line); color: var(--green-dark);
  font-size: .92rem; font-weight: 500; padding: .45rem .85rem; border-radius: var(--radius-pill);
}
.pill svg { width: 1.05em; height: 1.05em; color: var(--olive); }

.hero__media { position: relative; }
.hero__img {
  width: 100%; aspect-ratio: 4 / 3.2; object-fit: cover;
  border-radius: calc(var(--radius) + 6px); box-shadow: var(--shadow-lg);
}
/* Hero-Foto-Slider */
.hero__slider { position: relative; aspect-ratio: 4 / 3.2; border-radius: calc(var(--radius) + 6px); box-shadow: var(--shadow-lg); overflow: hidden; }
.hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity .9s ease; }
.hero__slide.is-active { opacity: 1; }
.hero__slideimg { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__badge {
  position: absolute; left: -14px; bottom: 22px; max-width: 230px;
  background: var(--peach); color: var(--green-darker);
  border-radius: var(--radius); padding: .9rem 1.1rem; box-shadow: var(--shadow);
}
.hero__badge strong { display: block; font-size: 1.05rem; color: var(--green-dark); }
.hero__badge span { font-size: .9rem; }

/* dekorativer Olivenzweig */
.leaf-decor { position: absolute; pointer-events: none; opacity: .95; z-index: 1; }
.leaf-decor--tr { top: -44px; right: -44px; width: 410px; transform-origin: top right; }
.leaf-decor--bl { bottom: -50px; left: -60px; width: 220px; transform: rotate(160deg); opacity: .5; }
@media (prefers-reduced-motion: no-preference) {
  .leaf-decor--tr { animation: leafSway 8s ease-in-out infinite; }
}
@keyframes leafSway { 0%, 100% { transform: rotate(0deg); } 50% { transform: rotate(3deg); } }

@media (max-width: 820px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .hero__img, .hero__slider { aspect-ratio: 5 / 4; }
  .leaf-decor--tr { width: 230px; right: -24px; }
  /* Badge nicht mehr über das kleine Foto legen, sondern als Karte unter die Bildkante */
  .hero__badge { position: relative; z-index: 3; left: auto; bottom: auto; max-width: none; margin: -1.6rem 14px 0; }
}

/* ---------- Vertrauensband ---------- */
.trustbar { background: var(--green-dark); color: #f1ecdc; }
.trustbar__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center;
  padding-block: 1.4rem;
}
.trustbar__item { display: flex; flex-direction: column; align-items: center; gap: .25rem; padding: .3rem; }
.trustbar__item svg { width: 30px; height: 30px; color: var(--peach); }
.trustbar__item strong { color: #fff; font-size: 1rem; }
.trustbar__item span { font-size: .85rem; color: #d9d3bf; line-height: 1.35; }
@media (max-width: 720px) { .trustbar__grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; } }

/* ---------- Abschnitts-Kopf ---------- */
.section-head { max-width: 60ch; margin-bottom: clamp(1.6rem, 4vw, 2.6rem); }
.section-head.center { margin-inline: auto; }
.section-head p { color: var(--ink-soft); font-size: 1.12rem; margin-bottom: 0; }

/* ---------- Karten / Leistungen ---------- */
.grid { display: grid; gap: clamp(1rem, 2.5vw, 1.6rem); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow); height: 100%;
  display: flex; flex-direction: column;
  transition: transform .15s, box-shadow .2s, border-color .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--sage); }
.card__icon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: var(--peach-soft); color: var(--green-dark); margin-bottom: 1rem;
}
.card__icon svg { width: 30px; height: 30px; }
.card h3 { margin-bottom: .35rem; }
.card p { color: var(--ink-soft); margin-bottom: 0; font-size: 1.02rem; }
.card--link { text-decoration: none; color: inherit; }
.card-more { margin-top: auto; padding-top: .9rem; font-weight: 600; color: var(--green-dark); }
.card--link:hover .card-more, a.card-more:hover { color: var(--orange-dark); }

/* ---------- Hinweis-/Highlight-Box ("Gut zu wissen") ---------- */
.callout {
  display: flex; gap: 1.1rem; align-items: flex-start;
  background: var(--peach); border-radius: var(--radius);
  padding: 1.5rem 1.7rem; box-shadow: var(--shadow);
}
.callout__icon { flex: none; width: 48px; height: 48px; border-radius: 50%; background: var(--orange);
  display: grid; place-items: center; color: #fff; }
.callout__icon svg { width: 26px; height: 26px; }
.callout h3 { margin: 0 0 .25rem; color: var(--green-darker); }
.callout p { margin: 0; color: var(--green-darker); }

/* ---------- Split (Bild + Text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media img { width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.split__body p { color: var(--ink-soft); }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: -1; }
}

/* Aufzähl-Liste mit Häkchen */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.checklist li { position: relative; padding-left: 2rem; color: var(--ink); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .15rem; width: 1.35rem; height: 1.35rem;
  background: var(--green); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / .85rem no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / .85rem no-repeat;
}

/* ---------- Ablauf / Schritte ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem,2.5vw,1.6rem); }
@media (max-width: 860px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem 1.4rem; position: relative; }
.step__num {
  counter-increment: step; width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-dark); color: #fff; display: grid; place-items: center;
  font-weight: 700; font-size: 1.2rem; margin-bottom: .8rem;
}
.step__num::before { content: counter(step); }
.step h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.step p { margin: 0; color: var(--ink-soft); font-size: 1rem; }

/* ---------- FAQ (Akkordeon) ---------- */
.faq { display: grid; gap: .8rem; max-width: 820px; margin-inline: auto; }
.faq__item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font: inherit; font-weight: 600; color: var(--green-dark); font-size: 1.1rem;
  padding: 1.1rem 1.3rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq__q:hover { background: var(--cream-2); }
.faq__q .chev { flex: none; width: 1.4rem; height: 1.4rem; transition: transform .2s; color: var(--olive); }
.faq__q[aria-expanded="true"] .chev { transform: rotate(180deg); }
.faq__a { padding: 0 1.3rem; max-height: 0; overflow: hidden; transition: max-height .25s ease, padding .25s ease; }
.faq__a p { color: var(--ink-soft); }
.faq__item.is-open .faq__a { padding: 0 1.3rem 1.2rem; max-height: 600px; }

/* ---------- Kontakt / Formular ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,4vw,3rem); align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--green-dark); color: #f1ecdc; border-radius: var(--radius); padding: 1.8rem;
}
.contact-card h2, .contact-card h3 { color: #fff; }
.contact-list { list-style: none; margin: 1.2rem 0 0; padding: 0; display: grid; gap: 1rem; }
.contact-list a { color: #fff; text-decoration: none; font-weight: 600; word-break: break-word; }
.contact-list a:hover { color: var(--peach); text-decoration: underline; }
.contact-list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact-list svg { width: 26px; height: 26px; flex: none; color: var(--peach); margin-top: 2px; }
.contact-list small { display: block; color: #d6d0bd; font-weight: 400; }

.form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; margin-bottom: .35rem; color: var(--green-dark); }
.field .req { color: var(--orange-dark); }
.field input, .field textarea {
  width: 100%; font: inherit; color: var(--ink);
  padding: .8rem .95rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff;
}
.field input:focus, .field textarea:focus { border-color: var(--green); outline: var(--focus); outline-offset: 1px; }
.field textarea { min-height: 140px; resize: vertical; }
.form .consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; color: var(--ink-soft); }
.form .consent input { width: 1.3rem; height: 1.3rem; margin-top: .2rem; flex: none; }
.form__note { font-size: .85rem; color: var(--ink-soft); margin-top: .8rem; }

/* ---------- Aufruf-Band ---------- */
.cta-band { background: var(--peach); border-radius: var(--radius); padding: clamp(1.8rem,4vw,2.8rem); text-align: center; box-shadow: var(--shadow); }
.cta-band h2 { color: var(--green-darker); }
.cta-band p { color: var(--green-darker); max-width: 54ch; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: 1.4rem; }

/* ---------- Fußzeile ---------- */
.site-footer { background: var(--green-darker); color: #d9d3bf; padding-block: clamp(2.5rem,5vw,3.5rem) 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.15fr; gap: 2rem; }
@media (max-width: 920px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.8rem; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; } }
.site-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: .9rem; }
.site-footer a { color: #e7e1cf; text-decoration: none; }
.site-footer a:hover { color: var(--peach); text-decoration: underline; }
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__name b { color: var(--orange); }
.footer-brand p { color: #c7c1ad; max-width: 38ch; margin-top: .8rem; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; }
.footer-contact svg { width: 20px; height: 20px; flex: none; color: var(--orange); margin-top: 3px; }
.footer-bottom {
  margin-top: 2.2rem; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem; font-size: .9rem; color: #b7b19d;
}
.footer-bottom a { color: #b7b19d; }

/* ---------- Inhaltsseiten (Impressum/Datenschutz) ---------- */
.prose { max-width: 820px; }
.prose h2 { margin-top: 2.2rem; }
.prose h3 { margin-top: 1.6rem; }
.prose ul { padding-left: 1.3rem; }
.prose li { margin-bottom: .4rem; }
.prose a { word-break: break-word; }
.note-box { background: var(--peach-soft); border-left: 4px solid var(--orange); border-radius: var(--radius-sm); padding: 1rem 1.2rem; margin: 1.2rem 0; }
.note-box p { margin: 0; }

/* Platzhalter – müssen vor dem Go-Live ersetzt werden (auffällig markiert) */
.platzhalter { background: #fff3cd; color: #7a2e12; border: 1px dashed var(--orange-dark); border-radius: 5px; padding: .05em .45em; font-weight: 600; }

/* Sprach-Pille (Hero) */
.lang-pill { display: inline-flex; align-items: center; gap: .45rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: .45rem .95rem; font-size: .95rem; font-weight: 600; color: var(--green-dark); text-decoration: none; box-shadow: var(--shadow); transition: background .2s, color .2s; }
.lang-pill:hover { background: var(--green-dark); color: #fff; }

/* Kundenstimmen */
.stars { color: var(--orange); letter-spacing: 2px; font-size: 1.15rem; margin-bottom: .5rem; }
.testimonial .quote { font-size: 1.05rem; font-style: italic; color: var(--ink); }
.testimonial .who { margin-top: auto; padding-top: .7rem; margin-bottom: 0; font-weight: 600; color: var(--ink-soft); }
/* Kundenstimmen-Slider */
.tslider { overflow: hidden; max-width: 820px; margin-inline: auto; }
.tslider__track { display: flex; transition: transform .6s ease; }
.tslide { min-width: 100%; padding: 0 6px; box-sizing: border-box; }
.tslider__dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.4rem; }
.tdot { width: 11px; height: 11px; border-radius: 50%; border: 0; background: var(--line); cursor: pointer; padding: 0; transition: background .2s, transform .2s; }
.tdot:hover { background: var(--sage); }
.tdot.is-active { background: var(--green); transform: scale(1.15); }

/* Breadcrumb */
.breadcrumb { font-size: .92rem; color: var(--ink-soft); padding-top: 1.4rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; }
.breadcrumb a { text-decoration: none; }
.breadcrumb li + li::before { content: "›"; margin-right: .4rem; color: var(--olive); }

/* Seiten-Titel-Kopf */
.page-hero { background: var(--cream-2); position: relative; overflow: hidden; }
.page-hero .container { position: relative; z-index: 2; padding-block: clamp(2.2rem,5vw,3.4rem); }
.page-hero h1 { margin-bottom: .3rem; }
.page-hero p { color: var(--ink-soft); max-width: 60ch; margin: 0; font-size: 1.15rem; }

/* ---------- Schwebender WhatsApp-Button (auffällig, immer sichtbar) ---------- */
.fab { position: fixed; right: 18px; bottom: 18px; z-index: 95; }
.fab__btn--wa {
  display: inline-flex; align-items: center; gap: .55rem;
  background: #25d366; color: #fff; font-weight: 700; font-size: 1.02rem;
  border-radius: var(--radius-pill); padding: .82rem 1.35rem .82rem 1rem;
  text-decoration: none; box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  animation: waPulse 2.4s ease-out infinite; transition: transform .12s;
}
.fab__btn--wa:hover { transform: translateY(-2px) scale(1.03); color: #fff; animation: none; }
.fab__btn--wa svg { width: 30px; height: 30px; flex: none; }
.fab__label { white-space: nowrap; }
@keyframes waPulse {
  0%   { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); }
  70%  { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce) { .fab__btn--wa { animation: none; } }
@media (max-width: 520px) {
  .fab__label { display: none; }
  .fab__btn--wa { padding: .95rem; }
}

/* ---------- Formular-Status ---------- */
.form-status { border-radius: var(--radius-sm); padding: .9rem 1.1rem; margin-bottom: 1.1rem; font-weight: 500; }
.form-status--ok   { background: #e8f0db; color: #2f4a1c; border: 1px solid #b6cf95; }
.form-status--err  { background: #f7e0d6; color: #7a2e12; border: 1px solid #e8b59c; }
.form-status--info { background: var(--peach-soft); color: var(--green-darker); border: 1px solid var(--peach); }

/* ---------- Ratgeber / Artikel ---------- */
.article-meta { color: var(--ink-soft); font-size: .95rem; margin: 0 0 1.4rem; }
.prose .lead { font-size: 1.2rem; color: var(--ink); }
.post-card { display: flex; flex-direction: column; height: 100%; text-decoration: none; color: inherit; }
.post-card .post-cat { font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--olive); margin-bottom: .5rem; }
.post-card h3 { margin-bottom: .4rem; }
.post-card p { color: var(--ink-soft); margin-bottom: 1rem; }
.post-card .more { margin-top: auto; font-weight: 600; color: var(--green-dark); }
.post-card:hover h3 { color: var(--orange-dark); }


/* ---------- Karriere / Stellenanzeige ---------- */
.job-facts { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; list-style: none; padding: 0; margin: 0 0 2.2rem; }
.job-facts li { background: var(--cream-2); border: 1px solid var(--line); border-radius: 999px; padding: .5rem 1rem; font-size: .92rem; color: var(--ink); }
.job-facts strong { color: var(--green-dark); margin-right: .4rem; font-weight: 600; }
.job-card h3 { margin-top: 0; }
.job-note { margin-top: .9rem; font-size: .88rem; color: var(--ink-soft); font-style: italic; }
.job-sub { margin: 1rem 0 .3rem; font-weight: 600; color: var(--green-dark); }


/* ---------- Schlanke Kopfzeile (z. B. türkische Seite) ---------- */
.nav-actions { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; justify-content: flex-end; }
.nav-actions .btn { white-space: nowrap; }
.nav-de { font-weight: 600; color: var(--green-dark); text-decoration: none; padding: .5rem .7rem; white-space: nowrap; border-radius: var(--radius-sm); }
.nav-de:hover { background: var(--cream-2); color: var(--green-dark); }
@media (max-width: 640px) {
  .nav--simple { flex-wrap: wrap; row-gap: .55rem; }
  .nav--simple .nav-actions { width: 100%; justify-content: space-between; }
}
