/* ============================================================================
   123 DEUTSCHLAND — style.css
   ============================================================================

   AUFBAU DIESER DATEI
     1.  EINSTELLUNGEN (Farben, Schriften, Abstände)   ← hier ändern Sie das Design
     2.  Grundgerüst & Hilfsklassen
     3.  Knöpfe (Buttons)
     4.  Kopfbereich & Navigation
     5.  Hero
     6.  Zahlen-Balken
     7.  Abschnitte allgemein
     8.  Services-Karten
     9.  Kurs-Niveaus
    10.  Der Weg (Schritte)
    11.  Für Arbeitgeber
    12.  Standorte
    13.  Erfolgsgeschichten
    14.  FAQ
    15.  Kontakt
    16.  Fussbereich
    17.  Schwebender WhatsApp-Knopf
    18.  Animationen
    19.  Arabisch (Rechts-nach-links)
    20.  Handy & Tablet (Responsive)
   ========================================================================== */


/* ############################################################################
   1. EINSTELLUNGEN
   ----------------------------------------------------------------------------
   ALLE Farben der Website stehen hier. Ändern Sie einen Wert, ändert sich die
   Farbe überall automatisch. Farben sind Hex-Codes, z. B. #1E5C3A.
   ########################################################################## */

:root {

  /* --- MARKENFARBEN ------------------------------------------------------ */
  --gruen:            #1E5C3A;   /* Hauptfarbe: Kopfbereich, Flächen        */
  --gruen-dunkel:     #0D3320;   /* Dunkle Flächen, Zahlen-Balken           */
  --gruen-hell:       #386347;   /* Helleres Grün (aus dem Flyer)           */
  --rot:              #CC0000;   /* Deutschland-Rot, Akzente                */
  --gold:             #F5A800;   /* Deutschland-Gold, Haupt-Knopf           */
  --schwarz:          #111111;   /* Deutschland-Schwarz, Text               */
  --creme:            #FAF8F4;   /* Heller Hintergrund von Abschnitten      */
  --weiss:            #FFFFFF;
  --grau:             #6B6560;   /* Fließtext, Nebeninformationen           */
  --grau-hell:        #E7E3DC;   /* Linien und Rahmen                       */
  --whatsapp:         #25D366;   /* Offizielles WhatsApp-Grün               */

  /* --- SCHRIFTEN ---------------------------------------------------------
     "Outfit" ist die Schrift der Marke. Wenn Sie sie wechseln möchten,
     tauschen Sie hier den Namen UND in der index.html die Google-Fonts-Zeile. */
  --schrift:          'Outfit', 'Segoe UI', system-ui, sans-serif;
  --schrift-arabisch: 'Cairo', 'Outfit', system-ui, sans-serif;

  /* --- SCHRIFTGRÖSSEN ---------------------------------------------------
     clamp(kleinste, wächst-mit, größte) — passt sich der Bildschirmbreite an. */
  --gr-h1:      clamp(2.4rem, 5.6vw, 4.6rem);
  --gr-h2:      clamp(1.75rem, 3.6vw, 2.85rem);
  --gr-h3:      clamp(1.1rem, 1.5vw, 1.32rem);
  --gr-lead:    clamp(1.02rem, 1.35vw, 1.22rem);
  --gr-text:    1rem;
  --gr-klein:   0.875rem;
  --gr-mini:    0.75rem;

  /* --- ABSTÄNDE & FORMEN ------------------------------------------------ */
  --breite:         1200px;                    /* max. Inhaltsbreite       */
  --breite-schmal:  820px;                     /* für FAQ                  */
  --rand:           clamp(1.25rem, 4vw, 2.5rem); /* Abstand zum Bildrand   */
  --abschnitt:      clamp(4.5rem, 8.5vw, 7.5rem); /* Abstand oben/unten    */
  --radius:         18px;                      /* Ecken-Rundung Karten     */
  --radius-klein:   10px;                      /* Ecken-Rundung Knöpfe     */
  --schatten:       0 2px 14px rgba(17,17,17,.06);
  --schatten-hoch:  0 14px 40px rgba(17,17,17,.13);
  --tempo:          .28s cubic-bezier(.4,0,.2,1); /* Geschwindigkeit Effekte */
  --kopf-hoehe:     78px;                      /* Höhe des Kopfbereichs    */
}


/* ############################################################################
   2. GRUNDGERÜST & HILFSKLASSEN
   ########################################################################## */

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

* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;              /* sanftes Scrollen der Navigation */
  scroll-padding-top: var(--kopf-hoehe); /* Kopfbereich verdeckt nichts    */
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--schrift);
  font-size: var(--gr-text);
  line-height: 1.65;
  color: var(--schwarz);
  background: var(--weiss);
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3 { line-height: 1.12; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: var(--gr-h1); font-weight: 900; letter-spacing: -.03em; }
h2 { font-size: var(--gr-h2); }
h3 { font-size: var(--gr-h3); letter-spacing: -.01em; }

ul, ol { list-style: none; }

/* Sichtbarer Fokusrahmen für Tastatur-Bedienung (Barrierefreiheit) */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Inhaltsbreite zentrieren */
.wrap {
  width: 100%;
  max-width: var(--breite);
  margin-inline: auto;
  padding-inline: var(--rand);
}
.wrap-narrow { max-width: var(--breite-schmal); }

/* Nur für Screenreader sichtbar */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* Sprunglink oben links */
.skip-link {
  position: absolute; inset-inline-start: 0; top: -100px;
  z-index: 300; padding: .8rem 1.2rem;
  background: var(--gold); color: var(--schwarz); font-weight: 700;
  transition: top var(--tempo);
}
.skip-link:focus { top: 0; }

/* Icon-Sammlung unsichtbar halten */
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* Standardgröße für Icons in Knöpfen und Listen */
.ico { width: 1.15em; height: 1.15em; flex: 0 0 auto; }

/* --- Deutschland-Streifen: Schwarz–Rot–Gold -------------------------------
   Das Wiedererkennungsmerkmal der Marke. Wird an mehreren Stellen benutzt. */
.triband {
  height: 4px;
  background: linear-gradient(90deg,
    var(--schwarz) 0 33.333%,
    var(--rot) 33.333% 66.666%,
    var(--gold) 66.666% 100%);
}
.triband-short { width: 110px; border-radius: 2px; }
.triband-under { height: 6px; }

/* Kleiner Streifen vor den Abschnitts-Überschriften */
.tri {
  display: inline-block; width: 24px; height: 4px; border-radius: 2px;
  background: linear-gradient(90deg,
    var(--schwarz) 0 33.333%,
    var(--rot) 33.333% 66.666%,
    var(--gold) 66.666% 100%);
}


/* ############################################################################
   3. KNÖPFE (BUTTONS)
   ########################################################################## */

.btn {
  display: inline-flex; align-items: center; gap: .55em;
  padding: .85em 1.6em;
  border: 2px solid transparent;
  border-radius: var(--radius-klein);
  font-family: inherit; font-size: var(--gr-text); font-weight: 700;
  line-height: 1.2; cursor: pointer; text-align: center;
  transition: transform var(--tempo), box-shadow var(--tempo),
              background-color var(--tempo), color var(--tempo),
              border-color var(--tempo);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-lg { padding: 1.05em 2em; font-size: 1.06rem; }
.btn-sm { padding: .62em 1.1em; font-size: var(--gr-klein); }

/* Haupt-Knopf: Gold */
.btn-gold { background: var(--gold); color: var(--schwarz); }
.btn-gold:hover { background: #ffbb1f; box-shadow: 0 8px 24px rgba(245,168,0,.36); }

/* Zweit-Knopf auf dunklem Grund */
.btn-ghost { background: transparent; color: var(--weiss); border-color: rgba(255,255,255,.38); }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: var(--weiss); }

/* Knopf auf hellem Grund */
.btn-green { background: var(--gruen); color: var(--weiss); }
.btn-green:hover { background: var(--gruen-hell); box-shadow: 0 8px 24px rgba(30,92,58,.3); }

/* WhatsApp-Knopf */
.btn-whatsapp { background: var(--whatsapp); color: #06341a; }
.btn-whatsapp:hover { background: #34e57a; box-shadow: 0 8px 26px rgba(37,211,102,.4); }


/* ############################################################################
   4. KOPFBEREICH & NAVIGATION
   ########################################################################## */

.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--gruen);
  box-shadow: 0 2px 18px rgba(0,0,0,.16);
}

.header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  height: var(--kopf-hoehe);
}

.logo { flex: 0 0 auto; }
.logo img { height: 46px; width: auto; transition: opacity var(--tempo); }
.logo:hover img { opacity: .82; }

/* --- Navigationslinks --- */
.main-nav { margin-inline-start: auto; }
.main-nav ul { display: flex; align-items: center; gap: .15rem; }
.main-nav a {
  display: block; position: relative;
  padding: .5rem .72rem; border-radius: 8px;
  font-size: .92rem; font-weight: 600; color: rgba(255,255,255,.86);
  transition: color var(--tempo), background-color var(--tempo);
}
.main-nav a:hover { color: var(--weiss); background: rgba(255,255,255,.11); }

/* Der Abschnitt, in dem man sich gerade befindet, wird hervorgehoben */
.main-nav a.is-active { color: var(--weiss); background: rgba(255,255,255,.15); }
.main-nav a.is-active::after {
  content: ''; position: absolute; inset-inline: .72rem; bottom: 2px;
  height: 2px; background: var(--gold); border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: .6rem; flex: 0 0 auto; }

/* --- Sprachumschalter FR / AR / DE --- */
.lang-switch {
  display: flex; gap: 2px; padding: 3px;
  background: rgba(255,255,255,.12); border-radius: 9px;
}
.lang-switch button {
  padding: .32rem .6rem; border: 0; border-radius: 6px;
  background: transparent; color: rgba(255,255,255,.8);
  font-family: inherit; font-size: .8rem; font-weight: 700;
  letter-spacing: .04em; cursor: pointer;
  transition: background-color var(--tempo), color var(--tempo);
}
.lang-switch button:hover { color: var(--weiss); background: rgba(255,255,255,.14); }
.lang-switch button[aria-current="true"] { background: var(--weiss); color: var(--gruen); }

/* --- Menü-Knopf für Handy --- */
.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 42px; height: 42px; padding: 0;
  background: rgba(255,255,255,.12); border: 0; border-radius: 9px;
  color: var(--weiss); cursor: pointer;
}
.nav-toggle .ico { width: 24px; height: 24px; }
.nav-toggle .ico-close { display: none; }
body.nav-open .nav-toggle .ico-open { display: none; }
body.nav-open .nav-toggle .ico-close { display: block; }


/* ############################################################################
   5. HERO
   ########################################################################## */

.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 78% 12%, rgba(56,99,71,.85) 0%, transparent 58%),
    linear-gradient(165deg, var(--gruen) 0%, var(--gruen-dunkel) 100%);
  color: var(--weiss);
}

.hero-grid {
  display: grid; grid-template-columns: 1.06fr .94fr;
  align-items: center; gap: clamp(2rem, 5vw, 4.5rem);
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.hero-eyebrow {
  font-size: var(--gr-mini); font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.1rem;
}

/* Hinweis-Pille "Neueröffnung" mit blinkendem Punkt */
.badge-new {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .4rem .95rem; margin-bottom: 1.4rem;
  background: rgba(245,168,0,.14); border: 1px solid rgba(245,168,0,.4);
  border-radius: 100px;
  font-size: var(--gr-klein); font-weight: 700; color: var(--gold);
}
.badge-new .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); animation: puls 2.4s ease-in-out infinite;
}
@keyframes puls {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .45; transform: scale(.72); }
}

.hero-lead {
  font-size: var(--gr-lead); line-height: 1.7;
  color: rgba(255,255,255,.82);
  margin-top: 1.35rem; max-width: 34em;
}

.hero-buttons { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.2rem; }

/* Die drei Säulen: Langue / Formation / Travail */
.pillars { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2.4rem; }
.pillars li {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .55rem 1.05rem;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-klein);
  font-size: var(--gr-klein); font-weight: 700;
}
.pill-dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-black { background: var(--schwarz); box-shadow: 0 0 0 1px rgba(255,255,255,.35); }
.dot-red   { background: var(--rot); }
.dot-gold  { background: var(--gold); }

/* Freigestelltes Foto rechts */
.hero-media { position: relative; }
.hero-media::before {          /* weicher Lichtkreis hinter dem Foto */
  content: ''; position: absolute; inset: 6% -4% 0 -4%;
  background: radial-gradient(60% 60% at 50% 55%, rgba(255,255,255,.16), transparent 70%);
  border-radius: 50%;
}
.hero-media img {
  position: relative; width: 100%; height: auto;
  filter: drop-shadow(0 26px 34px rgba(0,0,0,.42));
}


/* ############################################################################
   6. PARTNER-BALKEN
   ----------------------------------------------------------------------------
   Links die Zahl, rechts das Logo des offiziellen Partners.
   ########################################################################## */

.stats { background: var(--gruen-dunkel); color: var(--weiss); }

.stats-bar {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-block: clamp(1.8rem, 3.4vw, 2.7rem);
}

/* --- Zahl mit Beschriftung --- */
.stats-figure { display: flex; align-items: baseline; gap: .85rem; flex-wrap: wrap; }

.stat-num {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  font-weight: 900; line-height: 1; letter-spacing: -.03em;
  color: var(--gold);
}
.stat-label {
  font-size: var(--gr-lead); font-weight: 600;
  color: rgba(255,255,255,.78);
}

/* --- Partner-Logo --- */
.stats-partner {
  display: flex; align-items: center; gap: 1.15rem;
  padding-inline-start: clamp(1.5rem, 3vw, 2.5rem);
  border-inline-start: 1px solid rgba(255,255,255,.15);
}
.stats-partner-label {
  font-size: var(--gr-mini); font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: rgba(255,255,255,.55); max-width: 9em; line-height: 1.4;
}
/* Das Partner-Logo behält seine Originalfarben und sitzt deshalb auf einer
   weißen Karte — auf dem dunkelgrünen Balken wäre es sonst nicht lesbar.
   Die Breite bestimmt die Größe, die Höhe passt sich automatisch an. */
.stats-partner img {
  width: clamp(196px, 25vw, 300px); height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,.22);
}


/* ############################################################################
   7. ABSCHNITTE ALLGEMEIN
   ########################################################################## */

.section { padding-block: var(--abschnitt); }

/* Hintergrund-Varianten (einfach die Klasse im HTML tauschen) */
.section-cream      { background: var(--creme); }
.section-green      { background: var(--gruen); color: var(--weiss); }
.section-green-dark { background: var(--gruen-dunkel); color: var(--weiss); }

/* Kopf eines Abschnitts */
.section-head { max-width: 44rem; margin-bottom: clamp(2.4rem, 4vw, 3.6rem); }

.eyebrow {
  display: flex; align-items: center; gap: .7rem; margin-bottom: .9rem;
  font-size: var(--gr-mini); font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--rot);
}
.eyebrow-light { color: var(--gold); }

.section-lead {
  font-size: var(--gr-lead); line-height: 1.75;
  color: var(--grau); margin-top: 1.1rem;
}
/* Auf dunklem Grund heller Fließtext */
.section-green .section-lead,
.section-green-dark .section-lead { color: rgba(255,255,255,.78); }


/* ############################################################################
   8. SERVICES-KARTEN
   ########################################################################## */

.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.card {
  position: relative; overflow: hidden;
  padding: 2.2rem 1.75rem;
  background: var(--weiss); border-radius: var(--radius);
  box-shadow: var(--schatten);
  transition: transform var(--tempo), box-shadow var(--tempo);
}
/* Goldene Linie, die beim Überfahren einläuft */
.card::after {
  content: ''; position: absolute; inset-inline: 0; top: 0; height: 4px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform var(--tempo);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--schatten-hoch); }
.card:hover::after { transform: scaleX(1); }

.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; margin-bottom: 1.25rem;
  background: rgba(30,92,58,.08); border-radius: 14px;
  color: var(--gruen);
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .6rem; }
.card p { color: var(--grau); font-size: .96rem; }


/* ############################################################################
   9. KURS-NIVEAUS
   ########################################################################## */

.levels {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.level {
  position: relative;
  padding: 1.9rem 1.6rem;
  background: var(--weiss);
  border: 2px solid var(--grau-hell); border-radius: var(--radius);
  transition: transform var(--tempo), border-color var(--tempo), box-shadow var(--tempo);
}
.level:hover { transform: translateY(-4px); box-shadow: var(--schatten-hoch); }

.level-code {
  display: block; font-size: 3rem; font-weight: 900;
  line-height: 1; letter-spacing: -.04em;
}

.level h3 { margin: .7rem 0 .5rem; }
.level p { color: var(--grau); font-size: .94rem; }

/* --- Farbgruppen der Niveaus -----------------------------------------------
   level-a = Grundstufe (grün) · level-b = Mittelstufe (gold) · level-c = Oberstufe (rot)
   Zum Umfärben genügt es, hier die Farbvariablen zu tauschen.              */
.level-a { border-color: rgba(30,92,58,.4);  background: rgba(30,92,58,.035); }
.level-a .level-code { color: var(--gruen); }
.level-a:hover { border-color: var(--gruen); }

.level-b { border-color: var(--gold); background: rgba(245,168,0,.06); }
.level-b .level-code { color: var(--gold); }
.level-b:hover { border-color: #d99400; }

.level-c { border-color: rgba(204,0,0,.4); background: rgba(204,0,0,.035); }
.level-c .level-code { color: var(--rot); }
.level-c:hover { border-color: var(--rot); }

/* --- Formate & Zertifikate --- */
.formats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  background: var(--creme); border-radius: var(--radius);
}
.formats-col h3 { margin-bottom: 1rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: .6rem; }
.tag-list li {
  padding: .5rem 1.05rem;
  background: var(--weiss); border: 1px solid var(--grau-hell);
  border-radius: 100px; font-size: var(--gr-klein); font-weight: 600;
}
.formats-note { margin-top: .9rem; font-size: var(--gr-klein); color: var(--grau); }


/* ############################################################################
   10. DER WEG (SCHRITTE)
   ----------------------------------------------------------------------------
   Der Schwarz-Rot-Gold-Streifen wird hier zur Zeitachse des Weges.
   ########################################################################## */

.steps {
  position: relative;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem;
}
/* Waagerechte Linie hinter den Nummern */
.steps::before {
  content: ''; position: absolute; z-index: 0;
  inset-inline: 10%; top: 22px; height: 3px;
  background: linear-gradient(90deg,
    var(--schwarz) 0%, var(--rot) 48%, var(--gold) 100%);
  opacity: .65;
}

.step { position: relative; z-index: 1; }

.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; margin-bottom: 1.1rem;
  background: var(--gruen-dunkel);
  border: 2px solid rgba(255,255,255,.28); border-radius: 50%;
  font-size: .9rem; font-weight: 800; color: var(--gold);
  transition: border-color var(--tempo), background-color var(--tempo);
}
.step:hover .step-num { background: var(--gold); color: var(--gruen-dunkel); border-color: var(--gold); }

.step h3 { margin-bottom: .5rem; }
.step p { font-size: .94rem; color: rgba(255,255,255,.74); }


/* ############################################################################
   11. VORLAGE: ZWEISPALTIGER ABSCHNITT (Text links, Bild rechts)
   ----------------------------------------------------------------------------
   Wird derzeit nicht benutzt. Steht als fertige Vorlage bereit, falls Sie
   später einen Abschnitt mit Bild und Aufzählung ergänzen möchten.
   ########################################################################## */

.split {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.split-text .section-lead { margin-bottom: 1.8rem; }

.check-list { display: grid; gap: .85rem; margin-bottom: 2.2rem; }
.check-list li { display: flex; align-items: flex-start; gap: .75rem; font-weight: 600; }
.check-list .ico {
  width: 22px; height: 22px; padding: 4px; margin-top: 1px;
  background: var(--gruen); border-radius: 50%;
  color: var(--weiss); stroke: currentColor; fill: none;
}

.split-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--schatten-hoch); }
.split-media img { width: 100%; height: auto; object-fit: cover; }


/* ############################################################################
   12. STANDORTE
   ########################################################################## */

.cities { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

.cities li {
  display: flex; align-items: center; gap: .7rem;
  padding: 1.15rem 1.35rem;
  background: var(--weiss);
  border: 1px solid var(--grau-hell); border-radius: var(--radius-klein);
  font-weight: 700;
  transition: transform var(--tempo), border-color var(--tempo), box-shadow var(--tempo);
}
.cities li:hover {
  transform: translateY(-3px); border-color: var(--gruen);
  box-shadow: var(--schatten);
}
.cities .ico { width: 20px; height: 20px; color: var(--rot); stroke: currentColor; fill: none; }
.cities .stadt-adresse {
  display: block; font-size: var(--gr-mini);
  font-weight: 500; color: var(--grau);
}


/* ############################################################################
   13. ERFOLGSGESCHICHTEN
   ########################################################################## */

.quote {
  display: flex; flex-direction: column; gap: 1.4rem;
  padding: 2.1rem 1.85rem;
  background: var(--weiss); border-radius: var(--radius);
  box-shadow: var(--schatten);
}
.quote blockquote {
  font-size: 1.02rem; line-height: 1.7; color: #333;
}
.quote blockquote::before { content: '\201C'; }
.quote blockquote::after  { content: '\201D'; }

.quote figcaption { display: flex; align-items: center; gap: .9rem; margin-top: auto; }
.quote figcaption strong { display: block; font-size: .98rem; }
.quote figcaption small { display: block; font-size: var(--gr-klein); color: var(--grau); }

.avatar {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; flex: 0 0 auto;
  background: var(--gold); border-radius: 50%;
  font-weight: 900; color: var(--schwarz);
}
.avatar-red   { background: var(--rot); color: var(--weiss); }
.avatar-green { background: var(--gruen); color: var(--weiss); }


/* ############################################################################
   14. FAQ
   ----------------------------------------------------------------------------
   Nutzt das HTML-Element <details> — funktioniert auch ohne JavaScript.
   ########################################################################## */

.faq-list { border-top: 1px solid var(--grau-hell); }

.faq-item { border-bottom: 1px solid var(--grau-hell); }

.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.35rem 0; cursor: pointer;
  font-size: 1.06rem; font-weight: 700; list-style: none;
  transition: color var(--tempo);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gruen); }

/* Plus-/Minus-Zeichen rechts */
.faq-item summary::after {
  content: ''; flex: 0 0 auto;
  width: 20px; height: 20px;
  background:
    linear-gradient(var(--gruen), var(--gruen)) center/2px 100% no-repeat,
    linear-gradient(var(--gruen), var(--gruen)) center/100% 2px no-repeat;
  transition: background-size var(--tempo);
}
.faq-item[open] summary::after { background-size: 0 100%, 100% 2px; }

.faq-a { padding-bottom: 1.4rem; }
.faq-a p { color: var(--grau); max-width: 62em; }


/* ############################################################################
   15. KONTAKT
   ########################################################################## */

.contact-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}

.contact-cta .btn { margin-top: 2rem; }

.contact-number {
  margin-top: 1.1rem; font-size: 1.5rem; font-weight: 800;
  letter-spacing: .01em; color: var(--weiss);
  direction: ltr; text-align: start;
}
html[dir="rtl"] .contact-number { text-align: right; }

.contact-list { display: grid; gap: 1rem; }
.contact-list li {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-klein);
}
.contact-list .ico {
  width: 22px; height: 22px; margin-top: .25rem;
  color: var(--gold); stroke: currentColor; fill: none;
}
.contact-list small {
  display: block; margin-bottom: .15rem;
  font-size: var(--gr-mini); font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.contact-list a, .contact-list span > span { font-weight: 600; }
.contact-list a { transition: color var(--tempo); }
.contact-list a:hover { color: var(--gold); }


/* ############################################################################
   16. FUSSBEREICH
   ########################################################################## */

.site-footer { background: #0A2A1A; color: rgba(255,255,255,.62); }

.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem; padding-block: clamp(3rem, 5vw, 4.5rem) 2rem;
}

.footer-brand img { height: 54px; width: auto; margin-bottom: 1rem; }
.footer-tagline { font-size: .95rem; margin-bottom: 1rem; }

.footer-nav h2, .footer-contact h2 {
  margin-bottom: 1.1rem;
  font-size: var(--gr-mini); font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.footer-nav ul, .footer-contact ul { display: grid; gap: .6rem; }
.footer-nav a, .footer-contact a { font-size: .95rem; transition: color var(--tempo); }
.footer-nav a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-contact li { font-size: .95rem; }

/* Social-Media-Icons */
.socials { display: flex; gap: .6rem; margin-top: 1.3rem; }
.socials a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.09); border-radius: 10px;
  color: var(--weiss);
  transition: background-color var(--tempo), transform var(--tempo);
}
.socials a:hover { background: var(--gold); color: var(--schwarz); transform: translateY(-2px); }
.socials svg { width: 21px; height: 21px; }

.footer-bottom {
  padding-block: 1.4rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: var(--gr-klein); color: rgba(255,255,255,.34);
}


/* ############################################################################
   17. SCHWEBENDER WHATSAPP-KNOPF
   ########################################################################## */

.wa-float {
  position: fixed; z-index: 190;
  inset-inline-end: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  display: flex; align-items: center; justify-content: center;
  width: 58px; height: 58px;
  background: var(--whatsapp); border-radius: 50%;
  color: var(--weiss);
  box-shadow: 0 8px 26px rgba(0,0,0,.28);
  transition: transform var(--tempo), box-shadow var(--tempo);
}
.wa-float svg { width: 30px; height: 30px; fill: currentColor; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 12px 32px rgba(37,211,102,.5); }


/* ############################################################################
   18. ANIMATIONEN
   ----------------------------------------------------------------------------
   Elemente mit der Klasse "reveal" blenden beim Scrollen sanft ein.
   ########################################################################## */

.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Karten einer Reihe erscheinen leicht versetzt */
.cards-4 .reveal:nth-child(2), .cards-3 .reveal:nth-child(2),
.levels .reveal:nth-child(2), .steps .reveal:nth-child(2) { transition-delay: .08s; }
.cards-4 .reveal:nth-child(3), .cards-3 .reveal:nth-child(3),
.levels .reveal:nth-child(3), .steps .reveal:nth-child(3) { transition-delay: .16s; }
.cards-4 .reveal:nth-child(4),
.levels .reveal:nth-child(4), .steps .reveal:nth-child(4) { transition-delay: .24s; }
.levels .reveal:nth-child(5), .steps .reveal:nth-child(5) { transition-delay: .32s; }
.levels .reveal:nth-child(6) { transition-delay: .4s; }

/* Nutzer, die Bewegung reduzieren möchten, sehen keine Animationen */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}


/* ############################################################################
   19. ARABISCH — Rechts-nach-links
   ----------------------------------------------------------------------------
   Das Layout spiegelt sich fast vollständig von selbst, weil oben
   "logische" CSS-Eigenschaften benutzt werden (padding-inline statt padding-left).
   Hier stehen nur die wenigen Ausnahmen.
   ########################################################################## */

html[lang="ar"] body { font-family: var(--schrift-arabisch); }
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3 { letter-spacing: 0; }
html[lang="ar"] .hero-eyebrow, html[lang="ar"] .eyebrow,
html[lang="ar"] .contact-list small { letter-spacing: 0; }

/* Zeitachse und Verlaufsstreifen spiegeln */
html[dir="rtl"] .steps::before {
  background: linear-gradient(270deg,
    var(--schwarz) 0%, var(--rot) 48%, var(--gold) 100%);
}
html[dir="rtl"] .card::after { transform-origin: right; }

/* Telefonnummern und E-Mail immer von links nach rechts lesen */
html[dir="rtl"] [dir="ltr"] { text-align: right; }


/* ############################################################################
   20. HANDY & TABLET (RESPONSIVE)
   ----------------------------------------------------------------------------
   Die Werte in Klammern sind Bildschirmbreiten in Pixel.
   ########################################################################## */

/* ---- Bis 1080 px: Navigation etwas enger ---- */
@media (max-width: 1080px) {
  .main-nav a { padding-inline: .5rem; font-size: .87rem; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); row-gap: 2.5rem; }
  .steps::before { display: none; }
}

/* ---- Bis 900 px: Menü klappt auf, Spalten werden schmaler ---- */
@media (max-width: 900px) {

  /* Navigation als aufklappbares Feld unter dem Kopfbereich */
  .nav-toggle { display: flex; }
  .header-cta { display: none; }

  .main-nav {
    position: absolute; inset-inline: 0; top: 100%;
    max-height: 0; overflow: hidden;
    background: var(--gruen);
    border-top: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 18px 30px rgba(0,0,0,.25);
    transition: max-height .35s ease;
  }
  body.nav-open .main-nav { max-height: 70vh; overflow-y: auto; }

  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: .6rem var(--rand) 1.3rem; }
  .main-nav a { padding: .95rem .6rem; font-size: 1.02rem; border-radius: 8px; }
  .main-nav a.is-active::after { display: none; }

  /* Hero einspaltig, Bild darunter */
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 420px; margin-inline: auto; }

  .split, .contact-grid, .formats { grid-template-columns: 1fr; }
  .split-media { order: -1; }
  .cities { grid-template-columns: repeat(2, 1fr); }
  .cards-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ---- Bis 620 px: alles einspaltig ---- */
@media (max-width: 620px) {
  :root { --kopf-hoehe: 68px; }

  .logo img { height: 38px; }
  /* Partner-Balken untereinander statt nebeneinander */
  .stats-bar { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .stats-partner {
    padding-inline-start: 0; padding-block-start: 1.4rem;
    border-inline-start: 0; border-block-start: 1px solid rgba(255,255,255,.15);
    width: 100%;
  }

  .cards-4, .levels, .steps { grid-template-columns: 1fr; }
  .steps { row-gap: 1.8rem; }
  .cities { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .hero-buttons .btn { width: 100%; justify-content: center; }
  .quote { padding: 1.7rem 1.4rem; }

  /* Platz lassen, damit der WhatsApp-Knopf nichts verdeckt */
  .site-footer { padding-bottom: 4.5rem; }
}
