/* ============================================================
   Ailanx — Kontakt (production stylesheet)
   Tokens 1:1 aus dem Ailanx Design System (_ds/tokens/*.css).
   Komponenten-Styles 1:1 aus dem DS-Bundle (Button, Input,
   Checkbox, TrustSeal) — als reine CSS-Klassen portiert.
   ============================================================ */

/* ---- Webfonts (IBM Plex Sans / Mono, Google Fonts CDN — per DS-Readme;
        für Self-Hosting durch @font-face ersetzen) ---- */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

/* ---- Tokens: Farben ---- */
:root {
  --navy-900: #0F2238;
  --navy-700: #1A365D;
  --navy-500: #2A4D7A;

  --cream:    #FDFDFD;

  --green-600: #2C7A7B;
  --green-700: #246364;
  --petrol-900: #004D40;

  --gold-500: #C5A065;
  --gold-600: #AE8A50;
  --gold-700: #977740;

  --cyan-100: #E0F7FA;

  --gray-100: #EDF2F7;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E0;
  --gray-500: #718096;
  --ink-900:  #1A202C;

  --white:    #FFFFFF;

  --surface-page:      var(--cream);
  --surface-card:      var(--white);
  --surface-muted:     var(--gray-100);
  --surface-data:      var(--cyan-100);
  --surface-inverse:   var(--navy-700);
  --surface-footer:    var(--navy-900);

  --text-heading:      var(--navy-700);
  --text-body:         var(--ink-900);
  --text-muted:        var(--gray-500);
  --text-on-dark:      var(--cream);
  --text-on-dark-muted: #AEC0D6;
  --text-highlight:    var(--green-600);
  --text-link:         var(--green-600);

  --border-default:    var(--gray-200);
  --border-strong:     var(--gray-300);
  --border-focus:      var(--green-600);

  --action-primary:    var(--navy-700);
  --action-primary-hover: var(--navy-500);
  --action-primary-active: var(--navy-900);

  --action-secondary:  var(--green-600);
  --action-secondary-hover: var(--green-700);
  --action-secondary-active: var(--petrol-900);

  --action-cta:        var(--gold-500);
  --action-cta-hover:  var(--gold-600);
  --action-cta-active: var(--gold-700);

  --focus-ring:        color-mix(in srgb, var(--green-600) 35%, transparent);

  --success: #2C7A7B;
  --warning: #C5A065;
  --error:   #C0392B;

  /* ---- Tokens: Typografie ---- */
  --font-sans: 'IBM Plex Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  /* ---- Tokens: Spacing / Radien / Layout ---- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 999px;

  --container-max: 1200px;
  --container-pad: 24px;

  /* ---- Tokens: Effekte ---- */
  --shadow-xs: 0 1px 2px rgba(26, 54, 93, 0.06);
  --shadow-sm: 0 2px 8px rgba(26, 54, 93, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 54, 93, 0.08);
  --shadow-lg: 0 16px 40px rgba(26, 54, 93, 0.12);
  --shadow-cta: 0 6px 18px rgba(197, 160, 101, 0.28);

  --ease-standard: cubic-bezier(0.2, 0, 0.2, 1);
  --dur-fast: 120ms;
  --dur-base: 200ms;
}

/* ============ Base ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  font-family: var(--font-sans);
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img, svg { display: block; }
.icon { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* Platzhalter-Chip (offene Inhalte: Telefonnummer, Anschrift) */
.ph {
  background: var(--surface-muted);
  color: var(--text-heading);
  padding: 1px 6px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.9em;
  border: 1px solid var(--border-default);
}

/* Sichtbarer Fokus überall */
:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--focus-ring); border-radius: var(--radius-sm); }

/* ============ Header / Nav ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border-default);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.site-header__logo img { height: 40px; width: auto; }

.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav__list {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.site-nav__item { position: relative; }
.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-heading);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-standard);
}
.site-nav__link:hover { color: var(--text-link); }
.site-nav__link .icon { width: 15px; height: 15px; }

/* Dropdown — öffnet auf Hover und Tastaturfokus */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 14px; /* Hover-Brücke */
  z-index: 60;
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-standard), visibility 0s linear var(--dur-base);
}
.site-nav__item:hover > .dropdown,
.site-nav__item:focus-within > .dropdown {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
.dropdown__panel {
  min-width: 300px;
  background: var(--cream);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  display: flex;
  flex-direction: column;
}
.dropdown__panel--compact { min-width: 220px; }
.dropdown__link {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease-standard);
}
.dropdown__link--row { align-items: center; padding: 11px 12px; }
.dropdown__link:hover { background: var(--surface-muted); }
.dropdown__ico {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--surface-data);
  color: var(--text-link);
}
.dropdown__ico .icon { width: 19px; height: 19px; }
.dropdown__ico--sm { width: 32px; height: 32px; }
.dropdown__ico--sm .icon { width: 18px; height: 18px; }
.dropdown__title { display: block; font-weight: 600; font-size: 15px; color: var(--text-heading); }
.dropdown__desc { display: block; font-size: 13px; line-height: 1.45; color: var(--text-muted); margin-top: 2px; }

/* Mobile Nav */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 8px;
  color: var(--text-heading);
  cursor: pointer;
}
.nav-toggle .icon { width: 22px; height: 22px; }

/* ============ Buttons (DS: components/actions/Button.jsx) ============ */
.ax-btn {
  font-family: var(--font-sans);
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--dur-base) var(--ease-standard),
              box-shadow var(--dur-base) var(--ease-standard),
              border-color var(--dur-base) var(--ease-standard);
}
.ax-btn:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--focus-ring); }
.ax-btn--sm { font-size: 14px; padding: 8px 16px; }
.ax-btn--md { font-size: 15px; padding: 11px 22px; }
.ax-btn--lg { font-size: 16px; padding: 15px 30px; letter-spacing: .01em; }
.ax-btn--primary { background: var(--action-primary); color: var(--cream); }
.ax-btn--primary:hover { background: var(--action-primary-hover); }
.ax-btn--primary:active { background: var(--action-primary-active); }
.ax-btn--cta { background: var(--action-cta); color: var(--white); box-shadow: var(--shadow-cta); }
.ax-btn--cta:hover { background: var(--action-cta-hover); }
.ax-btn--cta:active { background: var(--action-cta-active); box-shadow: none; }
.ax-btn--block { width: 100%; }
.ax-btn[disabled] {
  background: var(--gray-100); color: var(--gray-500); border-color: var(--gray-200);
  box-shadow: none; cursor: not-allowed; pointer-events: none;
}

/* ============ Input (DS: components/forms/Input.jsx) ============ */
.ax-field { display: flex; flex-direction: column; gap: 6px; font-family: var(--font-sans); }
.ax-field__label { font-size: 14px; font-weight: 600; color: var(--text-heading); }
.ax-field__req { color: var(--green-600); margin-left: 2px; }
.ax-input {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-body);
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  width: 100%;
  transition: border-color var(--dur-base) var(--ease-standard),
              box-shadow var(--dur-base) var(--ease-standard);
}
.ax-input::placeholder { color: var(--gray-500); }
.ax-input:hover { border-color: var(--gray-500); }
.ax-input:focus { outline: none; border-color: var(--border-focus); box-shadow: 0 0 0 3px var(--focus-ring); }

/* Textarea (Prototyp: 16px, lh 1.65, vertikal skalierbar) */
.ax-textarea {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  resize: vertical;
  width: 100%;
  transition: border-color var(--dur-base) var(--ease-standard),
              box-shadow var(--dur-base) var(--ease-standard);
}
.ax-textarea::placeholder { color: var(--gray-500); }
.ax-textarea:focus { outline: none; border-color: var(--border-focus); box-shadow: 0 0 0 3px var(--focus-ring); }

/* ============ Checkbox (DS: components/forms/Checkbox.jsx) ============ */
.ax-check { display: inline-flex; align-items: flex-start; gap: 10px; font-family: var(--font-sans); cursor: pointer; }
.ax-check__box {
  appearance: none; -webkit-appearance: none; margin: 0; flex: none;
  width: 20px; height: 20px; border: 1.5px solid var(--border-strong);
  border-radius: 5px; background: var(--white); cursor: pointer; position: relative;
  transition: background var(--dur-fast) var(--ease-standard), border-color var(--dur-fast) var(--ease-standard);
}
.ax-check__box:hover { border-color: var(--green-600); }
.ax-check__box:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--focus-ring); }
.ax-check__box:checked { background: var(--green-600); border-color: var(--green-600); }
.ax-check__box:checked::after {
  content: ""; position: absolute; left: 6px; top: 2px; width: 5px; height: 10px;
  border: solid var(--white); border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.ax-check__label { font-size: 14px; line-height: 1.45; color: var(--text-body); padding-top: 1px; }
.ax-check__label a { color: var(--text-link); font-weight: 600; text-decoration: none; }
.ax-check__label a:hover { text-decoration: underline; }

/* ============ TrustSeal (DS: components/data-display/TrustSeal.jsx) ============ */
.ax-seal {
  font-family: var(--font-sans); display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: var(--radius-md);
  background: var(--surface-card); border: 1px solid var(--border-default);
  box-shadow: var(--shadow-xs);
}
.ax-seal__icon {
  width: 38px; height: 38px; flex: none; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--green-600) 12%, white); color: var(--green-700);
}
.ax-seal__icon .icon { width: 20px; height: 20px; }
.ax-seal__txt { display: flex; flex-direction: column; gap: 1px; }
.ax-seal__title { font-weight: 600; font-size: 14px; color: var(--text-heading); line-height: 1.25; }
.ax-seal__sub { font-size: 12px; color: var(--text-muted); line-height: 1.25; }

/* ============ Seite: Titel ============ */
.page-title { background: var(--cream); padding: 64px 0 16px; }
.page-title__inner { max-width: 760px; }
.overline {
  font-weight: 600; font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-highlight); margin-bottom: 14px;
}
.page-title h1 {
  font-weight: 700; font-size: 56px; line-height: 1.12;
  letter-spacing: -0.02em; color: var(--text-heading);
  text-transform: uppercase; margin: 0 0 16px;
}
.page-title p {
  font-size: 18px; line-height: 1.65; color: var(--text-body);
  margin: 0; max-width: 600px;
}
.page-title strong { color: var(--text-highlight); font-weight: 600; }

/* ============ Seite: Kontakt-Grid ============ */
.contact-section { background: var(--cream); padding: 48px 0 96px; scroll-margin-top: 88px; }
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

/* Linke Spalte: Kontaktdetails */
.contact-details { display: flex; flex-direction: column; gap: 14px; }

.detail-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--surface-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}
.detail-card__ico {
  flex: none; width: 44px; height: 44px; border-radius: var(--radius-md);
  background: var(--cyan-100); color: var(--petrol-900);
  display: inline-flex; align-items: center; justify-content: center;
}
.detail-card__label {
  display: block; font-size: 12px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-muted);
}
.detail-card__value { display: block; font-weight: 600; font-size: 17px; color: var(--text-heading); margin-top: 2px; }
.detail-card__value--soft { font-weight: 500; font-size: 16px; line-height: 1.6; margin-top: 4px; }
.detail-card__meta { display: block; font-size: 14px; color: var(--text-muted); margin-top: 4px; }

/* E-Mail-Karte (dunkel, klickbar) */
.detail-card--mail {
  align-items: center;
  background: var(--surface-footer);
  border: none;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--dur-base) var(--ease-standard);
}
.detail-card--mail:hover { box-shadow: var(--shadow-lg); }
.detail-card--mail .detail-card__ico { background: rgba(255,255,255,0.10); color: var(--cream); }
.detail-card--mail .detail-card__label { color: var(--text-on-dark-muted); }
.detail-card--mail .detail-card__value { color: var(--cream); }

.trust-seals { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }

/* Rechte Spalte: Formular */
.contact-form-card {
  background: var(--surface-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-card h2 {
  font-weight: 600; font-size: 24px; line-height: 1.3;
  color: var(--text-heading); margin: 0 0 6px;
}
.contact-form-card > p {
  font-size: 15px; line-height: 1.6; color: var(--text-muted); margin: 0 0 24px;
}
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form .span-2 { grid-column: 1 / -1; }
.contact-form .submit-row { grid-column: 1 / -1; margin-top: 4px; }
.form-success {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 10px;
  background: color-mix(in srgb, var(--green-600) 10%, white);
  border: 1px solid color-mix(in srgb, var(--green-600) 30%, white);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--green-700);
}
.form-success .icon { width: 18px; height: 18px; flex: none; }
.form-success[hidden] { display: none; }

/* ============ Footer ============ */
.site-footer {
  background: var(--navy-900);
  padding: 64px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.site-footer__brand img { height: 44px; width: auto; }
.site-footer__brand p {
  font-size: 14px; line-height: 1.6; color: var(--text-on-dark-muted);
  max-width: 280px; margin: 18px 0 0;
}
.site-footer__heading {
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-on-dark); margin-bottom: 16px;
}
.site-footer__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.site-footer__list a {
  font-size: 14px; color: var(--text-on-dark-muted); text-decoration: none;
  transition: color var(--dur-fast) var(--ease-standard);
}
.site-footer__list a:hover { color: var(--cream); }
.site-footer__bottom {
  max-width: var(--container-max);
  margin: 40px auto 0;
  padding: 24px var(--container-pad) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.site-footer__bottom span { font-size: 13px; color: var(--text-on-dark-muted); }
.site-footer__social { display: flex; gap: 18px; }
.site-footer__social a {
  color: var(--text-on-dark-muted); display: inline-flex;
  transition: color var(--dur-fast) var(--ease-standard);
}
.site-footer__social a:hover { color: var(--cream); }
.site-footer__social .icon { width: 18px; height: 18px; }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .site-nav__list { display: none; }
  .site-nav .ax-btn { display: none; }
  .nav-toggle { display: inline-flex; }

  .site-nav.is-open .site-nav__list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border-default);
    box-shadow: var(--shadow-lg);
    padding: 12px var(--container-pad) 20px;
  }
  .site-nav.is-open .site-nav__link { padding: 10px 4px; font-size: 16px; }
  .site-nav.is-open .dropdown {
    position: static;
    transform: none;
    padding-top: 0;
    visibility: visible;
    opacity: 1;
  }
  .site-nav.is-open .dropdown__panel { box-shadow: none; border: none; background: transparent; padding: 0 0 4px 12px; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .page-title { padding-top: 48px; }
  .page-title h1 { font-size: clamp(34px, 9vw, 44px); }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 22px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-section { padding-bottom: 64px; }
}

/* ============================================================
   DS-Komponenten (Ports aus _ds_bundle.js): Ghost-Button,
   Badge, Card, Select, TrustSeal-Dunkelvariante
   ============================================================ */

/* Button-Variante ghost (DS: components/actions/Button.jsx) */
.ax-btn--ghost { background: transparent; color: var(--action-primary); border-color: var(--border-strong); }
.ax-btn--ghost:hover { background: var(--surface-muted); border-color: var(--navy-700); }
.ax-btn--ghost:active { background: var(--gray-200); }

/* Badge (DS: components/data-display/Badge.jsx) */
.ax-badge {
  font-family: var(--font-sans); font-weight: 600; font-size: 12px; line-height: 1;
  letter-spacing: .02em; display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: var(--radius-pill); border: 1px solid transparent;
  white-space: nowrap;
}
.ax-badge--navy { background: color-mix(in srgb, var(--navy-700) 10%, white); color: var(--navy-700); border-color: color-mix(in srgb, var(--navy-700) 20%, white); }

/* Card (DS: components/data-display/Card.jsx) */
.ax-card {
  background: var(--surface-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 32px;
  display: flex; flex-direction: column; gap: 12px;
  transition: box-shadow var(--dur-base) var(--ease-standard),
              transform var(--dur-base) var(--ease-standard),
              border-color var(--dur-base) var(--ease-standard);
}
.ax-card--interactive { cursor: pointer; }
.ax-card--interactive:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); border-color: var(--border-strong); }
.ax-card--interactive:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--focus-ring); }
.ax-card__icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--cyan-100); color: var(--petrol-900);
  margin-bottom: 8px;
}
.ax-card__icon .icon { width: 26px; height: 26px; }
.ax-card__title { font-family: var(--font-sans); font-weight: 600; font-size: 19px; line-height: 1.4; color: var(--text-heading); margin: 0; }
.ax-card__body { font-family: var(--font-sans); font-weight: 400; font-size: 16px; line-height: 1.65; color: var(--text-body); margin: 0; }
.ax-card__foot { margin-top: 8px; display: flex; align-items: center; gap: 8px; }
.ax-card__link {
  font-family: var(--font-sans); font-weight: 600; font-size: 14px;
  color: var(--text-link); text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
}
.ax-card__link:hover { color: var(--green-700); }

/* Select (DS: components/forms/Select.jsx) */
.ax-select-wrap { position: relative; }
.ax-select {
  font-family: var(--font-sans); font-size: 15px; color: var(--text-body);
  background: var(--white); border: 1px solid var(--border-strong);
  border-radius: var(--radius-md); padding: 12px 40px 12px 14px; width: 100%;
  appearance: none; -webkit-appearance: none; cursor: pointer;
  transition: border-color var(--dur-base) var(--ease-standard), box-shadow var(--dur-base) var(--ease-standard);
}
.ax-select:hover { border-color: var(--gray-500); }
.ax-select:focus { outline: none; border-color: var(--border-focus); box-shadow: 0 0 0 3px var(--focus-ring); }
.ax-select-wrap::after {
  content: ""; position: absolute; right: 16px; top: 50%; width: 9px; height: 9px;
  border: solid var(--gray-500); border-width: 0 2px 2px 0;
  transform: translateY(-65%) rotate(45deg); pointer-events: none;
}

/* TrustSeal auf dunklem Grund (DS: components/data-display/TrustSeal.jsx) */
.ax-seal--ondark { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); box-shadow: none; }
.ax-seal--ondark .ax-seal__title { color: var(--cream); }
.ax-seal--ondark .ax-seal__sub { color: var(--text-on-dark-muted); }

/* ============================================================
   Seite: Startseite (index.html)
   ============================================================ */

main section[id] { scroll-margin-top: 88px; }

/* Abschnitts-Grundlayout */
.section { padding: 96px 0; background: var(--cream); }
.section--muted { background: var(--surface-muted); border-top: 1px solid var(--border-default); }
.section--data { background: var(--surface-data); }
.section--dark { background: var(--surface-footer); }
.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head h2 {
  font-weight: 600; font-size: 32px; line-height: 1.2;
  letter-spacing: -0.02em; color: var(--text-heading); margin: 0 0 14px;
}
.section-head p { font-size: 18px; line-height: 1.65; color: var(--text-body); margin: 0; }
.section-head__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.section-head__meta .overline { margin-bottom: 0; }

/* Hero */
.hero { padding: 56px 0 72px; background: var(--cream); }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.hero h1 {
  font-weight: 700; font-size: 64px; line-height: 1.12; letter-spacing: -0.02em;
  color: var(--text-heading); text-transform: uppercase; margin: 0 0 20px;
}
.hero__copy { font-size: 18px; line-height: 1.65; color: var(--text-body); max-width: 520px; margin: 0 0 32px; }
.hero__copy strong { color: var(--text-highlight); font-weight: 600; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero__seals { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__img {
  aspect-ratio: 16 / 11; width: 100%; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}

/* Partner-/Trust-Strip */
.strip { background: var(--surface-muted); padding: 28px 0; border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); }
.strip__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.strip__label { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-muted); }
.strip__logos { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; }
.strip__logo { font-size: 16px; font-weight: 700; color: var(--navy-700); opacity: 0.55; letter-spacing: -0.01em; }

/* Problem / Lösung */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.panel { background: var(--surface-muted); border: 1px solid var(--border-default); border-radius: var(--radius-lg); padding: 36px; }
.panel--dark { background: var(--navy-700); border: none; box-shadow: var(--shadow-md); }
.panel__title { font-weight: 600; font-size: 19px; color: var(--text-heading); margin: 0 0 20px; }
.panel--dark .panel__title { color: var(--cream); }
.dot-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.dot-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; line-height: 1.6; color: var(--text-body); }
.dot-list li::before {
  content: ""; flex: none; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gray-500); margin-top: 9px;
}
.panel--dark .dot-list li { color: var(--text-on-dark); }
.panel--dark .dot-list li::before { background: var(--gold-500); }
.dot-list--green { gap: 10px; }
.dot-list--green li::before { background: var(--green-600); }

/* Karten-Raster */
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.seal-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding-top: 48px; border-top: 1px solid var(--border-default); margin-top: 48px; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.team-member { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; }
.team-member__photo {
  width: 150px; height: 150px; border-radius: 50%;
  background: var(--surface-muted); border: 1px dashed var(--border-strong);
  color: var(--text-muted); font-size: 13px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
}
.team-member__name { font-weight: 600; font-size: 17px; color: var(--text-heading); }
.team-member__role { font-size: 14px; color: var(--text-highlight); margin-top: 4px; }

/* Kontakt / CTA (dunkel) */
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.cta-grid .overline { color: var(--gold-500); }
.cta-grid h2 {
  font-weight: 700; font-size: 44px; line-height: 1.2; letter-spacing: -0.02em;
  color: var(--cream); margin: 0 0 18px;
}
.cta-grid > div > p { font-size: 18px; line-height: 1.65; color: var(--text-on-dark-muted); max-width: 460px; margin: 0 0 28px; }
.cta-seals { display: flex; flex-direction: column; gap: 12px; max-width: 380px; }
.cta-card { background: var(--cream); border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow-lg); }
.analyse-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.analyse-form .span-2 { grid-column: 1 / -1; }
.analyse-form .submit-row { grid-column: 1 / -1; margin-top: 4px; }
.cta-success { text-align: center; padding: 32px 8px; }
.cta-success__icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: color-mix(in srgb, var(--green-600) 14%, white); color: var(--green-700);
  display: inline-flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.cta-success__icon .icon { width: 30px; height: 30px; }
.cta-success h3 { font-weight: 600; font-size: 24px; color: var(--text-heading); margin: 0 0 8px; }
.cta-success p { font-size: 15px; color: var(--text-body); margin: 0; }
.cta-success[hidden] { display: none; }

/* Responsive Startseite */
@media (max-width: 1024px) {
  .hero__grid, .split, .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .cards-4, .cards-3, .seal-row { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .hero h1 { font-size: clamp(40px, 7vw, 56px); }
  .section { padding: 72px 0; }
}
@media (max-width: 640px) {
  .cards-4, .cards-3, .seal-row, .team-grid, .analyse-form { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(34px, 9vw, 44px); }
  .cta-grid h2 { font-size: clamp(30px, 8vw, 38px); }
  .cta-card { padding: 28px 22px; }
  .panel { padding: 26px 22px; }
  .section { padding: 56px 0; }
}

/* ============================================================
   Seiten: Rechtliches (impressum.html / datenschutz.html / agb.html)
   ============================================================ */

.legal-title { background: var(--cream); padding: 64px 0 32px; }
.legal-title h1 {
  font-weight: 700; font-size: 48px; line-height: 1.12; letter-spacing: -0.02em;
  color: var(--text-heading); text-transform: uppercase; margin: 0 0 12px;
}
.legal-title p { font-size: 16px; line-height: 1.65; color: var(--text-muted); margin: 0; }
.container--narrow { max-width: 820px; margin: 0 auto; padding: 0 var(--container-pad); }
.legal-content { padding: 24px 0 96px; background: var(--cream); }
.legal-content .container--narrow { display: flex; flex-direction: column; gap: 40px; }
.legal-content h2 { font-weight: 600; font-size: 22px; line-height: 1.3; color: var(--text-heading); margin: 0 0 12px; }
.legal-content p { font-size: 16px; line-height: 1.8; color: var(--text-body); margin: 0; }
.legal-content a { color: var(--text-link); text-decoration: none; }
.legal-content a:hover { color: var(--green-700); text-decoration: underline; }
.legal-kv {
  display: grid; grid-template-columns: 160px 1fr; gap: 10px 24px;
  font-size: 16px; line-height: 1.6; color: var(--text-body);
}
.legal-kv dt { color: var(--text-muted); margin: 0; }
.legal-kv dd { margin: 0; }
.legal-note {
  font-size: 14px !important; line-height: 1.6 !important; color: var(--text-muted) !important;
  margin: 8px 0 0 !important; padding-top: 24px; border-top: 1px solid var(--border-default);
}

@media (max-width: 640px) {
  .legal-title { padding-top: 48px; }
  .legal-title h1 { font-size: clamp(28px, 7.5vw, 38px); }
  .legal-kv { grid-template-columns: 1fr; gap: 2px; }
  .legal-kv dt { margin-top: 10px; }
}

/* ============================================================
   DS-Komponenten II (Ports aus _ds_bundle.js): Badge-Töne
   ============================================================ */

.ax-badge--green { background: color-mix(in srgb, var(--green-600) 12%, white); color: var(--green-700); border-color: color-mix(in srgb, var(--green-600) 24%, white); }
.ax-badge--gold { background: color-mix(in srgb, var(--gold-500) 16%, white); color: var(--gold-700); border-color: color-mix(in srgb, var(--gold-500) 30%, white); }
.ax-badge__dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

/* ============================================================
   Unterseiten: Leistungen / SaaS / Unternehmen
   (ki-workflow, ki-automatisierung, insights, assets, bff,
    schulungen, ueber-uns, team, karriere)
   ============================================================ */

/* Breadcrumb */
.breadcrumb { max-width: var(--container-max); margin: 0 auto; padding: 24px var(--container-pad) 0; }
.breadcrumb a { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color var(--dur-fast) var(--ease-standard); }
.breadcrumb a:hover { color: var(--text-link); }

/* Hero-Variante Unterseiten (kleinere H1, Meta-Zeile mit Badge) */
.hero--sub { padding: 48px 0 72px; }
.hero--sub h1 { font-size: 56px; }
.hero__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.hero__meta .overline { margin-bottom: 0; }
.hero__badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }

/* Diagramm-/Foto-Platzhalter */
.diagram {
  aspect-ratio: 16 / 11; width: 100%;
  background: var(--cyan-100); border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; color: var(--green-700); text-align: center; padding: 28px;
  box-shadow: var(--shadow-md);
}
.diagram--photo { aspect-ratio: 4 / 3; background: var(--gray-100); }
.diagram > .icon { width: 40px; height: 40px; }
.diagram__row { display: flex; align-items: center; gap: 12px; }
.diagram__node {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--cream); border: 1px solid var(--border-default); color: var(--text-link);
}
.diagram__node .icon { width: 22px; height: 22px; }
.diagram__arrow { width: 18px; height: 18px; color: var(--text-muted); }
.diagram__caption { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); max-width: 300px; line-height: 1.5; }

/* Schritt-Karten (Ablauf) */
.step-card {
  background: var(--surface-muted); border: 1px solid var(--border-default);
  border-top: 3px solid var(--green-600); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm);
}
.step-card--gold { border-top-color: var(--gold-500); }
.step-card__num { font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--text-link); margin-bottom: 14px; }
.step-card__title { font-weight: 600; font-size: 18px; color: var(--text-heading); margin-bottom: 8px; }
.step-card p { font-size: 15px; line-height: 1.6; color: var(--text-body); margin: 0; }

/* Kompakte Feature-Zeilen (Anwendungsbeispiele) */
.cards-3--tight { gap: 16px; }
.feature-row {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--cream); border: 1px solid var(--border-default);
  border-radius: var(--radius-lg); padding: 22px;
}
.feature-row__ico {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--radius-md);
  background: var(--surface-data); color: var(--text-link);
}
.feature-row__ico .icon { width: 20px; height: 20px; }
.feature-row__title { font-weight: 600; font-size: 16px; color: var(--text-heading); margin-bottom: 4px; }
.feature-row__desc { font-size: 14px; line-height: 1.55; color: var(--text-muted); }

/* Seitliche Info-Grids */
.side-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.side-grid .section-head { margin-bottom: 0; }
.side-grid .dot-list { gap: 18px; }
.split-media { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }

/* Check-Listen (Kreis-Icon) */
.check-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; line-height: 1.6; color: var(--text-body); }
.check-list li strong { color: var(--text-heading); font-weight: 600; }
.check-list__ico {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: color-mix(in srgb, var(--green-600) 14%, white); color: var(--green-700);
}
.check-list__ico .icon { width: 16px; height: 16px; }
.check-list--grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 48px; }

/* Trust-Reihe 2-spaltig */
.seal-row--2 { grid-template-columns: repeat(2, 1fr); }
.seal-row--flush { margin-top: 0; padding-top: 0; border-top: none; }

/* CTA-Band (dunkel) */
.cta-band { background: var(--surface-footer); padding: 72px 0; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.cta-band h2 { font-weight: 700; font-size: 32px; line-height: 1.2; letter-spacing: -0.02em; color: var(--cream); margin: 0 0 8px; }
.cta-band p { font-size: 17px; line-height: 1.6; color: var(--text-on-dark-muted); margin: 0; max-width: 540px; }

/* Panels mit Icon-Kopf (Schatten-KI, Format) */
.panel__head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.panel__head .panel__title { margin: 0; }
.panel__head-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  background: color-mix(in srgb, var(--gray-500) 16%, white); color: var(--gray-500);
}
.panel--dark .panel__head-ico { background: rgba(255,255,255,0.12); color: var(--gold-500); }
.panel__ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--surface-data); color: var(--text-link); margin-bottom: 18px;
}
.panel__ico .icon { width: 24px; height: 24px; }
.panel__title--lg { font-size: 20px; margin-bottom: 8px; }
.panel > p { font-size: 16px; line-height: 1.6; color: var(--text-body); margin: 0; }

/* Fakten-Zeile */
.fact-row { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 28px; }
.fact { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text-body); }
.fact .icon { width: 18px; height: 18px; color: var(--green-600); }

/* Agenda */
.agenda { display: flex; flex-direction: column; gap: 16px; }
.agenda-item {
  display: grid; grid-template-columns: 140px 1fr; gap: 24px;
  background: var(--cream); border: 1px solid var(--border-default);
  border-left: 3px solid var(--green-600); border-radius: var(--radius-lg);
  padding: 24px 28px; box-shadow: var(--shadow-sm);
}
.agenda-item--gold { border-left-color: var(--gold-500); }
.agenda-item__time { font-family: var(--font-mono); font-size: 14px; font-weight: 600; color: var(--text-link); }
.agenda-item__title { font-weight: 600; font-size: 18px; color: var(--text-heading); margin-bottom: 6px; }
.agenda-item__desc { font-size: 16px; line-height: 1.6; color: var(--text-body); }

/* Preiskarten */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  display: flex; flex-direction: column; position: relative;
  background: var(--cream); border: 1px solid var(--border-default);
  border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm);
}
.price-card--featured { border: 2px solid var(--gold-500); box-shadow: var(--shadow-cta); }
.price-card__flag { position: absolute; top: -13px; left: 32px; }
.price-card__name { font-weight: 600; font-size: 19px; color: var(--text-heading); margin-bottom: 6px; }
.price-card__sub { font-size: 14px; color: var(--text-muted); margin-bottom: 18px; }
.price-card__price { font-weight: 700; font-size: 34px; color: var(--text-heading); margin-bottom: 20px; }
.tick-list { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.tick-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; line-height: 1.55; color: var(--text-body); }
.tick-list .icon { width: 18px; height: 18px; color: var(--green-600); flex: none; margin-top: 2px; }
.price-card__action { margin-top: auto; }

/* FAQ (natives details/summary — Toggle-Logik des Prototyps ohne JS) */
.container--medium { max-width: 860px; margin: 0 auto; padding: 0 var(--container-pad); }
.faq-item { border-top: 1px solid var(--border-default); }
.faq-item summary {
  list-style: none; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 22px 4px; cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__q { font-size: 18px; font-weight: 600; color: var(--text-heading); }
.faq-item__toggle {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--surface-muted); color: var(--text-link);
  transition: transform var(--dur-base) var(--ease-standard);
}
.faq-item__toggle .icon { width: 18px; height: 18px; }
.faq-item[open] .faq-item__toggle { transform: rotate(45deg); }
.faq-item__a { padding: 0 4px 24px; font-size: 16px; line-height: 1.7; color: var(--text-body); max-width: 680px; }

/* Mission-Band & Kennzahlen (Über uns) */
.mission { background: var(--navy-700); padding: 80px 0; }
.mission__inner { max-width: 900px; margin: 0 auto; padding: 0 var(--container-pad); text-align: center; }
.mission .overline { color: var(--gold-500); margin-bottom: 18px; }
.mission p { font-weight: 600; font-size: 30px; line-height: 1.4; letter-spacing: -0.01em; color: var(--cream); margin: 0; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat__num { font-family: var(--font-mono); font-weight: 700; font-size: 44px; line-height: 1; color: var(--navy-700); margin-bottom: 10px; }
.stat__label { font-size: 16px; color: var(--text-body); }
.teaser { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 32px; }
.teaser__txt { max-width: 560px; }
.teaser__txt .section-head { margin-bottom: 0; }

/* Team-Seite */
.team-about { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 64px; align-items: start; }
.team-about__side { position: sticky; top: 96px; }
.team-about__side h2 { font-weight: 600; font-size: 34px; line-height: 1.15; letter-spacing: -0.02em; color: var(--text-heading); margin: 0 0 20px; }
.team-about__side > p { font-size: 19px; line-height: 1.7; color: var(--text-body); margin: 0; }
.team-about__side p strong, .team-about__main p strong { color: var(--text-highlight); font-weight: 600; }
.team-about__main { display: flex; flex-direction: column; gap: 24px; }
.team-about__main > p { font-size: 17px; line-height: 1.75; color: var(--text-body); margin: 0; }
.kpi-list { margin-top: 32px; display: flex; flex-direction: column; }
.kpi-row { display: flex; align-items: baseline; gap: 16px; padding: 16px 0; border-top: 1px solid var(--border-default); }
.kpi-row:last-child { border-bottom: 1px solid var(--border-default); }
.kpi-row__num { flex: none; font-family: var(--font-mono); font-weight: 600; font-size: 22px; color: var(--text-link); min-width: 96px; }
.kpi-row__num--sm { font-size: 17px; }
.kpi-row__label { font-size: 15px; line-height: 1.5; color: var(--text-body); }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip-row__label { font-weight: 600; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }
.chip {
  font-size: 13px; font-weight: 500; color: var(--text-heading);
  background: var(--surface-card); border: 1px solid var(--border-default);
  border-radius: var(--radius-pill); padding: 7px 14px;
}
.pull-quote {
  margin: 8px 0 0; background: var(--cream);
  border: 1px solid var(--border-default); border-left: 3px solid var(--gold-500);
  border-radius: var(--radius-lg); padding: 28px 32px; box-shadow: var(--shadow-sm);
}
.pull-quote p { font-size: 20px; line-height: 1.55; font-weight: 500; color: var(--text-heading); margin: 0; }
.pull-quote footer { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-top: 16px; }

.profile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.profile-card {
  background: var(--surface-card); border: 1px solid var(--border-default);
  border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column;
}
.profile-card__photo {
  width: 180px; height: 180px; margin: 36px auto 0;
  background: var(--gray-100); border: 1px dashed var(--border-strong); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 13px; box-shadow: var(--shadow-sm);
}
.profile-card__body {
  padding: 24px 28px 32px; flex: 1;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px;
}
.profile-card__name { font-weight: 600; font-size: 20px; color: var(--text-heading); }
.profile-card__role { font-weight: 600; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-highlight); }
.profile-card__bio { font-size: 15px; line-height: 1.65; color: var(--text-body); margin: 8px 0 0; }
.profile-card__mail {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 10px;
  font-size: 14px; font-weight: 500; color: var(--text-link); text-decoration: none;
}
.profile-card__mail:hover { color: var(--green-700); }
.profile-card__mail .icon { width: 15px; height: 15px; }

/* Karriere */
.job-list { display: flex; flex-direction: column; gap: 16px; }
.job-card {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: var(--surface-card); border: 1px solid var(--border-default);
  border-radius: var(--radius-md); padding: 28px 32px;
  text-decoration: none; box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur-base) var(--ease-standard);
}
.job-card:hover { box-shadow: var(--shadow-md); }
.job-card__title-row { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; flex-wrap: wrap; }
.job-card__title { font-weight: 600; font-size: 20px; color: var(--text-heading); }
.job-card__meta { display: flex; flex-wrap: wrap; gap: 18px; font-size: 14px; color: var(--text-muted); }
.job-card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.job-card__meta .icon { width: 15px; height: 15px; }
.job-card__arrow { flex: none; color: var(--text-link); display: inline-flex; }
.job-card__arrow .icon { width: 22px; height: 22px; }
.note-box {
  margin-top: 32px; background: var(--surface-muted);
  border: 1px solid var(--border-default); border-radius: var(--radius-md);
  padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.note-box__title { font-weight: 600; font-size: 17px; color: var(--text-heading); margin-bottom: 4px; }
.note-box__sub { font-size: 15px; color: var(--text-body); }
.proc-card { background: var(--surface-card); border: 1px solid var(--border-default); border-radius: var(--radius-md); padding: 28px; }
.proc-card__num { font-family: var(--font-mono); font-weight: 700; font-size: 15px; color: var(--green-700); margin-bottom: 14px; }
.proc-card__title { font-weight: 600; font-size: 18px; color: var(--text-heading); margin-bottom: 8px; }
.proc-card p { font-size: 15px; line-height: 1.6; color: var(--text-body); margin: 0; }

/* Responsive Unterseiten */
@media (max-width: 1024px) {
  .hero--sub h1 { font-size: clamp(36px, 6.5vw, 48px); }
  .side-grid, .split-media, .team-about { grid-template-columns: 1fr; gap: 40px; }
  .team-about__side { position: static; }
  .check-list--grid { grid-template-columns: 1fr; }
  .price-grid, .stat-row { grid-template-columns: 1fr; gap: 32px; }
  .profile-grid { grid-template-columns: repeat(2, 1fr); }
  .agenda-item { grid-template-columns: 1fr; gap: 8px; }
}
@media (max-width: 640px) {
  .hero--sub h1 { font-size: clamp(30px, 8.5vw, 40px); }
  .profile-grid { grid-template-columns: 1fr; }
  .mission p { font-size: 22px; }
  .cta-band h2 { font-size: clamp(26px, 7vw, 30px); }
  .job-card { flex-direction: column; align-items: flex-start; gap: 12px; }
  .panel__head { flex-wrap: wrap; }
}

/* ============ Reduzierte Bewegung ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
