/* ============================================================
   Kreutzer Bau – Handgeschriebenes CSS (kein Framework)
   Farben: Königsblau + Baugelb + Anthrazit
   ============================================================ */

:root {
  --blue-50: #eef4ff;
  --blue-100: #dfe9fd;
  --blue-200: #c5d7fb;
  --blue-500: #5c7ce9;
  --blue-600: #3f5fd8;
  --blue-700: #2f4bbf;
  --blue-800: #2a3f9a;
  --yellow-400: #fbbf24;
  --yellow-500: #f59e0b;
  --yellow-600: #d97706;
  --ink-950: #10151b;
  --ink-900: #171d24;
  --ink-800: #232a33;
  --text: #33404e;
  --text-light: #5b6876;
  --white: #ffffff;
  --radius: 14px;
  --shadow-md: 0 6px 18px rgba(16, 21, 27, 0.08);
  --shadow-lg: 0 18px 45px rgba(16, 21, 27, 0.16);
  --font-display: "Archivo", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-900);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 12px; font-weight: 700; font-size: 15px;
  cursor: pointer; border: none; transition: all 0.2s ease; line-height: 1.2;
}
.btn-primary { background: var(--blue-600); color: #fff; box-shadow: 0 10px 24px rgba(63, 95, 216, 0.35); }
.btn-primary:hover { background: var(--blue-700); transform: translateY(-1px); }
.btn-ghost { background: rgba(255, 255, 255, 0.12); color: #fff; border: 1px solid rgba(255, 255, 255, 0.3); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.22); }
.btn-outline { background: transparent; border: 2px solid var(--blue-600); color: var(--blue-700); }
.btn-outline:hover { background: var(--blue-600); color: #fff; }
.btn-yellow { background: var(--yellow-500); color: var(--ink-950); box-shadow: 0 10px 24px rgba(245, 158, 11, 0.35); }
.btn-yellow:hover { background: var(--yellow-400); }
.btn-white { background: #fff; color: var(--blue-700); box-shadow: var(--shadow-lg); }
.btn-white:hover { background: var(--blue-50); }

/* ---------- Header ---------- */
.topbar { background: var(--ink-950); color: rgba(255, 255, 255, 0.85); font-size: 12.5px; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; height: 38px; }
.topbar a { display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: #fff; }
.topbar .tb-group { display: flex; gap: 22px; align-items: center; }
.topbar .icon { color: var(--yellow-400); font-size: 13px; }

.header-main {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(16, 21, 27, 0.06);
  box-shadow: 0 2px 12px rgba(16, 21, 27, 0.05);
}
.header-main .container { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 16px; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 54px; width: 54px; object-fit: contain; filter: drop-shadow(0 3px 6px rgba(0,0,0,0.2)); transition: transform 0.25s; }
.logo:hover img { transform: scale(1.06); }
.logo-text { line-height: 1.1; }
.logo-name { font-family: var(--font-display); font-weight: 800; font-size: 21px; color: var(--ink-900); }
.logo-name span { color: var(--yellow-600); }
.logo-sub { font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav > a, .nav .dropdown-toggle {
  padding: 9px 13px; border-radius: 9px; font-size: 14.5px; font-weight: 600;
  color: var(--ink-800); background: none; border: none; cursor: pointer;
  font-family: var(--font-body); display: inline-flex; align-items: center; gap: 5px;
}
.nav > a:hover, .nav .dropdown-toggle:hover { color: var(--blue-600); background: var(--blue-50); }
.nav > a.active { color: var(--blue-600); background: var(--blue-50); }

.dropdown { position: relative; }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  width: 300px; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); border: 1px solid rgba(16, 21, 27, 0.08); padding: 8px; z-index: 200;
}
.dropdown:hover .dropdown-menu, .dropdown.open .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 9px 14px; border-radius: 9px; font-size: 14px; color: var(--ink-800); }
.dropdown-menu a:hover { background: var(--blue-50); color: var(--blue-700); }
.dropdown-menu a.overview { font-weight: 700; color: var(--blue-700); }
.dropdown-menu hr { border: none; border-top: 1px solid rgba(16, 21, 27, 0.07); margin: 6px 0; }
.dropdown-toggle .chevron { transition: transform 0.2s; font-size: 11px; }
.dropdown:hover .chevron, .dropdown.open .chevron { transform: rotate(180deg); }

.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone { font-size: 14px; font-weight: 700; color: var(--blue-700); white-space: nowrap; }
.header-phone:hover { color: var(--blue-600); }

.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 26px; height: 3px; background: var(--ink-900); border-radius: 2px; margin: 5px 0; transition: 0.25s; }
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu { display: none; background: #fff; border-top: 1px solid rgba(16, 21, 27, 0.07); padding: 14px 20px 22px; max-height: 72vh; overflow-y: auto; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 11px 12px; border-radius: 9px; font-size: 15px; font-weight: 600; color: var(--ink-800); }
.mobile-menu a:hover, .mobile-menu a.active { background: var(--blue-50); color: var(--blue-700); }
.mobile-menu a.sub { padding-left: 28px; font-weight: 500; font-size: 14px; }
.mobile-menu .btn { width: 100%; margin-top: 12px; }

/* ---------- Hero (Startseite) ---------- */
.hero { position: relative; background: var(--ink-950); color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, var(--ink-950) 0%, rgba(16, 21, 27, 0.7) 55%, transparent 100%); }
.hero-inner { position: relative; padding: 110px 0 96px; }
.hero-content { max-width: 640px; }
.badge-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--yellow-400);
}
.hero h1 { color: #fff; font-size: clamp(38px, 5.5vw, 62px); margin-top: 24px; }
.hero h1 .accent { color: var(--yellow-400); }
.hero p { margin-top: 22px; font-size: 18px; color: rgba(255, 255, 255, 0.82); }
.hero-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }

.trust-chips { position: relative; border-top: 1px solid rgba(255, 255, 255, 0.12); background: rgba(16, 21, 27, 0.65); backdrop-filter: blur(6px); }
.trust-chips .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding-top: 18px; padding-bottom: 18px; }
.trust-chips span { display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 600; color: rgba(255, 255, 255, 0.88); }
.trust-chips .check { color: var(--yellow-400); font-weight: 800; }

/* ---------- Sektionen ---------- */
.section { padding: 90px 0; }
.section-tint { background: var(--blue-50); background: linear-gradient(180deg, rgba(238, 244, 255, 0.6), rgba(238, 244, 255, 0.25)); }
.section-dark { background: var(--ink-950); color: #fff; position: relative; overflow: hidden; }
.section-dark::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at top, rgba(63, 95, 216, 0.22), transparent 60%); }
.section-dark > .container { position: relative; }

.kicker { font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue-600); margin-bottom: 12px; }
.section-dark .kicker, .dark-text .kicker { color: var(--yellow-400); }
.section-title { font-size: clamp(28px, 3.6vw, 40px); }
.section-dark .section-title { color: #fff; }
.section-lead { margin-top: 16px; font-size: 17.5px; color: var(--text-light); max-width: 660px; }
.section-dark .section-lead { color: rgba(255, 255, 255, 0.72); }
.center { text-align: center; }
.center .section-lead { margin-left: auto; margin-right: auto; }

/* ---------- Intro mit Statistiken & Maskottchen-Karte ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split p + p { margin-top: 16px; }
.stats { display: flex; flex-wrap: wrap; gap: 36px; margin-top: 32px; }
.stat b { display: block; font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--blue-600); }
.stat span { font-size: 13.5px; color: var(--text-light); font-weight: 500; }

.media-frame { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); }
.media-frame img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.mascot-float { position: relative; }
.mascot-card {
  position: absolute; bottom: -34px; left: -30px; background: #fff; border-radius: 18px;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(16, 21, 27, 0.06);
  padding: 18px 20px; display: flex; gap: 14px; align-items: center; max-width: 330px;
}
.mascot-card img { height: 74px; width: 74px; object-fit: contain; flex-shrink: 0; }
.mascot-card b { display: block; font-family: var(--font-display); color: var(--ink-900); font-size: 15.5px; }
.mascot-card small { font-size: 13px; color: var(--text-light); }

/* ---------- Service-Karten ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 52px; }
.card {
  background: #fff; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-md);
  border: 1px solid rgba(16, 21, 27, 0.05); transition: all 0.25s ease; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-img { position: relative; overflow: hidden; }
.card-img img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-icon {
  position: absolute; top: 14px; left: 14px; width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255, 255, 255, 0.95); box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center; font-size: 21px;
}
.card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 18px; }
.card:hover .card-body h3 { color: var(--blue-600); }
.card-body p { margin-top: 9px; font-size: 14px; color: var(--text-light); flex: 1; }
.card-link { margin-top: 16px; font-size: 14px; font-weight: 700; color: var(--blue-600); display: inline-flex; align-items: center; gap: 6px; }
.card-link .arrow { transition: transform 0.2s; }
.card:hover .card-link .arrow { transform: translateX(4px); }

/* ---------- Prozess ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 52px; }
.step {
  border-radius: 18px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px 26px; transition: background 0.2s;
}
.step:hover { background: rgba(255, 255, 255, 0.1); }
.step-icon {
  width: 50px; height: 50px; border-radius: 13px; background: var(--blue-600);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  box-shadow: 0 10px 22px rgba(63, 95, 216, 0.4);
}
.step h3 { color: #fff; font-size: 17.5px; margin-top: 18px; }
.step p { margin-top: 10px; font-size: 13.5px; color: rgba(255, 255, 255, 0.7); }

/* ---------- Referenzen (Karten) ---------- */
.ref-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 48px; }
.ref-card { position: relative; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 3 / 2; display: block; }
.ref-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.ref-card:hover img { transform: scale(1.05); }
.ref-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(16, 21, 27, 0.92) 100%); }
.ref-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px; color: #fff; z-index: 2; }
.ref-info .cat { font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--yellow-400); }
.ref-info h3 { color: #fff; font-size: 19px; margin-top: 6px; }
.ref-info .loc { font-size: 13.5px; color: rgba(255, 255, 255, 0.72); }

/* ---------- Referenzen-Seite (Liste) ---------- */
.ref-row { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; margin-bottom: 64px; }
.ref-row:nth-child(even) .ref-media { order: 2; }
.ref-media { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); }
.ref-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform 0.6s; }
.ref-media:hover img { transform: scale(1.04); }
.ref-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; font-size: 13.5px; font-weight: 600; color: var(--text-light); }
.ref-meta .tag { background: var(--blue-600); color: #fff; padding: 5px 14px; border-radius: 999px; font-size: 12.5px; font-weight: 700; }
.ref-text h2 { font-size: clamp(22px, 2.6vw, 30px); margin-top: 14px; }
.ref-text p { margin-top: 14px; font-size: 16.5px; color: var(--text); }
.fact-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.fact-chips li { background: var(--blue-50); border: 1px solid var(--blue-100); color: var(--blue-700); font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: 999px; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 52px; }
.quote { background: #fff; border-radius: 18px; padding: 30px; box-shadow: var(--shadow-md); border: 1px solid rgba(16, 21, 27, 0.05); display: flex; flex-direction: column; }
.quote .qm { font-size: 34px; color: var(--blue-200); font-family: var(--font-display); font-weight: 900; line-height: 0.6; }
.quote blockquote { margin-top: 14px; flex: 1; color: var(--text); font-size: 15px; }
.quote footer { margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(16, 21, 27, 0.07); }
.stars { color: var(--yellow-500); letter-spacing: 2px; font-size: 14px; margin-bottom: 6px; }
.quote footer b { color: var(--ink-900); font-size: 14.5px; display: block; }
.quote footer span { font-size: 13px; color: var(--text-light); }

/* ---------- Banner / CTA ---------- */
.banner { background: var(--ink-950); padding: 42px 0; }
.banner .container { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.banner-left { display: flex; align-items: center; gap: 20px; }
.pulse { position: relative; width: 56px; height: 56px; flex-shrink: 0; }
.pulse::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--yellow-500); opacity: 0.4; animation: ping 1.6s cubic-bezier(0, 0, 0.2, 1) infinite; }
.pulse-inner { position: relative; width: 56px; height: 56px; border-radius: 50%; background: var(--blue-600); display: flex; align-items: center; justify-content: center; font-size: 24px; }
@keyframes ping { 0% { transform: scale(1); opacity: 0.4; } 80%, 100% { transform: scale(1.7); opacity: 0; } }
.banner h2 { color: #fff; font-size: 21px; }
.banner p { color: rgba(255, 255, 255, 0.7); font-size: 14px; margin-top: 3px; }

.cta-band { background: var(--blue-700); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at bottom left, rgba(245, 158, 11, 0.28), transparent 55%); }
.cta-band .container { position: relative; display: flex; align-items: center; gap: 44px; padding-top: 56px; padding-bottom: 56px; flex-wrap: wrap; }
.cta-band img { height: 210px; width: 210px; object-fit: contain; filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.35)); flex-shrink: 0; }
.cta-text { flex: 1; min-width: 280px; }
.cta-text .kicker { color: var(--yellow-400); }
.cta-text h2 { color: #fff; font-size: clamp(26px, 3.4vw, 38px); }
.cta-text p { margin-top: 12px; color: rgba(255, 255, 255, 0.82); font-size: 17px; max-width: 520px; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; }

/* ---------- Page-Hero (Unterseiten) ---------- */
.page-hero { position: relative; background: var(--ink-950); color: #fff; overflow: hidden; }
.page-hero .ph-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.page-hero .ph-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, var(--ink-950) 0%, rgba(16, 21, 27, 0.78) 60%, rgba(16, 21, 27, 0.35) 100%); }
.page-hero .container { position: relative; padding-top: 84px; padding-bottom: 84px; }
.page-hero h1 { color: #fff; font-size: clamp(32px, 4.6vw, 54px); max-width: 760px; margin-top: 20px; }
.page-hero p { margin-top: 18px; max-width: 680px; font-size: 17.5px; color: rgba(255, 255, 255, 0.76); }

/* ---------- Leistungs-Detail ---------- */
.detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 52px; }
.article-intro { font-size: 19px; font-weight: 500; color: var(--ink-900); line-height: 1.6; }
.article-body p { margin-top: 18px; font-size: 16.5px; }
.article-body h2 { font-size: 24px; margin-top: 44px; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; margin-top: 22px; }
.check-grid li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--ink-800); }
.check-grid .check { color: var(--blue-600); font-weight: 800; margin-top: 1px; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px; }
.benefit { background: rgba(238, 244, 255, 0.6); border: 1px solid var(--blue-100); border-radius: 16px; padding: 22px; }
.benefit .bi { font-size: 24px; }
.benefit h3 { font-size: 15.5px; margin-top: 10px; }
.benefit p { font-size: 13.5px; color: var(--text-light); margin-top: 7px; }
.back-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 40px; font-size: 14px; font-weight: 700; color: var(--blue-700); }
.back-link:hover { color: var(--blue-600); }

.sidebar-box { position: sticky; top: 104px; display: flex; flex-direction: column; gap: 24px; }
.side-cta { background: var(--ink-950); color: #fff; border-radius: 18px; padding: 28px; }
.side-cta img { height: 92px; width: 92px; object-fit: contain; margin-top: -8px; }
.side-cta h3 { color: #fff; font-size: 20px; margin-top: 8px; }
.side-cta p { margin-top: 10px; font-size: 13.5px; color: rgba(255, 255, 255, 0.7); }
.side-cta .btn { width: 100%; margin-top: 14px; }
.side-hours { margin-top: 14px; font-size: 12px; color: rgba(255, 255, 255, 0.6); display: flex; gap: 7px; align-items: center; }
.side-list { background: #fff; border: 1px solid rgba(16, 21, 27, 0.06); border-radius: 18px; box-shadow: var(--shadow-md); padding: 24px; }
.side-list h3 { font-size: 17px; }
.side-list ul { margin-top: 14px; display: flex; flex-direction: column; gap: 4px; }
.side-list a { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 9px; font-size: 14px; font-weight: 600; color: var(--ink-800); }
.side-list a:hover { background: var(--blue-50); color: var(--blue-700); }

/* ---------- Zeitstrahl ---------- */
.timeline { max-width: 720px; margin: 52px auto 0; }
.tl-item { position: relative; display: flex; gap: 26px; padding-bottom: 40px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: 53px; top: 50px; bottom: 0; width: 2px; background: var(--blue-200); }
.tl-item:last-child::before { display: none; }
.tl-year {
  flex-shrink: 0; width: 108px; height: 50px; border-radius: 12px; background: var(--blue-600); color: #fff;
  font-family: var(--font-display); font-weight: 800; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px rgba(63, 95, 216, 0.3); z-index: 1;
}
.tl-item p { padding-top: 10px; color: var(--text); }

/* ---------- Werte / Vorteile ---------- */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 52px; }
.value { background: #fff; border: 1px solid rgba(16, 21, 27, 0.06); border-radius: 18px; box-shadow: var(--shadow-md); padding: 28px; transition: box-shadow 0.2s; }
.value:hover { box-shadow: var(--shadow-lg); }
.value .vi { width: 50px; height: 50px; border-radius: 13px; background: rgba(63, 95, 216, 0.1); display: flex; align-items: center; justify-content: center; font-size: 23px; }
.value h3 { font-size: 17px; margin-top: 18px; }
.value p { margin-top: 9px; font-size: 13.5px; color: var(--text-light); }

/* ---------- Mitgliedschaften (dunkel) ---------- */
.member-band { background: var(--ink-950); color: #fff; padding: 64px 0; }
.member-band .container { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.member-intro { display: flex; gap: 24px; align-items: center; }
.member-intro img { height: 110px; width: 110px; object-fit: contain; flex-shrink: 0; }
.member-intro h2 { color: #fff; font-size: clamp(22px, 2.6vw, 30px); }
.member-intro p { margin-top: 8px; color: rgba(255, 255, 255, 0.7); font-size: 15px; }
.member-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.member-list li { display: flex; gap: 12px; align-items: flex-start; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 13px; padding: 15px 16px; font-size: 13.5px; color: rgba(255, 255, 255, 0.85); }
.member-list .mi { color: var(--yellow-400); font-size: 17px; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 52px; }
.team-card { background: #fff; border: 1px solid rgba(16, 21, 27, 0.06); border-radius: 18px; box-shadow: var(--shadow-md); padding: 28px; transition: box-shadow 0.2s; }
.team-card:hover { box-shadow: var(--shadow-lg); }
.team-head { display: flex; align-items: center; gap: 15px; }
.avatar { width: 62px; height: 62px; border-radius: 16px; color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 20px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); flex-shrink: 0; }
.team-head h3 { font-size: 17.5px; }
.team-head span { font-size: 13.5px; color: var(--blue-600); font-weight: 600; }
.team-card > p { margin-top: 15px; font-size: 13.5px; color: var(--text-light); }
.badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.badges li { background: var(--blue-50); color: var(--blue-700); font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 999px; }

.mascot-section { background: var(--ink-950); color: #fff; position: relative; overflow: hidden; padding: 90px 0; }
.mascot-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at bottom right, rgba(245, 158, 11, 0.18), transparent 55%); }
.mascot-section .container { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.mascot-section .m-img { display: flex; justify-content: center; }
.mascot-section .m-img img { height: 340px; object-fit: contain; filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.45)); }
.mascot-section h2 { color: #fff; font-size: clamp(28px, 4vw, 46px); }
.mascot-section p { color: rgba(255, 255, 255, 0.75); margin-top: 16px; font-size: 16.5px; }
.mascot-section .hero-actions a { border-color: rgba(255,255,255,0.3); }

/* ---------- Jobs / Karriere ---------- */
.job { background: #fff; border: 1px solid rgba(16, 21, 27, 0.06); border-radius: 18px; box-shadow: var(--shadow-md); padding: 30px 32px; margin-bottom: 24px; transition: box-shadow 0.2s; }
.job:hover { box-shadow: var(--shadow-lg); }
.job-inner { display: flex; gap: 28px; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; }
.job-body { flex: 1; min-width: 280px; }
.job-meta { display: flex; flex-wrap: wrap; gap: 12px; font-size: 13px; font-weight: 600; color: var(--text-light); align-items: center; }
.job-meta .tag { background: var(--blue-600); color: #fff; padding: 5px 14px; border-radius: 999px; font-size: 12.5px; font-weight: 700; }
.job h2 { font-size: 23px; margin-top: 12px; }
.job p { margin-top: 10px; max-width: 720px; }
.job .badges { margin-top: 14px; }
.job .badges li { border: 1px solid var(--blue-100); }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 52px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-size: 13.5px; font-weight: 700; color: var(--ink-900); margin-bottom: 7px; }
input, select, textarea {
  width: 100%; padding: 13px 15px; border: 1px solid rgba(16, 21, 27, 0.14); border-radius: 12px;
  font-family: var(--font-body); font-size: 14.5px; color: var(--ink-900); background: #fff; transition: border 0.15s, box-shadow 0.15s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(63, 95, 216, 0.18); }
textarea { resize: vertical; min-height: 140px; }
.privacy-row { display: flex; gap: 12px; align-items: flex-start; font-size: 13.5px; color: var(--text-light); }
.privacy-row input { width: 17px; height: 17px; margin-top: 2px; flex-shrink: 0; }
.privacy-row a { color: var(--blue-600); font-weight: 600; text-decoration: underline; }
.form-success { display: none; text-align: center; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 18px; padding: 44px 30px; margin-top: 30px; }
.form-success img { height: 110px; margin: 0 auto; object-fit: contain; }
.form-success h3 { color: #166534; font-size: 20px; margin-top: 16px; }
.form-success p { color: #15803d; margin-top: 8px; }

.contact-side { display: flex; flex-direction: column; gap: 24px; }
.map-card { background: var(--blue-50); border-radius: 18px; padding: 18px; border: 1px solid rgba(16, 21, 27, 0.06); box-shadow: var(--shadow-md); }
.map-inner {
  background: #fff; border: 1px solid rgba(16, 21, 27, 0.06); border-radius: 14px; padding: 40px 20px; text-align: center;
  background-image: repeating-linear-gradient(0deg, rgba(23, 29, 36, 0.05) 0 1px, transparent 1px 40px),
                    repeating-linear-gradient(90deg, rgba(23, 29, 36, 0.05) 0 1px, transparent 1px 40px);
}
.map-pin { position: relative; width: 50px; height: 50px; margin: 0 auto; }
.map-pin::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--blue-500); opacity: 0.4; animation: ping 1.6s infinite; }
.map-pin span { position: relative; width: 50px; height: 50px; border-radius: 50%; background: var(--blue-600); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 22px; box-shadow: var(--shadow-lg); }
.map-inner b { display: block; margin-top: 16px; font-family: var(--font-display); color: var(--ink-900); }
.map-inner small { color: var(--text-light); font-size: 13px; }
.map-inner a { display: inline-block; margin-top: 14px; font-size: 13.5px; font-weight: 700; color: var(--blue-600); text-decoration: underline; }

/* ---------- Rechtsseiten ---------- */
.legal { max-width: 760px; margin: 0 auto; }
.legal h2 { font-size: 21px; margin-top: 42px; }
.legal p, .legal li { margin-top: 12px; font-size: 15.5px; color: var(--text); }
.legal ul { list-style: disc; padding-left: 22px; }
.legal li { margin-top: 6px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink-950); color: #fff; }
.footer-main { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.2fr; gap: 44px; padding: 64px 0; }
.footer h4 { color: rgba(255, 255, 255, 0.5); font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px; }
.footer .logo-name { color: #fff; }
.footer-about p { font-size: 13.5px; color: rgba(255, 255, 255, 0.7); margin-top: 18px; }
.footer-about .mascot-quote { color: var(--yellow-400); font-weight: 600; font-size: 13.5px; margin-top: 14px; }
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 13.5px; color: rgba(255, 255, 255, 0.75); }
.footer ul a:hover { color: var(--yellow-400); }
.footer-contact li { display: flex; gap: 12px; font-size: 13.5px; color: rgba(255, 255, 255, 0.75); align-items: flex-start; }
.footer-contact .ci { color: var(--yellow-400); flex-shrink: 0; margin-top: 2px; }
.footer-contact a:hover { color: var(--yellow-400); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 12px; color: rgba(255, 255, 255, 0.5); }

/* ---------- 404 ---------- */
.nf { background: var(--ink-950); color: #fff; text-align: center; padding: 110px 0; }
.nf img { height: 160px; margin: 0 auto; object-fit: contain; filter: drop-shadow(0 16px 26px rgba(0,0,0,0.4)); }
.nf .code { font-family: var(--font-display); font-size: 76px; font-weight: 800; color: var(--blue-500); margin-top: 24px; }
.nf h1 { color: #fff; font-size: 24px; margin-top: 10px; }
.nf p { color: rgba(255, 255, 255, 0.7); margin-top: 12px; max-width: 460px; margin-left: auto; margin-right: auto; }
.nf .hero-actions { justify-content: center; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .nav, .header-cta { display: none; }
  .burger { display: block; }
  .cards, .ref-grid, .quotes, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .steps, .value-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-grid, .contact-grid, .split, .member-band .container, .mascot-section .container { grid-template-columns: 1fr; }
  .mascot-card { left: 0; }
  .sidebar-box { position: static; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .ref-row { grid-template-columns: 1fr; gap: 24px; }
  .ref-row:nth-child(even) .ref-media { order: 0; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .topbar .tb-group:first-child a:last-child { display: none; }
  .hero-inner { padding: 76px 0 64px; }
  .trust-chips .container { grid-template-columns: 1fr 1fr; }
  .cards, .ref-grid, .quotes, .team-grid, .steps, .value-grid, .benefit-grid, .member-list, .form-grid, .check-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .cta-band { text-align: center; }
  .cta-band .container { justify-content: center; }
  .cta-text p { margin-left: auto; margin-right: auto; }
  .cta-actions { width: 100%; max-width: 320px; margin: 0 auto; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { justify-content: center; text-align: center; }
  .stats { gap: 24px; }
  .mascot-card { position: static; margin-top: 18px; max-width: none; }
  .mascot-float { margin-bottom: 0; }
}
