/* ==========================================================================
   aarecom AG – Design System v3 «Enterprise»
   Hochwertig, hell, präzise – für Kunden wie Swisscom & Sunrise
   ========================================================================== */

:root {
  /* Markenfarben (aus dem Logo-Verlauf) */
  --violet: #7C3AED;
  --blue: #1D5DDB;
  --cyan: #0EA5E9;
  --grad-brand: linear-gradient(92deg, #8B5CF6 0%, #2563EB 55%, #0EA5E9 100%);

  /* Oberflächen & Text */
  --bg: #FBFCFE;
  --surface: #FFFFFF;
  --surface-soft: #F3F6FB;
  --ink: #0A1426;
  --ink-soft: #44526B;
  --ink-faint: #6E7C93;
  --hairline: rgba(10, 20, 38, .08);
  --hairline-strong: rgba(10, 20, 38, .15);

  /* Dunkle Sektionen */
  --night: #081021;
  --night-2: #0C1834;
  --night-ink: #E8EDF7;
  --night-soft: #9AA9C4;
  --night-hairline: rgba(232, 237, 247, .11);

  /* Aktion */
  --cta: #1D4ED8;
  --cta-hover: #16389F;

  /* Typografie */
  --font-display: 'Hanken Grotesk', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 24px;
  --shadow-s: 0 1px 2px rgba(10, 20, 38, .04), 0 6px 20px rgba(10, 20, 38, .05);
  --shadow-m: 0 2px 6px rgba(10, 20, 38, .05), 0 22px 60px rgba(10, 20, 38, .1);
  --shadow-glow: 0 10px 32px rgba(29, 78, 216, .28);

  --s-1: 8px; --s-2: 16px; --s-3: 24px; --s-4: 32px;
  --s-6: 48px; --s-8: 64px; --s-12: 96px; --s-16: 140px;

  --container: 1240px;
  --header-h: 84px;
}

/* ---------- Reset & Basis ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--cta-hover); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: rgba(37, 99, 235, .15); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -.022em;
  font-weight: 700;
  color: var(--ink);
}

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

/* Akzent nur im Hero – sparsam eingesetzt */
.grad-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.accent { color: var(--blue); }

/* ---------- Eyebrow: dezentes Premium-Label ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
}

.section { padding: var(--s-12) 0; position: relative; }
.section-head { max-width: 780px; margin-bottom: var(--s-8); }
.section-head h2 { font-size: clamp(32px, 4.2vw, 50px); margin: 16px 0 18px; }
.section-head p { color: var(--ink-soft); font-size: 17.5px; max-width: 640px; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.centered p { margin-left: auto; margin-right: auto; }

.lead { color: var(--ink-soft); font-size: 17.5px; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  min-height: 50px;
  transition: transform .22s cubic-bezier(.2,.65,.3,1), box-shadow .22s ease, background-color .22s ease, border-color .22s ease, color .22s ease;
}
.btn:active { transform: scale(.97); }
.btn i, .btn svg { width: 18px; height: 18px; transition: transform .22s ease; }
.btn:hover i[data-lucide="arrow-right"], .btn:hover svg.lucide-arrow-right { transform: translateX(4px); }

.btn-primary {
  background: var(--cta);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { background: var(--cta-hover); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 40px rgba(29, 78, 216, .35); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--hairline-strong);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

.btn-micro { display: block; margin-top: 12px; font-size: 13.5px; color: var(--ink-faint); }

/* Text-Link mit Pfeil */
.link-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--blue);
}
.link-more i, .link-more svg { width: 18px; height: 18px; transition: transform .22s ease; }
.link-more:hover i, .link-more:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(251, 252, 254, .82);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background-color .25s ease;
}
.site-header.scrolled { border-bottom-color: var(--hairline); background: rgba(255, 255, 255, .9); }

.scroll-progress {
  position: absolute;
  left: 0; bottom: -1px;
  height: 2px;
  width: 0;
  background: var(--grad-brand);
}

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s-3); height: var(--header-h); }
.header-logo img { width: 172px; height: auto; }

.main-nav ul { display: flex; gap: 2px; }
.main-nav a {
  position: relative;
  display: block;
  padding: 10px 15px;
  font-weight: 500;
  font-size: 15.5px;
  color: var(--ink);
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 15px; right: 15px; bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s cubic-bezier(.2,.65,.3,1);
}
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { font-weight: 600; }
.nav-cta-mobile { display: none; }

.header-actions { display: flex; align-items: center; gap: var(--s-2); }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 15px; font-weight: 600;
  color: var(--ink);
}
.header-phone i, .header-phone svg { width: 16px; height: 16px; color: var(--blue); }
.header-phone:hover { color: var(--blue); }
.btn-header { padding: 12px 24px; min-height: 44px; font-size: 15px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px; height: 48px;
  background: none;
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-s);
}
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 0 auto; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (Startseite) ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 80px) 0 var(--s-12);
  overflow: hidden;
}
.hero .container { min-width: 0; position: relative; }
.hero-copy { min-width: 0; position: relative; z-index: 2; }

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(720px 460px at 10% 0%, rgba(124, 58, 237, .05), transparent 65%),
    radial-gradient(820px 520px at 92% 24%, rgba(14, 165, 233, .07), transparent 65%),
    linear-gradient(180deg, #FFFFFF 0%, var(--bg) 100%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--hairline) 1px, transparent 1px),
    linear-gradient(90deg, var(--hairline) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: .4;
  mask-image: radial-gradient(1000px 640px at 62% 16%, #000 25%, transparent 72%);
  -webkit-mask-image: radial-gradient(1000px 640px at 62% 16%, #000 25%, transparent 72%);
}

.hero-strands {
  position: absolute;
  inset: auto 0 0 0;
  width: 100%;
  height: 72%;
  z-index: 1;
  pointer-events: none;
}
.strand-lines path { stroke-width: 1.6; opacity: 0; stroke-linecap: round; }

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: var(--s-8);
  align-items: center;
}

.hero h1 {
  font-size: clamp(42px, 5.6vw, 72px);
  font-weight: 800;
  margin: 20px 0 24px;
}
.hero-sub {
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: var(--s-4);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--s-2); align-items: center; }

/* Fakten-Zeile: ruhig, hochwertig – fixe 3 Spalten, bricht nie unschön um */
.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  margin-top: var(--s-6);
}
.hero-fact {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-right: var(--s-3);
}
.hero-fact + .hero-fact { padding-left: var(--s-3); border-left: 1px solid var(--hairline-strong); }
.hero-fact:last-child { padding-right: 0; }
.hero-fact strong {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.hero-fact span {
  font-size: 13px;
  line-height: 1.3;
  color: var(--ink-faint);
  max-width: 92px;
}

/* Schweiz-Karte */
.hero-map { position: relative; min-width: 0; z-index: 2; }
.swiss-map { width: 100%; height: auto; overflow: visible; }
.sm-label {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .1em;
  fill: var(--ink-faint);
}
.sm-node-hq .sm-label { fill: var(--violet); font-weight: 700; }

.hero-map-caption {
  position: absolute;
  left: 50%; bottom: -10px;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  white-space: nowrap;
}
.hero-map-caption .dot-live { width: 8px; height: 8px; border-radius: 50%; background: #22C55E; }

/* ---------- Page-Hero (Unterseiten) ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 76px) 0 var(--s-8);
  overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg) 100%);
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--hairline) 1px, transparent 1px),
    linear-gradient(90deg, var(--hairline) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: .35;
  mask-image: radial-gradient(900px 480px at 70% 0%, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(900px 480px at 70% 0%, #000 20%, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(38px, 5vw, 60px); font-weight: 800; margin: 18px 0 18px; max-width: 800px; }
.page-hero .lead { max-width: 640px; font-size: 18px; }

/* ---------- Schweizweit-Band ---------- */
.band-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: var(--s-8);
  align-items: center;
}
.band-grid h2 { font-size: clamp(30px, 3.8vw, 44px); margin: 16px 0 16px; }
.band-map { min-width: 0; }
.band-map .swiss-map { width: 100%; height: auto; }
.band-facts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-4);
  margin: var(--s-4) 0;
}
.band-fact { display: flex; align-items: center; gap: 11px; }
.band-fact + .band-fact { padding-left: var(--s-4); border-left: 1px solid var(--hairline-strong); }
.band-fact strong {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.band-fact span { font-size: 13px; line-height: 1.3; color: var(--ink-faint); max-width: 96px; }

.partner-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-3) var(--s-6);
  margin-top: var(--s-8);
  padding-top: var(--s-4);
  border-top: 1px solid var(--hairline);
}
.partner-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-right: var(--s-2);
}
.partner-row img {
  height: 26px; width: auto;
  filter: grayscale(1) opacity(.5);
  transition: filter .25s ease;
}
.partner-row img:hover { filter: grayscale(0) opacity(1); }

/* ---------- Leistungs-Karten ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-2);
}
.service-card {
  --mx: 50%;
  --my: 50%;
  position: relative;
  display: block;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-m);
  padding: var(--s-4);
  transition: transform .28s cubic-bezier(.2,.65,.3,1), box-shadow .28s ease, border-color .28s ease;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(360px circle at var(--mx) var(--my), rgba(29, 78, 216, .06), transparent 65%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-m); border-color: var(--hairline-strong); }
.service-card:hover::before { opacity: 1; }

a.service-card { color: inherit; }
a.service-card:hover h3 { color: var(--blue); }

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--surface-soft);
  border: 1px solid var(--hairline);
  margin-bottom: var(--s-3);
}
.service-icon i, .service-icon svg { width: 24px; height: 24px; color: var(--blue); }
.service-card h3 { font-size: 19px; margin-bottom: 10px; transition: color .2s ease; }
.service-card p { font-size: 14.5px; color: var(--ink-soft); }

.service-card-feature {
  grid-column: span 2;
  background:
    radial-gradient(460px 260px at 92% 110%, rgba(14, 165, 233, .07), transparent 70%),
    radial-gradient(400px 240px at 0% -10%, rgba(124, 58, 237, .05), transparent 70%),
    var(--surface);
}
.service-card-feature h3 { font-size: 24px; }
.service-card-feature p { font-size: 15.5px; max-width: 560px; }

.service-card-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: var(--s-2);
  background: linear-gradient(150deg, var(--night) 20%, var(--night-2) 100%);
  border-color: var(--night);
}
.service-card-cta::before {
  background: radial-gradient(360px circle at var(--mx) var(--my), rgba(96, 165, 250, .14), transparent 65%);
  opacity: 1;
}
.service-card-cta h3 { color: #fff; font-size: 22px; position: relative; }
.service-card-cta p { color: var(--night-soft); position: relative; }
.service-card-cta .btn { position: relative; }

/* Detail-Liste auf der Dienstleistungs-Seite */
.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: var(--s-6);
  padding: var(--s-6) 0;
  border-top: 1px solid var(--hairline);
}
.service-detail:last-of-type { border-bottom: 1px solid var(--hairline); }
.service-detail-head { display: flex; align-items: flex-start; gap: var(--s-2); }
.service-detail h3 { font-size: 24px; }
.service-detail p { color: var(--ink-soft); font-size: 16px; max-width: 680px; }

/* ---------- Technologie (dunkel) ---------- */
.tech {
  background:
    radial-gradient(900px 500px at 85% 0%, rgba(37, 99, 235, .15), transparent 65%),
    radial-gradient(700px 420px at 0% 100%, rgba(124, 58, 237, .12), transparent 65%),
    linear-gradient(165deg, var(--night) 0%, var(--night-2) 100%);
  color: var(--night-ink);
}
.tech .eyebrow { color: #7DA7F5; }
.tech h2 { color: #fff; font-size: clamp(32px, 4.2vw, 50px); margin: 16px 0 18px; }
.tech .lead { color: var(--night-soft); max-width: 520px; }

.tech-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--s-8);
  align-items: center;
}
.tech-media { position: relative; }
.tech-media-main {
  border-radius: var(--radius-l);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .45);
  border: 1px solid var(--night-hairline);
}
.tech-media-badge {
  position: absolute;
  right: -20px; bottom: -26px;
  width: min(45%, 230px);
  border-radius: var(--radius-m);
  border: 1px solid var(--night-hairline);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .5);
}

.tech-list { display: grid; gap: 0; margin-top: var(--s-4); }
.tech-item {
  display: flex; gap: var(--s-2); align-items: flex-start;
  padding: 20px 0;
  border-top: 1px solid var(--night-hairline);
}
.tech-item:last-child { border-bottom: 1px solid var(--night-hairline); }
.tech-item i, .tech-item svg { width: 21px; height: 21px; color: var(--cyan); flex-shrink: 0; margin-top: 3px; }
.tech-item strong { display: block; font-family: var(--font-display); font-size: 17px; color: #fff; }
.tech-item span { font-size: 14.5px; color: var(--night-soft); }

/* ---------- Werte ---------- */
.values-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
.value-cell {
  position: relative;
  padding: var(--s-4) var(--s-3);
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--surface);
  transition: background-color .3s ease;
  min-height: 225px;
  display: flex;
  flex-direction: column;
}
.value-cell:hover { background: var(--surface-soft); }
.value-cell .value-letter {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: var(--blue);
  transition: color .3s ease;
}
.value-cell:hover .value-letter { color: var(--violet); }
.value-cell h3 { font-size: 15px; margin: auto 0 6px; padding-top: var(--s-3); }
.value-cell p { font-size: 12.5px; line-height: 1.5; color: var(--ink-faint); }

/* ---------- Stats-Band ---------- */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-2);
}
.stat-cell {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-m);
  padding: var(--s-4);
  text-align: center;
}
.stat-cell strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(34px, 3.6vw, 46px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
}
.stat-cell span { font-size: 14.5px; color: var(--ink-faint); }

/* ---------- Ablauf ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-2);
}
.process-step {
  position: relative;
  padding: var(--s-4) var(--s-3);
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-m);
}
.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface-soft);
  border: 1px solid var(--hairline);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: var(--s-2);
}
.process-step h3 { font-size: 19px; margin: 4px 0 8px; }
.process-step p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- Über uns / Split-Sektionen ---------- */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--s-8);
  align-items: center;
}
.about-grid h2 { font-size: clamp(32px, 4.2vw, 50px); margin: 16px 0 18px; }
.about-media-wrap { position: relative; }
.about-media { border-radius: var(--radius-l); box-shadow: var(--shadow-m); }
.about-media-tag {
  position: absolute;
  left: var(--s-3); bottom: var(--s-3);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: rgba(8, 16, 33, .55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  padding: 8px 16px;
}
.about-points { display: grid; gap: 0; margin: var(--s-4) 0; }
.about-point {
  display: flex; align-items: center; gap: 12px;
  font-weight: 500; font-size: 15.5px;
  padding: 16px 0;
  border-top: 1px solid var(--hairline);
}
.about-point:last-child { border-bottom: 1px solid var(--hairline); }
.about-point i, .about-point svg { width: 19px; height: 19px; color: var(--blue); flex-shrink: 0; }

/* ---------- Team ---------- */
.team-collage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-2);
}
.team-tile {
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
}
.team-tile img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3.1; transition: transform .5s cubic-bezier(.2,.65,.3,1); }
.team-tile:hover img { transform: scale(1.04); }
.team-tile figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 44px 20px 16px;
  background: linear-gradient(transparent, rgba(8, 16, 33, .82));
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
}

/* Team-Seite: Personen */
.person-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
}
.person-card {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.person-card img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; }
.person-body { padding: var(--s-4); display: flex; flex-direction: column; justify-content: center; }
.person-body .role {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}
.person-body h3 { font-size: 22px; margin-bottom: 10px; }
.person-body p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 860px; margin: 0 auto; border-top: 1px solid var(--hairline); }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-item summary {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: 26px 8px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: color .2s ease;
}
.faq-item summary:hover { color: var(--blue); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-icon {
  margin-left: auto;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--hairline-strong);
}
.faq-item summary i, .faq-item summary svg { width: 17px; height: 17px; color: var(--blue); transition: transform .28s cubic-bezier(.2,.65,.3,1); }
.faq-item[open] summary i, .faq-item[open] summary svg { transform: rotate(45deg); }
.faq-item p { padding: 0 60px 26px 8px; color: var(--ink-soft); font-size: 15.5px; max-width: 760px; }

/* ---------- Finaler CTA ---------- */
.final-cta { padding: var(--s-8) 0 var(--s-12); }
.final-cta-box {
  position: relative;
  background:
    radial-gradient(560px 280px at 14% 0%, rgba(124, 58, 237, .3), transparent 70%),
    radial-gradient(620px 320px at 88% 100%, rgba(14, 165, 233, .26), transparent 70%),
    linear-gradient(150deg, var(--night) 10%, var(--night-2) 100%);
  border-radius: var(--radius-l);
  padding: var(--s-12) var(--s-6);
  text-align: center;
  overflow: hidden;
}
.final-cta-box::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--night-hairline) 1px, transparent 1px),
    linear-gradient(90deg, var(--night-hairline) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: .3;
  mask-image: radial-gradient(640px 360px at 50% 50%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(640px 360px at 50% 50%, #000 20%, transparent 75%);
}
.final-cta-box > * { position: relative; z-index: 1; }
.final-cta-box .eyebrow { color: #7DA7F5; }
.final-cta-box h2 { color: #fff; font-size: clamp(30px, 4vw, 46px); margin: 14px 0 16px; }
.final-cta-box p { color: var(--night-soft); max-width: 560px; margin: 0 auto var(--s-4); }
.final-cta-box .btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .3); }
.final-cta-box .btn-ghost:hover { border-color: #fff; color: #fff; }

/* ---------- Kontakt ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: var(--s-8);
  align-items: start;
}
.contact-grid h2 { font-size: clamp(30px, 4vw, 44px); margin: 16px 0 16px; }
.contact-info-list { display: grid; margin-top: var(--s-4); }
.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0;
  border-top: 1px solid var(--hairline);
}
.contact-info-item:last-child { border-bottom: 1px solid var(--hairline); }
.contact-info-item .ci-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--surface-soft);
  border: 1px solid var(--hairline);
  flex-shrink: 0;
}
.contact-info-item i, .contact-info-item svg { width: 20px; height: 20px; color: var(--blue); }
.contact-info-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 3px;
}
.contact-info-item a, .contact-info-item span { font-size: 15.5px; color: var(--ink); font-weight: 500; }
.contact-info-item a:hover { color: var(--blue); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-l);
  padding: var(--s-6);
  box-shadow: var(--shadow-s);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-2); }
.form-group { margin-bottom: var(--s-2); }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}
.form-group label .req { color: var(--cta); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  min-height: 50px;
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-s);
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.form-group textarea { min-height: 132px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: var(--surface);
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, .12);
}
.form-group .field-error { display: none; font-size: 13px; color: #DC2626; margin-top: 5px; }
.form-group.has-error input, .form-group.has-error textarea { border-color: #DC2626; }
.form-group.has-error .field-error { display: block; }
.form-alert {
  display: none;
  padding: 14px 18px;
  margin-bottom: var(--s-2);
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: var(--radius-s);
  color: #B91C1C;
  font-size: 14.5px;
}
.form-alert.visible { display: block; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background: var(--night);
  color: var(--night-soft);
  padding: var(--s-12) 0 var(--s-3);
  overflow: hidden;
}
.footer-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(560px 280px at 8% 0%, rgba(124, 58, 237, .14), transparent 70%),
    radial-gradient(620px 320px at 92% 100%, rgba(14, 165, 233, .09), transparent 70%);
  pointer-events: none;
}
.site-footer .container { position: relative; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--s-6);
  padding-bottom: var(--s-6);
  border-bottom: 1px solid var(--night-hairline);
}
.footer-brand img { width: 165px; margin-bottom: var(--s-2); }
.footer-brand p { font-size: 14.5px; }
.footer-social { display: flex; gap: 10px; margin-top: var(--s-3); }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(154, 169, 196, .1);
  border: 1px solid var(--night-hairline);
  color: #C7D3E8;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.footer-social a:hover { background: var(--cta); color: #fff; transform: translateY(-2px); }
.footer-social svg { width: 19px; height: 19px; }

.footer-col h3 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: var(--s-3);
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: var(--night-soft); font-size: 14.5px; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; }
.footer-contact i, .footer-contact svg { width: 16px; height: 16px; color: var(--cyan); flex-shrink: 0; margin-top: 4px; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s-2);
  padding-top: var(--s-3);
  font-size: 13.5px;
}
.footer-bottom a { color: var(--night-soft); }
.footer-bottom a:hover { color: #fff; }

/* ---------- Sticky CTA (mobil) ---------- */
.sticky-cta {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 90;
  display: none;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--hairline);
}
.sticky-cta .btn { flex: 1; padding: 12px 10px; font-size: 15px; }

/* ---------- Consent-Banner ---------- */
.consent-banner {
  position: fixed;
  z-index: 200;
  inset: auto 16px 16px 16px;
  max-width: 520px;
  margin-left: auto;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-m);
  padding: var(--s-3);
}
.consent-banner h2 { font-size: 17px; margin-bottom: 8px; }
.consent-banner p { font-size: 13.5px; color: var(--ink-soft); }
.consent-actions { display: flex; gap: 10px; margin-top: var(--s-2); }
.consent-actions .btn { flex: 1; padding: 11px 16px; min-height: 44px; font-size: 14.5px; }

/* ---------- Utility ---------- */
.skip-link {
  position: absolute;
  left: -9999px; top: 0;
  z-index: 300;
  padding: 12px 20px;
  background: var(--ink);
  color: #fff;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }
