/* ak.css — Designsystem alexkhan.tv (Umsetzungsprompt Abschnitte 10, 16, 22, 33 bis 44).
   Tokens, Grundraster, Kopf, Fuss, Buttons, Cards, Startseiten-Sections. */

:root {
  --ak-bg: #F5F3EE;
  --ak-surface: #FFFFFF;
  --ak-surface-soft: #E9EFF0;
  --ak-text: #111214;
  --ak-text-muted: #667177;
  --ak-text-subtle: #879095;
  --ak-graphite: #1A1C1E;
  --ak-black: #000000;
  --ak-steel: #8099A1;
  --ak-steel-soft: #E9EFF0;
  --ak-copper: #BF6B4B;
  --ak-copper-soft: #F2E3DC;
  --ak-border: #D9DEDC;
  --ak-border-strong: #BFC9C6;
  --ak-success: #39745D;
  --ak-danger: #B34F4F;
  --ak-focus: #BF6B4B;
  --ak-container-wide: 1440px;
  --ak-container: 1280px;
  --ak-radius-image: 28px;
  --ak-radius-section: 32px;
  --ak-radius-card: 24px;
  --ak-radius-panel: 18px;
  --ak-radius-control: 12px;
  --ak-radius-pill: 999px;
  --ak-shadow-card: 0 18px 50px rgba(17, 18, 20, 0.08);
  --ak-font: Montserrat, Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --ak-uebergang: 180ms ease-out;
  --ak-section: 104px;
}
@media (max-width: 1023px) { :root { --ak-section: 80px; } }
@media (max-width: 639px)  { :root { --ak-section: 64px; } }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0; background: var(--ak-bg); color: var(--ak-text);
  font-family: var(--ak-font); font-size: 16px; line-height: 1.65;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, picture, video, svg { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; }
h1, h2, h3, h4, p, ul { margin: 0; }
ul { padding: 0; list-style: none; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid rgba(191, 107, 75, 0.32); outline-offset: 3px; }

/* ── Container und Raster ─────────────────────────────────────── */
.ak-seite { width: 100%; max-width: var(--ak-container-wide); margin-inline: auto; }
.ak-container { width: min(var(--ak-container), calc(100% - 64px)); margin-inline: auto; }
@media (max-width: 1023px) { .ak-container { width: min(100% - 48px, var(--ak-container)); } }
@media (max-width: 639px)  { .ak-container { width: min(100% - 32px, var(--ak-container)); } }
.ak-raster { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: 24px; }
.ak-section { padding-block: var(--ak-section); }
section[id] { scroll-margin-top: 96px; }
.ak-section-eng { padding-block: calc(var(--ak-section) * 0.6); }
/* Grid-Kinder duerfen nie breiter als ihre Spalte werden (Mobil-Overflow-Falle). */
.ak-raster > *, .ak-drei > *, .ak-fakten > *, .ak-felder > *, .ak-wahl-liste > *, .ak-trust > *, .ak-fuss-raster > *, .ak-ueber > *, .ak-hero > *, .ak-buehne > *, .ak-anfrage > *, .ak-stimmen > *, .ak-termine > *, .ak-artikel-liste > * { min-width: 0; }

/* ── Typografie ───────────────────────────────────────────────── */
.ak-eyebrow {
  font-size: 12px; line-height: 1.4; font-weight: 750; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ak-steel); margin-bottom: 18px;
}
.ak-h1 {
  font-size: clamp(56px, 5.5vw, 76px); line-height: 0.98; font-weight: 720;
  letter-spacing: -0.04em; max-width: 760px;
}
.ak-h2 {
  font-size: clamp(34px, 3.3vw, 46px); line-height: 1.08; font-weight: 700;
  letter-spacing: -0.03em; max-width: none;
}
.ak-h3 { font-size: 22px; line-height: 1.25; font-weight: 700; }
.ak-lead { font-size: 19px; line-height: 1.55; color: var(--ak-text-muted); max-width: 680px; }
.ak-text { font-size: 16px; line-height: 1.65; color: var(--ak-text-muted); }
.ak-meta { font-size: 13px; line-height: 1.45; color: var(--ak-text-subtle); }
.ak-section-kopf { margin-bottom: 56px; }
.ak-section-kopf .ak-lead { margin-top: 20px; }
@media (max-width: 639px) {
  .ak-h1 { font-size: clamp(42px, 12vw, 48px); line-height: 1.02; }
  .ak-section-kopf { margin-bottom: 40px; }
}

/* ── Buttons ──────────────────────────────────────────────────── */
.ak-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding-inline: 22px; border-radius: var(--ak-radius-control);
  font-size: 15px; font-weight: 650; text-decoration: none; cursor: pointer;
  border: 1px solid transparent; transition: background var(--ak-uebergang), transform var(--ak-uebergang), border-color var(--ak-uebergang);
  -webkit-appearance: none; appearance: none;
}
.ak-btn-primaer { background: var(--ak-graphite); color: #FFFFFF; }
.ak-btn-primaer:hover { background: var(--ak-black); transform: translateY(-1px); }
.ak-btn-sekundaer { background: transparent; color: var(--ak-text); border-color: var(--ak-border-strong); }
.ak-btn-sekundaer:hover { border-color: var(--ak-text); transform: translateY(-1px); }
.ak-dunkel .ak-btn-sekundaer { color: #FFFFFF; border-color: rgba(255, 255, 255, 0.30); }
.ak-dunkel .ak-btn-sekundaer:hover { border-color: #FFFFFF; }
.ak-dunkel .ak-btn-primaer { background: #FFFFFF; color: var(--ak-text); }
.ak-dunkel .ak-btn-primaer:hover { background: var(--ak-bg); }
.ak-btn-kopf { min-height: 44px; padding-inline: 18px; }
.ak-btn-breit { width: 100%; }
.ak-btn .ak-pfeil { transition: transform var(--ak-uebergang); }
.ak-btn:hover .ak-pfeil { transform: translateX(3px); }
.ak-btn[disabled], .ak-btn[aria-disabled="true"] { opacity: 0.6; cursor: wait; transform: none; }
.ak-linkknopf { background: none; border: 0; padding: 0; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.ak-textlink { display: inline-flex; align-items: center; gap: 8px; font-weight: 650; text-decoration: none; }
.ak-textlink .ak-pfeil { transition: transform var(--ak-uebergang); }
.ak-textlink:hover .ak-pfeil { transform: translateX(3px); }

/* ── Skip-Link ────────────────────────────────────────────────── */
.ak-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.ak-nur-mobil { display: none; }
@media (max-width: 639px) { .ak-nur-mobil { display: inline; } .ak-nur-desktop { display: none; } }
.ak-skip { position: absolute; left: -9999px; top: 12px; z-index: 200; background: var(--ak-graphite); color: #fff; padding: 12px 18px; border-radius: 10px; font-weight: 650; text-decoration: none; }
.ak-skip:focus { left: 12px; }

/* ── Kopf ─────────────────────────────────────────────────────── */
.ak-kopf {
  position: sticky; top: 0; z-index: 100; height: 80px;
  background: rgba(245, 243, 238, 0.72);
  transition: background var(--ak-uebergang), border-color var(--ak-uebergang);
  border-bottom: 1px solid transparent;
}
.ak-kopf.ist-fest {
  background: rgba(245, 243, 238, 0.92);
  border-bottom-color: rgba(17, 18, 20, 0.08);
}
@supports (backdrop-filter: blur(18px)) or (-webkit-backdrop-filter: blur(18px)) {
  .ak-kopf.ist-fest { -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); }
}
@supports not ((backdrop-filter: blur(18px)) or (-webkit-backdrop-filter: blur(18px))) {
  .ak-kopf.ist-fest { background: #F5F3EE; }
}
.ak-kopf-zeile { display: flex; align-items: center; gap: 32px; height: 80px; }
.ak-signatur img { width: 132px; height: auto; }
.ak-nav { margin-left: auto; }
.ak-nav ul { display: flex; gap: 28px; }
.ak-nav a { text-decoration: none; font-size: 15px; font-weight: 600; padding: 8px 0; position: relative; }
.ak-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 2px; background: var(--ak-copper); transform: scaleX(0); transform-origin: left; transition: transform var(--ak-uebergang); }
.ak-nav a:hover::after, .ak-nav a[aria-current="page"]::after { transform: scaleX(1); }
.ak-kopf-aktionen { display: flex; align-items: center; gap: 12px; }
.ak-menue-knopf { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 0; align-items: center; justify-content: center; cursor: pointer; position: relative; z-index: 170; }
.ak-burger { position: relative; display: block; width: 26px; height: 14px; }
.ak-burger::before, .ak-burger::after { content: ""; position: absolute; left: 0; right: 0; height: 2px; background: currentColor; border-radius: 2px; transition: top .22s ease, transform .22s ease; }
.ak-burger::before { top: 0; }
.ak-burger::after { top: 12px; }
.ak-menue-knopf.ist-offen .ak-burger::before { top: 6px; transform: rotate(45deg); }
.ak-menue-knopf.ist-offen .ak-burger::after { top: 6px; transform: rotate(-45deg); }
.ak-menue-knopf.ist-offen { color: var(--ak-text); }
@media (max-width: 1023px) {
  .ak-nav { display: none; }
  .ak-menue-knopf { display: inline-flex; }
  .ak-signatur img { width: 112px; }
  .ak-btn-kopf { padding-inline: 14px; }
}
@media (max-width: 400px) { .ak-btn-kopf { font-size: 14px; padding-inline: 12px; } }
@media (max-width: 1023px) { .ak-kopf .ak-container { width: calc(100% - 24px); } .ak-kopf-aktionen { margin-left: auto; } .ak-menue-knopf { margin-right: -2px; } }

/* Mobile-Menue */
.ak-menue { position: fixed; inset: 0; z-index: 150; background: rgba(17, 18, 20, 0.35); }
.ak-menue[hidden] { display: none; }
.ak-menue-innen { outline: none; 
  position: absolute; top: 0; right: 0; bottom: 0; width: 100%;
  background: var(--ak-bg); padding: 104px 24px 32px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 24px; box-shadow: -18px 0 50px rgba(17, 18, 20, 0.18);
}
.ak-menue-liste { display: flex; flex-direction: column; }
.ak-menue-social { justify-content: center; gap: 22px; margin-top: 6px; }
.ak-menue-social img { width: 24px; height: 24px; }
.ak-menue-liste a { display: block; padding: 14px 0; font-size: 22px; font-weight: 700; letter-spacing: -0.02em; text-decoration: none; border-bottom: 1px solid var(--ak-border); }
body.ak-menue-offen { overflow: hidden; }

/* ── Fuss ─────────────────────────────────────────────────────── */
.ak-fuss { background: var(--ak-surface-soft); color: var(--ak-text); padding: 64px 0 28px; margin-top: var(--ak-section); }
.ak-fuss-raster { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 40px; }
.ak-fuss-marke p { margin: 18px 0; max-width: 32ch; color: var(--ak-text-muted); }
.ak-fuss-titel { font-size: 13px; font-weight: 750; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ak-text-subtle); margin-bottom: 14px; }
.ak-fuss ul li { margin-bottom: 10px; }
.ak-fuss ul a { text-decoration: none; }
.ak-fuss ul a:hover { text-decoration: underline; text-underline-offset: 3px; }
.ak-social { display: flex; flex-wrap: nowrap; gap: 16px; align-items: center; }
.ak-social img { width: 22px; height: 22px; opacity: .72; transition: opacity var(--ak-uebergang); }
.ak-social a:hover img { opacity: 1; }
.ak-social li { margin: 0 !important; }
.ak-fuss-bewertung { margin-top: 30px; display: flex; justify-content: flex-start; }
.ak-fuss-bewertung a { text-decoration: none; }
.ak-fuss-unten { display: flex; flex-wrap: wrap; gap: 16px 32px; align-items: center; justify-content: space-between; margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--ak-border); font-size: 13px; color: var(--ak-text-muted); }
.ak-fuss-unten ul { display: flex; gap: 20px; flex-wrap: wrap; }
.ak-fuss-unten ul li { margin: 0; }
@media (max-width: 1023px) { .ak-fuss-raster { grid-template-columns: minmax(0,1fr) minmax(0,1fr); } }
@media (max-width: 639px)  { .ak-fuss-raster { grid-template-columns: minmax(0,1fr); gap: 32px; } }

/* Sticky Mobile-CTA */
.ak-sticky-cta { display: none; }
@media (max-width: 1023px) {
  .ak-sticky-cta {
    display: block; position: fixed; left: 16px; right: 16px;
    bottom: max(12px, env(safe-area-inset-bottom)); z-index: 80;
    filter: drop-shadow(0 14px 30px rgba(17, 18, 20, 0.22));
    transition: opacity var(--ak-uebergang), transform var(--ak-uebergang);
  }
  .ak-sticky-cta.ist-weg { opacity: 0; transform: translateY(12px); pointer-events: none; }
  body.ak-hat-sticky { padding-bottom: 88px; }
}

/* ── Cards ────────────────────────────────────────────────────── */
.ak-card {
  background: var(--ak-surface); border: 1px solid var(--ak-border);
  border-radius: var(--ak-radius-card); padding: 30px;
  transition: transform var(--ak-uebergang), border-color var(--ak-uebergang), box-shadow var(--ak-uebergang);
}
.ak-card-hover:hover { transform: translateY(-2px); border-color: var(--ak-border-strong); box-shadow: 0 18px 50px rgba(17, 18, 20, 0.07); }
.ak-card-nr { font-size: 13px; font-weight: 750; letter-spacing: 0.08em; color: var(--ak-copper); margin-bottom: 18px; }
.ak-card .ak-h3 { margin-bottom: 12px; }
.ak-card .ak-text { flex: 1; }

/* ── Startseite: Hero ─────────────────────────────────────────── */
.ak-hero { min-height: 640px; padding-block: 48px 72px; display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: 64px; align-items: center; }
.ak-hero .ak-h1 { font-size: clamp(44px, 4.2vw, 60px); max-width: 640px; }
.ak-hero-bild { max-width: 520px; justify-self: end; width: 100%; }
.ak-hero-text .ak-lead { margin-top: 24px; }
.ak-hero-aktionen { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.ak-hero-trust { margin-top: 28px; font-size: 14px; color: var(--ak-text-subtle); }
.ak-hero-bild { position: relative; }
.ak-hero-bild picture, .ak-hero-bild img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 18%; border-radius: var(--ak-radius-image); overflow: hidden; }
.ak-play-knopf {
  position: absolute; left: 28px; bottom: 28px; display: inline-flex; align-items: center; gap: 14px;
  background: none; border: 0; padding: 0; cursor: pointer; color: #fff; font-weight: 650; font-size: 15px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.ak-play-knopf .ak-play-kreis {
  width: 72px; height: 72px; border-radius: var(--ak-radius-pill); background: rgba(255, 255, 255, 0.92); color: var(--ak-text);
  display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 14px 40px rgba(17, 18, 20, 0.18);
  transition: transform var(--ak-uebergang), background var(--ak-uebergang);
}
.ak-play-knopf:hover .ak-play-kreis { transform: scale(1.04); background: #fff; }
.ak-play-knopf:focus-visible .ak-play-kreis { outline: 3px solid var(--ak-copper); outline-offset: 3px; }
.ak-hero-karte {
  position: absolute; left: -16px; top: 50%; transform: translateY(-50%); background: var(--ak-surface); border: 1px solid var(--ak-border);
  border-radius: var(--ak-radius-panel); padding: 18px 20px; max-width: 250px; box-shadow: var(--ak-shadow-card);
}
.ak-hero-karte p { font-size: 14px; line-height: 1.5; }
.ak-karte-wer { display: flex; align-items: center; gap: 9px; }
.ak-karte-wer img { width: 32px; height: 32px; border-radius: var(--ak-radius-pill); object-fit: cover; flex: none; }
.ak-hero-karte .ak-meta { margin-top: 8px; }
@media (max-width: 1279px) { .ak-hero { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; min-height: 0; } .ak-hero-karte { display: none; } }
@media (max-width: 1023px) { .ak-hero { grid-template-columns: minmax(0, 1fr); padding-block: 32px 48px; } .ak-h1 { font-size: clamp(48px, 7vw, 60px); } .ak-hero-bild picture, .ak-hero-bild img { max-height: 560px; aspect-ratio: auto; } .ak-hero-bild img { width: 100%; height: 560px; } }
@media (max-width: 639px) {
  .ak-hero { padding-block: 24px 40px; }
  .ak-hero-aktionen { flex-direction: column; }
  .ak-hero-aktionen .ak-btn { width: 100%; }
  .ak-play-knopf { left: 18px; bottom: 18px; }
  .ak-play-knopf .ak-play-kreis { width: 60px; height: 60px; }
}
.ak-hero-bild picture { display: block; }

/* ── Trust: „Bekannt aus" monochrom, Kundenlogos als laufendes Band (wie attractivemedia.de) ── */
.ak-trust { padding: 32px 0; border-top: 1px solid var(--ak-border); border-bottom: 1px solid var(--ak-border); }
.ak-trust-label { font-size: 12px; font-weight: 750; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ak-text-subtle); margin-bottom: 18px; }
.ak-medien { display: flex; flex-wrap: nowrap; align-items: center; gap: 28px; }
.ak-medien li { min-width: 0; flex: 0 1 auto; }
.ak-medien img { max-width: 100%; }
.ak-medien li { display: flex; align-items: center; }
.ak-medien img { height: 30px; width: auto; filter: grayscale(1) contrast(1.15); opacity: 0.55; mix-blend-mode: multiply; transition: filter var(--ak-uebergang), opacity var(--ak-uebergang); }
.ak-medien img:hover { filter: none; opacity: 1; }
.ak-band { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.ak-band-spur { display: flex; width: max-content; animation: ak-lauf 60s linear infinite; }
.ak-band:hover .ak-band-spur { animation-play-state: paused; }
.ak-band-gruppe { display: flex; align-items: center; gap: 8px; padding-right: 8px; }
.ak-band-gruppe img { height: 104px; width: auto; filter: grayscale(1) brightness(0); opacity: 0.5; mix-blend-mode: multiply; }
@keyframes ak-lauf { to { transform: translateX(-50%); } }
.ak-trust-mehr { margin-top: 6px; }
@media (max-width: 1023px) { .ak-trust { padding: 24px 0; } .ak-trust > .ak-trust-label { text-align: center; } }
@media (max-width: 639px) {
  /* Gleiche LUECKEN statt gleicher Zellen (Alex 31.08.): Logos in natuerlicher
     Breite, space-between verteilt die Abstaende gleichmaessig. */
  .ak-medien { gap: 0; justify-content: space-between; }
  .ak-medien li { min-width: 0; flex: 0 0 auto; }
  .ak-medien img { height: 17px; width: auto; max-width: none; object-fit: contain; }
  .ak-band-gruppe img { height: 72px; }
}
@media (prefers-reduced-motion: reduce) {
  .ak-band-spur { animation: none; width: auto; flex-wrap: wrap; justify-content: flex-start; }
  .ak-band-gruppe { flex-wrap: wrap; padding-right: 0; }
  .ak-band-gruppe[aria-hidden="true"] { display: none; }
  .ak-band { -webkit-mask-image: none; mask-image: none; }
}

/* ── Wirkung / Themen ─────────────────────────────────────────── */
.ak-drei { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.ak-themen-karte { display: flex; flex-direction: column; min-height: 360px; }
.ak-themen-karte .ak-h3 { font-size: 23px; }
.ak-themen-karte .ak-text { line-height: 1.6; }
.ak-geeignet { margin-top: auto; padding-top: 18px; font-size: 14px; color: var(--ak-text-muted); }
.ak-themen-karte .ak-geeignet ul { min-height: 63px; }
.ak-geeignet b { display: block; color: var(--ak-text); font-weight: 650; margin-bottom: 6px; font-size: 13px; }
.ak-geeignet li { display: inline; }
.ak-geeignet li:not(:last-child)::after { content: " · "; color: var(--ak-text-subtle); }
.ak-themen-karte .ak-textlink { margin-top: 24px; }
.ak-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.ak-chip { display: inline-flex; align-items: center; min-height: 36px; padding: 0 14px; border-radius: var(--ak-radius-pill); border: 1px solid var(--ak-border-strong); font-size: 13px; font-weight: 650; }
@media (max-width: 1023px) { .ak-drei { grid-template-columns: minmax(0,1fr) minmax(0,1fr); } }
@media (max-width: 639px)  { .ak-drei { grid-template-columns: minmax(0,1fr); } .ak-themen-karte { min-height: 0; } }

/* ── Buehne (dunkle Section) ──────────────────────────────────── */
.ak-dunkel { background: var(--ak-graphite); color: #FFFFFF; border-radius: var(--ak-radius-section); }
.ak-dunkel .ak-eyebrow { color: var(--ak-copper); }
.ak-dunkel .ak-lead, .ak-dunkel .ak-text { color: rgba(255, 255, 255, 0.72); }
.ak-buehne { padding: 48px; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr); gap: 48px; align-items: center; }
.ak-buehne-video { position: relative; border-radius: var(--ak-radius-card); overflow: hidden; aspect-ratio: 16 / 9; background: #000; }
.ak-buehne-video picture, .ak-buehne-video img { width: 100%; height: 100%; object-fit: cover; }
.ak-buehne-video .ak-play-knopf { left: 50%; top: 50%; bottom: auto; transform: translate(-50%, -50%); }
.ak-buehne-aktionen { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.ak-buehne-weitere { margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.ak-buehne-weitere li { margin-top: 10px; }
.ak-buehne-weitere button { background: none; border: 0; padding: 0; color: #fff; display: inline-flex; gap: 10px; align-items: center; cursor: pointer; text-align: left; font-size: 15px; }
.ak-buehne-weitere button:hover { text-decoration: underline; text-underline-offset: 3px; }
.ak-buehne-weitere svg { flex: 0 0 auto; color: var(--ak-copper); }
@media (max-width: 1023px) { .ak-buehne { grid-template-columns: minmax(0, 1fr); padding: 32px; } }
@media (max-width: 639px)  { .ak-buehne { padding: 24px 20px; border-radius: 24px; } .ak-buehne-aktionen { flex-direction: column; } .ak-buehne-aktionen .ak-btn { width: 100%; } }

/* ── Ueber Alex ───────────────────────────────────────────────── */
.ak-ueber { display: grid; grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1.1fr); gap: 72px; align-items: center; }
.ak-ueber-bilder { position: relative; }
.ak-ueber-bilder .ak-portrait picture, .ak-ueber-bilder .ak-portrait img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--ak-radius-image); }
.ak-ueber-bilder .ak-trust-medien { margin-top: 64px; }
.ak-ueber-bilder .ak-medien { gap: 18px; justify-content: space-between; }
.ak-ueber-bilder .ak-medien li { flex: 0 1 auto; min-width: 0; }
.ak-ueber-bilder .ak-medien img { height: 20px; width: auto; max-width: none; object-fit: contain; }
@media (max-width: 1023px) { .ak-ueber-bilder .ak-medien img { height: 14px; } }
.ak-ueber-bilder .ak-portrait { position: relative; }
.ak-ueber-bilder .ak-moment { position: absolute; right: -24px; bottom: -24px; width: 44%; border-radius: var(--ak-radius-panel); overflow: hidden; box-shadow: var(--ak-shadow-card); border: 4px solid var(--ak-bg); }
.ak-ueber-bilder .ak-moment img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.ak-ueber-text .ak-text { margin-top: 20px; font-size: 17px; color: var(--ak-text-muted); max-width: 60ch; }
.ak-ueber-text .ak-h2 + .ak-text { margin-top: 24px; }
.ak-fakten { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 14px; margin-top: 36px; }
.ak-fakt { padding: 18px 20px; border: 1px solid var(--ak-border); border-radius: var(--ak-radius-panel); background: var(--ak-surface); }
.ak-fakt b { display: block; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.ak-fakt span { font-size: 14px; color: var(--ak-text-muted); line-height: 1.5; }
.ak-ueber-text .ak-btn { margin-top: 32px; }
.ak-ueber-community { margin-top: 24px; font-size: 14px; color: var(--ak-text-subtle); }
@media (max-width: 1023px) { .ak-ueber { grid-template-columns: minmax(0, 1fr); gap: 56px; } .ak-ueber-bilder { max-width: 520px; } }
@media (max-width: 639px)  { .ak-ueber-bilder .ak-moment { right: 0; bottom: -16px; width: 42%; } .ak-ueber-bilder { margin-bottom: 24px; } .ak-ueber-bilder .ak-trust-medien { margin-top: 48px; } .ak-fakten { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 10px; } .ak-fakt { padding: 14px; } }

/* ── Stimmen: Stil A als Karussell — Desktop 3 sichtbar, mobil 1, Punkte + Pfeile (Alex 31.08.) ── */
.ak-stimmen { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 20px; scrollbar-width: none; scroll-behavior: smooth; }
.ak-stimmen::-webkit-scrollbar { display: none; }
.ak-stimme { flex: 0 0 calc((100% - 40px) / 3); scroll-snap-align: start; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 38px 30px 30px; }
.ak-anf { font-size: 52px; line-height: .4; color: var(--ak-copper); font-weight: 800; display: block; margin-bottom: 30px; }
.ak-stimme blockquote { margin: 0; font-size: 19px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.42; text-wrap: balance; flex: 1; }
.ak-stimme blockquote em { font-style: normal; color: var(--ak-copper); }
.ak-stimme footer { margin-top: 22px; font-size: 13.5px; color: var(--ak-text-muted); }
.ak-stimme footer b { color: var(--ak-text); }
.ak-stimmen-nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 26px; }
.ak-stimmen-nav[hidden] { display: none; }
.ak-stimmen-pfeil { width: 44px; height: 44px; border-radius: var(--ak-radius-pill); border: 1px solid var(--ak-border-strong); background: transparent; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color var(--ak-uebergang); }
.ak-stimmen-pfeil:hover { border-color: var(--ak-text); }
.ak-stimmen-pfeil[disabled] { opacity: .35; cursor: default; }
.ak-stimmen-punkte { display: flex; gap: 8px; }
.ak-stimmen-punkte button { width: 8px; height: 8px; border-radius: var(--ak-radius-pill); border: 0; padding: 0; background: var(--ak-border-strong); cursor: pointer; transition: width var(--ak-uebergang), background var(--ak-uebergang); }
.ak-stimmen-punkte button.ist-an { background: var(--ak-copper); width: 22px; }
@media (max-width: 1023px) { .ak-stimme { flex-basis: calc((100% - 20px) / 2); } }
@media (max-width: 639px) {
  .ak-stimmen { gap: 14px; margin-inline: -16px; padding-inline: 16px; }
  .ak-stimme { flex-basis: 88%; scroll-snap-align: center; padding: 30px 22px 24px; }
  .ak-stimme blockquote { font-size: 17.5px; }
  .ak-anf { font-size: 44px; margin-bottom: 24px; }
}

/* ── Termine (nur mit Daten gerendert) ────────────────────────── */
.ak-termine { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.ak-termin time { display: block; font-weight: 750; color: var(--ak-copper); font-size: 14px; letter-spacing: 0.04em; margin-bottom: 10px; }
.ak-termin .ak-meta { margin-top: 8px; }
@media (max-width: 1023px) { .ak-termine { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
@media (max-width: 639px)  { .ak-termine { grid-template-columns: 1fr; } }

/* ── Anfrage ──────────────────────────────────────────────────── */
.ak-anfrage { padding: 56px; display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr); gap: 56px; align-items: start; scroll-margin-top: 96px; }
.ak-anfrage .ak-h2 { font-size: clamp(24px, 2.3vw, 33px); line-height: 1.18; }
.ak-anfrage-kontakt { margin-top: 32px; display: grid; gap: 10px; font-size: 15px; }
.ak-anfrage-kontakt a { color: #fff; text-decoration: none; display: inline-flex; gap: 10px; align-items: center; }
.ak-anfrage-kontakt a:hover { text-decoration: underline; text-underline-offset: 3px; }
.ak-anfrage-kontakt svg { color: var(--ak-copper); flex: 0 0 auto; }
.ak-anfrage-kontakt .ak-meta { color: rgba(255, 255, 255, 0.55); }
@media (max-width: 1023px) { .ak-anfrage { grid-template-columns: minmax(0, 1fr); padding: 32px; gap: 36px; } }
@media (max-width: 639px)  { .ak-anfrage { padding: 24px 18px; border-radius: 24px; } }

/* Formular */
.ak-form { background: var(--ak-surface); color: var(--ak-text); border-radius: var(--ak-radius-card); padding: 28px; }
.ak-form fieldset { border: 0; padding: 0; margin: 0 0 28px; min-width: 0; }
.ak-form legend { font-size: 18px; font-weight: 700; margin-bottom: 16px; padding: 0; letter-spacing: -0.01em; }
.ak-form .ak-schritt-nr { font-size: 12px; font-weight: 750; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ak-copper); margin-bottom: 8px; }
.ak-wahl-liste { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 10px; }
.ak-wahl { position: relative; display: flex; align-items: center; min-height: 52px; padding: 0 16px; border: 1px solid var(--ak-border-strong); border-radius: var(--ak-radius-control); font-weight: 650; cursor: pointer; transition: border-color var(--ak-uebergang), background var(--ak-uebergang); }
.ak-wahl input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.ak-wahl:has(input:checked) { border-color: var(--ak-copper); background: var(--ak-copper-soft); }
.ak-wahl:has(input:focus-visible) { outline: 3px solid rgba(191, 107, 75, 0.32); outline-offset: 3px; }
.ak-felder { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 14px 16px; }
.ak-feld { display: flex; flex-direction: column; gap: 6px; }
.ak-feld-voll { grid-column: 1 / -1; }
.ak-feld label { font-size: 14px; font-weight: 650; }
.ak-feld label small { font-weight: 500; color: var(--ak-text-subtle); }
.ak-feld input, .ak-feld textarea, .ak-feld select {
  font: inherit; font-size: 16px; min-height: 48px; padding: 10px 14px; border: 1px solid var(--ak-border-strong);
  border-radius: var(--ak-radius-control); background: #fff; color: var(--ak-text); width: 100%;
  -webkit-appearance: none; appearance: none;
}
.ak-feld textarea { min-height: 120px; resize: vertical; }
.ak-feld input:focus, .ak-feld textarea:focus { outline: 3px solid rgba(191, 107, 75, 0.32); outline-offset: 2px; border-color: var(--ak-copper); }
.ak-feld .ak-fehler { display: none; font-size: 13px; color: var(--ak-danger); }
.ak-feld.ist-fehler input, .ak-feld.ist-fehler textarea { border-color: var(--ak-danger); }
.ak-feld.ist-fehler .ak-fehler { display: block; }
.ak-form-fehlerliste { display: none; margin-bottom: 18px; padding: 12px 16px; border-radius: var(--ak-radius-control); background: #FBEDED; color: var(--ak-danger); font-size: 14px; }
.ak-form-fehlerliste.ist-sichtbar { display: block; }
.ak-form-fehlerliste ul { list-style: disc; padding-left: 18px; margin-top: 6px; }
.ak-honig { position: absolute; left: -9999px; }
.ak-form-aktionen { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; margin-top: 8px; }
.ak-form-status { margin-top: 16px; font-size: 15px; min-height: 1.5em; }
.ak-form-status.ist-ok { color: var(--ak-success); font-weight: 650; }
.ak-form-status.ist-fehler { color: var(--ak-danger); }
.ak-form-alternative { margin-top: 18px; font-size: 14px; color: var(--ak-text-muted); }
.ak-form-fortschritt { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--ak-text-subtle); margin-bottom: 22px; }
.ak-form-fortschritt .bahn { flex: 1; height: 3px; background: var(--ak-border); border-radius: 2px; overflow: hidden; display: block; }
.ak-form-fortschritt .bahn i { display: block; height: 100%; width: 33%; background: var(--ak-copper); transition: width var(--ak-uebergang); }
.ak-form.ist-stepper fieldset:not(.ist-aktiv) { display: none; }
.ak-form.ist-stepper .ak-form-fortschritt { display: flex; }
.ak-form:not(.ist-stepper) .ak-form-fortschritt { display: none; }
.ak-form-erfolg { display: none; padding: 12px 0; }
.ak-form-erfolg.ist-sichtbar { display: block; }
.ak-form-erfolg h3 { font-size: 22px; margin-bottom: 10px; }
@media (max-width: 639px) { .ak-form { padding: 20px 16px; } .ak-felder, .ak-wahl-liste { grid-template-columns: minmax(0,1fr); } }

/* ── Video-Modal ──────────────────────────────────────────────── */
.ak-modal { border: 0; padding: 0; background: transparent; max-width: min(1100px, 100vw); width: 100%; }
.ak-modal::backdrop { background: rgba(17, 18, 20, 0.88); }
.ak-modal-innen { position: relative; background: #000; border-radius: var(--ak-radius-card); overflow: hidden; }
.ak-modal-titel { position: absolute; left: 0; right: 56px; top: 0; padding: 14px 18px; color: #fff; font-size: 14px; font-weight: 650; background: linear-gradient(rgba(0,0,0,.6), transparent); z-index: 2; pointer-events: none; }
.ak-modal-zu { position: absolute; right: 10px; top: 10px; z-index: 3; width: 44px; height: 44px; border: 0; border-radius: var(--ak-radius-pill); background: rgba(255, 255, 255, 0.92); color: var(--ak-text); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; }
.ak-modal-video { aspect-ratio: 16 / 9; width: 100%; position: relative; }
.ak-modal-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.ak-modal-consent { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; padding: 32px; text-align: center; color: #fff; background: rgba(26, 28, 30, 0.96); }
.ak-modal-consent p { max-width: 52ch; color: rgba(255, 255, 255, 0.8); font-size: 15px; }
.ak-modal-consent .ak-btn { min-width: 220px; }
.ak-modal-consent[hidden] { display: none; }
@media (max-width: 639px) { .ak-modal { max-width: 100vw; max-height: 100vh; height: 100%; margin: 0; } .ak-modal-innen { border-radius: 0; height: 100%; display: flex; align-items: center; } .ak-modal-video { width: 100%; } }

/* ── Unterseiten (Inhalt) ─────────────────────────────────────── */
.ak-inhalt { max-width: 760px; }
.ak-inhalt h1 { font-size: clamp(40px, 4.6vw, 60px); line-height: 1.02; font-weight: 720; letter-spacing: -0.035em; margin-bottom: 28px; }
.ak-inhalt h2 { font-size: clamp(26px, 3vw, 34px); line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; margin: 48px 0 16px; }
.ak-inhalt h3 { font-size: 21px; font-weight: 700; margin: 32px 0 10px; }
.ak-inhalt p, .ak-inhalt li { font-size: 17px; line-height: 1.7; color: var(--ak-text-muted); margin-bottom: 18px; }
.ak-inhalt ul, .ak-inhalt ol { padding-left: 22px; margin-bottom: 18px; }
.ak-inhalt ul { list-style: disc; }
.ak-inhalt li { margin-bottom: 8px; }
.ak-inhalt a { color: var(--ak-text); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--ak-copper); }
.ak-inhalt img { border-radius: var(--ak-radius-panel); margin: 24px 0; }
.ak-inhalt blockquote { margin: 28px 0; padding-left: 20px; border-left: 3px solid var(--ak-copper); }
.ak-inhalt figure { margin: 24px 0; }
.ak-inhalt iframe { max-width: 100%; }
.ak-seitenkopf { padding-top: 48px; }
.ak-seitenkopf .ak-lead { margin-top: 20px; }

/* Blog-Uebersicht */
.ak-artikel-liste { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 48px; }
.ak-artikel-karte { display: flex; flex-direction: column; text-decoration: none; overflow: hidden; padding: 0; }
.ak-artikel-karte img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.ak-artikel-karte div { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.ak-artikel-karte h3 { font-size: 20px; line-height: 1.3; margin-bottom: 10px; }
.ak-artikel-karte .ak-meta { margin-top: auto; padding-top: 14px; }
@media (max-width: 1023px) { .ak-artikel-liste { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
@media (max-width: 639px)  { .ak-artikel-liste { grid-template-columns: 1fr; } }

/* ── Bewegung ─────────────────────────────────────────────────── */
.ak-reveal { opacity: 0; transform: translateY(12px); transition: opacity 420ms ease-out, transform 420ms ease-out; }
.ak-reveal.ist-da, .no-js .ak-reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .ak-reveal { opacity: 1; transform: none; }
  .ak-card-hover:hover, .ak-btn:hover, .ak-btn-sekundaer:hover { transform: none; }
}

/* ── Unterseiten-Bausteine ────────────────────────────────────── */
.ak-zwei { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 20px; }
.ak-zwei > * { min-width: 0; }
.ak-workshop-bild { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--ak-radius-image); }
.ak-card-gross { padding: 40px 48px; }
.ak-h2-klein { font-size: clamp(28px, 3vw, 36px); }
.ak-fragen { margin-top: 12px; columns: 2; column-gap: 32px; padding-left: 20px; list-style: disc; }
.ak-fragen li { break-inside: avoid; margin-bottom: 8px; font-size: 16px; line-height: 1.55; color: var(--ak-text-muted); }
.ak-cta-band { padding: 48px; display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.ak-cta-band .ak-h2 { max-width: 60ch; }
@media (max-width: 639px) {
  .ak-zwei { grid-template-columns: minmax(0, 1fr); }
  .ak-card-gross { padding: 24px 20px; }
  .ak-fragen { columns: 1; }
  .ak-cta-band { padding: 28px 20px; }
}

/* ── Videoband (wie attractivemedia.de/erfolgsstories) ─────────── */
.ak-vids-band { overflow: hidden; }
.ak-vids-spur { display: flex; width: max-content; animation: ak-lauf 75s linear infinite; }
.ak-vids-band:hover .ak-vids-spur, .ak-vids-band:focus-within .ak-vids-spur { animation-play-state: paused; }
.ak-vids-gruppe { display: flex; gap: 20px; padding-right: 20px; }
/* Feste Hoehe statt aspect-ratio: Safari laesst <button> mit aspect-ratio auf 0 Hoehe zusammenfallen. */
.ak-vid { display: block; width: 460px; height: 259px; flex: none; position: relative; border-radius: var(--ak-radius-card); overflow: hidden; border: 0; padding: 0; margin: 0; background: #000; cursor: pointer; text-align: left; -webkit-appearance: none; appearance: none; }
.ak-vid img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 600ms ease-out; }
.ak-vid:hover img { transform: scale(1.03); }
.ak-vid-play { position: absolute; inset: 0; display: grid; place-items: center; z-index: 2; }
.ak-vid-play span { width: 64px; height: 64px; border-radius: var(--ak-radius-pill); background: rgba(255,255,255,.92); color: var(--ak-text); display: grid; place-items: center; box-shadow: 0 14px 40px rgba(17,18,20,.28); transition: transform var(--ak-uebergang); }
.ak-vid:hover .ak-vid-play span { transform: scale(1.06); }
.ak-vid:focus-visible { outline: 3px solid var(--ak-copper); outline-offset: 3px; }
.ak-vid-text { position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 2; color: #fff; font-size: 14px; line-height: 1.35; display: flex; flex-direction: column; gap: 2px; text-shadow: 0 1px 8px rgba(0,0,0,.5); }
.ak-vid-text b { font-weight: 700; }
.ak-vid-text span { color: rgba(255,255,255,.8); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; font-weight: 700; }
@media (max-width: 767px) {
  .ak-vids-band { margin-inline: -16px; }
  .ak-vids-gruppe { gap: 14px; padding-right: 14px; padding-left: 16px; }
  .ak-vid { width: 78vw; height: calc(78vw * 9 / 16); }
}
@media (prefers-reduced-motion: reduce) {
  .ak-vids-band { overflow-x: auto; }
  .ak-vids-spur { animation: none; }
  .ak-vids-gruppe[aria-hidden="true"] { display: none; }
}

/* ── Insights-Titelkarten: Foto als Textur, Typo mittig (Alex 31.08.) ── */
.ak-tk { position: relative; display: block; aspect-ratio: 3 / 2; background: var(--ak-graphite); overflow: hidden; }
.ak-tk img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .26; filter: grayscale(.5) brightness(.85); }
.ak-tk-text { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center; padding: 20px 22px; }
.ak-tk-kat { font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.72); }
.ak-tk-titel { color: #fff; font-weight: 800; font-size: clamp(21px, 1.9vw, 26px); line-height: 1.16; letter-spacing: -.02em; text-wrap: balance; max-width: 22ch; }
.ak-tk-titel em { font-style: normal; color: #E7A183; }
@media (max-width: 639px) { .ak-tk-titel { font-size: 22px; } }
.ak-artikel-karte .ak-tk { border-radius: 0; }

/* ── Ansprechpartnerin (Anfrage + Kontakt) ── */
.ak-ansprech { display: flex; gap: 18px; align-items: flex-start; margin-top: 32px; }
.ak-ansprech img { width: 88px; height: 88px; border-radius: var(--ak-radius-pill); object-fit: cover; flex: none; border: 2px solid rgba(255,255,255,.25); }
.ak-ansprech-label { font-size: 12px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: var(--ak-copper); margin-bottom: 2px; }
.ak-ansprech-name { font-size: 19px; font-weight: 800; letter-spacing: -.01em; margin-bottom: 12px; color: #fff; }
.ak-dunkel .ak-ansprech-label { color: #E7A183; }
.ak-ansprech-zeile { font-size: 15px; margin-bottom: 6px; }
.ak-ansprech-zeile a { color: inherit; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--ak-copper); }
.ak-ansprech-meta { font-size: 12.5px; color: rgba(255,255,255,.55); margin-top: 8px; }
.ak-fuss-ansprech { display: flex; gap: 10px; align-items: center; }
.ak-fuss-ansprech img { width: 36px; height: 36px; border-radius: 999px; object-fit: cover; }
.ak-fuss-ansprech span { font-size: 13px; color: var(--ak-text-muted); line-height: 1.35; }
.ak-fuss-ansprech b { color: var(--ak-text); }
@media (max-width: 639px) { .ak-ansprech { flex-direction: row; padding: 16px; gap: 14px; } .ak-ansprech img { width: 64px; height: 64px; } }

/* ── On-Stage-Filmstreifen (Alex 31.08.): wie Logo-/Videoband, aber ruhiger ── */
.ak-strecke { overflow: hidden; border-radius: var(--ak-radius-card); }
.ak-strecke-spur { display: flex; width: max-content; animation: ak-lauf 145s linear infinite; }
.ak-strecke:hover .ak-strecke-spur { animation-play-state: paused; }
.ak-strecke-gruppe { display: flex; gap: 12px; padding-right: 12px; }
.ak-strecke-gruppe picture { display: block; }
.ak-strecke-gruppe img { height: 240px; width: auto; border-radius: 16px; display: block; }
@media (max-width: 767px) { .ak-strecke { margin-inline: -16px; border-radius: 0; } .ak-strecke-gruppe img { height: 160px; border-radius: 12px; } .ak-strecke-gruppe { gap: 8px; padding-right: 8px; } }
@media (prefers-reduced-motion: reduce) { .ak-strecke { overflow-x: auto; } .ak-strecke-spur { animation: none; } .ak-strecke-gruppe[aria-hidden="true"] { display: none; } }

/* Filmstreifen in der Wirkung-Sektion: Desktop unter den Karten, mobil darueber (Alex 31.08.) */
#wirkung.ak-section { padding-bottom: 40px; display: flex; flex-direction: column; }
#wirkung .ak-section-kopf { order: 1; }
#wirkung .ak-drei { order: 2; }
#wirkung .ak-strecke-platz { order: 3; margin-top: 40px; }
@media (max-width: 639px) {
  #wirkung .ak-strecke-platz { order: 1; margin: 0 0 28px; }
  #wirkung .ak-section-kopf { order: 0; }
  #wirkung .ak-drei { order: 2; }
}

/* ── Themen-Karten mobil wischbar mit Pfeilen (Alex 31.08.) ── */
.ak-themen-buehne .ak-stimmen-nav { display: none; }
@media (max-width: 639px) {
  .ak-themen-buehne .ak-drei { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 14px; margin-inline: -16px; padding-inline: 16px; scrollbar-width: none; scroll-behavior: smooth; }
  .ak-themen-buehne .ak-drei::-webkit-scrollbar { display: none; }
  .ak-themen-buehne .ak-themen-karte { flex: 0 0 88%; scroll-snap-align: center; }
  .ak-themen-buehne .ak-stimmen-nav { display: flex; }
}

/* ── Anfrage mobil optimiert (Alex 31.08.) ── */
.ak-form.ist-stepper .ak-schritt-nr { display: none; } /* "Schritt x von 3" steht schon im Fortschritt */
@media (max-width: 639px) {
  .ak-ansprech { flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 24px; }
  .ak-ansprech img { width: 64px; height: 64px; }
  .ak-ansprech-zeile { font-size: 14.5px; }
  .ak-ansprech-zeile a[href^="mailto"] { word-break: break-all; }
  .ak-ansprech-name { font-size: 17px; margin-bottom: 8px; }
  .ak-anfrage .ak-h2 { font-size: clamp(22px, 6.4vw, 26px); }
  .ak-anfrage .ak-lead { font-size: 16px; }
}

/* ── Hero mobil: Variante A — Vollbild, abgedunkelt, Header im Bild (Alex 31.08.) ── */
@media (max-width: 639px) {
  body.ak-start .ak-kopf { position: fixed; top: 0; left: 0; right: 0; background: transparent; border-bottom-color: transparent; }
  body.ak-start .ak-kopf:not(.ist-fest) .ak-signatur img { filter: invert(1) brightness(1.6); }
  body.ak-start .ak-kopf:not(.ist-fest) .ak-menue-knopf:not(.ist-offen) { color: #fff; }
  body.ak-start .ak-kopf.ist-fest { background: rgba(245, 243, 238, .92); border-bottom-color: rgba(17, 18, 20, .08); }
  body.ak-start .ak-main { margin-top: 0; }
  .ak-hero { position: relative; width: 100vw; margin-inline: 0 0; margin-left: calc(50% - 50vw); margin-top: -80px; min-height: 100svh; padding: 96px 16px 24px; display: flex; align-items: flex-end; overflow: hidden; border-radius: 0; }
  .ak-hero-bild { position: absolute; inset: 0; order: 0; max-width: none; margin: 0; }
  .ak-hero-bild picture { position: absolute; inset: 0; max-height: none; border-radius: 0; aspect-ratio: auto; }
  .ak-hero-bild img { position: absolute; inset: 0; width: 100%; height: 100%; max-height: none; aspect-ratio: auto; object-fit: cover; object-position: 58% top; border-radius: 0; filter: brightness(.55); }
  .ak-hero-bild::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(17, 18, 20, .18) 0%, rgba(17, 18, 20, 0) 30%, rgba(17, 18, 20, .5) 78%, rgba(17, 18, 20, .68) 100%); }
  .ak-hero-text { position: relative; z-index: 2; color: #fff; width: 100%; margin-top: auto; }
  .ak-hero-text .ak-eyebrow { display: none; }
  .ak-hero-text .ak-h1 { color: #fff; font-size: clamp(24px, 6.6vw, 27px); line-height: 1.22; letter-spacing: -.015em; max-width: none; }
  .ak-hero-text .ak-lead { color: rgba(255, 255, 255, .88); font-size: 16px; line-height: 1.5; margin-top: 12px; }
  .ak-hero-aktionen { margin-top: 20px; gap: 10px; }
  .ak-hero-aktionen .ak-btn { min-height: 46px; }
  .ak-hero-trust { display: none; }
  .ak-hero .ak-btn-primaer { background: #fff; color: var(--ak-text); }
  .ak-hero .ak-btn-primaer:hover { background: var(--ak-bg); }
  .ak-hero .ak-btn-sekundaer { color: #fff; border-color: rgba(255, 255, 255, .45); }
}

/* Wirkung-Karten mobil ausgeblendet (Alex 31.08.) */
@media (max-width: 639px) { #wirkung .ak-drei { display: none; } #wirkung .ak-strecke-platz { margin-bottom: 0; } }

/* Karussells mobil: nur horizontales Wischen, kein diagonales Mitscrollen (Alex 31.08.) */
@media (max-width: 639px) {
  .ak-stimmen, .ak-themen-buehne .ak-drei { touch-action: pan-x; overscroll-behavior-x: contain; }
}

/* Artikel-Detail: echte Titelkarte statt Comic-Bilder (Alex 31.08.) */
.ak-artikel-hero { border-radius: var(--ak-radius-panel); overflow: hidden; margin: 8px 0 28px; }

/* Drawer-Animation wie attractivemedia.de (Alex 31.08.): Fade-Zoom + gestaffelte Punkte */
@keyframes ak-fade-zoom { from { opacity: 0; transform: scale(1.04); } }
@keyframes ak-punkt { to { opacity: 1; transform: none; } }
.ak-menue:not([hidden]) { animation: ak-fade-zoom .22s ease; }
.ak-menue:not([hidden]) .ak-menue-liste a { opacity: 0; transform: translateY(10px); animation: ak-punkt .3s ease forwards; }
.ak-menue:not([hidden]) .ak-menue-liste li:nth-child(1) a { animation-delay: .05s; }
.ak-menue:not([hidden]) .ak-menue-liste li:nth-child(2) a { animation-delay: .11s; }
.ak-menue:not([hidden]) .ak-menue-liste li:nth-child(3) a { animation-delay: .17s; }
.ak-menue:not([hidden]) .ak-menue-liste li:nth-child(4) a { animation-delay: .23s; }
.ak-menue:not([hidden]) .ak-menue-liste li:nth-child(5) a { animation-delay: .29s; }
.ak-menue:not([hidden]) .ak-btn, .ak-menue:not([hidden]) .ak-menue-social { opacity: 0; animation: ak-punkt .3s ease forwards; animation-delay: .33s; }
@media (prefers-reduced-motion: reduce) { .ak-menue:not([hidden]), .ak-menue:not([hidden]) .ak-menue-liste a, .ak-menue:not([hidden]) .ak-btn, .ak-menue:not([hidden]) .ak-menue-social { animation: none; opacity: 1; transform: none; } }

/* Offenes Menue: echte Kopfzeile bleibt ueber dem Drawer (Burger morpht dort zum X) */
body.ak-menue-offen .ak-kopf { z-index: 180; background: transparent !important; border-bottom-color: transparent !important; -webkit-backdrop-filter: none !important; backdrop-filter: none !important; }
body.ak-menue-offen .ak-kopf .ak-signatur img { filter: none !important; }
body.ak-menue-offen .ak-kopf .ak-menue-knopf { color: var(--ak-text); }

/* Hinweis-Band der Newsletter-Bestaetigung (KI Insider) */
.ak-hinweis-band { position: fixed; top: 92px; left: 50%; transform: translateX(-50%); z-index: 120; background: var(--ak-graphite, #1A1C1E); color: #fff; padding: 12px 22px; border-radius: 999px; font-size: 14.5px; font-weight: 600; box-shadow: 0 10px 26px rgba(17,18,20,.25); max-width: calc(100vw - 32px); text-align: center; }

/* ── KI-Insider-Karte (Variante B, Alex 31.08.) ── */
.ak-insider-karte { position: relative; background: #fff; border: 1px solid rgba(17, 18, 20, 0.08); border-radius: 18px; padding: 44px 32px; text-align: center; box-shadow: var(--ak-shadow-card); max-width: 720px; margin-inline: auto; }
.ak-insider-titel { font-size: clamp(24px, 3vw, 30px); font-weight: 800; letter-spacing: -0.015em; margin-top: 10px; }
.ak-insider-titel em { font-style: normal; color: var(--ak-copper); }
.ak-insider-proof { display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 16px; color: var(--ak-text-muted); font-weight: 600; font-size: 15px; flex-wrap: wrap; }
.ak-insider-gesichter { display: flex; }
.ak-insider-gesichter img { width: 30px; height: 30px; border-radius: 50%; border: 2px solid #fff; margin-left: -9px; object-fit: cover; box-shadow: 0 1px 4px rgba(17, 18, 20, 0.18); }
.ak-insider-gesichter img:first-child { margin-left: 0; }
.ak-insider-form { display: flex; gap: 10px; margin: 22px auto 0; max-width: 460px; flex-wrap: wrap; }
.ak-insider-form input[type="email"] { flex: 1 1 220px; min-width: 0; padding: 13px 16px; border-radius: 12px; border: 1px solid rgba(17, 18, 20, 0.18); font: inherit; font-size: 15px; background: #fff; }
.ak-insider-honig { position: absolute; left: -9999px; top: 0; }
.ak-insider-status { margin-top: 16px; font-weight: 600; }
.ak-insider-klein { margin-top: 12px; font-size: 12.5px; color: var(--ak-text-muted); }
@media (max-width: 639px) { .ak-insider-karte { padding: 32px 18px; } .ak-insider-form button { flex: 0 0 auto; margin-inline: auto; padding-inline: 36px; } }

/* Insider invertiert in der Anfrage-Box (Alex 31.08.: kein eigener heller Abschnitt) */
.ak-insider-dunkel { grid-column: 1 / -1; border-top: 1px solid rgba(255, 255, 255, 0.14); padding-top: 34px; margin-top: 6px; text-align: center; scroll-margin-top: 120px; }
.ak-insider-dunkel .ak-insider-titel { font-size: clamp(21px, 2vw, 25px); color: #fff; margin-top: 8px; }
.ak-insider-dunkel .ak-insider-titel em { color: var(--ak-copper-hell); }
.ak-insider-dunkel .ak-insider-proof { color: rgba(255, 255, 255, 0.72); }
.ak-insider-dunkel .ak-insider-gesichter img { border-color: var(--ak-graphite, #1A1C1E); }
.ak-insider-dunkel .ak-insider-form input[type="email"] { border: 0; }
.ak-insider-dunkel .ak-btn-primaer { background: #fff; color: #1A1C1E; }
.ak-insider-dunkel .ak-insider-status { color: var(--ak-copper-hell); }
.ak-insider-dunkel .ak-insider-klein { color: rgba(255, 255, 255, 0.55); }
@media (max-width: 639px) { .ak-insider-dunkel { padding-top: 26px; } }

/* Zurueck-Knopf im Stepper: das Formular-Panel ist hell, obwohl es in der
   dunklen Anfrage-Box liegt — weisse Sekundaer-Schrift war unsichtbar (31.08.). */
.ak-dunkel .ak-form .ak-btn-sekundaer { color: var(--ak-text); border-color: transparent; background: transparent; }
.ak-dunkel .ak-form .ak-btn-sekundaer:hover { border-color: transparent; }
.ak-pfeil-links { display: inline-flex; transform: scaleX(-1); }

/* Kein sichtbarer Fokus-Ring um die Schritt-Ueberschrift beim Weiterblaettern
   (iOS malte eine Outline um die programmatisch fokussierte legend, 31.08.) */
.ak-form legend:focus, .ak-form legend:focus-visible { outline: none; }

/* FAQ-Accordion in Blogartikeln (Alex 31.08., wie attractivemedia.de) */
.ak-inhalt .ak-faq { border-bottom: 1px solid rgba(17, 18, 20, 0.12); }
.ak-inhalt .ak-faq:first-of-type { border-top: 1px solid rgba(17, 18, 20, 0.12); }
.ak-inhalt .ak-faq summary { cursor: pointer; list-style: none; display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 16px 0; font-weight: 750; font-size: 17px; }
.ak-inhalt .ak-faq summary::-webkit-details-marker { display: none; }
.ak-inhalt .ak-faq summary::after { content: "+"; flex: 0 0 auto; font-size: 22px; line-height: 1; color: var(--ak-copper); transition: transform var(--ak-uebergang); }
.ak-inhalt .ak-faq[open] summary::after { content: "\2013"; }
.ak-inhalt .ak-faq > div { padding: 0 0 16px; }
.ak-inhalt .ak-faq > div > p:first-child { margin-top: 0; }
.ak-inhalt .ak-faq > div > p:last-child { margin-bottom: 0; }

/* Buttons im Artikelinhalt erben nicht die Link-Unterstreichung (31.08.) */
.ak-inhalt .ak-btn { text-decoration: none; }
.ak-inhalt .ak-btn.ak-btn-primaer { color: #fff; }

/* Rechtsseiten-H1 mobil: Datenschutzerklaerung ist ein Wort und lief aus dem Bild (31.08.) */
@media (max-width: 639px) { .ak-inhalt h1 { font-size: clamp(23px, 7.4vw, 30px); overflow-wrap: anywhere; } }

/* Insider-Titel mobil: Untertitel in eigener Zeile, kleiner (Alex 31.08.) */
.ak-insider-sub { display: block; font-size: 15px; font-weight: 600; letter-spacing: 0; line-height: 1.5; margin-top: 8px; color: var(--ak-text-muted); }
.ak-insider-dunkel .ak-insider-sub { color: rgba(255, 255, 255, 0.82); }

/* Kein Fokus-Rechteck am Burger nach Tippen/Schliessen (iOS, Alex 31.08.) */
.ak-menue-knopf:focus, .ak-menue-knopf:focus-visible { outline: none; }
