/* ==========================================================================
   NORTHSTAR — DESIGN SYSTEM
   Shared stylesheet for all pages (Website/index.html, Starter/, Kontakt/)
   ========================================================================== */

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

:root {
  /* Neutrals */
  --bg: #ffffff;
  --bg-soft: #f7f6fb;
  --bg-tint: #f1effa;
  --surface: #ffffff;
  --ink: #0b0b0d;
  --ink-muted: #55555f;
  --ink-faint: #8b8b94;
  --border: rgba(10, 10, 15, 0.09);
  --border-strong: rgba(10, 10, 15, 0.16);

  /* Brand purple scale */
  --purple-900: #241d5c;
  --purple-700: #4a3fc4;
  --purple-600: #6255dd;
  --purple-500: #7f77dd;
  --purple-300: #b3ace9;
  --purple-100: #ebe8fb;
  --purple-50: #f6f5fd;
  --purple-border: rgba(98, 85, 221, 0.3);

  /* Dark contrast surfaces (Team, CTA-band, Footer) */
  --dark: #0c0b12;
  --dark-2: #16141f;
  --dark-border: rgba(255, 255, 255, 0.1);
  --dark-text: #f3f2f8;
  --dark-text-muted: #9a98a8;

  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --shadow-sm: 0 2px 10px rgba(20, 10, 60, 0.06);
  --shadow-md: 0 16px 40px -12px rgba(20, 10, 60, 0.18);
  --shadow-lg: 0 30px 70px -20px rgba(20, 10, 60, 0.28);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --container: 1240px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

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

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }
ul { list-style: none; }

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

h1, h2, h3, h4 { font-family: var(--font); letter-spacing: -0.02em; font-weight: 700; color: var(--ink); overflow-wrap: break-word; word-break: break-word; }
p { overflow-wrap: break-word; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-700);
  background: var(--purple-100);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--purple-600); flex-shrink: 0; }
.eyebrow-text { min-width: 0; overflow-wrap: break-word; }

.eyebrow--plain {
  display: inline-block;
  background: none;
  padding: 0;
  color: var(--purple-700);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.section-title em, .hero-title em, h1 em, h2 em {
  font-style: normal;
  color: var(--purple-700);
  background: linear-gradient(180deg, transparent 62%, var(--purple-100) 62%);
}

.section-lead {
  font-size: 18px;
  color: var(--ink-muted);
  max-width: 620px;
  line-height: 1.7;
  font-weight: 400;
}

.section-head {
  max-width: 720px;
  margin-bottom: 64px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .section-lead { margin-left: auto; margin-right: auto; }

section { padding: 112px 0; position: relative; }
.section-tight { padding: 88px 0; }
.bg-soft { background: var(--bg-soft); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  padding: 12px 30px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; transition: transform 0.25s var(--ease); }

.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--purple-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-accent {
  background: var(--purple-600);
  color: #fff;
  box-shadow: 0 14px 30px -10px rgba(98, 85, 221, 0.55);
}
.btn-accent:hover { background: var(--purple-700); transform: translateY(-2px); box-shadow: 0 20px 40px -12px rgba(98, 85, 221, 0.6); }
.btn-accent:hover svg { transform: translateX(3px); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-outline:hover { border-color: var(--ink); background: var(--bg-soft); }

.btn-whatsapp { border-color: var(--purple-600); }

.btn-lg { padding: 14px 38px; font-size: 16px; }
.btn-block { width: 100%; }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 84px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), height 0.3s var(--ease);
}
.site-header.is-scrolled {
  height: 72px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
}
.logo .star { color: var(--purple-600); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a:not(.btn) {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:not(.btn):hover { color: var(--ink); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn-accent { padding: 9px 30px; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  position: relative;
  width: 22px; height: 2px;
  background: var(--ink);
  transition: background 0.2s;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px; height: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), top 0.3s var(--ease);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.is-open span::after { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  z-index: 190;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 12px 24px 28px;
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.mobile-menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a:not(.btn) {
  display: block;
  padding: 14px 4px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .btn { margin-top: 16px; }

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  padding: 200px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.hero-blob-1 { width: 620px; height: 620px; background: var(--purple-100); top: -220px; right: -160px; }
.hero-blob-2 { width: 420px; height: 420px; background: var(--purple-50); bottom: -180px; left: -120px; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(98,85,221,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(98,85,221,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

.hero-inner { position: relative; z-index: 1; text-align: center; max-width: 880px; margin: 0 auto; }

.hero-title {
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 26px;
}
@media (min-width: 700px) {
  .hero-title { width: calc(100% + 160px); margin-left: -80px; margin-right: -80px; }
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-muted);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 9px 16px 9px 12px;
  border-radius: 999px;
}
.pill svg { color: var(--purple-600); flex-shrink: 0; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 72px;
  padding-top: 44px;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
}
.stat-num span { color: var(--purple-600); }
.stat-label { font-size: 14px; color: var(--ink-faint); line-height: 1.5; }

/* ==========================================================================
   PAIN / PROBLEM SECTION
   ========================================================================== */

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pain-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.pain-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--purple-600); }
.pain-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--purple-100), var(--purple-50));
  border: 1px solid var(--purple-border);
  color: var(--purple-700);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.pain-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.pain-desc { font-size: 14.5px; color: var(--ink-muted); line-height: 1.7; }

/* ==========================================================================
   PHILOSOPHY
   ========================================================================== */

.philosophy-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: start;
}
.philosophy-text { color: var(--ink-muted); font-size: 16.5px; line-height: 1.85; }
.philosophy-text + .philosophy-text { margin-top: 18px; }

.philosophy-points { display: flex; flex-direction: column; gap: 14px; }
.philosophy-point {
  display: flex;
  gap: 20px;
  padding: 26px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.philosophy-point:hover { border-color: var(--purple-border); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.pp-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--purple-600);
  flex-shrink: 0;
  width: 30px;
}
.pp-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.01em; }
.pp-desc { font-size: 14.5px; color: var(--ink-muted); line-height: 1.65; }

.fit-box {
  margin-top: 40px;
  padding: 32px 36px;
  border-radius: var(--radius-md);
  background: var(--dark);
  color: var(--dark-text);
  position: relative;
  overflow: hidden;
}
.fit-box::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(480px 200px at 0% 0%, rgba(127,119,221,0.28), transparent);
  pointer-events: none;
}
.fit-label { position: relative; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--purple-300); margin-bottom: 14px; }
.fit-text { position: relative; font-size: 15px; line-height: 1.85; color: var(--dark-text-muted); }
.fit-text strong { color: var(--dark-text); font-weight: 600; }

/* ==========================================================================
   TRUST BADGES STRIP
   ========================================================================== */

.trust-strip {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 18px;
}

/* ==========================================================================
   SERVICE / LEISTUNGEN CARDS
   ========================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.services-grid--2col { grid-template-columns: repeat(2, 1fr); }
.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--purple-600); }
.service-num {
  position: absolute;
  top: 28px; right: 30px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-faint);
}
.service-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--purple-100), var(--purple-50));
  border: 1px solid var(--purple-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple-700);
  margin-bottom: 26px;
}
.service-title { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 12px; }
.service-desc { font-size: 15px; color: var(--ink-muted); line-height: 1.75; }

/* ==========================================================================
   PROCESS / PROZESS STEPS
   ========================================================================== */

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 27px; left: 54px; right: 54px;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--border-strong) 0 8px, transparent 8px 16px);
}
.process-step { position: relative; }
.step-dot {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; color: var(--purple-700);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.step-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.step-desc { font-size: 14.5px; color: var(--ink-muted); line-height: 1.7; }

/* Vertical timeline variant (used on Starter page) */
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding-bottom: 44px;
  position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: 26px; top: 54px; bottom: 0;
  width: 1px;
  background: var(--border-strong);
}
.timeline-item:last-child::before { display: none; }
.timeline-phase {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  flex-shrink: 0;
  z-index: 1;
}
.timeline-body { padding-top: 6px; }
.timeline-week { font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--purple-600); margin-bottom: 8px; }
.timeline-title { font-size: 19px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.timeline-desc { font-size: 15px; color: var(--ink-muted); line-height: 1.75; max-width: 640px; }

/* ==========================================================================
   TEAM (dark contrast band)
   ========================================================================== */

.team-section {
  background: var(--dark);
  color: var(--dark-text);
}
.team-section .eyebrow { background: rgba(127,119,221,0.16); color: var(--purple-300); }
.team-section .section-title { color: var(--dark-text); }
.team-section .section-lead { color: var(--dark-text-muted); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.team-card:hover { transform: translateY(-6px); border-color: rgba(127,119,221,0.4); }
.team-photo-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #000;
}
.team-photo { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.team-body { padding: 30px 34px 34px; }
.team-role { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--purple-300); margin-bottom: 10px; }
.team-name { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; color: var(--dark-text); }
.team-desc { font-size: 14.5px; color: var(--dark-text-muted); line-height: 1.75; }

/* ==========================================================================
   PROOF / STATS BAND
   ========================================================================== */

.proof-band {
  background: var(--purple-50);
  border-radius: var(--radius-lg);
  padding: 56px 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.proof-num { font-size: 40px; font-weight: 800; letter-spacing: -0.02em; color: var(--purple-700); margin-bottom: 8px; }
.proof-label { font-size: 14.5px; color: var(--ink-muted); line-height: 1.5; }
.proof-divider { width: 1px; background: var(--border-strong); justify-self: center; }

/* ==========================================================================
   STARTER TEASER CARD (homepage)
   ========================================================================== */

.starter-teaser {
  background: linear-gradient(135deg, var(--dark) 0%, #1c1836 100%);
  border-radius: var(--radius-lg);
  padding: 64px;
  display: grid;
  grid-template-columns: 1.3fr auto;
  align-items: center;
  gap: 40px;
  color: var(--dark-text);
  position: relative;
  overflow: hidden;
}
.starter-teaser::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(600px 260px at 100% 0%, rgba(127,119,221,0.35), transparent);
  pointer-events: none;
}
.starter-teaser-content { position: relative; }
.starter-teaser .eyebrow { background: rgba(127,119,221,0.18); color: var(--purple-300); }
.starter-teaser h3 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; color: #fff; }
.starter-teaser p { font-size: 15.5px; color: var(--dark-text-muted); line-height: 1.75; max-width: 520px; }
.starter-teaser-cta { position: relative; }

/* ==========================================================================
   OFFER / TIER CARDS (Starter page)
   ========================================================================== */

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: stretch;
}
.offer-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.offer-card.featured {
  background: var(--dark);
  color: var(--dark-text);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.offer-badge {
  display: inline-flex;
  align-self: flex-start;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--purple-100);
  color: var(--purple-700);
  margin-bottom: 22px;
}
.offer-card.featured .offer-badge { background: rgba(127,119,221,0.2); color: var(--purple-300); }
.offer-name { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 10px; }
.offer-card.featured .offer-name { color: #fff; }
.offer-sub { font-size: 14.5px; color: var(--ink-muted); line-height: 1.65; margin-bottom: 28px; }
.offer-card.featured .offer-sub { color: var(--dark-text-muted); }
.offer-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; flex: 1; }
.offer-feature { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; line-height: 1.5; }
.offer-feature svg { flex-shrink: 0; margin-top: 2px; color: var(--purple-600); }
.offer-card.featured .offer-feature svg { color: var(--purple-300); }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 720px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.is-open, .faq-item:hover { border-color: var(--purple-border); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 60px 24px 28px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  position: relative;
}
.faq-q-text { flex: 1; }
.faq-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.faq-item.is-open .faq-icon { transform: translateY(-50%) rotate(45deg); background: var(--purple-600); border-color: var(--purple-600); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a-inner { padding: 0 28px 26px; font-size: 15px; color: var(--ink-muted); line-height: 1.8; text-align: left; }

/* ==========================================================================
   FINAL CTA BAND
   ========================================================================== */

.cta-band {
  background: var(--dark);
  color: var(--dark-text);
  text-align: center;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.cta-band-glow {
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: var(--purple-600);
  filter: blur(140px);
  opacity: 0.28;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.cta-band-inner { position: relative; max-width: 640px; margin: 0 auto; }
.cta-band h2 { color: #fff; font-size: clamp(32px, 4.5vw, 54px); font-weight: 800; letter-spacing: -0.025em; margin-bottom: 20px; line-height: 1.1; }
.cta-band p { color: var(--dark-text-muted); font-size: 17px; line-height: 1.7; margin-bottom: 40px; }
.cta-note { margin-top: 22px; font-size: 13.5px; color: var(--dark-text-muted); }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: var(--dark);
  color: var(--dark-text-muted);
  border-top: 1px solid var(--dark-border);
  padding: 56px 0 36px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--dark-border);
}
.footer-brand .logo { color: #fff; }
.footer-tagline { font-size: 14px; color: var(--dark-text-muted); margin-top: 10px; max-width: 280px; line-height: 1.6; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h4 { font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--dark-text); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14.5px; color: var(--dark-text-muted); text-decoration: none; margin-bottom: 11px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--dark-text-muted); text-align: center; }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.13s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.21s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.29s; }
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   GENERIC PAGE HERO (Starter / Kontakt)
   ========================================================================== */

.page-hero {
  padding: 190px 0 90px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero .hero-bg { z-index: 0; }
.page-hero-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ink-faint);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--ink-faint); text-decoration: none; }
.breadcrumb a:hover { color: var(--purple-700); }

/* ==========================================================================
   KONTAKT PAGE
   ========================================================================== */

.contact-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 44px 0 56px;
  text-align: left;
}
.step-pill { display: flex; align-items: flex-start; gap: 14px; }
.step-pill-num {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--purple-border);
  background: var(--purple-50);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--purple-700);
  flex-shrink: 0;
}
.step-pill-text { font-size: 14px; color: var(--ink-muted); line-height: 1.6; }
.step-pill-text strong { display: block; color: var(--ink); font-weight: 700; margin-bottom: 2px; }

.wa-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 32px;
  border: 1px solid var(--purple-border);
  border-radius: var(--radius-md);
  background: var(--purple-50);
  flex-wrap: wrap;
  margin-bottom: 28px;
  text-align: left;
}
.wa-box-headline { font-size: 15.5px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.wa-box-sub { font-size: 14px; color: var(--ink-muted); }

.calendly-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.calendly-inline-widget { min-width: 100%; height: 700px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1080px) {
  .philosophy-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .starter-teaser { grid-template-columns: 1fr; text-align: left; padding: 48px; }
}

@media (max-width: 900px) {
  .container { padding: 0 24px; }
  section { padding: 84px 0; }
  .section-tight { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: block; }
  .stat-row { grid-template-columns: 1fr; gap: 24px; text-align: left; }
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .process-steps::before { display: none; }
  .team-grid { grid-template-columns: 1fr; }
  .proof-band { grid-template-columns: 1fr; padding: 40px 32px; gap: 28px; }
  .proof-divider { display: none; }
  .offer-grid { grid-template-columns: 1fr; }
  .footer-cols { gap: 40px; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hero { padding: 150px 0 72px; }
  section { padding: 64px 0; }
  .section-tight { padding: 52px 0; }
  .section-head { margin-bottom: 40px; }
  .hero-title { font-size: clamp(30px, 9vw, 48px); }
  .logo { font-size: 17px; }
  .nav-cta { gap: 8px; }
  .nav-cta .btn-accent { padding: 10px 16px; font-size: 13px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-badges { justify-content: flex-start; }
  .pain-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .philosophy-point { flex-direction: column; gap: 8px; padding: 22px 24px; }
  .fit-box { padding: 26px 24px; }
  .starter-teaser { padding: 36px 24px; }
  .offer-card { padding: 34px 26px; }
  .timeline-item { grid-template-columns: 46px 1fr; gap: 18px; }
  .timeline-phase { width: 46px; height: 46px; font-size: 11px; }
  .timeline-item::before { left: 22px; top: 46px; }
  .cta-band { padding: 72px 0; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-cols { gap: 32px 48px; }
  .footer-bottom { flex-direction: column; align-items: center; }

  .faq-q { padding: 22px 40px 22px 22px; gap: 12px; }
  .faq-icon { right: 16px; }

  .contact-steps { grid-template-columns: 1fr; gap: 18px; margin: 32px 0 40px; }
  .wa-box { flex-direction: column; align-items: flex-start; padding: 22px; }
  .wa-box .btn { width: 100%; justify-content: center; }
  .calendly-inline-widget { height: 780px; }
}

@media (max-width: 400px) {
  .nav-cta .btn-accent { display: none; }
  .hero-title { font-size: clamp(26px, 9vw, 40px); }
}
