/* ============================================================
   SIS Integration – style.css
   Hell, clean, pink Akzente – gemeinsam für DE / NL / EN
   Alle drei HTML-Dateien liegen im selben Ordner wie css/
   ============================================================ */

/* ── Variablen ──────────────────────────────────────── */
:root {
  --pink:         #d4366b;
  --pink-mid:     #e05585;
  --pink-light:   #fce8ef;
  --pink-glow:    rgba(212, 54, 107, 0.12);

  --white:        #ffffff;
  --bg:           #fafafa;
  --bg-section:   #f5f5f7;
  --surface:      #ffffff;

  --text:         #0f0f14;
  --text-soft:    #4a4a5a;
  --text-muted:   #9090a0;
  --border:       #e8e8ef;
  --border-strong:#d0d0dc;

  --gradient:     linear-gradient(135deg, #d4366b 0%, #e8638f 100%);

  --font-head:    'Syne', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'DM Mono', monospace;

  --radius:       12px;
  --radius-lg:    20px;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm:    0 1px 4px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-md:    0 2px 8px rgba(0,0,0,0.06), 0 12px 40px rgba(0,0,0,0.08);
  --shadow-pink:  0 8px 32px rgba(212,54,107,0.2);
}

/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
ul  { list-style: none; }
a   { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ── Layout ─────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}
section { padding: 6rem 0; }

/* ── Typografie Helfer ──────────────────────────────── */
.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  background: var(--pink-light);
  border-radius: 100px;
  padding: 0.32rem 0.9rem;
  margin-bottom: 1.35rem;  /* vorher 1rem – mehr Luft zur Überschrift */
}
.h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.28;       /* vorher 1.15 – mehr Luft zwischen den Zeilen */
  letter-spacing: -0.015em;/* vorher -0.025em – Buchstaben weniger gedrängt */
  margin-bottom: 1.25rem;  /* vorher 0.9rem – mehr Abstand zum Text darunter */
}
.lead {
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.75;
  max-width: 560px;
}
.sec-head        { margin-bottom: 4.5rem; }  /* vorher 3.5rem */
.sec-head.center { text-align: center; }
.sec-head.center .lead { margin: 0 auto; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.78rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
}
.btn-pink {
  background: var(--gradient);
  color: #fff;
  box-shadow: var(--shadow-pink);
}
.btn-pink:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212,54,107,0.32);
}
.btn-outline {
  background: transparent;
  color: var(--pink);
  border: 1.5px solid var(--pink);
}
.btn-outline:hover {
  background: var(--pink-light);
}
.btn-ghost {
  background: transparent;
  color: var(--text-soft);
  border: 1.5px solid var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--pink);
  color: var(--pink);
}
.btn-full { width: 100%; justify-content: center; }

/* ── Navigation ──────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.header.scrolled {
  border-color: var(--border);
  box-shadow: 0 1px 24px rgba(0,0,0,0.06);
}
.nav {
  display: flex;
  align-items: center;
  min-height: clamp(90px, 10vw, 150px);
  gap: 1rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
  margin-right: auto;
}
.logo img {
  height: clamp(80px, 9vw, 130px);
  width: auto;
  display: block;
  /* Zeigt wenn kein Bild geladen ist den Text-Fallback */
}
.logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-sub {
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Nav Links (Desktop) */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-item {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-soft);
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  transition: color 0.18s, background 0.18s;
}
.nav-item:hover, .nav-item.active {
  color: var(--pink);
  background: var(--pink-light);
}

/* Sprachauswahl */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 0.5rem;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 3px;
}
.lang-btn {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.22rem 0.55rem;
  border-radius: 5px;
  transition: all 0.18s;
  letter-spacing: 0.05em;
}
.lang-btn:hover { color: var(--text); background: var(--white); }
.lang-btn.active {
  background: var(--white);
  color: var(--pink);
  box-shadow: var(--shadow-sm);
}

/* CTA Button in Nav */
.nav-cta { margin-left: 0.75rem; }

/* Hamburger (Mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--text-soft);
  border-radius: 2px;
  transition: all 0.25s var(--ease);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 66px 0 0 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 2rem;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 199;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-item {
  font-size: 1.1rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
}
.mobile-lang {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.mobile-lang .lang-btn {
  font-size: 0.82rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--bg-section);
}
.mobile-lang .lang-btn.active {
  border-color: var(--pink);
  color: var(--pink);
  background: var(--pink-light);
  box-shadow: none;
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  background: #ffffff;
  color: var(--text);
  padding: 7rem 0 6rem;
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

/* Sehr subtiles Gitter auf Weiß */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,54,107,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,54,107,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}
/* Sanfte rosa Schimmer */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.4;
}
.hero-glow-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(212,54,107,0.1) 0%, transparent 70%);
  top: -200px; right: -150px;
  animation: glow-float 12s ease-in-out infinite;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,54,107,0.07) 0%, transparent 70%);
  bottom: -150px; left: -50px;
  animation: glow-float 16s ease-in-out infinite reverse;
}

.hero-inner {
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  border: 1px solid rgba(212,54,107,0.25);
  background: var(--pink-light);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  margin-bottom: 2rem;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--pink);
  border-radius: 50%;
  animation: pulse 2.2s ease-in-out infinite;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 800;
  line-height: 1.14;        /* vorher 1.05 – Zeilen kleben nicht mehr aneinander */
  letter-spacing: -0.02em;  /* vorher -0.03em */
  color: var(--text);
  margin-bottom: 1.75rem;
}
.hero-title-pink {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-soft);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4.5rem;
}

/* Scroll-Indikator */
.hero-scroll {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-bar {
  width: 32px; height: 1px;
  background: linear-gradient(to right, var(--pink), transparent);
}

/* ── SERVICES ─────────────────────────────────────────── */
.services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch; /* alle Cards gleich hoch */
}
.s-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.25rem;  /* vorher 2.25rem 2rem – mehr innerer Abstand */
  display: flex;
  flex-direction: column;    /* Flexbox: Button klebt automatisch am unteren Rand */
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.s-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.s-card:hover {
  border-color: rgba(212,54,107,0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.s-card:hover::after { transform: scaleX(1); }

.s-card-featured {
  border-color: rgba(212,54,107,0.2);
  background: linear-gradient(160deg, #fff 60%, var(--pink-light) 100%);
}
.s-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  background: var(--gradient);
  color: #fff;
  border-radius: 100px;
  padding: 0.22rem 0.8rem;
  margin-bottom: 1.5rem;
}
.s-icon {
  width: 52px; height: 52px;   /* vorher 44px – etwas größer */
  background: var(--pink-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--pink);
  margin-bottom: 1.5rem;
  transition: background 0.22s;
}
.s-card:hover .s-icon { background: rgba(212,54,107,0.15); }
.s-icon svg { width: 24px; height: 24px; }  /* vorher 20px */

.s-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;      /* eigene Zeilenhöhe statt der engen Standard-Vorgabe */
  margin-bottom: 1.1rem;  /* vorher 0.85rem */
  color: var(--text);
  /* Sorgt dafür dass die Titel aller drei Cards gleich viel Platz
     einnehmen – auch wenn einer davon zweizeilig umbricht.
     Falls du das nicht willst: einfach diese Zeile löschen. */
  min-height: 2.7em;
  display: flex;
  align-items: flex-start;
}
.s-desc {
  font-size: 0.93rem;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 1.75rem;       /* vorher 1.5rem */
}
.s-list {
  flex: 1;          /* füllt verfügbaren Raum → Button rutscht ans Ende */
  margin-bottom: 0; /* kein Abstand nach unten, Abstand kommt vom s-link */
}
.s-list li {
  font-size: 0.88rem;
  color: var(--text-soft);
  padding: 0.55rem 0;           /* vorher 0.4rem – mehr Luft zwischen Punkten */
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 0.65rem;
}
.s-list li:last-child { border: none; }
.s-list li::before {
  content: '';
  width: 4px; height: 4px;     /* vorher 3px */
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
}

/* "Mehr erfahren"-Button – jetzt als vollwertiger Button statt kleiner Link */
.s-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;  /* Abstand zwischen Liste und Button */
  padding: 0.85rem 1.5rem;  /* etwas größer */
  background: var(--pink-light);
  color: var(--pink);
  border: 1.5px solid rgba(212,54,107,0.2);
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.22s var(--ease);
  width: 100%;
}
.s-link:hover {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-pink);
  transform: translateY(-1px);
  gap: 0.75rem;
}

/* ── ABOUT ───────────────────────────────────────────── */
.about { background: var(--bg-section); }

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5rem;
}
.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--pink-light) 0%, #fdf0f4 100%);
  display: flex; align-items: center; justify-content: center;
}
/* Platzhalter – wird durch echtes Bild ersetzt */
.about-visual-ph {
  text-align: center;
  color: var(--pink-mid);
}
.about-visual-ph svg { opacity: 0.4; margin: 0 auto 0.75rem; }
.about-visual-ph p {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}
/* Dekoratives Element */
.about-visual::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(212,54,107,0.08);
}

.about-text .tag { display: block; }
.about-text .h2 { margin-bottom: 1.25rem; }
.about-text .lead { margin-bottom: 2rem; }
.about-checklist { display: flex; flex-direction: column; gap: 0.9rem; }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.55;
}
.check-dot {
  flex-shrink: 0;
  width: 18px; height: 18px;
  background: var(--pink-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.check-dot::after {
  content: '';
  width: 6px; height: 6px;
  background: var(--pink);
  border-radius: 50%;
}

/* Gründerinnen */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.f-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  transition: box-shadow 0.25s, transform 0.25s;
}
.f-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.f-photo {
  flex-shrink: 0;
  width: 88px; height: 88px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--pink-light);
  border: 2px solid var(--border);
}
.f-photo img { width: 100%; height: 100%; object-fit: cover; }
.f-photo-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.3rem;
  color: var(--pink-mid);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  opacity: 0.7;
}
.f-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.f-role {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--pink);
  margin-bottom: 0.75rem;
}
.f-bio {
  font-size: 0.87rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 0.9rem;
}
.f-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.18s;
}
.f-linkedin:hover { color: var(--pink); }

/* ── LEISTUNGEN DETAIL ───────────────────────────────────────
   Jede Leistung ausführlich: Bild + Text zweispaltig.
   .detail-block         = Bild links, Text rechts
   .detail-block-reverse = Text links, Bild rechts (umgekehrt)
   ─────────────────────────────────────────────────────────── */
.service-detail {
  background: var(--bg-section);
  padding: 1rem 0 4rem;
}

.detail-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  padding: 6rem 0;  /* viel Luft oben/unten */
}
.detail-block-reverse .detail-visual { order: 2; }
.detail-block-reverse .detail-text   { order: 1; }

.detail-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--pink-light) 0%, #fff5f8 100%);
  display: flex; align-items: center; justify-content: center;
}
.detail-visual img { width: 100%; height: 100%; object-fit: cover; }

.detail-ph {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.75rem; color: var(--pink-mid); text-align: center; padding: 2rem;
}
.detail-ph svg  { opacity: 0.3; }
.detail-ph span { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.08em; }

.detail-text .tag { margin-bottom: 1rem; }

.detail-lead {
  font-size: 1.02rem;
  color: var(--text-soft);
  line-height: 1.85;
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
}
.detail-sub {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
  padding-left: 1rem;
  border-left: 2px solid var(--pink-light);
  font-style: italic;
}
.detail-list { margin-bottom: 2.5rem; }   /* vorher 2rem */
.detail-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-soft);
  padding: 0.8rem 0;   /* mehr Luft */
  border-bottom: 1px solid var(--border); line-height: 1.55;
}
.detail-list li:last-child { border: none; }
.detail-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px; height: 22px;  /* vorher 20px */
  background: var(--pink-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--pink);
  font-size: 0.65rem;
  font-weight: 700;
  margin-top: 1px;
}

/* Trennlinie zwischen den drei Detail-Blöcken */
.detail-divider {
  height: 1px;
  background: var(--border);
  margin: 0 2rem;             /* etwas eingerückt, nicht volle Breite */
}

/* ── REFERENZEN ──────────────────────────────────────── */
.references { background: var(--white); }

.ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.ref-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.ref-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
/* Bild-Bereich */
.ref-img {
  aspect-ratio: 16/10;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.ref-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.ref-card:hover .ref-img img { transform: scale(1.04); }
/* Platzhalter */
.ref-img-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}
.ref-img-ph svg { opacity: 0.3; }
.ref-tag {
  position: absolute;
  top: 1rem; left: 1rem;
}
.ref-body { padding: 1.5rem; }
.ref-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.ref-desc {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.65;
}

/* ── TESTIMONIALS ────────────────────────────────────── */
.testimonials { background: var(--bg-section); }

.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.t-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow 0.25s, transform 0.25s;
}
.t-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.t-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}
.t-star {
  width: 14px; height: 14px;
  fill: var(--pink);
}
.t-quote {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.t-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--pink-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--pink);
  flex-shrink: 0;
}
.t-name {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
}
.t-company {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── FAQ ─────────────────────────────────────────────── */
.faq { background: var(--white); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-family: var(--font-head);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text);
  transition: color 0.18s;
}
.faq-q:hover { color: var(--pink); }
.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border: 1.5px solid var(--border-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all 0.25s var(--ease);
}
.faq-item.open .faq-icon {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.25s;
}
.faq-a-inner {
  padding-bottom: 1.4rem;
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.75;
}

/* ── KONTAKT ─────────────────────────────────────────── */
.contact { background: var(--bg-section); }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.contact-info .h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.contact-info > p {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.c-detail {
  display: flex; align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-soft);
}
.c-detail:last-of-type { border: none; }
.c-detail svg { color: var(--pink); flex-shrink: 0; }
.c-detail a { transition: color 0.18s; }
.c-detail a:hover { color: var(--pink); }
.c-socials { display: flex; gap: 0.6rem; margin-top: 1.75rem; }
.c-social {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  border: 1px solid var(--border);
  padding: 0.32rem 0.8rem;
  border-radius: 6px;
  transition: all 0.18s;
}
.c-social:hover { color: var(--pink); border-color: rgba(212,54,107,0.4); }

/* Formular */
.c-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.f-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
.f-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}
.f-group input,
.f-group select,
.f-group textarea {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(212,54,107,0.08);
}
.f-group input.err,
.f-group textarea.err { border-color: #e05252; }
.f-group textarea { resize: vertical; min-height: 108px; }
.f-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%239090a0' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.f-group select option { background: #fff; }

.f-err { font-size: 0.76rem; color: #e05252; min-height: 1em; }

.f-check {
  display: flex; align-items: flex-start;
  gap: 0.6rem; margin-bottom: 1.25rem;
}
.f-check input[type="checkbox"] {
  width: 15px; height: 15px; min-width: 15px;
  margin-top: 3px; accent-color: var(--pink);
}
.f-check label {
  font-size: 0.8rem;
  color: var(--text-soft);
  line-height: 1.5;
}
.f-check label a { color: var(--pink); }
.f-check-err { font-size: 0.76rem; color: #e05252; display: block; margin-bottom: 0.75rem; }

.form-msg {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-size: 0.87rem;
  display: none;
}
.form-msg.ok   { background: #edfbf2; border: 1px solid #a8e6be; color: #1a7a3c; }
.form-msg.fail { background: #fef0f0; border: 1px solid #f5b8b8; color: #c0392b; }
.form-msg.fail a { color: var(--pink); }

/* Spinner */
.spin {
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin-r 0.6s linear infinite;
  flex-shrink: 0;
}
@keyframes spin-r { to { transform: rotate(360deg); } }

/* ── FOOTER ──────────────────────────────────────────── */
.footer {
  background: #0c0c12;
  color: rgba(255,255,255,0.65);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { margin-bottom: 0.9rem; }
.footer-logo .logo-sub { color: rgba(255,255,255,0.35); }
.footer-desc {
  font-size: 0.87rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.18s;
}
.footer-col a:hover { color: var(--pink-mid); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.25); }
.footer-langs { display: flex; gap: 1rem; }
.footer-langs a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.18s;
  letter-spacing: 0.06em;
}
.footer-langs a:hover { color: var(--pink-mid); }

/* ── Scroll-Animationen ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.07s; }
.reveal-d2 { transition-delay: 0.14s; }
.reveal-d3 { transition-delay: 0.21s; }

/* ── Animationen ─────────────────────────────────────── */
@keyframes glow-float {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-30px) scale(1.06); }
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.75); }
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .ref-grid      { grid-template-columns: 1fr 1fr; }
  .t-grid        { grid-template-columns: 1fr 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 860px) {
  .hamburger     { display: flex; }
  .nav-menu      { display: none; }
  .nav-cta       { display: none; }
  .detail-block { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 0; }
  .detail-block-reverse .detail-visual { order: -1; }
  .about-intro   { grid-template-columns: 1fr; gap: 2.5rem; }
  .founders-grid { grid-template-columns: 1fr; }
  .contact-wrap  { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 640px) {
  .wrap          { padding: 0 1.25rem; }
  section        { padding: 4rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .ref-grid      { grid-template-columns: 1fr; }
  .t-grid        { grid-template-columns: 1fr; }
  .f-row         { grid-template-columns: 1fr; }
  .f-card        { flex-direction: column; }
  .f-photo       { width: 100%; height: 160px; }
  .footer-grid   { grid-template-columns: 1fr; }
  .hero          { min-height: auto; padding: 5rem 0 4rem; }
}