/* =========================================================
   oneTec — Stylesheet v2
   Brand: schwarz, weiß, Blau #2563EB → Türkis #2DD4BF Gradient
   Stil: refined minimal, viel Whitespace, klare Typo
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Farben — Brand */
  --brand-1:      #2563EB;     /* Blau */
  --brand-2:      #2DD4BF;     /* Türkis */
  --brand-grad:   linear-gradient(180deg, #2563EB 0%, #2DD4BF 100%);
  --brand-grad-h: linear-gradient(90deg,  #2563EB 0%, #2DD4BF 100%);

  /* Farben — Neutral */
  --ink:          #0a0a0a;     /* fast schwarz, Logo-Ink */
  --ink-soft:     #1a1d23;
  --text:         #0a0a0a;
  --text-muted:   #6b7280;
  --text-faint:   #9ca3af;

  --bg:           #ffffff;
  --bg-soft:      #f7f8fa;
  --bg-tint:      #f0f4ff;     /* zarter Blau-Hauch */
  --bg-dark:      #0a0a0a;

  --line:         #ececef;
  --line-strong:  #d4d6db;

  /* Bereichs-Farben */
  --ga:           #14B8A6;     /* Gebäudeautomation: Türkis/Grün */
  --ga-dark:      #0d9b85;
  --ga-soft:      #d3f4ee;
  --ga-bg:        #f0fbf8;     /* zarter GA-Hauch */
  --it:           #2563EB;     /* Informatik: Blau */
  --it-dark:      #1e4fbe;
  --it-soft:      #dde7fb;
  --it-bg:        #f0f4ff;     /* zarter IT-Hauch */

  /* Typografie */
  --font: 'Manrope', system-ui, -apple-system, sans-serif;

  /* Maße */
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --container:    1200px;
  --shadow-sm:    0 1px 2px rgba(0,0,0,.04);
  --shadow-md:    0 4px 24px rgba(0,0,0,.06);
  --shadow-lg:    0 30px 80px -20px rgba(37, 99, 235, .25);
}

/* Reset */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img,svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

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

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo { display: inline-flex; align-items: center; }
.logo img, .logo svg { height: 36px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}
.nav-links li { white-space: nowrap; }
.nav-links a {
  display: inline-block;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 14.5px;
  white-space: nowrap;
  transition: color .15s ease, background .15s ease;
}
.nav-links a:hover { color: var(--ink); background: var(--bg-soft); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background: var(--brand-grad-h);
  margin: 4px auto 0;
  border-radius: 2px;
}

/* ---------- Dropdown Menu ---------- */
.nav-links .has-dropdown {
  position: relative;
}
.nav-links .has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav-links .has-dropdown > a .caret {
  font-size: 9px;
  opacity: 0.6;
  transition: transform .2s ease;
}
.nav-links .has-dropdown:hover > a .caret {
  transform: rotate(180deg);
}
.nav-links .dropdown {
  /* DEFAULT: hidden — wird durch :hover/:focus-within geöffnet */
  display: block;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 32px -8px rgba(0,0,0,0.12);
  padding: 8px;
  list-style: none;
  margin: 0;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
  z-index: 100;
}
.nav-links .has-dropdown:hover > .dropdown,
.nav-links .has-dropdown:focus-within > .dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto;
  transform: translateY(0);
}
/* Hover-Brücke: kein Hover-Loss zwischen Parent und Dropdown */
.nav-links .has-dropdown::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
  pointer-events: none;
}
.nav-links .has-dropdown:hover::before {
  pointer-events: auto;
}
.nav-links .dropdown li { white-space: nowrap; display: block; }
.nav-links .dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
}
.nav-links .dropdown a:hover {
  background: var(--bg-soft);
  color: var(--ink);
}
.nav-links .dropdown a::after { display: none !important; }

.nav-cta { margin-left: 12px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--bg-soft);
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block; width: 18px; height: 2px;
  background: var(--ink); border-radius: 2px;
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top:  6px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .15s ease, box-shadow .2s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px -10px rgba(0,0,0,.4);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { background: var(--bg-soft); border-color: var(--ink); }

.btn-grad {
  background: var(--brand-grad-h);
  color: #fff;
}
.btn-grad:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
.btn .arrow { transition: transform .15s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Eyebrow / Tags ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  box-shadow: var(--shadow-sm);
}
.eyebrow .pill {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 999px;
  background: var(--brand-grad-h);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.kicker::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 3px;
  background: var(--brand-grad-h);
  border-radius: 3px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -150px; right: -150px;
  width: 800px; height: 800px;
  background: radial-gradient(closest-side, rgba(45, 212, 191, .55), transparent 70%);
  filter: blur(40px);
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -250px; left: -150px;
  width: 900px; height: 900px;
  background: radial-gradient(closest-side, rgba(37, 99, 235, .45), transparent 70%);
  filter: blur(40px);
  z-index: -1;
}
.hero h1 {
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 22px 0 22px;
  max-width: 16ch;
  line-height: 1.02;
}
.hero h1 .grad {
  background: var(--brand-grad-h);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p.lead {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--text-muted);
  max-width: 56ch;
  margin: 0 0 36px;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- Section ---------- */
.section { padding: 112px 0; }
.section-soft { 
  background: linear-gradient(180deg, var(--bg-soft) 0%, #f0fbf8 50%, var(--bg-tint) 100%);
}
.section-dark {
  background: var(--bg-dark);
  color: #fff;
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark .text-muted { color: rgba(255,255,255,.65); }
.section-dark .kicker { color: rgba(255,255,255,.6); }

.section-head {
  max-width: 760px;
  margin-bottom: 64px;
}
.section-head h2 {
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.035em;
}
.section-head p {
  font-size: 18px;
  color: var(--text-muted);
  margin: 16px 0 0;
  max-width: 60ch;
}

/* ---------- Kompetenzen-Grid ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.card {
  position: relative;
  background: var(--bg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 230px;
  transition: background .2s ease;
}
.card:hover {
  background: linear-gradient(180deg, var(--bg-tint) 0%, #f0fbf8 100%);
}
.card .num {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-faint);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}
.card h3 {
  font-size: 22px;
  margin: 0;
  font-weight: 700;
}
.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
}
.card .area {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-1);
  margin-top: auto;
}
.card .area.tech { color: #0d9b85; }
.card .area::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* ---------- Bereiche-Split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.split-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 48px;
  min-height: 360px;
  border: 1px solid var(--line);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.split-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.split-card.dark {
  background: var(--bg-dark);
  color: #fff;
  border-color: transparent;
}
.split-card.dark p { color: rgba(255,255,255,.7); }

.split-card .num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--text-faint);
  text-transform: uppercase;
}
.split-card.dark .num { color: rgba(255,255,255,.5); }
.split-card h3 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 18px 0 14px;
  max-width: 16ch;
}
.split-card p {
  margin: 0;
  font-size: 16px;
  max-width: 42ch;
  color: var(--text-muted);
}
.split-card .more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  font-weight: 600;
  color: inherit;
  font-size: 15px;
}
.split-card .more .arrow { transition: transform .15s ease; }
.split-card:hover .more .arrow { transform: translateX(4px); }

.split-card .glow {
  position: absolute;
  right: -120px; bottom: -120px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(closest-side, var(--brand-2), transparent 70%);
  opacity: .35;
  pointer-events: none;
}
.split-card.dark .glow {
  background: radial-gradient(closest-side, var(--brand-1), transparent 70%);
  opacity: .55;
}

/* === Bereichs-Varianten — GA = Türkis/Grün, IT = Blau === */
.split-card.ga {
  background: linear-gradient(160deg, #ffffff 0%, var(--ga-bg) 100%);
  border-color: var(--ga-soft);
}
.split-card.ga .num { color: var(--ga-dark); }
.split-card.ga .more { color: var(--ga-dark); }
.split-card.ga .glow {
  background: radial-gradient(closest-side, var(--ga), transparent 70%);
  opacity: .55;
}

.split-card.it {
  background: linear-gradient(160deg, #ffffff 0%, var(--it-bg) 100%);
  border-color: var(--it-soft);
}
.split-card.it .num { color: var(--it); }
.split-card.it .more { color: var(--it); }
.split-card.it .glow {
  background: radial-gradient(closest-side, var(--it), transparent 70%);
  opacity: .35;
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
}
.stat {
  background: var(--bg);
  padding: 32px 28px;
}
.stat .value {
  font-weight: 800;
  font-size: 44px;
  letter-spacing: -0.04em;
  background: var(--brand-grad-h);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat .value .grad {
  background: var(--brand-grad-h);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat .label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ---------- Partner-Logos ---------- */
.partners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.partner {
  background: var(--bg-dark);
  padding: 36px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  color: rgba(255,255,255,.85);
  transition: color .25s ease, background .25s ease, transform .25s ease;
}
.partner:hover {
  color: #fff;
  background: #15171c;
}
.partner img {
  max-width: 100%;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: .75;
  transition: opacity .25s ease;
  /* Logos einheitlich weiß auf dunklem Grund:
     grayscale entfernt Farben, brightness(0)+invert(1) macht alles weiß.
     Funktioniert mit beliebigen farbigen Logos (PNG mit transparentem BG). */
  filter: grayscale(100%) brightness(0) invert(1);
}
.partner:hover img { opacity: 1; }
.partner > span {
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
}

/* ---------- CTA Strip ---------- */
.cta-strip {
  position: relative;
  background: var(--bg-dark);
  border-radius: var(--radius-xl);
  padding: 72px 56px;
  color: #fff;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.cta-strip::before {
  content: "";
  position: absolute;
  top: -100px; right: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(45,212,191,.55), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}
.cta-strip::after {
  content: "";
  position: absolute;
  bottom: -120px; left: 30%;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(37,99,235,.55), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}
.cta-strip > * { position: relative; z-index: 1; }
.cta-strip h3 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 0 0 14px;
  max-width: 22ch;
  color: #fff;
}
.cta-strip p {
  margin: 0;
  color: rgba(255,255,255,.78);
  max-width: 52ch;
}
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-self: end;
}
.cta-strip .btn-ghost {
  border-color: rgba(255,255,255,.25);
  color: #fff;
}
.cta-strip .btn-ghost:hover { background: rgba(255,255,255,.08); border-color: #fff; }

/* ---------- Page Hero (Detail-Seiten) ---------- */
.page-hero {
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(700px 350px at 100% 0%, rgba(45,212,191,.28), transparent 60%),
    radial-gradient(800px 450px at 0% 60%, rgba(37,99,235,.22), transparent 60%);
}
.breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span.sep { margin: 0 8px; color: var(--text-faint); }
.page-hero h1 {
  font-size: clamp(40px, 5.5vw, 72px);
  margin: 16px 0 18px;
  max-width: 22ch;
  font-weight: 800;
  letter-spacing: -0.035em;
}
.page-hero p.lead {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 64ch;
  margin: 0;
  font-weight: 400;
}

/* ---------- Feature List ---------- */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-list li {
  background: var(--bg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 200px;
  transition: background .2s ease;
}
.feature-list li:hover { 
  background: linear-gradient(180deg, var(--bg-tint) 0%, #f0fbf8 100%);
}
.feature-list li .num {
  font-weight: 700;
  font-size: 13px;
  color: var(--brand-1);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.feature-list li strong {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.feature-list li p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
}

/* ---------- Kontakt ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  transition: border-color .2s ease;
}
.contact-card:hover { border-color: var(--line-strong); }
.contact-card .label {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.contact-card a.big {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: inline-block;
}
.contact-card a.big:hover { color: var(--brand-1); }
.contact-card address {
  font-style: normal;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}
.person {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-grad);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.person .name {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.person .role {
  font-size: 13px;
  color: var(--text-muted);
}

/* Form */
.form {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form h3 {
  font-size: 22px;
  margin: 0 0 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  font: inherit;
  background: var(--bg);
  color: var(--text);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand-1);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
}
.field textarea {
  resize: vertical;
  min-height: 140px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.7);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-grid h4 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin: 0 0 18px;
  font-weight: 700;
}
.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}
.footer-grid a:hover { color: #fff; }
.footer-grid p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  margin: 18px 0 0;
  max-width: 38ch;
}
.footer-grid .logo img, .footer-grid .logo svg { height: 32px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}

/* ---------- Filter Bar (Referenzen) ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  align-items: flex-end;
  margin-bottom: 40px;
  padding: 20px 24px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 220px;
  flex: 1;
}
.filter-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.filter-select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 11px 40px 11px 14px;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%230a0a0a'><path d='M5 8l5 5 5-5H5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}
.filter-select:hover { border-color: var(--ink); }
.filter-select:focus {
  outline: none;
  border-color: var(--brand-1);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
}
.filter-reset {
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 10px 18px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: color .15s ease, border-color .15s ease, background .15s ease;
  align-self: flex-end;
}
.filter-reset:hover {
  color: var(--ink);
  border-color: var(--ink);
  background: var(--bg);
}
.filter-count {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: auto;
  align-self: flex-end;
  padding-bottom: 10px;
}
.filter-count #result-count {
  color: var(--ink);
  font-weight: 700;
}

/* Empty State */
.filter-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 24px;
  background: var(--bg-soft);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
  display: none;
}
.filter-empty.show { display: block; }
.filter-empty strong {
  display: block;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 6px;
}

/* ---------- Project Cards ---------- */
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.project-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  text-align: left;
  width: 100%;
  font-family: inherit;
}
.project-card:hover {
  transform: translateY(-2px);
  border-color: var(--brand-1);
  box-shadow: 0 12px 40px -10px rgba(37,99,235,.2);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-tint) 100%);
}
.project-card[hidden] { display: none; }

.project-card .pmeta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.project-card .pmeta .badge {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--bg-tint);
  color: var(--brand-1);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.project-card .pmeta .badge.tech {
  background: #e0f7f3;
  color: #0d9b85;
}
.project-card .pmeta .badge.sec {
  background: #fff1ee;
  color: #c4441a;
}
.project-card .pmeta .badge.warm {
  background: #fef3c7;
  color: #92670d;
}
.project-card .pmeta .badge.purple {
  background: #ede9fe;
  color: #6d28d9;
}
.project-card h3 {
  font-size: 22px;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.project-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
}
.project-card .pfoot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.project-card .pfoot .client {
  font-weight: 600;
  color: var(--ink);
}
.project-card .pfoot .more-link {
  color: var(--brand-1);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.project-card:hover .pfoot .more-link .arrow { transform: translateX(3px); }

/* Kunden-Liste (kurze Referenzen) */
.client-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 24px;
}
.client-list div {
  background: var(--bg);
  padding: 28px 22px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  transition: background .2s ease;
}
.client-list div:hover {
  background: linear-gradient(180deg, var(--bg-tint) 0%, #f0fbf8 100%);
}

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
}
.modal-backdrop[data-open="true"] {
  display: flex;
  animation: fade .25s ease;
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--bg);
  border-radius: var(--radius-xl);
  max-width: 880px;
  width: 100%;
  padding: 56px 56px 48px;
  position: relative;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,.5);
}
.modal-close {
  position: absolute;
  top: 22px; right: 22px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  font-size: 18px;
  color: var(--ink);
  transition: background .15s ease;
}
.modal-close:hover { background: var(--line); }
.modal h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  max-width: 22ch;
}
.modal .meta-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.modal .meta-row > div .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.modal .meta-row > div .value {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.modal .block {
  margin-bottom: 26px;
}
.modal .block h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-1);
  margin: 0 0 10px;
}
.modal .block p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
}
.modal .block p.kicker-text {
  font-size: 18px;
  color: var(--text-muted);
  font-style: italic;
}
.modal .systeme {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.modal .systeme span {
  padding: 5px 11px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

body.modal-open { overflow: hidden; }

/* ---------- About: Story, Werte, Highlights ---------- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-intro h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  margin: 0;
  letter-spacing: -0.035em;
  font-weight: 800;
}
.about-intro p {
  font-size: 17px;
  color: var(--text-muted);
  margin: 0 0 16px;
  line-height: 1.7;
}
.about-intro p:last-child { margin-bottom: 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.value {
  background: var(--bg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .2s ease;
}
.value:hover {
  background: linear-gradient(180deg, var(--bg-tint) 0%, #f0fbf8 100%);
}
.value .nr {
  font-size: 14px;
  font-weight: 700;
  background: var(--brand-grad-h);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.04em;
}
.value h3 {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.value p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}

.team-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.team-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.team-card .avatar-lg {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--brand-grad);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 28px;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.team-card .name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.team-card .role {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ---------- Util ---------- */
.text-muted { color: var(--text-muted); }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-list { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .cta-strip { grid-template-columns: 1fr; padding: 48px 32px; }
  .cta-actions { justify-self: start; }
  .about-intro { grid-template-columns: 1fr; gap: 32px; }
  .client-list { grid-template-columns: repeat(3, 1fr); }
  .modal { padding: 44px 36px; }
  .modal .meta-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .site-header[data-open="true"] .nav-links {
    display: flex;
    position: absolute;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    padding: 14px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .site-header[data-open="true"] .nav-links a { padding: 14px 16px; }
  .site-header[data-open="true"] .nav-links a.active::after { display: none; }
  /* Dropdown auf Mobile: immer ausgeklappt, eingerückt darstellen */
  .site-header[data-open="true"] .nav-links .has-dropdown { position: static; }
  .site-header[data-open="true"] .nav-links .has-dropdown > a .caret { display: none; }
  .site-header[data-open="true"] .nav-links .dropdown {
    position: static;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 16px;
    min-width: unset;
    margin: 0;
  }
  .site-header[data-open="true"] .nav-links .dropdown a {
    padding: 10px 16px;
    color: var(--text-muted);
    font-size: 14px;
  }
}
@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .project-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-cards { grid-template-columns: 1fr; }
  .client-list { grid-template-columns: repeat(2, 1fr); }
  .modal { padding: 36px 24px; }
  .modal-close { top: 14px; right: 14px; }
  .modal .meta-row { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 64px 0 56px; }
  .section { padding: 80px 0; }
  .container { padding: 0 22px; }
  .team-grid { grid-template-columns: 1fr; }
  .split-card { padding: 36px 28px; }
  .client-list { grid-template-columns: 1fr; }
  .project-card { padding: 26px; }
}

/* ---------- Zammad Form Integration ---------- */
#zammad-feedback-form .zammad-form {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  font-family: inherit;
  color: var(--ink);
}
#zammad-feedback-form .zammad-form .form-group {
  margin-bottom: 16px;
}
#zammad-feedback-form .zammad-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
#zammad-feedback-form .zammad-form .form-control,
#zammad-feedback-form .zammad-form input[type="text"],
#zammad-feedback-form .zammad-form input[type="email"],
#zammad-feedback-form .zammad-form input[type="tel"],
#zammad-feedback-form .zammad-form textarea,
#zammad-feedback-form .zammad-form select {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
  box-sizing: border-box;
}
#zammad-feedback-form .zammad-form textarea {
  min-height: 130px;
  resize: vertical;
  font-family: inherit;
}
#zammad-feedback-form .zammad-form .form-control:focus,
#zammad-feedback-form .zammad-form input:focus,
#zammad-feedback-form .zammad-form textarea:focus,
#zammad-feedback-form .zammad-form select:focus {
  outline: none;
  border-color: var(--brand-1);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
}
#zammad-feedback-form .zammad-form .help-block,
#zammad-feedback-form .zammad-form .help-inline,
#zammad-feedback-form .zammad-form small {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}
#zammad-feedback-form .zammad-form .has-error .form-control,
#zammad-feedback-form .zammad-form .has-error input,
#zammad-feedback-form .zammad-form .has-error textarea {
  border-color: #c4441a;
  box-shadow: 0 0 0 4px rgba(196, 68, 26, .12);
}
#zammad-feedback-form .zammad-form .has-error .help-block,
#zammad-feedback-form .zammad-form .has-error label {
  color: #c4441a;
}
#zammad-feedback-form .zammad-form button,
#zammad-feedback-form .zammad-form input[type="submit"],
#zammad-feedback-form .zammad-form .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background: var(--brand-grad-h);
  color: #fff;
  transition: transform .12s ease, box-shadow .15s ease, opacity .15s ease;
  margin-top: 8px;
}
#zammad-feedback-form .zammad-form button:hover,
#zammad-feedback-form .zammad-form input[type="submit"]:hover,
#zammad-feedback-form .zammad-form .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px -12px rgba(37,99,235,.45);
}
#zammad-feedback-form .zammad-form button:disabled,
#zammad-feedback-form .zammad-form input[type="submit"]:disabled {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
}
#zammad-feedback-form .zammad-form .alert {
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.5;
}
#zammad-feedback-form .zammad-form .alert-success,
#zammad-feedback-form .zammad-form .thanks {
  background: #d3f4ee;
  color: #0d6e5e;
  border: 1px solid #0d9b85;
}
#zammad-feedback-form .zammad-form .alert-danger {
  background: #ffe8de;
  color: #8a2f12;
  border: 1px solid #c4441a;
}

/* ---------- Anliegen-Dropdown (vor Zammad-Form) ---------- */
.anliegen-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.anliegen-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.anliegen-select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 12px 40px 12px 14px;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%230a0a0a'><path d='M5 8l5 5 5-5H5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  width: 100%;
}
.anliegen-select:hover { border-color: var(--ink); }
.anliegen-select:focus {
  outline: none;
  border-color: var(--brand-1);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
}

/* ---------- Startup-Hint (auf Informatik-Seite) ---------- */
.startup-hint {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: 0 8px 28px -16px rgba(0,0,0,0.08);
}
.startup-hint-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.startup-hint-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 20px;
}
.startup-hint-tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.startup-hint-price {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.startup-hint-target {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
@media (max-width: 960px) {
  .startup-hint { grid-template-columns: 1fr; gap: 28px; padding: 32px 22px; }
}
@media (max-width: 640px) {
  .startup-hint { padding: 24px 18px; gap: 22px; }
  .startup-hint-grid { gap: 10px; }
  .startup-hint-card { padding: 16px; }
  .startup-hint-price { font-size: 20px; }
}
@media (max-width: 420px) {
  .startup-hint-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Mobile-Polish: mehr Luft auf kleinen Bildschirmen
   ============================================================ */
@media (max-width: 760px) {
  /* Container etwas großzügiger */
  .container { padding: 0 20px; }
  
  /* Mehr Abstand zwischen Sektionen */
  .section { padding: 64px 0; }
  
  /* Webseiten-Beispiele Grid: mehr Abstand zur nächsten Section */
  .webgrid { 
    margin-bottom: 48px !important; 
    gap: 18px !important;
  }
  .web-info { padding: 18px 20px 22px; }
  .web-info h3 { font-size: 18px; }
  .web-info p { font-size: 13.5px; }

  /* Vergleichstabelle: hier scrollbar-Hinweis und mehr Margin */
  .compare-wrap { 
    margin: 0 -4px 48px; 
    border-radius: 12px;
  }
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 10px 14px; }
  .compare-th-pkg { font-size: 14px; }

  /* Hinweis-Box Telefonie sauber */
  .section-head { padding: 0 4px; }
  .section-head h2 { font-size: 26px; line-height: 1.25; }
  .section-head p { font-size: 14.5px; }

  /* Pakete-Cards Grid responsive */
  .pkg-grid { gap: 14px !important; }
  .pkg-card { padding: 24px 22px; }
  .pkg-card .pkg-name { font-size: 20px; }
  .pkg-card .pkg-price { font-size: 26px; }

  /* Konfigurator-Box weniger eng */
  .config-box { padding: 22px 18px; }
  .slider-value { font-size: 44px; }
  .price-box { padding: 22px 24px; }
  .price-line.main .val { font-size: 26px; }

  /* Formular */
  .startup-form { padding: 24px 22px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .section { padding: 56px 0; }
  
  /* Mehr Luft für Vergleichstabelle */
  .compare-wrap { margin-bottom: 40px; }
  .webgrid { margin-bottom: 40px !important; }
  
  /* Section-Head kompakter */
  .section-head h2 { font-size: 22px; }
  
  /* Web-Card Vorschau Mobile */
  .web-preview { aspect-ratio: 16 / 11; }
}

/* ============================================================
   Hero Startup-Button (mit NEU-Badge)
   ============================================================ */
.btn-startup-hero {
  position: relative;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: #fff;
  border: 2px solid transparent;
  font-weight: 700;
  box-shadow: 0 8px 22px -8px rgba(255,107,53,0.5);
  transition: transform .15s ease, box-shadow .2s ease;
  overflow: visible;
}
.btn-startup-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -10px rgba(255,107,53,0.65);
  color: #fff;
}
.btn-startup-hero .arrow { color: #fff; }

/* Roter Stempel-Look für "NEU" */
.startup-badge {
  position: absolute;
  top: -14px;
  right: -16px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dc2626;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  border-radius: 50%;
  border: 2.5px solid #fff;
  box-shadow: 0 0 0 2px #dc2626, 0 6px 16px rgba(220,38,38,0.4);
  transform: rotate(-12deg);
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  text-transform: uppercase;
  animation: stampWobble 2.4s ease-in-out infinite;
  text-shadow: 0 1px 0 rgba(0,0,0,0.15);
}
@keyframes stampWobble {
  0%, 100% { transform: rotate(-12deg) scale(1); }
  50%      { transform: rotate(-8deg) scale(1.06); }
}

/* ============================================================
   Floating Startup-Promo (rechts unten, schwebend)
   ============================================================ */
.startup-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 20px 14px 16px;
  box-shadow: 0 14px 32px -10px rgba(0,0,0,0.18);
  text-decoration: none;
  color: var(--ink);
  transition: transform .2s ease, box-shadow .2s ease;
  max-width: 280px;
}
.startup-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px -12px rgba(37,99,235,0.3);
  border-color: var(--brand-1);
  text-decoration: none;
}
.startup-float-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}
.startup-float-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
}
.startup-float-badge {
  display: inline-block;
  width: fit-content;
  background: #dc2626;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 2px 8px;
  border-radius: 999px;
  margin-bottom: 3px;
  text-transform: uppercase;
}
.startup-float-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.startup-float-sub {
  font-size: 12px;
  color: var(--text-muted);
}
@media (max-width: 640px) {
  .startup-float {
    bottom: 16px;
    right: 12px;
    left: 12px;
    max-width: none;
    padding: 12px 16px;
  }
  .startup-float-icon { font-size: 24px; }
}
