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

/* ============================================================
   DESIGN TOKENS — custom-bi.com Farbpalette
   ============================================================ */

:root {
  /* Hintergründe */
  --bg-nav:          #08060F;
  --bg-black:        #0D0B18;
  --bg-section:      #120F20;
  --bg-card:         #1C1A2E;
  --bg-card-active:  #211E35;
  --bg-form:         #13111F;
  --bg-input:        #1A1830;
  --bg-card-hover:   #242140;
  --bg-light:        #F5F5F7;
  --bg-white:        #FFFFFF;

  /* Text */
  --text-white:      #FFFFFF;
  --text-body:       #9896B0;
  --text-muted:      #6B6880;
  --text-nav:        #D0CEE8;
  --text-dark:       #1D1D1F;
  --text-dark-muted: #6E6E73;

  /* Akzentfarben — Electric Blue */
  --accent:          #4F7BF7;
  --accent-light:    #6B93FF;
  --accent-dark:     #3D63E0;
  --accent-glow:     rgba(79, 123, 247, 0.20);
  --accent-hover:    rgba(79, 123, 247, 0.12);
  --accent-border:   rgba(79, 123, 247, 0.60);

  /* Violett — Tiefe & Atmosphäre */
  --violet:          #4B3CB4;
  --violet-hero:     rgba(75, 60, 180, 0.15);
  --violet-section:  rgba(75, 60, 180, 0.08);
  --violet-hover:    rgba(75, 60, 180, 0.18);
  --violet-glow:     rgba(75, 60, 180, 0.25);
  --violet-divider:  rgba(75, 60, 180, 0.30);

  /* Buttons */
  --btn-primary-bg:     #4F7BF7;
  --btn-primary-text:   #FFFFFF;
  --btn-primary-hover:  #3D63E0;
  --btn-secondary-bg:   #FFFFFF;
  --btn-secondary-text: #0D0B18;

  /* Strukturelemente */
  --border-subtle:   rgba(255, 255, 255, 0.08);
  --border-card:     rgba(255, 255, 255, 0.06);
  --border-active:   rgba(79, 123, 247, 0.60);
  --shadow-card:     0 8px 40px rgba(0, 0, 0, 0.50);
  --shadow-blue:     0 0 40px rgba(79, 123, 247, 0.15);
  --shadow-violet:   0 0 60px rgba(75, 60, 180, 0.20);

  /* Typografie */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Abstände */
  --section-padding:    140px;
  --container-max:      980px;
  --container-wide:     1200px;
  --radius:             16px;

  /* Animationen */
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.6s;
}

/* ============================================================
   RESET & BASE
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg-black);
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ============================================================
   LAYOUT
   ============================================================ */

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

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

.section {
  padding: var(--section-padding) 0;
}

.section--black   { background: var(--bg-black); }
.section--section { background: var(--bg-section); }
.section--card    { background: var(--bg-card); }
.section--light   { background: var(--bg-light); }
.section--white   { background: var(--bg-white); }

/* ============================================================
   TYPOGRAFIE
   ============================================================ */

.overline {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-light);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.overline--dark { color: var(--accent); }

h1 {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-white);
}

h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.003em;
  color: var(--text-white);
}

h3 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-white);
}

.headline--huge {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.003em;
  color: var(--text-white);
}

.body-text {
  font-size: 19px;
  line-height: 1.65;
  color: var(--text-body);
  max-width: 560px;
}

.body-text--light {
  color: rgba(220, 218, 235, 0.75);
}

.text-accent { color: var(--accent-light); }
.text-white  { color: var(--text-white); }
.text-muted  { color: var(--text-muted); }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 980px;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
  font-family: var(--font);
}

.btn--primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
}
.btn--primary:hover {
  background: var(--btn-primary-hover);
  transform: scale(1.02);
}

.btn--white {
  background: var(--btn-secondary-bg);
  color: var(--btn-secondary-text);
}
.btn--white:hover {
  background: #e8e8ed;
  transform: scale(1.02);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.30);
}

.btn--large { padding: 18px 36px; font-size: 19px; }
.btn--small { padding: 8px 18px; font-size: 14px; }

/* ============================================================
   SCROLL ANIMATIONEN
   ============================================================ */

.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.10s; }
.fade-in-delay-2 { transition-delay: 0.20s; }
.fade-in-delay-3 { transition-delay: 0.30s; }
.fade-in-delay-4 { transition-delay: 0.40s; }

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav-global {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(8, 6, 15, 0.92);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo__main {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
  white-space: nowrap;
}

.nav-logo__sub {
  font-size: 10px;
  color: var(--text-muted);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 14px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 13px;
  color: rgba(208, 206, 232, 0.85);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text-white); }

.nav-lang {
  font-size: 13px;
  color: var(--text-muted);
}
.nav-lang a { color: var(--text-muted); }
.nav-lang a.active { color: var(--accent-light); font-weight: 600; }
.nav-lang span { color: rgba(255,255,255,0.2); margin: 0 4px; }

.nav-cta {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  border-radius: 980px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--btn-primary-hover); }

.nav-global__ctas {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-mobile-ctas { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-white);
  transition: all 0.3s;
}

/* Lokale Sub-Navigation */
.nav-local {
  position: sticky;
  top: 53px;
  z-index: 190;
  background: rgba(13, 11, 24, 0.95);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-local--empty {
  height: 3px;
  border-bottom: none;
}

.nav-local__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 24px;
}

.nav-local__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-white);
  white-space: nowrap;
}

.nav-local__links {
  display: flex;
  list-style: none;
  gap: 24px;
  flex: 1;
  justify-content: center;
}

.nav-local__links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.nav-local__links a:hover { color: var(--text-white); }
.nav-local__links a.active {
  color: var(--text-white);
  border-bottom-color: var(--accent);
}

.nav-local__ctas {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

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

.hero {
  background: var(--bg-black);
  color: var(--text-white);
  text-align: center;
  overflow: hidden;
  position: relative;
  padding: 0 0 100px;
}

.hero__glow {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 70% at 30% 40%, var(--violet-hero) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 75% 60%, rgba(79, 123, 247, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero__title-wrap {
  padding: 100px 24px 48px;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-size: 22px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
  display: block;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(52px, 9vw, 96px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.04;
  color: var(--text-white);
  margin-bottom: 0;
}

.hero__image-wrap {
  width: 100%;
  max-width: 680px;
  margin: 0 auto 52px;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ---- Slideshow ---- */
.hero__slideshow {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card), var(--shadow-violet);
  background: var(--bg-card);
  aspect-ratio: 16 / 9;
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.hero__slide.active {
  opacity: 1;
}

.hero__slide-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}

.hero__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.hero__dot.active {
  background: var(--accent);
  transform: scale(1.3);
}
/* ---- Ende Slideshow ---- */

.hero__placeholder {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-active) 100%);
  border-radius: 20px;
  border: 1px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-card), var(--shadow-violet);
  position: relative;
  overflow: hidden;
}

.hero__placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(79, 123, 247, 0.06) 0%, transparent 70%);
}

.hero__placeholder-icon {
  font-size: 56px;
  position: relative;
  z-index: 1;
}

.hero__placeholder-text {
  font-size: 17px;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.hero__checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 760px;
  margin: 0 auto 56px;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.hero__checklist li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 22px;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  line-height: 1.35;
}

.hero__checklist li::before {
  content: '';
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: center;
}

.hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  padding: 0 24px;
}

/* ============================================================
   SEKTION: WAS IST PEP
   ============================================================ */

.pep-quote {
  background: rgba(79, 123, 247, 0.08);
  border: 1px solid rgba(79, 123, 247, 0.30);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  padding: 18px 24px;
  font-size: 17px;
  font-style: italic;
  color: rgba(220, 218, 235, 0.85);
  line-height: 1.65;
  margin: 4px 0 8px;
}

.pep-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}

.pep-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: all 0.3s var(--ease);
}

.pep-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-border);
}

.pep-card__number {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--text-white);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pep-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 6px;
}

.pep-card__text {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .pep-cards { gap: 10px; }
}

/* ============================================================
   SEKTION: PROBLEM
   ============================================================ */

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet-divider) 30%, var(--accent-glow) 70%, transparent);
}

.section-intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 80px;
}

.section-intro h2 {
  margin-bottom: 20px;
}

.section-intro .body-text {
  max-width: 100%;
  margin: 0 auto;
  font-size: 19px;
  color: var(--text-body);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.3s var(--ease);
}

.problem-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(75, 60, 180, 0.35);
  box-shadow: 0 0 30px var(--violet-hover);
  transform: translateY(-2px);
}

.problem-card__icon {
  font-size: 28px;
  color: #F5A623;
  font-style: normal;
}

.problem-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-light);
}

.problem-card p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
}

.problem-highlight {
  margin-top: 48px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--violet) 100%);
  border-radius: var(--radius);
  padding: 28px 40px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-white);
}

/* ============================================================
   SEKTION: ROI / RETURN ON INVEST
   ============================================================ */

.roi-section {
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.roi-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 400px;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, var(--violet-glow) 0%, transparent 70%);
  pointer-events: none;
}

.roi-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 64px;
}

.roi-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 28px 36px;
  transition: all 0.3s var(--ease);
}

.roi-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-border);
  box-shadow: var(--shadow-blue);
}

.roi-item__number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--text-white);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.roi-item__content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 6px;
}

.roi-item__content p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
}

.roi-item__badge {
  background: rgba(79, 123, 247, 0.12);
  border: 1px solid var(--accent-border);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-light);
  text-align: center;
  white-space: nowrap;
  min-width: 200px;
}

.roi-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-card);
}

.roi-stat {
  background: var(--bg-section);
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.roi-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.6;
}

.roi-stat__number {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  color: var(--accent-light);
  letter-spacing: -0.02em;
  line-height: 1;
}

.roi-stat__label {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.35;
}

.roi-stat__desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.55;
}

/* ============================================================
   SEKTION: FEATURE STATEMENT
   ============================================================ */

.feature-statement {
  text-align: center;
  padding: 120px 24px;
}

.feature-statement h2 {
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--text-white);
  margin-bottom: 24px;
}

.feature-statement .body-text {
  margin: 0 auto;
  font-size: 21px;
}

/* ============================================================
   SEKTION: LEISTUNGEN / ICON GRID
   ============================================================ */

.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-card);
}

.icon-feature {
  background: var(--bg-card);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s var(--ease);
}

.icon-feature:hover {
  background: var(--bg-card-hover);
  box-shadow: inset 0 0 0 1px rgba(79, 123, 247, 0.3);
}

.icon-feature__icon {
  font-size: 40px;
  line-height: 1;
}

.icon-feature h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-white);
}

.icon-feature p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
}

/* ============================================================
   SEKTION: FEATURE ROW (Bild + Text)
   ============================================================ */

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}

.feature-row:last-child { margin-bottom: 0; }

.feature-row--reverse .feature-row__text { order: -1; }

.feature-row__media {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card), var(--shadow-violet);
}

.feature-row__placeholder {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-active) 100%);
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.feature-row__placeholder span {
  font-size: 48px;
}

.feature-row__placeholder p {
  font-size: 14px;
  color: var(--text-muted);
}

.feature-row__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-row__text h3 {
  font-size: clamp(26px, 3.5vw, 38px);
  line-height: 1.12;
}

/* ============================================================
   SEKTION: WARUM SO SCHNELL
   ============================================================ */

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: start;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 32px 36px;
  transition: all 0.3s var(--ease);
}

.why-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(75, 60, 180, 0.35);
  box-shadow: 0 0 40px var(--violet-hover);
}

.why-card__icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(79, 123, 247, 0.12);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
}

.why-card__text h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 8px;
}

.why-card__text p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.65;
}

/* ============================================================
   SEKTION: PHILOSOPHIE
   ============================================================ */

.philosophy-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

.philosophy-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 36px 40px;
  transition: all 0.3s var(--ease);
}

.philosophy-card:hover {
  border-color: rgba(75, 60, 180, 0.3);
  box-shadow: 0 0 30px var(--violet-hover);
}

.philosophy-card .overline {
  margin-bottom: 8px;
}

.philosophy-card p {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.65;
}

.philosophy-conclusion {
  background: linear-gradient(135deg, var(--accent) 0%, var(--violet) 100%);
  border-radius: var(--radius);
  padding: 28px 40px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-white);
  line-height: 1.55;
  text-align: center;
}

/* ============================================================
   SEKTION: ÜBER UNS
   ============================================================ */

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
  transition: all 0.3s var(--ease);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.team-card__header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 36px 36px 28px;
  border-bottom: 1px solid #e5e5ea;
}

.team-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--violet) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: white;
  flex-shrink: 0;
}

.team-card__name-block h3 {
  font-size: 22px;
  color: var(--text-dark);
}

.team-card__role {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  margin-top: 4px;
}

.team-card__body {
  padding: 28px 36px 36px;
}

.team-card__items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.team-card__items li {
  font-size: 15px;
  color: var(--text-dark-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.team-card__items li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
}

.team-card__credential {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e5e5ea;
  font-size: 13px;
  color: var(--text-dark-muted);
}

/* ============================================================
   SEKTION: PREISE
   ============================================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 44px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s var(--ease);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
}

.pricing-card--featured {
  background: var(--bg-card-active);
  color: var(--text-white);
  transform: scale(1.03);
  box-shadow: var(--shadow-card), var(--shadow-blue);
  border: 1px solid var(--border-active);
}

.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--text-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 980px;
  margin-bottom: 4px;
  align-self: flex-start;
}

.pricing-card__name {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
}

.pricing-card--featured .pricing-card__name { color: var(--text-white); }

.pricing-card__price {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.pricing-card--featured .pricing-card__price { color: var(--text-white); }

.pricing-card__period {
  font-size: 13px;
  color: var(--text-dark-muted);
  margin-top: -4px;
}

.pricing-card--featured .pricing-card__period { color: rgba(245, 245, 247, 0.55); }

.pricing-card__monthly {
  font-size: 17px;
  font-weight: 600;
  color: var(--accent-dark);
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 4px;
}

.pricing-card--featured .pricing-card__monthly {
  color: var(--accent-light);
  border-color: var(--border-subtle);
}

.pricing-features {
  list-style: none;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 8px;
}

.pricing-features li {
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  color: var(--text-dark-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-features li::before {
  content: '→';
  color: var(--accent);
  font-size: 14px;
  flex-shrink: 0;
}

.pricing-card--featured .pricing-features li {
  border-color: var(--border-subtle);
  color: rgba(245, 245, 247, 0.75);
}

.pricing-features li:last-child { border: none; }

.pricing-card .btn { width: 100%; justify-content: center; }

/* ============================================================
   SEKTION: NÄCHSTE SCHRITTE
   ============================================================ */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 40px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  position: relative;
}

.step-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-glow), transparent);
}

.step-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-border);
  box-shadow: var(--shadow-blue);
  transform: translateY(-4px);
}

.step-card__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--violet) 100%);
  color: var(--text-white);
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.step-card p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.5;
}

/* ============================================================
   SEKTION: KONTAKT
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-card);
}

.contact-card {
  background: var(--bg-section);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card__icon {
  font-size: 40px;
  line-height: 1;
}

.contact-card h3 { font-size: 22px; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  color: var(--text-white);
  font-size: 15px;
  font-family: var(--font);
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-muted); }

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.contact-form textarea { resize: vertical; min-height: 100px; }

.contact-form .btn {
  margin-top: 4px;
  width: 100%;
  justify-content: center;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.5;
}

.contact-list li a {
  color: var(--accent-light);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-list li a:hover { color: var(--text-white); }

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

.footer {
  background: var(--bg-nav);
  border-top: 1px solid var(--border-subtle);
  padding: 52px 0 32px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 24px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__logo {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
}

.footer__sub {
  font-size: 11px;
  color: var(--text-muted);
}

.footer__tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 10px;
  font-style: italic;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  justify-content: flex-end;
}

.footer__nav a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--text-white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 36px 32px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.cookie-banner__icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}
.cookie-banner h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 12px;
}
.cookie-banner__text {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 24px;
}
.cookie-banner__text a {
  color: var(--accent);
  text-decoration: none;
}
.cookie-banner__text a:hover { text-decoration: underline; }
.cookie-banner__actions {
  display: flex;
  gap: 12px;
}
.cookie-banner__actions .btn {
  flex: 1;
  justify-content: center;
}

/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */

@media (max-width: 900px) {
  :root { --section-padding: 80px; }

  .nav-links { display: none; }
  .nav-links.nav-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(8, 6, 15, 0.98);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border-subtle);
  }
  .nav-cta { display: none; }
  .nav-global__ctas { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile-ctas { display: flex; gap: 10px; flex-wrap: wrap; padding-top: 8px; border-top: 1px solid var(--border-subtle); }
  .nav-mobile-ctas { list-style: none; }

  .nav-local__title { display: none; }
  .nav-local__links { justify-content: flex-start; flex-wrap: wrap; gap: 12px; }

  .hero h1 { font-size: clamp(40px, 10vw, 64px); }
  .hero__placeholder { height: 260px; }
  .hero__checklist li { font-size: 17px; }

  .problem-grid  { grid-template-columns: 1fr; }
  .roi-stats     { grid-template-columns: 1fr; }
  .roi-item      { grid-template-columns: 48px 1fr; }
  .roi-item__badge { display: none; }
  .icon-grid     { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }
  .steps-grid    { grid-template-columns: repeat(2, 1fr); }
  .step-card::after { display: none; }
  .contact-grid  { grid-template-columns: 1fr; }
  .contact-card  { padding: 28px 16px; }
  .contact-card .btn { width: 100%; white-space: normal; }
  body { overflow-x: clip; }
  .feature-row   { grid-template-columns: 1fr; gap: 40px; }
  .feature-row--reverse .feature-row__text { order: 0; }
  .why-card      { grid-template-columns: 1fr; }
  .why-card__icon-wrap { width: 52px; height: 52px; font-size: 26px; }

  .footer__top { flex-direction: column; }
  .footer__nav { justify-content: flex-start; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 600px) {
  .cookie-banner { padding: 28px 20px; }
  .cookie-banner__actions { flex-direction: column; }
  .steps-grid { grid-template-columns: 1fr; }
  .roi-item { grid-template-columns: 1fr; }
  .roi-item__number { display: none; }
  .hero__cta { flex-direction: column; align-items: center; }
}
