/* ===== TOKENS ===== */
:root {
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, sans-serif;
  --accent: #0a84ff;
  --radius-card: 28px;
  --radius-pill: 999px;
  --ease-apple: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-weich: cubic-bezier(0.37, 0, 0.63, 1);   /* Sinus, fuer Endlosbewegungen */
  --island-bg: #0a0a0c;                 /* Footer, Badges, Buttons */
  --notch-bg: #000000;                  /* Notch: reines Schwarz */
  --dur: 0.6s;
  --bg: #f5f5f7; --surface: #ffffff; --text: #1d1d1f; --text-soft: #6e6e73;
  --border: rgba(0, 0, 0, 0.08);
  --glass: rgba(255, 255, 255, 0.55); --glass-edge: rgba(255, 255, 255, 0.8);
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.08);
}
/* ===== BASE ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font); background: var(--bg); color: var(--text);
  line-height: 1.6; transition: background var(--dur), color var(--dur);
  -webkit-font-smoothing: antialiased;
}
.section { max-width: 1200px; margin: 0 auto; padding: 7rem 1.5rem; }
h1, h2, h3 { line-height: 1.1; letter-spacing: -0.02em; margin: 0; }
h2 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 700; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ===== NOTCH (Dynamic Island) ===== */
.island {
  /* Zentrierung ohne translate/transform: GSAP schreibt beim Animieren 'translate: none'
     in das Element und wuerde eine translate-basierte Zentrierung aushebeln. */
  position: fixed; top: 0; left: 0; right: 0; margin-inline: auto; width: fit-content;
  z-index: 100; display: flex; flex-wrap: wrap; align-items: center; column-gap: 2rem;
  background: var(--notch-bg); color: #f5f5f7;
  border-radius: 0 0 22px 22px; padding: 0.6rem 0.6rem 0.6rem 1.5rem;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
  transition: padding 0.45s var(--ease-apple), border-radius 0.45s var(--ease-apple);
}
/* Auslauf-Kurven links/rechts. Sie sind 1px breiter als ihr Abstand und schieben sich
   damit unter die Notch (z-index: -1) — so kann an der Naht kein heller Streifen entstehen,
   auch wenn die Zentrierung auf einem halben Pixel landet. */
.island::before, .island::after {
  content: ''; position: absolute; top: 0; z-index: -1;
  width: 23px; height: 22px; background: var(--notch-bg);
}
.island::before {
  left: -22px;
  -webkit-mask: radial-gradient(circle 22px at 0 100%, transparent 0 21.4px, #000 22px);
          mask: radial-gradient(circle 22px at 0 100%, transparent 0 21.4px, #000 22px);
}
.island::after {
  right: -22px;
  -webkit-mask: radial-gradient(circle 22px at 100% 100%, transparent 0 21.4px, #000 22px);
          mask: radial-gradient(circle 22px at 100% 100%, transparent 0 21.4px, #000 22px);
}
.island--compact { padding: 0.45rem 0.45rem 0.45rem 1.3rem; }
.island-brand {
  display: flex; align-items: center; gap: 0.6rem;
  color: inherit; text-decoration: none; font-weight: 600; font-size: 0.95rem; white-space: nowrap;
}
.island-mark { width: 26px; height: 26px; border-radius: 7px; object-fit: cover; display: block; }
.island-nav { display: flex; column-gap: 1.5rem; }
.island-nav a {
  color: rgba(245,245,247,0.72); text-decoration: none; font-size: 0.9rem; white-space: nowrap;
  transition: color 0.3s;
}
.island-nav a:hover { color: #fff; }
.island-nav-contact { display: none; }   /* Desktop: weißer CTA übernimmt Kontakt */
.island-cta {
  background: #fff; color: #111; text-decoration: none; font-weight: 600; font-size: 0.88rem;
  padding: 0.5rem 1.15rem; border-radius: 12px; white-space: nowrap;
  transition: transform 0.3s var(--ease-apple), box-shadow 0.3s;
}
.island-cta:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(0,0,0,0.35); }
.island-burger {
  display: none; background: none; border: 0; color: inherit; cursor: pointer;
  padding: 0.4rem; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.island-burger span {
  display: block; width: 22px; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform 0.35s var(--ease-apple), opacity 0.35s var(--ease-apple);
}
.island--open .island-burger span:first-child { transform: translateY(4px) rotate(45deg); }
.island--open .island-burger span:last-child { transform: translateY(-4px) rotate(-45deg); }
@media (max-width: 768px) {
  .island {
    width: min(94vw, 440px); justify-content: space-between;
    padding: 0.55rem 0.9rem 0.55rem 1rem; border-radius: 0 0 16px 16px;
  }
  /* Kurven auf die kleinere Mobile-Rundung anpassen */
  .island::before, .island::after { width: 17px; height: 16px; }
  .island::before {
    left: -16px;
    -webkit-mask: radial-gradient(circle 16px at 0 100%, transparent 0 15.4px, #000 16px);
            mask: radial-gradient(circle 16px at 0 100%, transparent 0 15.4px, #000 16px);
  }
  .island::after {
    right: -16px;
    -webkit-mask: radial-gradient(circle 16px at 100% 100%, transparent 0 15.4px, #000 16px);
            mask: radial-gradient(circle 16px at 100% 100%, transparent 0 15.4px, #000 16px);
  }
  .island--compact { padding: 0.55rem 0.9rem 0.55rem 1rem; }
  .island--open { padding-bottom: 0.4rem; }
  .island-cta { display: none; }
  .island-burger { display: flex; order: 2; }
  /* Menü wächst innerhalb der Notch statt als eigenes Panel aufzuploppen */
  .island-nav {
    order: 3; flex: 1 1 100%; flex-direction: column; align-items: stretch; column-gap: 0;
    max-height: 0; opacity: 0; overflow: hidden;
    transition: max-height 0.45s var(--ease-apple), opacity 0.3s, margin-top 0.45s var(--ease-apple);
  }
  .island--open .island-nav { max-height: 280px; opacity: 1; margin-top: 0.5rem; }
  .island-nav a {
    padding: 0.85rem 0.1rem; font-size: 1rem;
    border-top: 1px solid rgba(255,255,255,0.09);
  }
  .island-nav-contact { display: block; }
}

/* ===== DOCK ===== */
.dock {
  position: fixed; bottom: 18px; left: 0; right: 0; margin-inline: auto; width: fit-content;
  z-index: 100; display: flex; align-items: flex-end; gap: 12px;
  padding: 11px 14px; border-radius: 26px;
  background: var(--glass);
  backdrop-filter: blur(24px) saturate(180%); -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-edge);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.35);
  transition: gap 0.45s var(--ease-apple), padding 0.45s var(--ease-apple);
}
.dock:hover { gap: 24px; padding: 11px 22px; }   /* Dock weitet sich nur in die Breite */
.dock-item { position: relative; display: block; }
.dock-icon {
  display: grid; place-items: center; width: 52px; height: 52px;
  border-radius: 13px; color: #fff; transform-origin: bottom center; overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  transition: transform 0.35s var(--ease-apple);
}
.dock-item:hover .dock-icon { transform: translateY(-14px) scale(1.28); }  /* nur das gehoverte Icon */
.dock-item:active .dock-icon { transform: translateY(-8px) scale(1.18); }
.dock-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dock-icon--img { background: none; }   /* Icons bringen ihren Hintergrund selbst mit */
.dock-item::after {           /* App-Name über dem Icon, iOS-26-Style: Liquid-Glass-Chip */
  content: attr(data-label);
  position: absolute; bottom: calc(100% + 22px); left: 50%;
  transform: translateX(-50%) translateY(8px) scale(0.9);
  background: var(--glass); border: 1px solid var(--glass-edge); color: var(--text);
  backdrop-filter: blur(18px) saturate(180%); -webkit-backdrop-filter: blur(18px) saturate(180%);
  font-size: 0.78rem; font-weight: 600; white-space: nowrap;
  padding: 0.4rem 0.9rem; border-radius: var(--radius-pill);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.3s var(--ease-apple);
}
.dock-item:hover::after { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
@media (max-width: 768px) {
  .dock { bottom: calc(12px + env(safe-area-inset-bottom)); gap: 10px; padding: 9px 12px; }
  .dock-icon { width: 44px; height: 44px; border-radius: 11px; }
  .dock:hover { gap: 10px; padding: 9px 12px; }
  .dock-item:hover .dock-icon, .dock-item:active .dock-icon { transform: scale(0.94); }
  .dock-item::after { display: none; }
}

/* ===== HERO ===== */
/* Text sitzt im oberen Drittel (Himmel), damit das Motiv darunter frei bleibt */
.hero {
  min-height: 100svh; display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start; text-align: center;
  position: relative; overflow: hidden; padding: clamp(4.5rem, 9svh, 6rem) 1.5rem 6rem;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
/* Oben ein dezenter dunkler Schleier, damit der weisse Text ueber dem
   detailreichen Stadtmotiv lesbar bleibt; unten weiches Auslaufen zur Seitenfarbe. */
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,18,42,0.42) 0%, rgba(0,18,42,0.18) 34%, transparent 52%),
    linear-gradient(180deg, transparent 78%, var(--bg) 100%),
    rgba(0, 16, 38, 0.07);   /* gleichmaessiger, sehr leichter Schleier ueber das ganze Bild */
}
.hero-eyebrow {
  color: #fff; opacity: 0.85; font-weight: 600; letter-spacing: 0.02em; margin: 0 0 1rem;
  text-shadow: 0 2px 20px rgba(0,40,90,0.25);
}
.hero-title {
  color: #fff; text-shadow: 0 2px 24px rgba(0,40,90,0.35);
  font-size: clamp(3rem, 9.5vw, 7.2rem); font-weight: 700; letter-spacing: -0.03em;
}
.hero-title .line { display: inline-block; overflow: hidden; vertical-align: top; }
.hero-title .line-inner { display: inline-block; }
.hero-sub {
  color: rgba(255,255,255,0.92); text-shadow: 0 2px 24px rgba(0,40,90,0.4);
  font-size: clamp(1.05rem, 2vw, 1.35rem); max-width: 600px; margin: 1rem auto 0;
}
.hero-cta {
  display: inline-block; margin-top: 1.6rem; padding: 0.9rem 2rem;
  background: #fff; color: #1d1d1f; text-decoration: none; font-weight: 600;
  border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: transform 0.35s var(--ease-apple), box-shadow 0.35s;
}
.hero-cta:hover { transform: scale(1.05); box-shadow: 0 14px 40px rgba(0,0,0,0.3); }
.hero-scrollcue { display: none; position: absolute; bottom: 110px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.6); border-radius: 14px; opacity: 0.85; }
.hero-scrollcue span { display: block; width: 4px; height: 8px; background: #fff;
  border-radius: 2px; margin: 7px auto 0; animation: cue 1.8s infinite var(--ease-apple); }
@keyframes cue { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* ===== SCHWEBENDE APP-ICONS IM HERO =====
   Drei Ebenen, damit sich keine zwei Effekte um dieselbe transform-Eigenschaft streiten:
   <a> traegt den Scroll-Effekt (GSAP), das innere <span> das Schweben, das <img> den Hover. */
.hero-apps { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-app {
  position: absolute; top: var(--t); left: var(--l);
  width: clamp(58px, 5.4vw, 82px); pointer-events: auto;
  text-decoration: none; display: block; will-change: transform;
}
.hero-app-inner {
  display: block; transform: rotate(var(--rot));
  animation: schweben var(--dur) var(--ease-weich) var(--delay) infinite alternate;
  will-change: transform;
}
/* drop-shadow folgt der Icon-Silhouette; box-shadow legte sich um die volle
   Bildflaeche und erzeugte bei Icons mit transparentem Rand einen Rahmen. */
.hero-app img {
  width: 100%; height: auto; display: block;
  filter: drop-shadow(0 14px 26px rgba(0, 40, 90, 0.30));
  transition: transform 0.55s var(--ease-apple), filter 0.55s var(--ease-apple);
}
.hero-app:hover img { transform: scale(1.14) translateY(-5px); filter: drop-shadow(0 24px 40px rgba(0, 40, 90, 0.38)); }
.hero-app:active img { transform: scale(1.05) translateY(-2px); }
.hero-app-label {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(6px);
  background: rgba(255,255,255,0.72); border: 1px solid rgba(255,255,255,0.85);
  backdrop-filter: blur(16px) saturate(180%); -webkit-backdrop-filter: blur(16px) saturate(180%);
  color: #1d1d1f; font-size: 0.75rem; font-weight: 600; white-space: nowrap;
  padding: 0.3rem 0.75rem; border-radius: var(--radius-pill);
  box-shadow: 0 6px 18px rgba(0,40,90,0.18);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease-apple), transform 0.35s var(--ease-apple);
}
.hero-app:hover .hero-app-label { opacity: 1; transform: translateX(-50%) translateY(0); }
/* Sanfte Sinus-Kurve statt der schnellen Apple-Kurve: die ist fuer einmalige
   Bewegungen gedacht und wirkt in einer Endlosschleife abgehackt. */
@keyframes schweben {
  from { transform: rotate(var(--rot)) translate3d(-3px, -7px, 0); }
  to   { transform: rotate(calc(var(--rot) * 0.4)) translate3d(3px, 7px, 0); }
}
.app--webbliwerk { --l: 14%; --t: 20%; --rot: -8deg;  --dur: 9s;  --delay: 0s; }
.app--innoo      { --l: 78%; --t: 22%; --rot: 9deg;   --dur: 11s; --delay: -2.4s; }
.app--charismari { --l: 8%;  --t: 56%; --rot: -12deg; --dur: 12s; --delay: -5s; }
.app--litecard   { --l: 83%; --t: 62%; --rot: 7deg;   --dur: 10s; --delay: -1.2s; }

@media (max-width: 768px) {
  .hero-app { width: 54px; }
  .app--webbliwerk { --l: 7%;  --t: 55%; }
  .app--innoo      { --l: 73%; --t: 52%; }
  .app--charismari { --l: 17%; --t: 73%; }
  .app--litecard   { --l: 63%; --t: 75%; }
  .hero-app-label { display: none; }
  .hero-app:hover img { transform: none; }
  .hero-app:active img { transform: scale(0.92); }
}

/* ===== BENTO ===== */
.bento { display: grid; gap: 18px; margin-top: 3rem; }
.bento-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.5s var(--ease-apple), box-shadow 0.5s, background var(--dur);
}
.bento-card:hover { transform: translateY(-6px); }
/* ===== ÜBER MICH ===== */
.about-grid {
  display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center; margin-top: 3.5rem;
}
.about-photo {
  margin: 0; border-radius: var(--radius-card); overflow: hidden;
  box-shadow: var(--shadow-card); background: var(--surface);
}
/* height:auto — das Bild wird vollständig gezeigt, nichts wird angeschnitten */
.about-photo img { width: 100%; height: auto; display: block; }
.about-lead {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 600; letter-spacing: -0.02em;
  line-height: 1.2; margin: 0 0 1.5rem;
}
.about-text p + p { color: var(--text-soft); margin: 0 0 1.1rem; font-size: 1.05rem; }
.about-text p:last-child { margin-bottom: 0; }
/* Kennzahlen als breite Leiste — groß, luftig, mit feinen Trennlinien */
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(3rem, 6vw, 5rem);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-card); box-shadow: var(--shadow-card);
  padding: clamp(2.2rem, 4vw, 3.5rem) 1rem;
}
.stat { text-align: center; padding: 0.5rem 1rem; }
.stat + .stat { border-left: 1px solid var(--border); }
.stat-num {
  display: block; font-size: clamp(2.8rem, 6vw, 4.5rem); font-weight: 700;
  letter-spacing: -0.04em; line-height: 1; color: var(--accent);
}
.stat-label {
  display: block; margin-top: 0.7rem; color: var(--text-soft);
  font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
}
.about-quote {
  margin: clamp(3.5rem, 7vw, 6rem) auto 0; max-width: 900px; text-align: center;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem); font-weight: 600; letter-spacing: -0.02em;
  line-height: 1.25;
}
.about-quote cite { display: block; margin-top: 1.2rem; font-style: normal; font-size: 0.95rem; font-weight: 500; color: var(--text-soft); }
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 420px; }
  .stats { grid-template-columns: 1fr; gap: 2rem; }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--border); padding-top: 2rem; }
}

/* ===== UNTERNEHMEN (horizontaler Scroll) ===== */
.companies { padding: 3rem 0 2rem; overflow: hidden; }
.companies-head { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; width: 100%; }
.companies-sub { color: var(--text-soft); max-width: 560px; margin: 1rem 0 0; }
/* Beim Pinnen füllt die Sektion den Viewport; Inhalt sitzt zentriert zwischen Notch und Dock */
.companies-pin {
  position: relative; height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 68px 0 88px;
}
.companies-track { display: flex; gap: 28px; padding: 1.2rem 8vw; width: max-content; align-items: stretch; }
.company-panel {
  position: relative; width: min(720px, 74vw);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-card); box-shadow: var(--shadow-card);
  overflow: hidden; display: flex; flex-direction: column;
  transition: background var(--dur);
}
.company-media { aspect-ratio: 16 / 9; max-height: 42svh; overflow: hidden; }
.company-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s var(--ease-apple); }
.company-panel:hover .company-media img { transform: scale(1.04); }
.company-body { position: relative; padding: 1.8rem 2rem 2rem; }
.company-body p { color: var(--text-soft); margin: 0.6rem 0 1.2rem; max-width: 520px; }
.company-index {
  position: absolute; right: 1.4rem; top: 0.4rem;
  font-size: 4.2rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1;
  color: var(--text); opacity: 0.06; user-select: none;
}
.company-badge {
  position: absolute; top: 16px; right: 16px; z-index: 1;
  background: var(--island-bg); color: #fff; font-size: 0.78rem; font-weight: 600;
  padding: 0.35rem 0.8rem; border-radius: var(--radius-pill);
}
.company-link { color: var(--accent); text-decoration: none; font-weight: 600; }
.companies-progress {
  display: none; height: 3px; max-width: 220px; margin: 1.5rem auto 0;
  background: var(--border); border-radius: 2px; overflow: hidden;
}
.companies-progress span {
  display: block; height: 100%; width: 100%; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
}
@media (min-width: 900px) { .companies-progress { display: block; } }
/* Mobile: Karten stapeln sich beim Runterscrollen übereinander (sticky stacking) */
@media (max-width: 899px) {
  .companies { padding: 5rem 0 3rem; overflow: visible; }   /* overflow visible: sonst greift sticky nicht */
  .companies-pin { min-height: 0; height: auto; display: block; padding: 0; }
  .companies-track {
    display: block; width: auto; padding: 1.5rem 1.25rem 0; overflow: visible;
  }
  .company-panel {
    width: 100%; position: sticky; top: 84px;
    margin-bottom: 26px; transform-origin: center top;
  }
  .company-panel:last-child { margin-bottom: 0; }
  .company-media { max-height: 32svh; }
  .companies-progress { display: none; }
}

/* ===== FEATURED ===== */
.bento--featured { grid-template-columns: 1fr; }
.featured-card { display: flex; padding: 0; overflow: hidden; align-items: stretch; }
/* 1:1-Ausschnitt: hält die Karte kompakt, statt das Hochformat voll auszuspielen */
.featured-media { flex: 0 0 42%; aspect-ratio: 1 / 1; align-self: center; overflow: hidden; }
.featured-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s var(--ease-apple); }
.featured-card:hover .featured-media img { transform: scale(1.04); }
.featured-body { padding: 2.2rem 2.4rem; align-self: center; }
.featured-source {
  display: inline-block; font-family: Georgia, "Times New Roman", serif;
  font-weight: 700; font-size: 1.05rem; letter-spacing: 0.01em; color: #0f6e46;
  border-bottom: 2px solid #0f6e46; padding-bottom: 0.25rem;
}
.featured-kicker { display: block; margin-top: 0.7rem; color: var(--text-soft); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.featured-body h3 { margin: 0.5rem 0; font-size: 1.6rem; font-family: Georgia, "Times New Roman", serif; }
.featured-body p { color: var(--text-soft); margin: 0 0 1.2rem; }
.featured-link { color: var(--accent); text-decoration: none; font-weight: 600; }
@media (max-width: 900px) {
  .featured-card { flex-direction: column; }
  .featured-media { flex: none; aspect-ratio: 1 / 1; align-self: stretch; }
}

/* ===== FAQ ===== */
.faq {
  margin-top: 3rem; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-card); box-shadow: var(--shadow-card); overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 0; }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 1.4rem 1.8rem;
  font-size: 1.1rem; font-weight: 600; display: flex; align-items: center; gap: 1rem;
  transition: background 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; margin-left: auto; font-size: 1.5rem; font-weight: 400; color: var(--text-soft);
  transition: transform 0.35s var(--ease-apple);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { background: var(--bg); }
.faq-item p { margin: 0; padding: 0 1.8rem 1.6rem; color: var(--text-soft); max-width: 70ch; }
.faq-item a { color: var(--accent); text-decoration: none; }
.faq-item a:hover { text-decoration: underline; }
@media (max-width: 600px) {
  .faq-item summary { padding: 1.2rem 1.2rem; font-size: 1rem; }
  .faq-item p { padding: 0 1.2rem 1.3rem; }
}

/* ===== KONTAKT ===== */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.15fr; gap: 3.5rem; align-items: center; margin-top: 3rem; }
.contact-text p { color: var(--text-soft); max-width: 460px; margin: 1rem 0 0; }
.contact-chips { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.8rem; }
.chip {
  display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.55rem 1.05rem;
  border-radius: 14px; border: 1px solid var(--border);
  background: var(--surface); color: var(--text); text-decoration: none; font-size: 0.92rem; font-weight: 500;
  transition: transform 0.3s var(--ease-apple), box-shadow 0.3s;
}
.chip img { width: 18px; height: 18px; border-radius: 4px; display: block; }
.chip:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.contact-eyebrow { color: var(--accent); font-weight: 600; margin: 0 0 0.6rem; }
.contact-hint { font-size: 0.85rem; color: var(--text-soft); margin: 1rem 0 0; }
.contact-form {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-card); box-shadow: var(--shadow-card);
  padding: 2.4rem; display: flex; flex-direction: column; gap: 1rem;
}
.contact-form::before {
  content: ''; position: absolute; left: -20%; right: -20%; top: -45%; height: 75%;
  background: radial-gradient(50% 60% at 50% 30%, rgba(10,132,255,0.10), transparent 70%);
  pointer-events: none;
}
.field { position: relative; }
.field input, .field textarea {
  width: 100%; padding: 1.3rem 1.1rem 0.55rem; border-radius: 14px;
  border: 1px solid var(--border); background: var(--bg); color: var(--text);
  font: inherit; outline: none; resize: vertical;
  transition: border-color 0.3s, box-shadow 0.3s, background var(--dur);
}
.field label {
  position: absolute; left: 1.1rem; top: 0.95rem; color: var(--text-soft);
  pointer-events: none; font-size: 1rem;
  transition: top 0.25s var(--ease-apple), font-size 0.25s var(--ease-apple), color 0.25s;
}
.field input:focus, .field textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 4px rgba(10,132,255,0.12);
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  top: 0.4rem; font-size: 0.72rem; color: var(--accent);
}
/* Gleiche Form wie der Kontakt-Button in der Notch: 12px-Ecken, kompakt.
   Dunkel statt weiß, weil die Karte selbst weiß ist. */
.contact-submit {
  margin-top: 0.4rem; padding: 0.95rem 2rem; border: 0; cursor: pointer;
  background: var(--island-bg); color: #fff;
  font: inherit; font-weight: 600; border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  transition: transform 0.35s var(--ease-apple), box-shadow 0.35s, opacity 0.3s;
}
.contact-submit:hover:not(:disabled) { transform: scale(1.03); box-shadow: 0 14px 40px rgba(0,0,0,0.28); }
.contact-submit:disabled { opacity: 0.7; cursor: default; }
.form-status { margin: 0.2rem 0 0; font-size: 0.95rem; display: none; }
.form-status--ok { display: block; color: #1faa55; }
.form-status--err { display: block; color: #e0342c; }
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ===== FOOTER ===== */
.footer {
  background: var(--island-bg); color: #a1a1a6;
  padding: 5rem 1.5rem 0; overflow: hidden; margin-top: 5rem;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto; display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem;
}
.footer-logo { color: #fff; font-weight: 700; font-size: 1.15rem; }
.footer-brand p { margin: 0.9rem 0 0; font-size: 0.95rem; max-width: 320px; }
.footer-copy { font-size: 0.85rem; color: #6e6e73; }
.footer-col h4 { color: #fff; font-size: 0.95rem; margin: 0 0 1rem; font-weight: 600; }
.footer-col a { display: block; color: #a1a1a6; text-decoration: none; margin-bottom: 0.7rem; font-size: 0.95rem; transition: color 0.3s; }
.footer-col a:hover { color: #fff; }
.footer-giant {
  font-size: clamp(5.5rem, 21vw, 21rem); font-weight: 800; letter-spacing: -0.04em;
  line-height: 0.9; text-align: center; color: rgba(255, 255, 255, 0.05);
  user-select: none; white-space: nowrap; margin: 1rem -2rem -0.05em;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  /* Schriftzug größer und über das Dock heben, damit er nicht verdeckt wird */
  .footer { padding-bottom: 6.5rem; }
  .footer-giant {
    /* passt komplett in die Bildschirmbreite, mit etwas Luft an den Seiten */
    font-size: 22vw; color: rgba(255, 255, 255, 0.1);
    line-height: 1.15; margin: 2rem 0 0; letter-spacing: -0.03em;
  }
}

/* ===== LEGAL ===== */
.legal { max-width: 760px; padding-top: 9rem; }
.legal h1 { font-size: clamp(2.2rem, 5vw, 3rem); margin-bottom: 2rem; }
.legal h2 { font-size: 1.3rem; margin-top: 2.2rem; }
.legal p { color: var(--text-soft); }
.footer--simple { text-align: center; font-size: 0.9rem; padding: 3rem 1.5rem 9rem; margin-top: 0; background: transparent; color: var(--text-soft); }
.footer--simple a { color: var(--text-soft); text-decoration: none; margin: 0 0.5rem; }
.footer--simple a:hover { color: var(--text); }
