/* Wohlstandsmarketing — sections.css */

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

#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: 1.5rem 0;
  transition: background var(--transition), padding var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

#main-nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom-color: var(--border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  white-space: nowrap;
  color: var(--text) !important;
  text-transform: uppercase;
}
.nav-logo-white {
  color: #F5F5F5;
}
.nav-logo-orange {
  color: var(--gold);
}

@media (max-width: 768px) {
  #main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.5rem !important;
    background: rgba(10, 10, 10, 0.75) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    z-index: 100;
    transition: background var(--transition), border-color var(--transition) !important;
  }
  #main-nav.scrolled {
    padding: 1rem 1.5rem !important;
    background: rgba(10, 10, 10, 0.9) !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  }
  .nav-container {
    background: transparent;
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    justify-content: space-between;
    align-items: center;
  }
  .nav-logo {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
  }
  .nav-toggle {
    position: relative;
    z-index: 210;
    display: flex;
  }
  .hero-section {
    padding-top: 5rem !important;
    margin-top: 0;
  }
  .hero-container {
    padding-top: 0.5rem;
  }
}

@media (max-width: 480px) {
  .nav-logo {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }
}

/* Desktop: inline nav-links */
.nav-links-desktop {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

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

.nav-links-desktop a:hover {
  color: var(--gold);
}

/* Mobile Overlay — direkt im body, kein Stacking-Context-Problem */
.nav-links {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.nav-links.open {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.nav-links a {
  color: var(--text);
  font-size: 1.75rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color var(--transition);
  text-align: center;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  display: inline-block;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

/* Mobile Nav */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: calc(var(--z-nav) - 1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.25rem;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
    z-index: var(--z-nav);
  }
}

/* === HERO === */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 6rem; /* Nav-Abstand */
}

/* Geometrisches Hintergrund-Muster */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    /* Haupt-Glow zentriert */
    radial-gradient(ellipse 85% 65% at 50% 45%, rgba(22,99,222,0.13) 0%, transparent 65%),
    /* Zweiter Glow rechts für Tiefe */
    radial-gradient(ellipse 50% 50% at 88% 35%, rgba(22,99,222,0.07) 0%, transparent 55%),
    /* Subtiler Glow links */
    radial-gradient(ellipse 40% 45% at 8% 55%, rgba(22,99,222,0.05) 0%, transparent 50%),
    /* Grid-Muster */
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: auto, auto, auto, 60px 60px, 60px 60px;
  pointer-events: none;
}
.hero-bg-pattern::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(219,111,22,0.08);
  border-radius: 50%;
}
.hero-bg-pattern::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(219,111,22,0.05);
  border-radius: 50%;
}

.hero-container {
  position: relative;
  z-index: 1;
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.hero-content {
  max-width: 780px;
}

.hero-content .badge {
  margin-bottom: 2rem;
  color: var(--accent);
  border-color: rgba(22, 99, 222, 0.3);
  background: var(--accent-glow);
}
.hero-content .badge::before {
  background: var(--accent);
}

.hero-headline {
  font-size: clamp(2.5rem, 4.2vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-headline-gold {
  color: var(--gold);
  display: block;
}

.hero-subline {
  font-size: clamp(1.125rem, 2vw, 1.3rem);
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-scroll-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

/* Stats Leiste */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero-stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.375rem;
  letter-spacing: 0.05em;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* =====================
   HERO SPLIT LAYOUT (Desktop)
   ===================== */

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "left  right"
    "bottom right";
  column-gap: 4rem;
  row-gap: 1.5rem;
  margin-bottom: 3rem;
}

.hero-left {
  grid-area: left;
  align-self: end;
}

.hero-right {
  grid-area: right;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-badge-right {
  display: inline-flex;
}

.hero-bottom {
  grid-area: bottom;
  align-self: start;
}

.hero-left,
.hero-bottom {
  max-width: none;
}

/* Buttons auf Desktop: nebeneinander */
.hero-bottom .hero-cta-group {
  flex-direction: row;
  align-items: center;
}

/* === CHART CARD === */

.hero-chart-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(22, 99, 222, 0.2);
  border-radius: 20px;
  padding: 1.5rem;
  position: relative;
  box-shadow: 0 0 60px rgba(22, 99, 222, 0.1), 0 20px 40px rgba(0, 0, 0, 0.4);
}

.chart-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.chart-card-label {
  font-size: 0.9375rem !important;
  color: var(--text) !important;
  font-weight: 600;
  margin: 0 !important;
  line-height: 1.3;
}

.chart-card-since {
  font-size: 0.75rem !important;
  color: var(--text-muted) !important;
  margin: 0.25rem 0 0 !important;
  line-height: 1;
}

.chart-card-badge {
  background: rgba(22, 99, 222, 0.12);
  border: 1px solid rgba(22, 99, 222, 0.25);
  color: var(--accent-light);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.chart-svg-wrap {
  position: relative;
}

.hero-chart-svg {
  width: 100%;
  height: auto;
  display: block;
}

.chart-tooltip {
  position: absolute;
  background: rgba(22, 99, 222, 0.95);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
  white-space: nowrap;
  z-index: 10;
  transform: translateX(-50%);
  font-family: 'Inter', sans-serif;
  border: 1px solid rgba(22, 99, 222, 0.4);
}

.chart-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: rgba(22, 99, 222, 0.95);
}

.chart-point {
  cursor: crosshair;
}

.chart-dot-last {
  animation: pulse-dot 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { stroke-width: 7; stroke-opacity: 0.25; }
  50% { stroke-width: 12; stroke-opacity: 0.1; }
}

.chart-legend {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.chart-legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
}

.chart-legend-before::before {
  content: '';
  width: 18px;
  height: 0;
  border-top: 2px dashed rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.chart-legend-after::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  flex-shrink: 0;
}

/* === WHATSAPP NOTIFICATION === */

.wa-notification {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(37, 211, 102, 0.06);
  border: 1px solid rgba(37, 211, 102, 0.15);
  border-radius: 12px;
  padding: 0.875rem 1rem;
  animation: wa-float 4s ease-in-out infinite;
}

.wa-icon-wrap {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(37, 211, 102, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-text {
  flex: 1;
  min-width: 0;
}

.wa-name {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  font-family: 'Inter', sans-serif;
}

.wa-msg {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'Inter', sans-serif;
  margin-top: 0.125rem;
}

.wa-time {
  font-size: 0.6875rem;
  color: rgba(37, 211, 102, 0.7);
  flex-shrink: 0;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

@keyframes wa-float {
  0%, 100% { transform: translateY(0); box-shadow: 0 4px 16px rgba(37, 211, 102, 0.06); }
  50% { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(37, 211, 102, 0.1); }
}

/* =====================
   SECTION ÜBERGÄNGE
   ===================== */
.section {
  position: relative;
}
.section:not(.hero-section)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
  z-index: 1;
}
.loesung-section::after,
.leistungen-section::after,
.ueber-mich-section::after {
  background: linear-gradient(to bottom, transparent, var(--surface));
}

/* === PROBLEM === */
.problem-section {
  background: var(--surface);
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.section-header .gold-line {
  margin: 1.5rem auto;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.problem-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
}
.problem-card {
  box-shadow: 0 0 20px rgba(219,111,22,0.08), 0 4px 24px rgba(0,0,0,0.4);
}
.problem-card:hover {
  box-shadow: 0 0 45px rgba(219,111,22,0.22), 0 8px 32px rgba(0,0,0,0.5);
  border-color: rgba(219,111,22,0.45);
}
.problem-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}

/* === AGITATION === */
.agitation-section {
  background:
    radial-gradient(ellipse 60% 80% at 15% 50%, rgba(22,99,222,0.05) 0%, transparent 55%),
    var(--bg);
}
.agitation-content {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}
.agitation-accent-line {
  width: 3px;
  min-height: 100%;
  background: linear-gradient(to bottom, var(--gold), transparent);
  flex-shrink: 0;
  align-self: stretch;
}
.agitation-text {
  flex: 1;
}
.agitation-text h2 {
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.agitation-body p {
  margin-bottom: 1.5rem;
}
.agitation-highlight {
  font-size: 1.1875rem !important;
  color: var(--text) !important;
  font-style: italic;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
}
.agitation-question {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--text);
  margin-top: 2rem;
  font-style: italic;
}

/* === LÖSUNG === */
.loesung-section {
  background: var(--surface);
}

.loesung-content {
  max-width: 700px;
}
.loesung-content h2 {
  margin-top: 1rem;
}
.loesung-intro {
  font-size: 1.25rem !important;
  color: var(--text) !important;
  margin: 2rem 0;
  line-height: 1.75;
}
.loesung-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}
.loesung-point {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 1.0625rem;
}
.loesung-check {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}
.loesung-transition {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem !important;
  color: var(--accent-light) !important;
  margin-top: 2.5rem;
  font-weight: 700;
}
.loesung-check {
  color: var(--accent-light) !important;
}

/* === WSM-METHODE === */
.methode-section {
  background:
    radial-gradient(ellipse 70% 60% at 85% 25%, rgba(22,99,222,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 15% 75%, rgba(22,99,222,0.05) 0%, transparent 50%),
    var(--bg);
}
.methode-subline {
  font-size: 1.125rem !important;
  color: var(--gold) !important;
  letter-spacing: 0.1em;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}
.wsm-steps {
  margin-top: 5rem;
  position: relative;
}
.wsm-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.wsm-step.active {
  opacity: 1;
  transform: translateX(0);
}
.wsm-step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.wsm-step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--surface);
  transition: border-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  flex-shrink: 0;
}
.wsm-step.active .wsm-step-number {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px rgba(219,111,22,0.25);
  background: rgba(219,111,22,0.05);
}
.wsm-connector {
  width: 2px;
  flex: 1;
  min-height: 80px;
  background: linear-gradient(to bottom, var(--border), transparent);
  transition: background 0.4s ease;
}
.wsm-step.active .wsm-connector {
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.wsm-step-content {
  padding-top: 0.75rem;
  opacity: 1 !important; /* Überschreibt .animate-in für WSM-Steps */
  transform: none !important;
}
.wsm-step-tag {
  font-size: 0.8125rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}
.wsm-step-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.625rem;
  color: var(--text);
  margin-bottom: 1rem;
  font-weight: 700;
}
.wsm-step-content p {
  margin-bottom: 1.5rem;
}
.wsm-step-result {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--text);
}
.wsm-result-icon {
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.wsm-cta {
  text-align: center;
  margin-top: 2rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

/* === LEISTUNGEN === */
.leistungen-section {
  background:
    radial-gradient(ellipse 90% 50% at 50% 100%, rgba(22,99,222,0.06) 0%, transparent 60%),
    var(--surface);
}
.section-desc {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}
.leistung-card {
  position: relative;
  display: flex;
  flex-direction: column;
}
.leistung-featured {
  border-color: var(--gold) !important;
  background: linear-gradient(135deg, var(--surface) 0%, rgba(219,111,22,0.05) 100%);
  box-shadow: 0 0 30px rgba(219,111,22,0.12), 0 4px 24px rgba(0,0,0,0.4);
}
.leistung-card:hover {
  box-shadow: 0 0 55px rgba(219,111,22,0.28), 0 12px 40px rgba(0,0,0,0.5);
  border-color: rgba(219,111,22,0.55) !important;
}
.leistung-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0A0A0A;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.leistung-icon {
  width: 64px;
  height: 64px;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
}
.leistung-tag {
  font-size: 0.75rem;
  color: var(--accent-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}
.leistung-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  color: var(--text);
  margin-bottom: 1rem;
  font-weight: 700;
}
.leistung-list {
  list-style: none;
  margin: 1rem 0 auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.leistung-list li {
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.leistung-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.875rem;
}
.leistung-price {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  color: var(--gold);
  font-weight: 700;
}

/* === ERGEBNISSE === */
.ergebnisse-section {
  background:
    radial-gradient(ellipse 70% 55% at 15% 50%, rgba(22,99,222,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 80%, rgba(22,99,222,0.07) 0%, transparent 55%),
    var(--bg);
}
.ergebnisse-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  padding: 3rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.stat-item {
  text-align: center;
}
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.ergebnisse-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.ergebnis-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(219, 111, 22, 0.18) !important;
  position: relative;
  overflow: hidden;
}
.ergebnis-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), transparent);
}
.ergebnis-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(219, 111, 22, 0.12);
}
.ergebnis-label {
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
}
.ergebnis-branche {
  font-size: 0.8125rem;
  color: var(--gold);
  background: var(--gold-glow);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}
.ergebnis-zahlen {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.ergebnis-zahl {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.ergebnis-desc {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.ergebnis-big {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}
.ergebnis-bar-wrap {
  width: 100%;
  height: 3px;
  background: rgba(219, 111, 22, 0.1);
  border-radius: 2px;
  margin-top: 0.5rem;
  overflow: hidden;
}
.ergebnis-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 6px rgba(219, 111, 22, 0.5);
}
.ergebnisse-images-label {
  text-align: center;
  color: var(--text-muted) !important;
  font-size: 0.875rem !important;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.ergebnisse-images-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.result-image-placeholder {
  aspect-ratio: 16/10;
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}
/* Echte Kampagnen-Screenshots */
.result-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* === ÜBER MICH === */
.ueber-mich-section {
  background:
    radial-gradient(ellipse 65% 70% at 95% 40%, rgba(22,99,222,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(22,99,222,0.05) 0%, transparent 50%),
    var(--surface);
}
.ueber-mich-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: center;
}
.ueber-mich-foto {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.15);
  filter: brightness(0.82);
}

.ueber-mich-bild-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--surface-2, #1A1A1A);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}
.ueber-mich-text h2 {
  margin-top: 1rem;
}
.ueber-mich-intro {
  font-size: 1.1875rem !important;
  color: var(--text) !important;
  margin: 1.5rem 0;
}
.ueber-mich-text p {
  margin-bottom: 1rem;
}
.ueber-mich-facts {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.ueber-mich-fact {
  text-align: center;
}
.fact-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}
.fact-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  display: block;
}

/* === FAQ === */
.faq-section {
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(22,99,222,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 5% 20%, rgba(22,99,222,0.06) 0%, transparent 50%),
    var(--bg);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  font-size: 1.0625rem;
  font-weight: 500;
  text-align: left;
  transition: color var(--transition);
  font-family: 'Inter', sans-serif;
}
.faq-question:hover {
  color: var(--gold);
}
.faq-question[aria-expanded="true"] {
  color: var(--gold);
}
.faq-icon {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--transition);
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer.open {
  max-height: 300px;
  padding-bottom: 1.5rem;
}
.faq-answer p {
  font-size: 1rem !important;
}

/* === KONTAKT === */
.kontakt-section {
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(22,99,222,0.09) 0%, transparent 65%),
    var(--surface);
  position: relative;
  overflow: hidden;
}
.kontakt-bg {
  display: none;
}
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 1rem;
  position: relative;
}
.kontakt-cta-block h3,
.kontakt-form-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}
.kontakt-cta-block p {
  margin-bottom: 2rem;
}
.kontakt-btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 1.5rem;
}
.kontakt-vertrauen {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 1.5rem;
}
.kontakt-vertrauen span {
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.kontakt-vertrauen span::before {
  content: '✓';
  color: var(--gold);
  margin-right: 0.5rem;
  font-weight: 700;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  color: var(--text);
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(153,153,153,0.5);
}
.form-submit {
  width: 100%;
  margin-top: 0.5rem;
}
.form-success {
  text-align: center;
  padding: 1rem;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--gold);
  margin-top: 1rem;
  font-size: 0.9375rem;
}

/* === FOOTER === */
.footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-logo {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}
.footer-logo-white {
  color: #F5F5F5;
}
.footer-logo-orange {
  color: var(--gold);
}
.footer-brand p {
  font-size: 0.9375rem !important;
  line-height: 1.6 !important;
}
.footer-links,
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.5rem;
}
.footer-links a,
.footer-legal a {
  font-size: 0.9375rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover,
.footer-legal a:hover {
  color: var(--gold);
}
.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(219,111,22,0.1);
}
.footer-bottom span {
  font-size: 0.8125rem;
  color: rgba(153,153,153,0.5);
}

/* ============================================================
   RESPONSIVE — MOBILE BREAKPOINTS
   ============================================================ */

/* === TABLET (max-width: 1024px) === */
@media (max-width: 1024px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .leistungen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ergebnisse-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .ueber-mich-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .wsm-step {
    grid-template-columns: 80px 1fr;
    gap: 2rem;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* === MOBILE (max-width: 768px) === */
@media (max-width: 768px) {
  /* Container — kein doppeltes Padding mit Section */
  .container {
    padding-left: 0;
    padding-right: 0;
  }

  /* Section — einheitliches Padding */
  .section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  /* Desktop Nav-Links auf Mobile verstecken */
  .nav-links-desktop {
    display: none;
  }
  .nav-cta {
    display: none;
  }

  /* Hero Split — auf Mobile: Headline → Text+Buttons → Chart */
  .hero-split {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
  }
  .hero-left  { order: 1; width: 100%; text-align: center; }
  .hero-bottom { order: 2; }
  .hero-right  { order: 3; width: 100%; align-items: center; }
  .hero-badge-right {
    display: none;
  }
  .hero-bottom {
    text-align: center;
  }
  .hero-bottom .hero-subline {
    font-size: var(--text-md);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-bottom .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }
  .hero-bottom .hero-cta-group .btn-primary,
  .hero-bottom .hero-cta-group .btn-secondary {
    width: 100%;
    max-width: 100%;
  }
  .hero-chart-card {
    padding: 1.25rem;
    border-radius: 16px;
  }
  .wa-msg {
    display: none;
  }

  /* Hero */
  .hero-section {
    overflow-x: hidden;
  }
  .hero-headline {
    font-size: clamp(2.6rem, 10vw, 3.5rem);
    word-break: break-word;
    margin-bottom: 0.5rem;
  }
  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .hero-stat-divider {
    width: 40px;
    height: 1px;
  }
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }
  .hero-badge {
    display: inline-flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    font-size: 0.65rem;
    padding: 0.3rem 0.65rem;
    gap: 0.35rem;
    letter-spacing: 0.06em;
  }
  .btn-time {
    display: none;
  }

  /* Buttons Mobile */
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 360px;
    justify-content: center;
    text-align: center;
  }
  .nav-cta {
    width: auto !important;
    max-width: none !important;
  }

  /* Problem */
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .problem-card {
    text-align: center;
  }
  .problem-icon {
    margin-left: auto;
    margin-right: auto;
  }

  /* Agitation */
  .agitation-content {
    flex-direction: column;
    gap: 2rem;
  }
  .agitation-accent-line {
    width: 60px;
    height: 3px;
    align-self: auto;
    min-height: unset;
    background: linear-gradient(to right, var(--gold), transparent);
  }

  /* WSM */
  .wsm-step {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .wsm-step-indicator {
    flex-direction: row;
    gap: 1rem;
  }
  .wsm-connector {
    min-height: unset;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--border), transparent) !important;
  }
  .wsm-step.active .wsm-connector {
    background: linear-gradient(to right, var(--gold), transparent) !important;
  }

  /* Leistungen */
  .leistungen-grid {
    grid-template-columns: 1fr;
  }

  /* Ergebnisse */
  .ergebnisse-stats {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  .ergebnisse-stats .stat-item {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .ergebnisse-stats .stat-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  .ergebnisse-cards {
    grid-template-columns: 1fr;
  }
  .ergebnis-zahlen {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .ergebnis-big {
    font-size: 1.75rem;
  }
  .ergebnisse-images {
    display: none;
  }

  /* Über mich */
  .ueber-mich-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .ueber-mich-bild {
    width: 100%;
    display: block;
  }
  .ueber-mich-foto {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.15);
    filter: brightness(0.82);
  }
  .ueber-mich-bild-placeholder {
    aspect-ratio: 16/9;
    max-width: 400px;
  }
  .ueber-mich-facts {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  /* Section Header zentriert */
  .section-header {
    text-align: center;
  }

  /* Über mich */
  .ueber-mich-text {
    text-align: center;
  }
  .ueber-mich-facts {
    justify-content: center;
  }

  /* Kontakt */
  .kontakt-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .kontakt-cta-block {
    text-align: center;
  }
  .kontakt-vertrauen {
    align-items: center;
  }
  .kontakt-btn {
    display: inline-flex;
    width: 100%;
    max-width: 360px;
  }

  /* Footer */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .footer-bottom > .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .footer-links,
  .footer-legal {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-bottom {
    text-align: center;
  }
}

/* === SMALL MOBILE (max-width: 480px) === */
@media (max-width: 480px) {
  .section {
    padding: 4rem 1.25rem;
  }
  .hero-section {
    padding-top: 5rem;
  }
  .ergebnisse-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .hero-stats {
    gap: 1rem;
  }
  .hero-badge {
    font-size: 0.65rem;
    letter-spacing: 0.04em;
    padding: 0.3rem 0.6rem;
  }
  .btn-primary,
  .btn-secondary {
    font-size: 0.9rem;
    padding: 0.875rem 1.5rem;
  }
}

/* Hamburger → X beim Öffnen */
@media (max-width: 768px) {
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}
