/* ============ DESIGN TOKENS ============ */
:root {
  --bg: #0A0A0F;
  --surface: #0F0F15;
  --surface-2: #16161E;
  --border: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.12);
  --border-accent: rgba(94, 234, 212, 0.2);
  --text: #FAFAFA;
  --text-secondary: #A8ADB8;
  --text-muted: #6B7280;
  --accent: #5EEAD4;
  --accent-soft: rgba(94, 234, 212, 0.10);
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1180px;
  --radius: 14px;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'ss02', 'cv11';
}
img, svg { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.75; }

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

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.6);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
}
.logo { display: flex; align-items: center; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: 13.5px; }
.btn-large { padding: 18px 32px; font-size: 15px; width: 100%; border-radius: 12px; }
.btn-primary {
  background: var(--accent);
  color: #0A0A0F;
  font-weight: 600;
}
.btn-primary:hover {
  background: #79EFD8;
  transform: translateY(-1px);
  box-shadow: 0 12px 32px -12px rgba(94, 234, 212, 0.45);
  opacity: 1;
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.25);
  opacity: 1;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 180px 0 130px;
  overflow: hidden;
  isolation: isolate;
}
.gradient-bg {
  position: absolute;
  top: -200px;
  left: -200px;
  right: -200px;
  height: 800px;
  background:
    radial-gradient(ellipse 600px 400px at 30% 40%, rgba(94, 234, 212, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 500px 300px at 75% 20%, rgba(94, 234, 212, 0.06) 0%, transparent 65%);
  z-index: -2;
  filter: blur(20px);
}
.grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.10'/%3E%3C/svg%3E");
  opacity: 0.6;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero-inner {
  max-width: 980px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  background: var(--accent-soft);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  color: var(--accent);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8.5vw, 104px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 36px;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  color: var(--text);
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-weight: 300;
}
.accent { color: var(--accent); }
.hero-sub {
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 0 48px;
  line-height: 1.65;
  font-weight: 400;
}
.hero-sub strong {
  color: var(--text);
  font-weight: 500;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============ PROOF BAR ============ */
.proof {
  padding: 80px 0 90px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-label {
  color: var(--text-muted);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 44px;
  font-weight: 500;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.proof-item {
  border-left: 1px solid var(--border);
  padding-left: 28px;
}
.proof-item:first-child { border-left: none; padding-left: 0; }
.proof-comparison {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.proof-comparison-single {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 14px;
}
.proof-before {
  color: var(--text-muted);
  font-size: 0.7em;
  font-style: italic;
}
.proof-arrow {
  color: var(--accent);
  font-size: 0.75em;
  margin: 0 2px;
}
.proof-after {
  color: var(--accent);
  font-weight: 400;
  letter-spacing: -0.035em;
}
.proof-text {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  font-weight: 400;
}
.proof-subtext {
  color: var(--text-muted);
  font-size: 12px;
  font-style: italic;
}

/* ============ SECTIONS ============ */
.section-eyebrow {
  color: var(--accent);
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 22px;
}
.section-eyebrow.centered, .section-title.centered { text-align: center; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}
.section-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}

/* ============ KOLLEGEN (Differenzierung) ============ */
.kollegen {
  padding: 140px 0 130px;
  position: relative;
  isolation: isolate;
}
.kollegen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 900px 500px at center top, rgba(94, 234, 212, 0.04) 0%, transparent 60%);
  z-index: -1;
}
.kollegen-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-align: center;
  margin-bottom: 36px;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}
.kollegen-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}
.kollegen-intro {
  color: var(--text-secondary);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.7;
  max-width: 780px;
  margin: 0 auto 90px;
  text-align: center;
  font-weight: 400;
}
.kollegen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  margin-bottom: 80px;
}
.kollegen-item {
  position: relative;
  padding-top: 32px;
  border-top: 1px solid var(--border-accent);
}
.kollegen-num {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0;
  margin-bottom: 18px;
  font-style: italic;
}
.kollegen-item h3 {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
  color: var(--text);
}
.kollegen-item p {
  color: var(--text-secondary);
  font-size: 15.5px;
  line-height: 1.7;
}
.kollegen-close {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 30px);
  color: var(--text);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
}
.kollegen-close strong {
  color: var(--accent);
  font-weight: 400;
  font-style: italic;
}

/* ============ OUTCOMES ============ */
.outcomes {
  padding: 130px 0;
  border-top: 1px solid var(--border);
  position: relative;
  isolation: isolate;
}
.outcomes-intro {
  color: var(--text-secondary);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 80px;
  text-align: center;
  font-weight: 400;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 64px;
  max-width: 1080px;
  margin: 0 auto;
}
.outcome-item {
  position: relative;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.outcome-num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.outcome-item h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.018em;
  margin-bottom: 18px;
  color: var(--text);
}
.outcome-item p {
  color: var(--text-secondary);
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.outcome-item p:last-child { margin-bottom: 0; }
.outcome-item p strong {
  color: var(--text);
  font-weight: 500;
}
.outcome-fact {
  margin-top: 18px !important;
  padding: 14px 18px;
  background: var(--accent-soft);
  border-left: 2px solid var(--accent);
  border-radius: 4px;
  font-size: 14.5px !important;
  color: var(--text) !important;
}
.outcome-fact strong { color: var(--accent) !important; }

/* ============ WHAT ============ */
.what {
  padding: 130px 0;
  border-top: 1px solid var(--border);
}
.what .section-eyebrow, .what .section-title {
  text-align: center;
}
.what .section-title { margin-bottom: 72px; }
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 64px;
}
.card {
  padding: 0;
  border-top: 1px solid var(--border);
  padding-top: 36px;
  transition: border-color 0.3s ease;
}
.card:hover { border-top-color: var(--accent); }
.card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--accent);
}
.card-icon svg { width: 32px; height: 32px; }
.card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.card p {
  color: var(--text-secondary);
  font-size: 15.5px;
  line-height: 1.7;
}

/* ============ FEATURED IN ============ */
.featured-in {
  padding: 70px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.01);
}
.featured-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 820px;
  margin: 28px auto 0;
}
.featured-card {
  display: block;
  padding: 28px 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 320px;
  flex: 1;
  max-width: 520px;
}
.featured-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
  opacity: 1;
}
.featured-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 6px;
}
.featured-meta {
  font-size: 12.5px;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 14px;
}
.featured-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15.5px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ============ REFERENCES ============ */
.references {
  padding: 130px 0;
  border-top: 1px solid var(--border);
  position: relative;
  isolation: isolate;
}
.references::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 800px 400px at center top, rgba(94, 234, 212, 0.04) 0%, transparent 60%);
  z-index: -1;
}
.references-intro {
  color: var(--text-secondary);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 70px;
  text-align: center;
  font-weight: 400;
}
.references-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 980px;
  margin: 0 auto;
}
.reference-card {
  display: block;
  padding: 44px 40px 38px;
  background: linear-gradient(180deg, var(--surface) 0%, rgba(15, 15, 21, 0.4) 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.reference-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.reference-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  opacity: 1;
  box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.6);
}
.reference-card:hover::before { opacity: 1; }
.reference-eyebrow {
  font-size: 11.5px;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}
.reference-name {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
}
.reference-desc {
  color: var(--text-secondary);
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.reference-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: gap 0.25s ease;
  flex-wrap: wrap;
}
.reference-card:hover .reference-link { gap: 14px; }
.reference-link .arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}
.reference-handle {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 400;
}

/* ============ STORY ============ */
.story {
  padding: 130px 0;
  border-top: 1px solid var(--border);
}
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 100px;
  align-items: start;
}
.story-right p {
  color: var(--text-secondary);
  font-size: 17.5px;
  line-height: 1.8;
  margin-bottom: 22px;
}
.story-right p:last-child { margin-bottom: 0; }
.story-right strong { color: var(--text); font-weight: 500; }

/* ============ QUOTE ============ */
.quote-section {
  padding: 130px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
}
.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 700px 400px at center, rgba(94, 234, 212, 0.05) 0%, transparent 65%);
  z-index: -1;
}
.quote {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: -0.018em;
  max-width: 960px;
  margin: 0 auto 36px;
  font-style: italic;
  color: var(--text);
}
.quote em {
  color: var(--accent);
  font-style: italic;
  font-weight: 300;
}
.quote-mark {
  color: var(--accent);
  font-family: var(--font-display);
  font-style: italic;
}
.quote-attr {
  color: var(--text-muted);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============ WAITLIST FORM ============ */
.waitlist {
  padding: 130px 0;
  border-top: 1px solid var(--border);
}
.waitlist-card {
  padding: 80px 60px;
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  position: relative;
}
.waitlist-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}
.waitlist-sub {
  text-align: center;
  color: var(--text-secondary);
  font-size: 16.5px;
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.65;
}
.form { display: flex; flex-direction: column; gap: 22px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.form-field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}
.form-field .req { color: var(--accent); }
.form-field .opt { color: var(--text-muted); font-weight: 400; font-size: 12px; }
.form-field input, .form-field textarea {
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-muted); opacity: 0.6; }
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(94, 234, 212, 0.12);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  cursor: pointer;
}
.checkbox input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}
.form-foot {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 10px;
  letter-spacing: 0.02em;
}

.success-message {
  text-align: center;
  padding: 50px 20px;
  animation: fadeIn 0.5s ease;
}
.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: var(--accent-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-icon svg { width: 36px; height: 36px; }
.success-message h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
}
.success-message p {
  color: var(--text-secondary);
  font-size: 16px;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ FOOTER ============ */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 13.5px;
  margin-top: 14px;
  max-width: 280px;
  line-height: 1.6;
}
.footer-meta {
  text-align: right;
  color: var(--text-muted);
  font-size: 13.5px;
}
.footer-meta p { margin-bottom: 10px; }
.footer-meta a { color: var(--text-secondary); }
.footer-meta a:hover { color: var(--accent); }
.footer-links span { margin: 0 10px; color: var(--text-muted); opacity: 0.4; }
.copyright { color: var(--text-muted) !important; font-size: 12.5px; }

/* ============ COOKIE CONSENT BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: 24px 28px;
  z-index: 9999;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.7), 0 0 0 1px rgba(94,234,212,0.08);
  animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.cookie-text-wrap { flex: 1 1 380px; min-width: 0; }
.cookie-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.cookie-text {
  color: var(--text-secondary);
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0;
}
.cookie-text strong { color: var(--text); font-weight: 500; }
.cookie-text a { color: var(--accent); font-weight: 500; }
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  border-radius: 100px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.cookie-btn-primary {
  background: var(--accent);
  color: #0A0A0F;
  font-weight: 600;
}
.cookie-btn-primary:hover {
  background: #79EFD8;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -8px rgba(94, 234, 212, 0.5);
}
.cookie-btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--border-strong);
}
.cookie-btn-ghost:hover {
  background: rgba(255,255,255,0.04);
  border-color: var(--text-secondary);
  color: var(--text);
}
@media (max-width: 700px) {
  .cookie-banner { padding: 20px 22px; bottom: 12px; left: 12px; right: 12px; }
  .cookie-content { flex-direction: column; align-items: stretch; gap: 18px; }
  .cookie-actions { flex-direction: column-reverse; }
  .cookie-btn { width: 100%; justify-content: center; }
}

/* ============ FADE-UP ON SCROLL ============ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ MOBILE ============ */
@media (max-width: 900px) {
  .container { padding: 0 22px; }
  .hero { padding: 140px 0 90px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .proof { padding: 60px 0; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .proof-item { border-left: none; padding-left: 0; }
  .proof-item:nth-child(3), .proof-item:nth-child(4) { padding-top: 28px; border-top: 1px solid var(--border); }
  .outcomes { padding: 80px 0; }
  .outcomes-grid { grid-template-columns: 1fr; gap: 36px; }
  .outcomes-intro { margin-bottom: 56px; }
  .what, .story, .waitlist, .kollegen, .quote-section { padding: 80px 0; }
  .cards { grid-template-columns: 1fr; gap: 0; }
  .card { padding-top: 28px; padding-bottom: 28px; }
  .card:not(:last-child) { border-bottom: 1px solid var(--border); }
  .references { padding: 80px 0; }
  .references-grid { grid-template-columns: 1fr; gap: 20px; }
  .reference-card { padding: 32px 26px 28px; }
  .reference-name { font-size: 30px; }
  .story-inner { grid-template-columns: 1fr; gap: 32px; }
  .kollegen-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 60px; }
  .kollegen-intro { margin-bottom: 56px; }
  .waitlist-card { padding: 44px 26px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
}
