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

:root {
  --dark:       #080d1a;
  --dark-2:     #0d1530;
  --dark-3:     #111c3a;
  --blue:       #3b82f6;
  --blue-light: #60a5fa;
  --indigo:     #6366f1;
  --cyan:       #22d3ee;
  --green:      #10b981;
  --text-light: #e2e8f0;
  --text-muted: #94a3b8;
  --surface:    #f8fafc;
  --border:     #e2e8f0;
  --page-accent: #3b82f6;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--surface);
  color: #1e293b;
  line-height: 1.6;
  overflow-x: hidden;
}


/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 68px;
  background: rgba(8, 13, 26, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center;
  padding: 0 24px;
}
.nav-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}

.nav-logo-icon {
  height: 44px;
  width: auto;
  object-fit: contain;
  animation: navIconFadeIn 2.0s ease forwards;
}

@keyframes navIconFadeIn {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}

.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: #fff; }
.nav-links a.nav-active { color: #fff; }

.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: opacity 0.2s !important;
}

.nav-cta:hover { opacity: 0.9; color: #fff !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: all 0.3s;
}

/* ─── HERO (Homepage) ─── */
.hero {
  min-height: 70vh;
  background: var(--dark);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 80px 40px 40px;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0%   { transform: translateY(0); }
  100% { transform: translateY(60px); }
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.hero-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.25), transparent 70%);
  top: -100px; right: -100px;
  animation: blobFloat 8s ease-in-out infinite;
}

.hero-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,0.2), transparent 70%);
  bottom: 0; left: 10%;
  animation: blobFloat 10s ease-in-out infinite reverse;
}

@keyframes blobFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

.hero-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.3);
  color: var(--blue-light);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}

.hero h1 .gradient-text,
.page-hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--blue-light), var(--cyan), var(--indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.75;
  max-width: 480px;
}

.hero-buttons {
  display: flex; gap: 16px; flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(59,130,246,0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(59,130,246,0.5);
}

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
}

/* Hero right – glass cards */
.hero-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}

.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(20px);
  transition: background 0.3s, transform 0.3s;
}

.hero-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
}


.hero-card-icon { font-size: 1.8rem; margin-bottom: 12px; }

.hero-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.hero-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.hero-card-stat {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

/* ─── PAGE HERO (Unterseiten) ─── */
.page-hero {
  min-height: 52vh;
  background: var(--dark);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 140px 40px 90px;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}

.page-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
}
.page-hero-blob-1 {
  width: 700px; height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.2), transparent 70%);
  top: -80px; left: 50%; transform: translateX(-50%);
}
.page-hero-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,0.15), transparent 70%);
  bottom: -60px; right: 5%;
}

.page-hero-inner {
  position: relative; z-index: 1;
  max-width: 860px; margin: 0 auto; width: 100%;
}

.page-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
}

.page-hero .hero-sub {
  max-width: 620px;
  margin-left: auto; margin-right: auto;
  text-align: center;
}

.page-hero .hero-buttons {
  justify-content: center;
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 40px;
}

.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ─── SECTIONS ─── */
section {
  padding: 100px 40px;
}

.section-inner {
  max-width: 1200px; margin: 0 auto;
}

.section-tag {
  display: inline-block;
  background: rgba(59,130,246,0.1);
  color: var(--blue);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title.centered { text-align: center; }

.section-sub {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 60px;
}

.section-sub.centered { text-align: center; max-width: 680px; margin-left: auto; margin-right: auto; }

/* ─── SERVICES ─── */
.services { background: #fff; }

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

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  border-color: rgba(59,130,246,0.3);
  box-shadow: 0 12px 40px rgba(59,130,246,0.1);
  transform: translateY(-4px);
}

.service-card:hover::before { opacity: 1; }

.service-card:nth-child(odd)  { background: #ffffff; }
.service-card:nth-child(even) { background: #f1f5f9; }
.services-grid--alt .service-card:nth-child(odd)  { background: #f1f5f9; }
.services-grid--alt .service-card:nth-child(even) { background: #ffffff; }

.service-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(99,102,241,0.1));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.65;
}

/* ─── STEPS ─── */
.steps { background: var(--surface); }

.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute; top: 32px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--indigo));
  opacity: 0.25;
}

.step-card {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.step-number {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  border: 2px solid rgba(59,130,246,0.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 auto 24px;
  position: relative; z-index: 1;
  background-color: var(--surface);
  box-shadow: 0 0 0 6px var(--surface);
}

.step-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: block;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.6;
}

/* ─── WHY US ─── */
.why { background: var(--surface); }

.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end;
}

.why-points { display: flex; flex-direction: column; gap: 28px; }

.why-point {
  display: flex; gap: 20px; align-items: flex-start;
}

.why-point-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}

.why-point h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.why-point p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

.why-visual {
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}

.why-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(59,130,246,0.15), transparent 60%);
}

.why-visual-content { position: relative; z-index: 1; }

.why-visual h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
}

.compare-row {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 12px; margin-bottom: 12px;
  align-items: center;
}

.compare-row.header {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.compare-row.header .col-highlight { color: var(--cyan); }

.compare-cell { font-size: 0.85rem; color: var(--text-muted); }
.compare-cell.bad  { color: #f87171; font-weight: 600; }
.compare-cell.good { color: var(--green); font-weight: 600; }

.compare-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 8px 0;
}

/* ─── PILLARS ─── */
.pillars { background: var(--dark-2); }
.pillars .section-tag { background: rgba(59,130,246,0.15); color: var(--blue-light); }
.pillars .section-title { color: #fff; }
.pillars .section-sub { color: var(--text-muted); }

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

.pillar-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 36px 32px;
  backdrop-filter: blur(10px);
  transition: background 0.3s, transform 0.3s;
  text-align: center;
}

.pillar-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
}

.pillar-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
  display: block;
}

.pillar-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.pillar-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── TARGETS ─── */
.targets { background: #fff; }

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

.target-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.target-card:hover {
  border-color: rgba(59,130,246,0.3);
  box-shadow: 0 8px 30px rgba(59,130,246,0.08);
  transform: translateY(-3px);
}

.target-emoji { font-size: 2.4rem; margin-bottom: 16px; }

.target-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.target-card p {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.55;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.testimonials .section-tag { background: rgba(59,130,246,0.15); color: var(--blue-light); }
.testimonials .section-title { color: #fff; }
.testimonials .section-sub { color: var(--text-muted); }

.testimonials-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: background 0.3s, transform 0.3s;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
}

.stars { color: #fbbf24; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }

.testimonial-text {
  font-size: 0.92rem;
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.author-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.author-name { font-size: 0.88rem; font-weight: 600; color: #fff; }
.author-role { font-size: 0.78rem; color: var(--text-muted); }

/* ─── PRICING ─── */
.pricing { background: var(--surface); }

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

.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.pricing-card.featured {
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  border-color: rgba(59,130,246,0.4);
  box-shadow: 0 0 0 1px rgba(59,130,246,0.2), 0 20px 60px rgba(59,130,246,0.15);
}

.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--blue);
  margin-bottom: 12px;
}

.pricing-card.featured .pricing-label { color: var(--blue-light); }

.pricing-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card.featured .pricing-price { color: #fff; }

.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: #64748b;
}

.pricing-card.featured .pricing-price span { color: var(--text-muted); }

.pricing-sub {
  font-size: 0.82rem;
  color: #64748b;
  margin-bottom: 32px;
}

.pricing-card.featured .pricing-sub { color: var(--text-muted); }

.pricing-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 36px;
}

.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem;
  color: #374151;
}

.pricing-card.featured .pricing-features li { color: #cbd5e1; }

.pricing-features li::before {
  content: '✓';
  width: 20px; height: 20px; flex-shrink: 0;
  background: rgba(16,185,129,0.1);
  color: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.btn-pricing {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-pricing-outline {
  border: 2px solid var(--border);
  color: #0f172a;
}

.btn-pricing-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn-pricing-filled {
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  color: #fff;
  box-shadow: 0 4px 20px rgba(59,130,246,0.35);
}

.btn-pricing-filled:hover {
  box-shadow: 0 6px 28px rgba(59,130,246,0.5);
  transform: translateY(-1px);
}

/* ─── OFFER BANNER ─── */
.offer-banner {
  background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(99,102,241,0.1));
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 16px;
  padding: 28px 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  margin-bottom: 60px;
}

.offer-banner-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.offer-banner-text p { font-size: 0.88rem; color: #64748b; }

.offer-price { text-align: right; flex-shrink: 0; }

.offer-price-main {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.offer-price-sub {
  font-size: 0.78rem;
  color: #94a3b8;
  text-decoration: line-through;
}

/* ─── PROJECTS ─── */
.projects { background: #fff; }

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

.project-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.project-card:hover {
  border-color: rgba(59,130,246,0.3);
  box-shadow: 0 12px 40px rgba(59,130,246,0.08);
  transform: translateY(-3px);
}

.project-size {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--blue);
  margin-bottom: 8px;
}

.project-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.project-items {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
}

.project-items li {
  font-size: 0.85rem;
  color: #64748b;
  display: flex; align-items: center; gap: 8px;
}

.project-items li::before {
  content: '›';
  color: var(--blue);
  font-weight: 700;
}

/* ─── FAQ ─── */
.faq { background: var(--surface); }

.faq-list {
  max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover { border-color: rgba(59,130,246,0.3); }

.faq-q {
  padding: 20px 24px;
  font-size: 0.97rem;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  user-select: none;
}

.faq-q::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .faq-q::after { transform: rotate(45deg); }

.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-a p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.75;
}

/* ─── CONTACT ─── */
.contact-section { background: #fff; }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: stretch;
}

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: #1e293b;
  background: var(--surface);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
}

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

.form-privacy {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 20px;
}

.form-privacy a { color: var(--blue); }

.btn-submit {
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(59,130,246,0.35);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(59,130,246,0.5);
}

.contact-info {
  display: flex; flex-direction: column; gap: 20px;
}

.contact-info-card {
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px;
  position: relative; overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(59,130,246,0.15), transparent 60%);
}

.contact-info-card-inner { position: relative; z-index: 1; }

.contact-info-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 16px;
}

.contact-item:last-child { margin-bottom: 0; }

.contact-item-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(59,130,246,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}

.contact-item-text { font-size: 0.95rem; color: #cbd5e1; line-height: 1.6; font-weight: 400; }
.contact-item-text strong { display: block; color: #fff; font-size: 0.9rem; font-weight: 500; }
.contact-item-text a { color: var(--blue-light); text-decoration: none; }
.contact-item-text a:hover { text-decoration: underline; }

.map-placeholder {
  background: linear-gradient(135deg, #0d1530, #111c3a);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.map-placeholder-icon { font-size: 2rem; }

/* ─── CTA SECTION ─── */
.cta-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 100px 40px;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(59,130,246,0.2), transparent 70%);
}

.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }

.cta-section h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-section p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

.cta-address { margin-top: 40px; font-size: 0.85rem; color: #475569; }

/* ─── FOOTER ─── */
footer {
  background: #040810;
  color: #475569;
  padding: 60px 40px 30px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px;
  margin-bottom: 50px;
}

.footer-brand {
  display: flex; align-items: center; gap: 10px;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-brand-icon {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.footer-desc { font-size: 0.85rem; line-height: 1.7; color: #475569; margin-bottom: 20px; }

.footer-contact-item { font-size: 0.95rem; color: #64748b; margin-bottom: 6px; }
.footer-contact-item a { color: #64748b; text-decoration: none; }
.footer-contact-item a:hover { color: var(--blue-light); }

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #94a3b8;
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.85rem;
  color: #475569;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--blue-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.8rem;
}

.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: #475569; text-decoration: none; }
.footer-bottom-links a:hover { color: #94a3b8; }

/* ─── PRIVAT BANNER (Homepage) ─── */
.privat-banner {
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 60px 40px;
}

.privat-banner-inner {
  display: flex; align-items: center; gap: 32px;
}

.privat-banner-icon {
  font-size: 3rem; flex-shrink: 0;
}

.privat-banner-text { flex: 1; }

.privat-banner-text h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem; font-weight: 700;
  color: #fff; margin-bottom: 8px;
}

.privat-banner-text p {
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.7;
  max-width: 580px;
}

@media (max-width: 768px) {
  .detail-hero-split { grid-template-columns: 1fr; }
  .detail-hero-icon { display: none; }
  .privat-banner { padding: 50px 20px; }
  .privat-banner-inner { flex-direction: column; text-align: center; }
  .privat-banner-text p { max-width: 100%; }
}

/* ─── PRIVAT PAGE ─── */
.priv-problem-list {
  list-style: none;
  margin-top: 16px;
  display: flex; flex-direction: column; gap: 8px;
}

.priv-problem-list li {
  font-size: 0.85rem;
  color: #64748b;
  display: flex; align-items: flex-start; gap: 8px;
  line-height: 1.5;
}

.priv-problem-list li::before {
  content: '›';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

.priv-link {
  display: block; margin-top: 16px;
  font-size: 0.82rem; color: var(--blue);
  text-decoration: none;
}

.priv-link:hover { text-decoration: underline; }

/* ─── DETAIL PAGES ─── */
a.service-card {
  text-decoration: none;
  color: inherit;
  display: block;
}
a.service-card::after {
  content: 'Details ansehen \2192';
  display: block;
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
}
a.service-card:hover::after { text-decoration: underline; }

.detail-hero-split {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  max-width: 1100px;
  text-align: left;
}
.detail-hero-split .hero-sub {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}
.detail-hero-split .hero-buttons {
  justify-content: flex-start;
}
.detail-hero-icon {
  font-size: 9rem;
  line-height: 1;
  filter: drop-shadow(0 0 40px rgba(59,130,246,0.3));
}

.detail-hero-img {
  width: 420px;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.detail-hero-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.detail-hero-img-placeholder {
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.06);
  border: 2px dashed rgba(255,255,255,0.18);
  border-radius: 20px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
  text-align: center;
  padding: 24px;
  min-height: 280px;
}
.detail-hero-img-placeholder .ph-cam { font-size: 2.8rem; line-height: 1; }
@media (max-width: 1024px) {
  .detail-hero-img { width: 340px; }
}
@media (max-width: 768px) {
  .detail-hero-img { display: none; }
}

.detail-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.detail-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: #374151;
  line-height: 1.6;
}
.detail-feature-list li::before {
  content: '\2713';
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: rgba(16,185,129,0.1);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
}

/* ── PROCESS FLOW SCHEMAS ── */
.process-section {
  padding: 80px 24px;
  background: var(--surface);
}
.process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 48px;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 18px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  min-width: 110px;
  max-width: 140px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.process-step-icon { font-size: 2rem; line-height: 1; }
.process-step-label {
  font-size: 0.8rem; font-weight: 700; color: #1e293b; line-height: 1.4;
}
.process-step-sub {
  font-size: 0.72rem; color: #64748b; line-height: 1.3;
}
.process-arrow {
  font-size: 1.4rem; color: var(--blue);
  margin: 0 6px; flex-shrink: 0;
}
@media (max-width: 768px) {
  .process-flow { flex-direction: column; align-items: stretch; }
  .process-arrow { transform: rotate(90deg); text-align: center; }
  .process-step { max-width: 100%; }
}

/* ── ÜBER UNS ── */
.about-section {
  padding: 80px 24px;
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.about-photo {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #e2e8f0;
  position: relative;
}
.about-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-photo-placeholder {
  width: 100%; height: 100%; min-height: 320px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; color: #94a3b8;
  font-size: 0.85rem; text-align: center; padding: 24px;
}
.about-photo-placeholder .placeholder-icon { font-size: 3rem; }
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-photo { order: -1; aspect-ratio: 16/9; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-cards { max-width: 100%; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 12px; }
  .hero-card { padding: 16px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .targets-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps-grid::before { display: none; }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; flex-direction: column; gap: 0;
    position: absolute; top: 68px; left: 0; right: 0;
    background: rgba(8,13,26,0.98);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 16px 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 0; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-cta { border-radius: 0; padding: 12px 0; background: none !important; }
  .nav-toggle { display: flex; }
  section { padding: 70px 20px; }
  .hero { padding: 100px 20px 70px; }
  .page-hero { padding: 110px 20px 70px; min-height: auto; }
  .stats-bar { padding: 40px 20px; }
  .services-grid { grid-template-columns: 1fr !important; }
  .why-grid { grid-template-columns: 1fr !important; }
  .why-visual { max-width: 100%; margin: 0 auto; }
  .targets-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr !important; }
  .pricing-grid { grid-template-columns: 1fr !important; max-width: 400px !important; }
  .pillars-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .offer-banner { flex-direction: column; text-align: center; }
  .offer-price { text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .hero-inner { grid-template-columns: 1fr !important; }
  .hero-cards { max-width: 100% !important; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important; gap: 10px !important; }
  .detail-hero-split { grid-template-columns: 1fr !important; }
  .privat-banner-inner { flex-direction: column; text-align: center; gap: 20px; }
  .compare-row { font-size: 0.8rem; }
  .compare-row div { padding: 8px 6px; }
  .targets-grid { grid-template-columns: 1fr !important; }
  .hero-buttons, .detail-hero-split .hero-buttons { justify-content: center !important; }
}

/* prevent horizontal overflow on mobile */
html, body { overflow-x: hidden; }
*, *::before, *::after { max-width: 100vw; }
section, .stats-bar, .page-hero, .hero, footer, .cta-section, .privat-banner { overflow-x: hidden; }


/* ─── LEGAL PAGES (Impressum, Datenschutz) ─── */
.legal-content {
  background: var(--surface);
  padding: 72px 24px 100px;
}

.legal-inner-wrap {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}

.legal-block {
  background: #fff;
  border-radius: 16px;
  padding: 28px 32px 24px;
  margin-bottom: 20px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
}

.legal-block h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--blue);
  display: inline-block;
}

.legal-block h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: #334155;
  margin-top: 16px;
  margin-bottom: 6px;
}

.legal-block p,
.legal-block li {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #475569;
}

.legal-block p + p {
  margin-top: 10px;
}

.legal-block ul {
  padding-left: 18px;
  margin: 8px 0;
}

.legal-block a {
  color: var(--blue);
  text-decoration: underline;
}

.legal-block-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}

.legal-stand {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-top: 40px;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 8px;
  font-size: 0.84rem;
}

.cookie-table th,
.cookie-table td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}

.cookie-table th {
  background: var(--surface);
  font-weight: 600;
  color: #1e293b;
}

.cookie-table td { color: #475569; }

@media (max-width: 600px) {
  .legal-block { padding: 20px 18px; }
  .cookie-table { font-size: 0.78rem; }
  .cookie-table th, .cookie-table td { padding: 8px 8px; }
}
