
/* ============================================================
   RESET & FOUNDATION
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --petrol: #00707A;
  --petrol-dark: #005A62;
  --petrol-light: #E8F4F5;
  --gold: #C5A944;
  --gold-light: #D4BE6A;
  --gold-muted: rgba(197, 169, 68, 0.15);
  --white: #FFFFFF;
  --aktions-blau: #0067FF;
  --aktions-blau-hover: #0052CC;
  --navy: #202C59;
  --navy-light: #2A3768;
  --warm-bg: #FDFBF7;
  --warm-bg-alt: #F9F6F0;
  --text-dark: #1A1A1A;
  --text-body: #333333;
  --text-muted: #666666;
  --text-on-navy: #E0E4EF;
  --text-on-navy-muted: #A0A8C0;
  --border-light: #E8E4DC;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Lato', sans-serif;
  --section-pad: clamp(80px, 10vw, 128px);
  --container: 1200px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 10000;
  background: var(--aktions-blau); color: var(--white); padding: 12px 24px;
  border-radius: var(--radius-sm); font-weight: 700; transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 700; color: var(--text-dark); }
.h1-hero { font-size: clamp(36px, 5vw, 60px); line-height: 1.08; letter-spacing: -0.03em; }
h2 { font-size: clamp(28px, 3.5vw, 40px); line-height: 1.12; letter-spacing: -0.02em; }
h3 { font-size: 20px; line-height: 1.3; }
.petrol { color: var(--petrol); }
.gold-line { position: relative; display: inline-block; }
.gold-line::after { content: ''; position: absolute; bottom: 2px; left: 0; width: 100%; height: 4px; background: var(--gold); border-radius: 2px; opacity: 0.6; }

.section-eyebrow {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-desc { font-size: 17px; color: var(--text-muted); max-width: 580px; margin: 0 auto; line-height: 1.65; }

.claim { font-family: var(--font-heading); font-weight: 600; text-transform: lowercase; letter-spacing: 0.12em; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-heading); font-weight: 700; font-size: 15px;
  padding: 16px 32px; border-radius: var(--radius-sm); border: none;
  cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none; line-height: 1; position: relative;
}
.btn-primary { background: var(--aktions-blau); color: var(--white); box-shadow: 0 4px 16px rgba(0, 103, 255, 0.25); }
.btn-primary:hover { background: var(--aktions-blau-hover); box-shadow: 0 6px 24px rgba(0, 103, 255, 0.35); transform: translateY(-2px); }
.btn-secondary { background: var(--petrol); color: var(--white); border: 2px solid var(--petrol); }
.btn-secondary:hover { background: transparent; color: var(--petrol); transform: translateY(-2px); }
.btn-secondary-light { background: var(--white); color: var(--navy); border: 2px solid var(--white); }
.btn-secondary-light:hover { background: transparent; color: var(--white); transform: translateY(-2px); }
.btn-text { background: none; border: none; color: var(--aktions-blau); font-family: var(--font-heading); font-weight: 600; font-size: 15px; padding: 0; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s; }
.btn-text:hover { gap: 10px; }

/* Animated rotating glow border */
.btn-glow { overflow: visible; z-index: 1; }
.btn-glow::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 11px;
  background: conic-gradient(from var(--border-angle), transparent 50%, var(--aktions-blau) 78%, transparent 100%);
  z-index: -1;
  animation: spin-border 3s linear infinite;
  opacity: 0.5;
  filter: blur(6px);
}
@keyframes spin-border { to { --border-angle: 360deg; } }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0; transition: all 0.4s ease; background: transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06); padding: 10px 0;
}
.nav-inner { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px,4vw,40px); display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 43px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a, .nav-links button { font-family: var(--font-body); font-weight: 700; font-size: 14px; color: var(--text-body); letter-spacing: 0.02em; transition: color 0.3s; background: none; border: none; cursor: pointer; padding: 8px 0; }
.nav-links a:hover, .nav-links button:hover { color: var(--petrol); }
.nav-cta { background: var(--aktions-blau)!important; color: var(--white)!important; padding: 10px 20px!important; border-radius: var(--radius-sm)!important; font-family: var(--font-heading)!important; transition: background 0.3s, transform 0.3s!important; }
.nav-cta:hover { background: var(--aktions-blau-hover)!important; transform: translateY(-1px); }

/* Mega Dropdown — aufgewertet */
.mega-dropdown { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); width: 780px; background: var(--white); border-radius: var(--radius-lg); box-shadow: 0 24px 64px rgba(0,0,0,0.14); border: 1px solid var(--border-light); padding: 0; display: grid; grid-template-columns: repeat(4,1fr); gap: 0; opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(8px); transition: opacity 0.25s, transform 0.25s, visibility 0.25s; pointer-events: none; overflow: hidden; }
.mega-dropdown::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--petrol), var(--gold), var(--aktions-blau), var(--petrol)); }
.mega-dropdown.open { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.mega-col { padding: 28px 24px; position: relative; }
.mega-col:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 20px; bottom: 20px; width: 1px; background: var(--border-light); }
.mega-phase-icon { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: var(--petrol-light); border-radius: var(--radius-sm); margin-bottom: 12px; }
.mega-phase-icon svg { width: 16px; height: 16px; stroke: var(--petrol); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mega-phase-title { font-family: var(--font-heading); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--petrol); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--gold); display: flex; align-items: center; gap: 6px; }
.mega-phase-num { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border-radius: 50%; background: var(--petrol); color: var(--white); font-size: 9px; font-weight: 700; }
.mega-links { list-style: none; }
.mega-links li { margin-bottom: 2px; }
.mega-links a { font-size: 13px!important; font-weight: 400!important; color: var(--text-body)!important; padding: 7px 8px!important; display: block; transition: all 0.2s; border-radius: var(--radius-sm); }
.mega-links a:hover { color: var(--petrol)!important; background: var(--petrol-light); padding-left: 12px!important; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--petrol); margin: 6px 0; transition: all 0.3s; }

/* ============================================================
   FLOATING ORB (decorative parallax)
   ============================================================ */
.orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(80px); opacity: 0.1; will-change: transform;
}
.orb--petrol { background: var(--petrol); width: 400px; height: 400px; animation: drift-1 10s ease-in-out infinite; }
.orb--gold { background: var(--gold); width: 300px; height: 300px; animation: drift-2 12s ease-in-out infinite; }
.orb--blue { background: var(--aktions-blau); width: 250px; height: 250px; animation: drift-3 14s ease-in-out infinite; }
@keyframes drift-1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px,-40px); } }
@keyframes drift-2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-20px,30px); } }
@keyframes drift-3 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(40px,20px); } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 85vh; display: flex; align-items: center;
  background: var(--white); overflow: hidden; padding-top: 100px; padding-bottom: 80px;
}
/* Diagonal Navy bleed into proof bar */
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px;
  background: var(--navy);
  clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 2; }
.hero-content { max-width: 560px; }
.hero-claim { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 24px; font-size: clamp(13px,1.5vw,15px); color: var(--petrol); opacity: 0; animation: fadeUp 0.8s 0.2s forwards; }
.hero-claim .dot { color: var(--gold); font-size: 1.2em; }
.hero h1 { margin-bottom: 20px; opacity: 0; animation: fadeUp 0.8s 0.4s forwards; }
.hero-subtitle { font-size: clamp(17px,1.8vw,19px); color: var(--text-muted); line-height: 1.65; margin-bottom: 36px; max-width: 460px; opacity: 0; animation: fadeUp 0.8s 0.6s forwards; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; opacity: 0; animation: fadeUp 0.8s 0.8s forwards; }
.hero-trust { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.8s 1s forwards; }
.trust-badge { display: flex; align-items: center; gap: 8px; padding: 8px 16px; background: var(--warm-bg-alt); border-radius: var(--radius-sm); font-size: 13px; font-weight: 700; color: var(--text-muted); border: 1px solid var(--border-light); }
.trust-badge svg { width: 18px; height: 18px; flex-shrink: 0; }

.hero-visual { position: relative; opacity: 0; animation: fadeRight 1s 0.6s forwards; }
.hero-image-wrapper { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; background: var(--warm-bg-alt); box-shadow: 0 32px 80px rgba(0,112,122,0.12); }
.hero-image-wrapper img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.88) contrast(1.04) brightness(1.02); }
.hero-connector { position: absolute; top: -12px; right: -12px; width: 44px; height: 44px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(197,169,68,0.3); z-index: 3; }
.hero-connector svg { width: 22px; height: 22px; stroke: var(--white); }
.hero-accent { position: absolute; bottom: -16px; left: -16px; width: 100px; height: 100px; background: var(--petrol); border-radius: var(--radius-lg); opacity: 0.08; }

/* ============================================================
   SOCIAL PROOF (Navy + animated counters)
   ============================================================ */
.proof-bar {
  background: var(--navy); padding: 48px 0; position: relative; overflow: hidden;
  z-index: 2;
}
/* no top/bottom border lines on proof bar — diagonal transition handles it */
.proof-grid { display: grid; grid-template-columns: repeat(4,1fr); text-align: center; }
.proof-item { padding: 8px 24px; position: relative; }
.proof-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background: var(--gold); opacity: 0.25; }
.proof-number { font-family: var(--font-heading); font-weight: 700; font-size: clamp(32px,4vw,48px); color: var(--white); line-height: 1.1; margin-bottom: 4px; }
.proof-number .gold { color: var(--gold); }
.proof-label { font-size: 13px; color: var(--text-on-navy-muted); letter-spacing: 0.02em; }

/* ============================================================
   PERSONA CARDS
   ============================================================ */
.persona-section { padding: var(--section-pad) 0; background: var(--white); }
.persona-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.persona-card {
  padding: 44px 36px; border-radius: var(--radius-lg);
  border: 1px solid var(--border-light); transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  position: relative; overflow: hidden;
}
.persona-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.persona-card:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 20px 56px rgba(0,112,122,0.1); }
.persona-card:hover::before { transform: scaleX(1); }
.persona-card--npo { background: var(--petrol-light); }
.persona-card--kmu { background: var(--warm-bg-alt); }
.persona-icon { width: 52px; height: 52px; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; background: var(--white); border-radius: var(--radius); box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.persona-icon svg { width: 26px; height: 26px; stroke: var(--petrol); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.persona-card h3 { font-size: 22px; margin-bottom: 10px; }
.persona-card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; margin-bottom: 24px; }

/* ============================================================
   4-PHASE JOURNEY (large photo + text blocks)
   ============================================================ */
.phase {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 480px; position: relative; overflow: hidden;
}
.phase--reverse .phase-image { order: -1; }

.phase-image {
  position: relative; display: flex; align-items: center; justify-content: center;
  overflow: hidden; min-height: 400px;
}
.phase-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px; padding: 48px;
  position: relative;
}
.phase-placeholder svg { width: 56px; height: 56px; stroke-width: 1.2; opacity: 0.4; }
.phase-placeholder span { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.4; }

/* Light phases */
.phase--light { background: var(--white); }
.phase--light .phase-image .phase-placeholder { background: linear-gradient(135deg, var(--warm-bg-alt), var(--petrol-light)); }
.phase--light .phase-image .phase-placeholder svg { stroke: var(--petrol); }
.phase--light .phase-image .phase-placeholder span { color: var(--petrol); }

/* Dark phases */
.phase--dark { background: var(--navy); }
.phase--dark .phase-image .phase-placeholder { background: linear-gradient(135deg, var(--navy-light), #1a2340); }
.phase--dark .phase-image .phase-placeholder svg { stroke: var(--gold); }
.phase--dark .phase-image .phase-placeholder span { color: var(--gold); }
.phase--dark h3, .phase--dark p, .phase--dark .phase-desc { color: var(--text-on-navy); }
.phase--dark .phase-num { color: var(--gold); }
.phase--dark .phase-service-link { color: var(--text-on-navy)!important; }
.phase--dark .phase-service-link:hover { color: var(--gold)!important; }
.phase--dark .btn-secondary-light { background: transparent; border-color: rgba(255,255,255,0.4); color: var(--white); }
.phase--dark .btn-secondary-light:hover { background: var(--white); color: var(--navy); }

.phase-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(40px, 6vw, 80px); position: relative; z-index: 2;
}
.phase-num { font-family: var(--font-heading); font-weight: 700; font-size: clamp(56px,7vw,80px); line-height: 1; color: var(--petrol); opacity: 0.15; position: absolute; top: clamp(24px,4vw,56px); right: clamp(24px,4vw,56px); }
.phase--reverse .phase-num { right: auto; left: clamp(24px,4vw,56px); }
.phase-content .section-eyebrow { text-align: left; margin-bottom: 12px; }
.phase-content h3 { font-size: clamp(28px,3vw,36px); margin-bottom: 16px; line-height: 1.15; }
.phase-desc { font-size: 17px; color: var(--text-muted); line-height: 1.65; margin-bottom: 32px; max-width: 440px; }
.phase-services-list { list-style: none; margin-bottom: 32px; }
.phase-services-list li { margin-bottom: 8px; }
.phase-service-link { font-family: var(--font-heading); font-weight: 600; font-size: 15px; color: var(--text-dark); display: inline-flex; align-items: center; gap: 8px; transition: color 0.3s, gap 0.3s; }
.phase-service-link:hover { color: var(--petrol); gap: 12px; }
.phase-service-link svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: var(--section-pad) 0; background: var(--navy); position: relative; overflow: hidden; }
.testimonials::before { content: ''; position: absolute; top: 0; left: 15%; width: 1px; height: 100%; background: linear-gradient(180deg, transparent, rgba(197,169,68,0.12), transparent); }
.testimonials .section-eyebrow { color: var(--gold); }
.testimonials h2 { color: var(--white); }
.test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.test-card { padding: 36px; border-radius: var(--radius-lg); background: var(--navy-light); border: 1px solid rgba(255,255,255,0.06); position: relative; }
.test-card::before { content: '\201C'; font-family: var(--font-heading); font-size: 56px; font-weight: 700; color: var(--gold); opacity: 0.25; position: absolute; top: 16px; left: 28px; line-height: 1; }
.test-stars { display: flex; gap: 2px; margin-bottom: 14px; }
.test-stars svg { width: 14px; height: 14px; fill: var(--gold); }
.test-text { font-size: 15px; line-height: 1.7; color: var(--text-on-navy); margin-bottom: 24px; padding-top: 12px; font-style: italic; position: relative; z-index: 2; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--petrol); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; font-size: 15px; color: var(--white); }
.test-name { font-family: var(--font-heading); font-weight: 600; font-size: 14px; color: var(--white); }
.test-role { font-size: 12px; color: var(--text-on-navy-muted); }

/* ============================================================
   FÖRDER HIGHLIGHT
   ============================================================ */
.foerder { padding: var(--section-pad) 0; background: var(--petrol); position: relative; overflow: hidden; }
.foerder::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: rgba(197,169,68,0.06); }
.foerder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.foerder-content h2 { color: var(--white); margin-bottom: 16px; }
.foerder-content p { color: rgba(255,255,255,0.8); font-size: 17px; line-height: 1.65; margin-bottom: 32px; }
.foerder-check { list-style: none; margin-bottom: 32px; }
.foerder-check li { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,0.9); font-size: 16px; line-height: 1.55; margin-bottom: 12px; }
.foerder-check svg { width: 20px; height: 20px; stroke: var(--gold); flex-shrink: 0; margin-top: 2px; }
.foerder-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.foerder-stat { text-align: center; padding: 28px 12px; background: rgba(255,255,255,0.06); border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.08); transition: all 0.3s; }
.foerder-stat:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.foerder-stat-num { font-family: var(--font-heading); font-weight: 700; font-size: clamp(28px,3.5vw,40px); color: var(--gold); line-height: 1.1; margin-bottom: 6px; }
.foerder-stat-label { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.4; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: var(--section-pad) 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 5fr 6fr; gap: 72px; align-items: center; }
.about-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4; background: var(--warm-bg-alt); }
.about-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.88) contrast(1.04) brightness(1.02); }
.about-accent { position: absolute; bottom: -12px; right: -12px; width: 80px; height: 80px; border: 3px solid var(--gold); border-radius: var(--radius); opacity: 0.25; z-index: -1; }
.about-content .section-eyebrow { text-align: left; }
.about-content h2 { margin-bottom: 20px; }
.about-text { font-size: 17px; line-height: 1.7; color: var(--text-muted); margin-bottom: 28px; }
.about-list { list-style: none; margin-bottom: 32px; }
.about-list li { display: grid; grid-template-columns: auto 1fr; gap: 12px; margin-bottom: 14px; font-size: 15px; line-height: 1.55; }
.about-list svg { width: 20px; height: 20px; stroke: var(--petrol); flex-shrink: 0; margin-top: 1px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: var(--section-pad) 0; background: var(--warm-bg); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 24px 0; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font-heading); font-weight: 700; font-size: 16px; color: var(--text-dark); transition: color 0.3s; min-height: 48px; }
.faq-q:hover { color: var(--petrol); }
.faq-q:focus-visible { outline: 2px solid var(--aktions-blau); outline-offset: 4px; border-radius: 4px; }
.faq-icon { width: 24px; height: 24px; flex-shrink: 0; position: relative; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--petrol); transition: transform 0.3s; }
.faq-icon::before { top: 50%; left: 4px; right: 4px; height: 2px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 4px; bottom: 4px; width: 2px; transform: translateX(-50%); }
.faq-q[aria-expanded="true"] .faq-icon::after { transform: translateX(-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s; }
.faq-a.open { max-height: 300px; }
.faq-a-inner { padding: 0 0 24px; font-size: 15px; line-height: 1.7; color: var(--text-muted); }

/* ============================================================
   BLOG
   ============================================================ */
.blog-preview { padding: var(--section-pad) 0; background: var(--warm-bg-alt); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-light); transition: all 0.4s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.blog-img { aspect-ratio: 16/9; position: relative; display: flex; align-items: center; justify-content: center; }
.blog-tag { position: absolute; top: 14px; left: 14px; font-family: var(--font-heading); font-weight: 600; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; background: var(--petrol); color: var(--white); }
.blog-body { padding: 24px; }
.blog-date { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.blog-card h3 { font-size: 17px; line-height: 1.35; margin-bottom: 10px; }
.blog-card p { font-size: 14px; color: var(--text-muted); line-height: 1.55; margin-bottom: 14px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { padding: var(--section-pad) 0; background: var(--white); text-align: center; }
.cta-box { max-width: 700px; margin: 0 auto; padding: 60px 44px; background: var(--warm-bg); border-radius: var(--radius-lg); border: 1px solid var(--border-light); position: relative; }
.cta-box::before { content: ''; position: absolute; top: -8px; left: 50%; transform: translateX(-50%); width: 16px; height: 16px; background: var(--gold); border-radius: 50%; opacity: 0.4; }
.cta-box h2 { margin-bottom: 16px; }
.cta-box p { font-size: 17px; color: var(--text-muted); line-height: 1.65; margin-bottom: 32px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.cta-contact { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; }
.cta-contact a { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-muted); transition: color 0.3s; }
.cta-contact a:hover { color: var(--petrol); }
.cta-contact svg { width: 16px; height: 16px; stroke: var(--petrol); }

/* ============================================================
   FOOTER (compact)
   ============================================================ */
.footer { background: var(--navy); padding: 56px 0 28px; color: var(--text-on-navy-muted); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 280px; margin-bottom: 16px; }
.footer-claim { font-size: 12px; color: var(--gold); opacity: 0.6; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); transition: all 0.3s; }
.footer-social a:hover { background: rgba(255,255,255,0.06); border-color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; fill: var(--text-on-navy-muted); }
.footer h4 { font-family: var(--font-heading); font-weight: 600; font-size: 13px; color: var(--white); margin-bottom: 16px; letter-spacing: 0.03em; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 13px; color: var(--text-on-navy-muted); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-address { font-size: 13px; line-height: 1.8; }
.footer-address a { color: var(--text-on-navy-muted); transition: color 0.3s; }
.footer-address a:hover { color: var(--gold); }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a, .footer-legal button { font-size: 12px; color: var(--text-on-navy-muted); transition: color 0.3s; background: none; border: none; cursor: pointer; }
.footer-legal a:hover, .footer-legal button:hover { color: var(--white); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner { position: fixed; bottom: 24px; left: 24px; max-width: 480px; z-index: 1500; background: var(--navy); color: rgba(255,255,255,0.85); padding: 24px 28px; border-radius: var(--radius); box-shadow: 0 8px 40px rgba(0,0,0,0.25); font-size: 13px; line-height: 1.7; transform: translateY(120%); transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { margin-bottom: 14px; }
.cookie-banner a { color: var(--gold); border-bottom: 1px solid rgba(197,169,68,0.3); }
.cookie-btns { display: flex; gap: 10px; }
.cookie-btn { padding: 10px 20px; font-family: var(--font-heading); font-size: 12px; font-weight: 700; border: none; cursor: pointer; transition: all 0.3s; border-radius: var(--radius-sm); min-height: 44px; }
.cookie-btn-accept { background: var(--gold); color: var(--white); }
.cookie-btn-accept:hover { background: var(--gold-light); }
.cookie-btn-reject { background: transparent; color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.15); }
.cookie-btn-reject:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeRight { from { opacity: 0; transform: translateX(32px); } to { opacity: 1; transform: translateX(0); } }

.reveal { opacity: 0; transform: translateY(20px); transition: all 0.7s cubic-bezier(0.4,0,0.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Card reveal with micro-rotation */
.reveal-card { opacity: 0; transform: translateY(20px) rotate(1deg); transition: all 0.7s cubic-bezier(0.4,0,0.2,1); }
.reveal-card.visible { opacity: 1; transform: translateY(0) rotate(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { max-width: 100%; }
  .hero-visual { max-width: 440px; margin: 0 auto; }
  .phase { grid-template-columns: 1fr; }
  .phase-image { min-height: 280px; }
  .phase--reverse .phase-image { order: 0; }
  .phase-num { font-size: 56px!important; }
  .test-grid { grid-template-columns: 1fr 1fr; }
  .foerder-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img { max-width: 380px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .persona-grid { grid-template-columns: 1fr; }
  .mega-dropdown { width: 600px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--white); padding: 80px 24px 24px; gap: 0; overflow-y: auto; z-index: 999; }
  .nav-links.open > li { border-bottom: 1px solid var(--border-light); }
  .nav-links.open > li > a, .nav-links.open > li > button { display: block; padding: 16px 0!important; font-size: 16px!important; width: 100%; text-align: left; }
  .nav-links.open .mega-dropdown { position: static; transform: none; width: 100%; box-shadow: none; border: none; padding: 0; display: none; grid-template-columns: 1fr; gap: 0; opacity: 1; visibility: visible; pointer-events: auto; border-radius: 0; }
  .nav-links.open .mega-dropdown::before { display: none; }
  .nav-links.open .mega-dropdown.open { display: grid; }
  .nav-links.open .mega-col { padding: 16px 16px; }
  .nav-links.open .mega-col::after { display: none; }
  .nav-links.open .mega-phase-icon { display: none; }
  /* Mobile: always text first, image second in phases */
  .phase { grid-template-columns: 1fr; }
  .phase-image { order: 1; min-height: 220px; }
  .phase-content { order: 0; }
  .phase--reverse .phase-image { order: 1; }
  .faq-q { font-size: 15px; padding: 20px 0; min-height: 56px; }
  .proof-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .proof-item:nth-child(2)::after { display: none; }
  .test-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .foerder-stats { grid-template-columns: repeat(3,1fr); gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .hero-trust { flex-direction: column; gap: 10px; }
  .cta-box { padding: 40px 24px; }
  .cookie-banner { left: 12px; right: 12px; max-width: none; bottom: 12px; }
}
@media (max-width: 480px) {
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-item::after { display: none; }
  .proof-number { font-size: 28px; }
  .foerder-stats { grid-template-columns: 1fr; }
  .cta-contact { flex-direction: column; align-items: center; gap: 12px; }
}

*:focus-visible { outline: 2px solid var(--aktions-blau); outline-offset: 2px; border-radius: 4px; }

/* Page Transition */
.page-fade { animation: pageFadeIn 0.4s ease forwards; }
.page-fade-out { opacity: 0; transition: opacity 0.25s ease; }

/* ============================================================
   FEATURE 1: Scroll Progress Bar
   ============================================================ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 1100;
  background: linear-gradient(90deg, var(--gold), var(--petrol));
  width: 0%; transition: width 0.05s linear;
  box-shadow: 0 0 8px rgba(197, 169, 68, 0.4);
}

/* ============================================================
   FEATURE 2: Floating Mobile CTA
   ============================================================ */
.mobile-cta {
  display: none; position: fixed; bottom: 24px; right: 24px; z-index: 1400;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--aktions-blau); color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 103, 255, 0.4);
  align-items: center; justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: none; cursor: pointer; text-decoration: none;
}
.mobile-cta:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(0, 103, 255, 0.5); }
.mobile-cta svg { width: 24px; height: 24px; stroke: var(--white); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 768px) { .mobile-cta { display: flex; } }

/* ============================================================
   FEATURE 3: Phase Connection Line
   ============================================================ */
.phase-timeline {
  position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
  transform: translateX(-50%); z-index: 5; pointer-events: none;
  display: none;
}
.phase-timeline-track { width: 100%; height: 100%; background: rgba(197,169,68,0.1); position: relative; }
.phase-timeline-fill { width: 100%; height: 0%; background: linear-gradient(180deg, var(--gold), var(--petrol)); transition: height 0.1s linear; position: absolute; top: 0; }
.phase-timeline-dot { position: absolute; left: 50%; transform: translateX(-50%); width: 12px; height: 12px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px rgba(197,169,68,0.4); z-index: 6; }
@media (min-width: 1025px) { .phase-timeline { display: block; } }

/* ============================================================
   FEATURE 4: Hero Word Rotation (JS-driven)
   ============================================================ */
.word-rotate {
  display: inline-block; position: relative; overflow: hidden;
  vertical-align: bottom; height: 1.15em;
}
.word-rotate-inner {
  display: block; position: relative;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.word-rotate-inner span {
  display: block; height: 1.15em; line-height: 1.15;
}

/* ============================================================
   Scroll-Down Indicator (Calida-style)
   ============================================================ */
.hero-scroll {
  position: absolute;
  bottom: 140px; /* above the diagonal navy bleed */
  left: 0; right: 0; z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeUp 0.8s 1.4s forwards;
}
.hero-scroll span {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); font-family: var(--font-heading); font-weight: 600;
}
.hero-scroll-line {
  width: 1px; height: 36px; position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute; top: -100%; left: 0;
  width: 1px; height: 100%;
  background: var(--gold);
  animation: scroll-line 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes scroll-line {
  0% { top: -100%; }
  50% { top: 0; }
  100% { top: 100%; }
}

/* ============================================================
   FEATURE 5: Hamburger → X Animation
   ============================================================ */
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }


/* ============================================================
   SUBPAGE-SPECIFIC STYLES
   ============================================================ */

.nav--subpage {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: 10px 0;
}

.subpage-hero {
  padding: 120px 0 72px;
  background: var(--white);
  position: relative;
}
.subpage-hero .section-eyebrow { text-align: left; }
.subpage-hero h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.subpage-hero .lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 32px;
}

.breadcrumbs {
  display: flex; gap: 8px; align-items: center;
  font-size: 13px; color: var(--text-muted); margin-bottom: 24px;
}
.breadcrumbs a { color: var(--petrol); transition: color 0.3s; }
.breadcrumbs a:hover { color: var(--petrol-dark); }
.breadcrumbs .sep { opacity: 0.4; }

.content-section { padding: var(--section-pad) 0; }
.content-section:nth-child(even) { background: var(--warm-bg); }
.content-section h2 { margin-bottom: 20px; }
.content-section p {
  font-size: 17px; line-height: 1.7; color: var(--text-body);
  margin-bottom: 20px; max-width: 720px;
}

/* Navy content section for subpages */
.content-section--dark {
  background: var(--navy) !important;
  color: var(--text-on-navy);
  padding: var(--section-pad) 0;
}
.content-section--dark h2 { color: var(--white); }
.content-section--dark p { color: var(--text-on-navy); max-width: 720px; }
.content-section--dark .section-eyebrow { color: var(--gold); }
.content-section--dark .feature-card { background: var(--navy-light); border-color: rgba(255,255,255,0.06); }
.content-section--dark .feature-card h3 { color: var(--white); }
.content-section--dark .feature-card p { color: var(--text-on-navy-muted); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 40px;
}
.feature-card {
  padding: 32px 28px; background: var(--white);
  border-radius: var(--radius); border: 1px solid var(--border-light);
  transition: all 0.3s;
}
.feature-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.feature-card h3 { font-size: 18px; margin-bottom: 8px; }
.feature-card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; margin-bottom: 0; max-width: none; }

.cross-sell { padding: var(--section-pad) 0; background: var(--petrol-light); }
.cross-sell-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.cross-sell-card { padding: 28px 24px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border-light); transition: all 0.3s; }
.cross-sell-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.cross-sell-card h3 { font-size: 16px; margin-bottom: 6px; }
.cross-sell-card p { font-size: 14px; color: var(--text-muted); line-height: 1.5; margin-bottom: 12px; max-width: none; }

.inline-cta {
  padding: 56px 40px; background: var(--navy);
  border-radius: var(--radius-lg); text-align: center; margin: 48px 0;
}
.inline-cta h2 { color: var(--white); margin-bottom: 16px; font-size: clamp(24px,3vw,32px); }
.inline-cta p { color: var(--text-on-navy-muted); font-size: 17px; margin: 0 auto 28px; max-width: 540px; }

.geo-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; background: var(--petrol-light);
  border-radius: 100px; font-size: 13px; font-weight: 600; color: var(--petrol);
}

/* Hub pages */
.hub-services { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.hub-service-card { padding: 36px 32px; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border-light); transition: all 0.4s; }
.hub-service-card::before { content: ''; display: block; width: 40px; height: 3px; background: var(--gold); border-radius: 2px; margin-bottom: 20px; }
.hub-service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,112,122,0.1); }
.hub-service-card h3 { font-size: 20px; margin-bottom: 10px; }
.hub-service-card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; max-width: none; }

/* Form styles */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: var(--font-heading); font-weight: 600; font-size: 14px; margin-bottom: 6px; color: var(--text-dark); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--border-light); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 16px; color: var(--text-body); transition: border-color 0.3s; background: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--petrol); outline: none; }
.form-group textarea { min-height: 150px; resize: vertical; }

/* Category pills for blog */
.category-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 48px; justify-content: center; }
.category-pill { padding: 8px 20px; border-radius: 100px; border: 2px solid var(--border-light); background: var(--white); font-family: var(--font-heading); font-weight: 600; font-size: 13px; color: var(--text-muted); cursor: pointer; transition: all 0.3s; }
.category-pill:hover, .category-pill.active { border-color: var(--petrol); color: var(--petrol); background: var(--petrol-light); }

/* Contact page grid */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info { padding: 40px; background: var(--petrol); border-radius: var(--radius-lg); color: var(--white); }
.contact-info h3 { color: var(--white); margin-bottom: 24px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px; font-size: 16px; }
.contact-info-item svg { width: 20px; height: 20px; stroke: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-info-item a { color: var(--white); transition: color 0.3s; }
.contact-info-item a:hover { color: var(--gold); }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════
   Service Pages — Shared Styles
   (extracted from inline <style> blocks)
   ═══════════════════════════════════════ */

@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* ── Dark Hero ── */
.service-hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px;
}
.service-hero .container { position: relative; z-index: 2; }
.service-hero .breadcrumbs a { color: var(--text-on-navy-muted); }
.service-hero .breadcrumbs .sep, .service-hero .breadcrumbs span:last-child { color: var(--text-on-navy-muted); }
.service-hero .section-eyebrow { text-align: left; color: var(--gold); }
.service-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--white);
  max-width: 700px;
}
.service-hero .lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-on-navy);
  max-width: 580px;
  margin-bottom: 36px;
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.stat-item { position: relative; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 15%; height: 70%; width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: 0.25;
}
.stat-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num .accent { color: var(--gold); }
.stat-label {
  font-size: 15px;
  color: var(--text-on-navy-muted);
  line-height: 1.4;
  max-width: 200px;
  margin: 0 auto;
}
.stats-text {
  max-width: 640px;
  margin: 40px auto 0;
  text-align: center;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-on-navy);
  position: relative;
  z-index: 2;
}

/* ── Timeline ── */
.timeline-section { padding: var(--section-pad) 0; background: var(--white); }
.timeline {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  padding-left: 72px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--petrol));
  opacity: 0.3;
}
.tl-item {
  position: relative;
  padding-bottom: 40px;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-num {
  position: absolute;
  left: -72px;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(32, 44, 89, 0.2);
  z-index: 2;
}
.tl-item h3 {
  font-size: 20px;
  margin-bottom: 6px;
  padding-top: 10px;
}
.tl-item p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 520px;
}

/* ── Dark Cross-sell ── */
.dark-cross {
  background: var(--navy);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.dark-cross .section-eyebrow { color: var(--gold); }
.dark-cross h2 { color: var(--white); }
.dark-cross .cross-sell-grid { position: relative; z-index: 2; }
.dark-cross .cross-sell-card {
  background: var(--navy-light);
  border-color: rgba(255,255,255,0.06);
}
.dark-cross .cross-sell-card h3 { color: var(--white); }
.dark-cross .cross-sell-card p { color: var(--text-on-navy-muted); }
.dark-cross .cross-sell-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}
.dark-cross .btn-text { color: var(--gold); }

/* ── Wave separators ── */
.wave-sep { display: block; width: 100%; }

/* ── Footer Grid (inline fallback) ── */
.footer-grid {
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr 1.5fr !important;
  gap: 40px !important;
  margin-bottom: 40px !important;
}

/* ── FAQ Accordion ── */
.faq { padding: var(--section-pad) 0; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--text-dark);
  transition: color 0.3s;
  min-height: 56px;
}
.faq-q:hover { color: var(--petrol); }
.faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--petrol);
  transition: transform 0.3s;
}
.faq-icon::before { top: 50%; left: 4px; right: 4px; height: 2px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 4px; bottom: 4px; width: 2px; transform: translateX(-50%); }
.faq-q[aria-expanded="true"] .faq-icon::after { transform: translateX(-50%) scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a.open { max-height: 400px; }
.faq-a-inner {
  padding: 0 0 24px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ── "Für wen" Segment ── */
.fit-section { padding: var(--section-pad) 0; background: var(--warm-bg); }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 800px; margin: 0 auto; }
.fit-col h3 { font-size: 18px; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.fit-col ul { list-style: none; }
.fit-col li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 15px; line-height: 1.55; color: var(--text-body); }
.fit-col li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.fit-yes svg { stroke: var(--petrol); }
.fit-no svg { stroke: var(--text-muted); }

/* ── Sticky Mini CTA ── */
.sticky-cta {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--navy);
  padding: 10px 0;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sticky-cta-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
}
.sticky-cta-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.sticky-cta .btn { padding: 8px 20px; font-size: 13px; }

/* ── Responsive (Service Pages) ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .stat-item::after { display: none; }
  .stat-num { font-size: 40px; }
  .fit-grid { grid-template-columns: 1fr; }
  .timeline { padding-left: 60px; }
  .tl-num { left: -60px; width: 40px; height: 40px; font-size: 15px; }
  .timeline::before { left: 19px; }
  .footer-grid { grid-template-columns: 1fr !important; }
}

/* ═══════════════════════════════════════
   Micro-Animations
   ═══════════════════════════════════════ */

/* Counter Animation */
.count-up {
  --target: 0;
  transition: none;
}
.count-up.animated {
  animation: none; /* JS handles the counting */
}

/* Stats Bar Number Animation */
.stats-grid .stat-number,
.stats-bar .stat-number,
.stats-grid .stat-num,
.stats-bar .stat-num {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.stats-grid .stat-number.visible,
.stats-bar .stat-number.visible,
.stats-grid.visible .stat-number,
.stats-bar.visible .stat-number,
.stats-grid .stat-num.visible,
.stats-bar .stat-num.visible,
.stats-grid.visible .stat-num,
.stats-bar.visible .stat-num {
  opacity: 1;
  transform: translateY(0);
}

/* Timeline Step Animation */
.timeline-step,
.process-step,
.tl-item {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.timeline-step.visible,
.process-step.visible,
.tl-item.visible {
  opacity: 1;
  transform: translateX(0);
}
.timeline-step:nth-child(2),
.process-step:nth-child(2),
.tl-item:nth-child(2) { transition-delay: 0.15s; }
.timeline-step:nth-child(3),
.process-step:nth-child(3),
.tl-item:nth-child(3) { transition-delay: 0.3s; }
.timeline-step:nth-child(4),
.process-step:nth-child(4),
.tl-item:nth-child(4) { transition-delay: 0.45s; }
.timeline-step:nth-child(5),
.process-step:nth-child(5),
.tl-item:nth-child(5) { transition-delay: 0.6s; }
.timeline-step:nth-child(6),
.process-step:nth-child(6),
.tl-item:nth-child(6) { transition-delay: 0.75s; }

/* FAQ Accordion Smooth */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark);
  transition: color 0.3s;
  min-height: 48px;
}
.faq-question:hover { color: var(--petrol); }
.faq-question .faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  position: relative;
}
.faq-question .faq-icon::before,
.faq-question .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--petrol);
  transition: transform 0.3s;
}
.faq-question .faq-icon::before { top: 50%; left: 4px; right: 4px; height: 2px; transform: translateY(-50%); }
.faq-question .faq-icon::after { left: 50%; top: 4px; bottom: 4px; width: 2px; transform: translateX(-50%); }
.faq-question[aria-expanded="true"] .faq-icon::after { transform: translateX(-50%) scaleY(0); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer,
.faq-answer.open {
  max-height: 500px;
}
.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Service Card Hover */
.service-card,
.hub-card,
.hub-service-card,
.cross-sell-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover,
.hub-card:hover,
.hub-service-card:hover,
.cross-sell-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* Progress Bar Fill Animation */
.progress-fill {
  width: 0;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.progress-fill.visible {
  width: var(--progress, 100%);
}

/* Fade-in from bottom (general purpose) */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered grid items */
.stagger-grid > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.stagger-grid.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-grid.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-grid.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-grid.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-grid.visible > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-grid.visible > *:nth-child(6) { transition-delay: 0.5s; }
.stagger-grid.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ Homepage Phase Scroll Progress ═══ */
.phases-wrapper {
  position: relative;
}
.phases-wrapper::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--border-light, #E8E4DC);
  transform: translateX(-50%);
  z-index: 0;
}
.phase-progress-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--petrol, #00707A), var(--gold, #C5A944));
  transform: translateX(-50%);
  transition: height 0.1s linear;
  z-index: 1;
}
.phase {
  position: relative;
  z-index: 2;
}
.phase-num {
  transition: color 0.4s ease, transform 0.4s ease;
}
.phase.active .phase-num {
  color: var(--gold, #C5A944);
  transform: scale(1.1);
}
@media (max-width: 900px) {
  .phases-wrapper::before,
  .phase-progress-line {
    left: 24px;
  }
}
