/* ============================================================
   bewertungslöschungen.de — Main Stylesheet
   Version: 1.0
   Author: Gewerbe anmeldung
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --color-bg-primary: #0B1120;
  --color-bg-secondary: #131C31;
  --color-bg-card: #1A2440;
  --color-bg-card-hover: #1E2B4A;
  --color-accent-gold: #D4A843;
  --color-accent-gold-light: #E8C76A;
  --color-accent-gold-dark: #B8922E;
  --color-accent-blue: #2563EB;
  --color-accent-blue-light: #60A5FA;
  --color-text-white: #FFFFFF;
  --color-text-muted: #94A3B8;
  --color-text-dim: #64748B;
  --color-text-dark: #475569;
  --color-success: #22C55E;
  --color-danger: #EF4444;
  --color-warning: #F59E0B;
  --color-border: #1E293B;
  --color-border-light: #2D3A56;
  --color-glass: rgba(26, 36, 64, 0.6);
  --color-glass-border: rgba(212, 168, 67, 0.15);
  --font-primary: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(212, 168, 67, 0.15);
  --shadow-glow-strong: 0 0 60px rgba(212, 168, 67, 0.25);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --max-width: 1200px;
  --header-height: 80px;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-primary);
  color: var(--color-text-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--color-accent-gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent-gold-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-primary);
  border: none;
  outline: none;
}

input, select, textarea {
  font-family: var(--font-primary);
  outline: none;
}

::selection {
  background: var(--color-accent-gold);
  color: var(--color-bg-primary);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ── Container ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Base ──────────────────────────────────────────── */
.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  scroll-margin-top: var(--header-height, 80px);
}

.section--alt {
  background-color: var(--color-bg-secondary);
}

.section__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  margin-bottom: 16px;
}

.section__title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section__subtitle {
  font-size: 18px;
  color: var(--color-text-muted);
  max-width: 650px;
  line-height: 1.7;
}

.section__subtitle--center {
  margin-left: auto;
  margin-right: auto;
}

.text-center { text-align: center; }
.text-gold { color: var(--color-accent-gold); }

/* ── FREE VPS Banner (TEMPORARY — remove when no longer needed) ── */
.free-vps-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  background: linear-gradient(90deg, #DC2626, #EF4444, #DC2626);
  background-size: 200% 100%;
  animation: vpsShimmer 3s ease-in-out infinite;
  padding: 8px 16px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(220, 38, 38, 0.4);
}

.free-vps-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.free-vps-banner__text {
  color: #fff;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  animation: vpsBlink 1.5s ease-in-out infinite;
}

.free-vps-banner__text strong {
  font-weight: 900;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.free-vps-banner__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: vpsPulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes vpsBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

@keyframes vpsPulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
  50% { opacity: 0.5; transform: scale(0.7); box-shadow: 0 0 0 6px rgba(255,255,255,0); }
}

@keyframes vpsShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Push header down when banner is present */
body:has(.free-vps-banner) .header { top: 36px; }
body:has(.free-vps-banner) .hero { padding-top: calc(var(--header-height) + 36px); }
body:has(.free-vps-banner) .mobile-nav { top: calc(var(--header-height) + 36px); }

/* Hide phone CTA when mobile nav is open */
body:has(.mobile-nav.is-open) .mobile-cta { display: none !important; }

/* ── Preloader ─────────────────────────────────────────────── */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 99999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__logo {
  width: 200px;
  margin-bottom: 30px;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-accent-gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.5; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── Cookie Banner ─────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  padding: 20px;
  z-index: 9998;
  transform: translateY(100%);
  transition: transform var(--transition-slow);
  backdrop-filter: blur(20px);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  font-size: 14px;
  color: var(--color-text-muted);
  min-width: 280px;
}

.cookie-banner__text a {
  color: var(--color-accent-gold);
  text-decoration: underline;
}

.cookie-banner__btn {
  padding: 12px 28px;
  background: var(--color-accent-gold);
  color: var(--color-bg-primary);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
  white-space: nowrap;
}

.cookie-banner__btn:hover {
  background: var(--color-accent-gold-light);
}

/* ── Navigation ────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-normal);
  background: transparent;
}

.header.is-scrolled {
  background: rgba(11, 17, 32, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  height: 65px;
}

.header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header__logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform var(--transition-normal);
}

.header__logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  transition: width var(--transition-normal), height var(--transition-normal);
}

.header.is-scrolled .header__logo-icon {
  width: 28px;
  height: 28px;
}

.header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.header__logo-main {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.header__logo-main strong {
  font-weight: 700;
  color: #FFFFFF;
}

.header__logo-main em {
  font-style: normal;
  font-weight: 700;
  color: var(--color-accent-gold);
}

.header__logo-tagline {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 8px;
  font-weight: 400;
  color: #94A3B8;
  letter-spacing: 2.5px;
  margin-top: 3px;
  white-space: nowrap;
}

.header.is-scrolled .header__logo-main {
  font-size: 15px;
}

.header.is-scrolled .header__logo-tagline {
  font-size: 7px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 1;
  min-width: 0;
}

.header__nav-list {
  display: flex;
  gap: 20px;
  flex-shrink: 1;
  min-width: 0;
}

.header__nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent-gold);
  transition: width var(--transition-normal);
}

.header__nav-link:hover,
.header__nav-link.is-active {
  color: var(--color-text-white);
}

.header__nav-link:hover::after,
.header__nav-link.is-active::after {
  width: 100%;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-white);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.header__phone-icon {
  width: 18px;
  height: 18px;
  color: var(--color-accent-gold);
}

.header__cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--color-accent-gold);
  color: var(--color-bg-primary);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.header__cta:hover {
  background: var(--color-accent-gold-light);
  color: var(--color-bg-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(212, 168, 67, 0.3);
}

/* Mobile Menu Toggle */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
  position: relative;
  z-index: 1001;
  cursor: pointer;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-white);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.header__hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg) translateY(5px) translateX(5px);
}

.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-5px) translateX(5px);
}

/* Mobile Nav – hidden on desktop */
.mobile-nav {
  display: none;
}

/* ── Hero Section ──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(212, 168, 67, 0.06) 0%, transparent 50%),
              var(--color-bg-primary);
}

/* Particle-like floating dots */
.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-accent-gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle 8s ease-in-out infinite;
}

.hero__particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.hero__particle:nth-child(2) { left: 25%; top: 70%; animation-delay: 1.5s; }
.hero__particle:nth-child(3) { left: 50%; top: 30%; animation-delay: 3s; }
.hero__particle:nth-child(4) { left: 70%; top: 60%; animation-delay: 4.5s; }
.hero__particle:nth-child(5) { left: 85%; top: 25%; animation-delay: 6s; }
.hero__particle:nth-child(6) { left: 40%; top: 80%; animation-delay: 2s; }
.hero__particle:nth-child(7) { left: 60%; top: 15%; animation-delay: 5s; }
.hero__particle:nth-child(8) { left: 15%; top: 55%; animation-delay: 7s; }

@keyframes floatParticle {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  20% { opacity: 0.6; transform: translateY(-20px) scale(1); }
  80% { opacity: 0.3; transform: translateY(-80px) scale(0.5); }
  100% { opacity: 0; transform: translateY(-120px) scale(0); }
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 40px 0;
}

.hero__content {
  max-width: 560px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent-gold);
  margin-bottom: 24px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-success);
  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(1.5); }
}

.hero__title {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero__title-typed {
  color: var(--color-accent-gold);
  border-right: 3px solid var(--color-accent-gold);
  animation: blink 0.8s step-end infinite;
}

@keyframes blink {
  50% { border-color: transparent; }
}

.hero__description {
  font-size: 18px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-accent-gold) 0%, var(--color-accent-gold-dark) 100%);
  color: var(--color-bg-primary);
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 168, 67, 0.4);
  color: var(--color-bg-primary);
}

.btn--outline {
  background: transparent;
  color: var(--color-text-white);
  border: 2px solid var(--color-border-light);
}

.btn--outline:hover {
  border-color: var(--color-accent-gold);
  color: var(--color-accent-gold);
  transform: translateY(-2px);
}

.btn__icon {
  width: 18px;
  height: 18px;
}

.hero__trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__trust-icon {
  width: 20px;
  height: 20px;
  color: var(--color-accent-gold);
}

.hero__trust-text {
  font-size: 14px;
  color: var(--color-text-muted);
}

.hero__trust-text strong {
  color: var(--color-text-white);
  font-weight: 700;
}

/* Hero Visual / Browser Mockup */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.hero-mockup {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.mockup-browser {
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: floatCard 6s ease-in-out infinite;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--color-border);
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-dot--red { background: #FF5F57; }
.browser-dot--yellow { background: #FFBD2E; }
.browser-dot--green { background: #28CA41; }

.browser-url {
  margin-left: 12px;
  font-size: 11px;
  color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 12px;
  border-radius: 4px;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mockup-content {
  padding: 16px;
}

.mockup-profile {
  margin-bottom: 14px;
}

.mockup-profile__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mockup-profile__avatar {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(212, 168, 67, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.mockup-profile__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-white);
}

.mockup-profile__rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mockup-stars {
  color: #FBBC05;
  font-size: 14px;
  letter-spacing: 1px;
}

.mockup-review {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}

.mockup-review__left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mockup-review__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  background: rgba(239, 68, 68, 0.15);
  color: #EF4444;
}

.mockup-review__name {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-white);
}

.mockup-review__stars {
  font-size: 11px;
  color: #FBBC05;
  letter-spacing: 1px;
}

.mockup-review__stars--bad {
  color: #EF4444;
}

.mockup-review--deleting {
  border: 1px solid rgba(239, 68, 68, 0.2);
  animation: reviewPulse 3s ease-in-out infinite;
}

.mockup-review__strikethrough {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #EF4444, transparent);
  animation: strikeThrough 4s ease-in-out infinite;
}

@keyframes strikeThrough {
  0%, 40% { transform: scaleX(0); opacity: 0; }
  60% { transform: scaleX(1); opacity: 1; }
  80%, 100% { transform: scaleX(1); opacity: 0.3; }
}

@keyframes reviewPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.mockup-review__delete-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 10px;
  color: #EF4444;
  background: rgba(239, 68, 68, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.mockup-review--good {
  border: 1px solid rgba(34, 197, 94, 0.15);
}

.mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.mockup-stat {
  text-align: center;
  padding: 8px 4px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 6px;
  border: 1px solid var(--color-border);
}

.mockup-stat__number {
  display: block;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.mockup-stat__label {
  display: block;
  font-size: 9px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* Hero Floating Badges */
.hero-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(26, 36, 64, 0.92);
  border: 1px solid var(--color-glass-border);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-white);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}

.hero-float-badge--1 {
  top: 5%;
  right: -10%;
  animation: floatBadge1 5s ease-in-out infinite;
}

.hero-float-badge--2 {
  bottom: 15%;
  left: -15%;
  animation: floatBadge2 6s ease-in-out infinite;
}

.hero-float-badge--3 {
  top: 50%;
  right: -20%;
  animation: floatBadge3 7s ease-in-out infinite;
}

@keyframes floatBadge1 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes floatBadge2 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-14px) rotate(-1deg); }
}

@keyframes floatBadge3 {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-8px) rotate(-3deg); }
}

/* ── Stats / Trust Band ────────────────────────────────────── */
.trust-band {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}

.trust-band__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.trust-band__graph {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.trust-band__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.trust-band__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.trust-band__number {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--color-accent-gold);
  line-height: 1;
}

.trust-band__label {
  font-size: 14px;
  color: var(--color-text-muted);
  font-weight: 500;
}

.trust-band__icon {
  font-size: 28px;
  color: var(--color-accent-gold);
  margin-bottom: 8px;
  opacity: 0.85;
}

/* ── Platform Logos Band ───────────────────────────────────── */
.platforms-band {
  padding: 32px 0;
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
  position: relative;
}

.platforms-band__dots {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.platforms-band__dots-svg {
  width: 100%;
  height: 100%;
}

.platforms-band__title {
  text-align: center;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.platforms-band__track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.platform-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
  opacity: 0.6;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.platform-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.platform-logo i,
.platform-logo .platform-logo__svg {
  font-size: 22px;
  width: 22px;
  height: 22px;
}

/* ── Hero Gradient Orbs ─────────────────────────────────────── */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-orb--1 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.18) 0%, transparent 70%);
  top: -10%;
  right: -5%;
  animation: orbDrift 10s ease-in-out infinite;
}

.hero-orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(66, 133, 244, 0.14) 0%, transparent 70%);
  bottom: 10%;
  left: -8%;
  animation: orbDrift 13s ease-in-out infinite reverse;
}

.hero-orb--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(52, 168, 83, 0.12) 0%, transparent 70%);
  top: 40%;
  right: 20%;
  animation: orbDrift 16s ease-in-out infinite 3s;
}

@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(25px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}

/* ── Hero 3D Map Background ────────────────────────────────── */
.hero-map-3d {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  perspective: 900px;
}

.hero-map-3d__grid {
  position: absolute;
  width: 130%;
  height: 130%;
  top: -15%;
  left: -15%;
  transform: rotateX(52deg) rotateZ(-12deg);
  transform-origin: center center;
  animation: mapFloat 20s ease-in-out infinite;
}

.hero-map-3d__svg {
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

@keyframes mapFloat {
  0%, 100% { transform: rotateX(52deg) rotateZ(-12deg) translateY(0); }
  50% { transform: rotateX(52deg) rotateZ(-12deg) translateY(-12px); }
}

/* Map Pins */
.hero-map-pin {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  animation: pinBounce 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.hero-map-pin--1 { top: 32%; left: 15%; animation-delay: 0s; }
.hero-map-pin--2 { top: 22%; right: 22%; animation-delay: 0.8s; }
.hero-map-pin--3 { bottom: 28%; left: 8%; animation-delay: 1.6s; }
.hero-map-pin--4 { top: 12%; left: 42%; animation-delay: 2.4s; opacity: 0.6; }
.hero-map-pin--5 { bottom: 18%; right: 12%; animation-delay: 3.2s; opacity: 0.5; }

@keyframes pinBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-map-pin__pulse {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(234, 67, 53, 0.3);
  animation: pinPulse 2.5s ease-out infinite;
}

.hero-map-pin__pulse--blue { background: rgba(66, 133, 244, 0.3); }
.hero-map-pin__pulse--gold { background: rgba(251, 188, 5, 0.3); }
.hero-map-pin__pulse--green { background: rgba(52, 168, 83, 0.3); }

@keyframes pinPulse {
  0% { transform: translateX(-50%) scale(1); opacity: 0.6; }
  100% { transform: translateX(-50%) scale(3.5); opacity: 0; }
}

/* Map Info Cards */
.hero-map-card {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  background: rgba(26, 36, 64, 0.95);
  border: 1px solid rgba(212, 168, 67, 0.15);
  border-radius: 8px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  animation: cardFloat 6s ease-in-out infinite;
}

.hero-map-card__rating {
  color: #FBBC05;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.hero-map-card__label {
  color: #94A3B8;
  font-size: 10px;
  font-weight: 500;
  white-space: nowrap;
}

.hero-map-card--1 {
  top: 36%; left: 18%;
  animation-delay: 0s;
}

.hero-map-card--2 {
  top: 18%; right: 18%;
  animation-delay: 2s;
}

.hero-map-card--3 {
  bottom: 32%; left: 5%;
  animation-delay: 4s;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.75; }
  50% { transform: translateY(-6px) scale(1.03); opacity: 0.90; }
}

/* ── Google Floating Decorations ───────────────────────────── */
.google-float {
  position: absolute;
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
  animation: googleFloat 10s ease-in-out infinite;
}

/* Pricing section floats */
.google-float--1 { top: 8%; left: 4%; animation-delay: 0s; font-size: 56px; color: #4285F4; }
.google-float--2 { top: 18%; right: 6%; animation-delay: 1.5s; font-size: 44px; color: #EA4335; }
.google-float--3 { bottom: 32%; left: 8%; animation-delay: 3s; font-size: 50px; color: #FBBC05; }
.google-float--4 { bottom: 12%; right: 10%; animation-delay: 4.5s; font-size: 40px; color: #34A853; }
.google-float--5 { top: 45%; left: 2%; animation-delay: 2s; font-size: 36px; color: #4285F4; }
.google-float--6 { top: 35%; right: 2%; animation-delay: 5s; font-size: 48px; color: #34A853; }
.google-float--7 { bottom: 45%; right: 5%; animation-delay: 3.5s; font-size: 38px; color: #EA4335; }
.google-float--8 { top: 60%; left: 6%; animation-delay: 6s; font-size: 42px; color: #FBBC05; }

/* FAQ section floats */
.google-float--faq-1 { top: 12%; right: 4%; animation-delay: 0.5s; font-size: 54px; color: #FBBC05; }
.google-float--faq-2 { bottom: 18%; left: 4%; animation-delay: 2.5s; font-size: 46px; color: #4285F4; }
.google-float--faq-3 { top: 45%; right: 6%; animation-delay: 4.5s; font-size: 40px; color: #34A853; }
.google-float--faq-4 { bottom: 8%; right: 12%; animation-delay: 6.5s; font-size: 52px; color: #EA4335; }
.google-float--faq-5 { top: 25%; left: 3%; animation-delay: 1.5s; font-size: 42px; color: #FBBC05; }
.google-float--faq-6 { bottom: 35%; left: 8%; animation-delay: 5s; font-size: 48px; color: #EA4335; }

/* Vergleich section floats */
.google-float--vergleich-1 { top: 10%; left: 3%; animation-delay: 0s; font-size: 50px; color: #4285F4; }
.google-float--vergleich-2 { top: 20%; right: 5%; animation-delay: 2s; font-size: 42px; color: #34A853; }
.google-float--vergleich-3 { bottom: 25%; left: 6%; animation-delay: 4s; font-size: 46px; color: #FBBC05; }
.google-float--vergleich-4 { bottom: 10%; right: 8%; animation-delay: 6s; font-size: 38px; color: #D4A843; }

/* Ablauf section floats */
.google-float--ablauf-1 { top: 8%; right: 4%; animation-delay: 1s; font-size: 44px; color: #4285F4; }
.google-float--ablauf-2 { bottom: 15%; left: 3%; animation-delay: 3s; font-size: 48px; color: #34A853; }
.google-float--ablauf-3 { top: 40%; left: 5%; animation-delay: 5s; font-size: 52px; color: #EA4335; }
.google-float--ablauf-4 { bottom: 30%; right: 6%; animation-delay: 7s; font-size: 40px; color: #FBBC05; }

/* Testimonials section floats */
.google-float--ref-1 { top: 10%; left: 5%; animation-delay: 0s; font-size: 54px; color: #D4A843; }
.google-float--ref-2 { top: 15%; right: 4%; animation-delay: 2s; font-size: 46px; color: #FBBC05; }
.google-float--ref-3 { bottom: 20%; left: 3%; animation-delay: 4s; font-size: 40px; color: #EA4335; }
.google-float--ref-4 { bottom: 10%; right: 7%; animation-delay: 6s; font-size: 50px; color: #4285F4; }

/* Kontakt section floats */
.google-float--kontakt-1 { top: 8%; right: 3%; animation-delay: 0.5s; font-size: 42px; color: #D4A843; }
.google-float--kontakt-2 { bottom: 12%; left: 4%; animation-delay: 2.5s; font-size: 38px; color: #34A853; }
.google-float--kontakt-3 { top: 50%; left: 2%; animation-delay: 4.5s; font-size: 48px; color: #4285F4; }
.google-float--kontakt-4 { bottom: 30%; right: 5%; animation-delay: 6.5s; font-size: 44px; color: #EA4335; }

/* Formel section floats */
.google-float--formel-1 { top: 10%; left: 3%; animation-delay: 0s; font-size: 40px; color: #FBBC05; }
.google-float--formel-2 { top: 15%; right: 4%; animation-delay: 2s; font-size: 44px; color: #4285F4; }
.google-float--formel-3 { bottom: 15%; left: 5%; animation-delay: 4s; font-size: 48px; color: #4285F4; }
.google-float--formel-4 { bottom: 20%; right: 3%; animation-delay: 6s; font-size: 42px; color: #34A853; }

/* Wissen/SEO section floats */
.google-float--wissen-1 { top: 8%; right: 4%; animation-delay: 0.5s; font-size: 42px; color: #D4A843; }
.google-float--wissen-2 { top: 40%; left: 3%; animation-delay: 2.5s; font-size: 46px; color: #4285F4; }
.google-float--wissen-3 { bottom: 12%; right: 5%; animation-delay: 4.5s; font-size: 38px; color: #34A853; }
.google-float--wissen-4 { bottom: 30%; left: 4%; animation-delay: 6.5s; font-size: 44px; color: #EA4335; }

/* Analyse section floating icons */
.google-float--analyse-1 { top: 8%; left: 3%; animation-delay: 0s; font-size: 38px; color: #D4A843; }
.google-float--analyse-2 { top: 12%; right: 5%; animation-delay: 1.5s; font-size: 42px; color: #4285F4; }
.google-float--analyse-3 { top: 50%; left: 2%; animation-delay: 3s; font-size: 48px; color: #4285F4; }
.google-float--analyse-4 { bottom: 25%; right: 3%; animation-delay: 4.5s; font-size: 36px; color: #FBBC05; }
.google-float--analyse-5 { bottom: 10%; left: 5%; animation-delay: 6s; font-size: 40px; color: #34A853; }
.google-float--analyse-6 { top: 30%; right: 2%; animation-delay: 7.5s; font-size: 34px; color: #D4A843; }

/* ── Formel Star Rain ──────────────────────────────────────── */
.formel-stars {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.formel-stars__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@keyframes googleFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.18; }
  25% { transform: translateY(-20px) rotate(6deg); opacity: 0.30; }
  50% { transform: translateY(-12px) rotate(-4deg); opacity: 0.22; }
  75% { transform: translateY(-25px) rotate(3deg); opacity: 0.28; }
}

/* ── Google Toast Notifications ────────────────────────────── */
.g-toast {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(30, 41, 59, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.04);
  min-width: 220px;
}

.g-toast--1 {
  top: 12%;
  right: 6%;
  animation: toastSlideIn 8s ease-in-out infinite;
}

.g-toast--2 {
  bottom: 18%;
  left: 6%;
  animation: toastSlideIn 8s ease-in-out infinite 4s;
}

.g-toast__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.g-toast__icon--success {
  background: rgba(52, 168, 83, 0.15);
  color: #34A853;
  box-shadow: 0 0 12px rgba(52, 168, 83, 0.2);
}

.g-toast__icon--warning {
  background: rgba(234, 67, 53, 0.15);
  color: #EA4335;
  box-shadow: 0 0 12px rgba(234, 67, 53, 0.2);
}

.g-toast__title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.g-toast__sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

@keyframes toastSlideIn {
  0% { opacity: 0; transform: translateX(30px) scale(0.95); }
  8% { opacity: 1; transform: translateX(0) scale(1); }
  45% { opacity: 1; transform: translateX(0) scale(1); }
  55% { opacity: 0; transform: translateX(-20px) scale(0.95); }
  100% { opacity: 0; transform: translateX(30px) scale(0.95); }
}

/* ── Google Rating Widget ──────────────────────────────────── */
.g-rating-widget {
  position: absolute;
  bottom: 12%;
  right: 8%;
  z-index: 2;
  pointer-events: none;
  background: rgba(30, 41, 59, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 22px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  animation: widgetPulse 6s ease-in-out infinite;
}

.g-rating-widget__score {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.g-rating-widget__stars {
  font-size: 16px;
  color: #FBBC05;
  letter-spacing: 2px;
  margin: 6px 0 4px;
}

.g-rating-widget__label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

@keyframes widgetPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4); }
  50% { transform: scale(1.03); box-shadow: 0 12px 40px rgba(212, 168, 67, 0.15); }
}

/* ── Google Progress Card (Ablauf) ─────────────────────────── */
.g-progress-card {
  position: absolute;
  top: 15%;
  left: 6%;
  z-index: 2;
  pointer-events: none;
  background: rgba(30, 41, 59, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 20px;
  min-width: 210px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  animation: widgetPulse 7s ease-in-out infinite 2s;
}

.g-progress-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4285F4;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}

.g-progress-card__header i {
  font-size: 16px;
}

.g-progress-card__header span {
  color: #fff;
}

.g-progress-card__bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}

.g-progress-card__fill {
  height: 100%;
  width: 75%;
  background: linear-gradient(90deg, #4285F4, #34A853);
  border-radius: 3px;
  animation: progressFill 4s ease-in-out infinite;
}

.g-progress-card__status {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

@keyframes progressFill {
  0% { width: 50%; }
  50% { width: 85%; }
  100% { width: 50%; }
}

/* ── Google Review Snippet (Testimonials) ──────────────────── */
.g-review-snippet {
  position: absolute;
  bottom: 15%;
  left: 5%;
  z-index: 2;
  pointer-events: none;
  background: rgba(30, 41, 59, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 22px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  animation: toastSlideIn 10s ease-in-out infinite 2s;
}

.g-review-snippet__head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.g-review-snippet__rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.g-review-snippet__score {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
}

.g-review-snippet__stars {
  font-size: 16px;
  color: #FBBC05;
  letter-spacing: 2px;
}

.g-review-snippet__count {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

/* ── Vorteile Map Background & Decorations ─────────────────── */
.section--vorteile {
  position: relative;
  overflow: hidden;
}

.vorteile-map-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(212, 168, 67, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(66, 133, 244, 0.06) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600' viewBox='0 0 800 600'%3E%3Cpath d='M100 200 Q200 150 300 200 T500 180 T700 220' stroke='%23D4A843' stroke-width='1' fill='none' opacity='0.15'/%3E%3Cpath d='M50 300 Q150 280 280 320 T480 290 T700 340' stroke='%234285F4' stroke-width='0.8' fill='none' opacity='0.12'/%3E%3Cpath d='M80 400 Q200 370 350 410 T550 380 T750 420' stroke='%2334A853' stroke-width='0.8' fill='none' opacity='0.10'/%3E%3Ccircle cx='200' cy='250' r='4' fill='%23D4A843' opacity='0.25'/%3E%3Ccircle cx='400' cy='300' r='4' fill='%234285F4' opacity='0.20'/%3E%3Ccircle cx='600' cy='200' r='4' fill='%23EA4335' opacity='0.20'/%3E%3Ccircle cx='350' cy='400' r='3' fill='%2334A853' opacity='0.15'/%3E%3Ccircle cx='550' cy='350' r='3' fill='%23FBBC05' opacity='0.15'/%3E%3Ccircle cx='150' cy='350' r='3' fill='%234285F4' opacity='0.12'/%3E%3Ccircle cx='650' cy='400' r='3' fill='%23D4A843' opacity='0.12'/%3E%3C/svg%3E") center/cover no-repeat;
  pointer-events: none;
  z-index: 0;
}

/* Map Markers */
.map-marker {
  position: absolute;
  z-index: 1;
  font-size: 28px;
  color: #D4A843;
  animation: markerBounce 2.5s ease-in-out infinite;
  pointer-events: none;
}

.map-marker--1 { top: 20%; left: 15%; animation-delay: 0s; }
.map-marker--2 { top: 35%; right: 18%; animation-delay: 0.8s; }
.map-marker--3 { bottom: 25%; left: 45%; animation-delay: 1.6s; font-size: 24px; }

.marker-pulse {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 6px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.3);
  animation: markerPulseAnim 2.5s ease-in-out infinite;
}

.map-marker--1 .marker-pulse { animation-delay: 0s; }
.map-marker--2 .marker-pulse { animation-delay: 0.8s; }
.map-marker--3 .marker-pulse { animation-delay: 1.6s; }

@keyframes markerBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes markerPulseAnim {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.3; }
  50% { transform: translateX(-50%) scale(1.8); opacity: 0.1; }
}

/* ── Contact Background Shapes ─────────────────────────────── */
.kontakt-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.kontakt-shape--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.12) 0%, transparent 70%);
  top: -10%;
  right: -5%;
  animation: kontaktShapeFloat 10s ease-in-out infinite;
}

.kontakt-shape--2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(66, 133, 244, 0.10) 0%, transparent 70%);
  bottom: -5%;
  left: -5%;
  animation: kontaktShapeFloat 13s ease-in-out infinite reverse;
}

@keyframes kontaktShapeFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -15px); }
}

/* ── Vorteile (Advantages) Section ─────────────────────────── */
.vorteile__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.vorteil-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.vorteil-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent-gold), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.vorteil-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-border-light);
  box-shadow: var(--shadow-glow);
}

.vorteil-card:hover::before {
  opacity: 1;
}

.vorteil-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(212, 168, 67, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-accent-gold);
  transition: all var(--transition-normal);
}

.vorteil-card:hover .vorteil-card__icon {
  background: rgba(212, 168, 67, 0.15);
  transform: scale(1.05);
}

.vorteil-card__icon svg {
  width: 26px;
  height: 26px;
}

.vorteil-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.vorteil-card__text {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ── Vorher/Nachher (Before/After) Section ─────────────────── */
.vergleich {
  position: relative;
}

.vergleich__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 60px;
}

.vergleich__card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  border: 2px solid transparent;
  transition: all var(--transition-normal);
}

.vergleich__card--before {
  border-color: rgba(239, 68, 68, 0.2);
}

.vergleich__card--after {
  border-color: rgba(34, 197, 94, 0.3);
}

.vergleich__card-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.vergleich__card--before .vergleich__card-label { color: var(--color-danger); }
.vergleich__card--after .vergleich__card-label { color: var(--color-success); }

.vergleich__stars {
  font-size: 36px;
  letter-spacing: 6px;
  margin-bottom: 12px;
}

.vergleich__stars--bad { color: var(--color-danger); }
.vergleich__stars--good { color: var(--color-warning); }

.vergleich__score {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.vergleich__card--before .vergleich__score { color: var(--color-danger); }
.vergleich__card--after .vergleich__score { color: var(--color-success); }

.vergleich__status {
  font-size: 16px;
  color: var(--color-text-muted);
  font-weight: 600;
}

.vergleich__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(212, 168, 67, 0.1);
  border-radius: 50%;
  color: var(--color-accent-gold);
  animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.vergleich__arrow svg {
  width: 28px;
  height: 28px;
}

.vergleich__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.vergleich__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: var(--color-bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}

.vergleich__feature-icon {
  width: 22px;
  height: 22px;
  color: var(--color-success);
  flex-shrink: 0;
  margin-top: 2px;
}

.vergleich__feature-text {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ── Ablauf (Process) Section ──────────────────────────────── */
.ablauf__timeline {
  position: relative;
  margin-top: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ablauf__timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--color-accent-gold), var(--color-border));
  transform: translateX(-50%);
}

.ablauf__step {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}

.ablauf__step:last-child {
  margin-bottom: 0;
}

.ablauf__step:nth-child(odd) {
  flex-direction: row;
  text-align: right;
}

.ablauf__step:nth-child(even) {
  flex-direction: row-reverse;
  text-align: left;
}

.ablauf__step-content {
  flex: 1;
  padding: 28px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.ablauf__step-content:hover {
  border-color: var(--color-border-light);
  box-shadow: var(--shadow-glow);
}

.ablauf__step-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-accent-gold), var(--color-accent-gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--color-bg-primary);
  z-index: 2;
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.3);
}

.ablauf__step-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ablauf__step-text {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ── Bewertungsformel Section ──────────────────────────────── */
.formel__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.formel__visual {
  text-align: center;
}

.formel__equation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.formel__block {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  text-align: center;
}

.formel__block--bad {
  border-color: rgba(239, 68, 68, 0.3);
}

.formel__block--good {
  border-color: rgba(34, 197, 94, 0.3);
}

.formel__block--result {
  border-color: rgba(212, 168, 67, 0.3);
  background: rgba(212, 168, 67, 0.05);
}

.formel__block-number {
  font-size: 32px;
  font-weight: 800;
}

.formel__block--bad .formel__block-number { color: var(--color-danger); }
.formel__block--good .formel__block-number { color: var(--color-success); }
.formel__block--result .formel__block-number { color: var(--color-accent-gold); }

.formel__block-label {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.formel__operator {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text-dim);
}

.formel__text h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.formel__text p {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.formel__highlight {
  padding: 20px 24px;
  background: rgba(212, 168, 67, 0.06);
  border-left: 3px solid var(--color-accent-gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ── Kundenstimmen (Testimonials) Section ──────────────────── */
.testimonials__track-wrapper {
  overflow: hidden;
  margin-top: 60px;
  position: relative;
}

.testimonials__track-wrapper::before,
.testimonials__track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.testimonials__track-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-bg-primary), transparent);
}

.testimonials__track-wrapper::after {
  right: 0;
  background: linear-gradient(-90deg, var(--color-bg-primary), transparent);
}

.testimonials__track {
  display: flex;
  gap: 24px;
  animation: scrollTestimonials 30s linear infinite;
  width: max-content;
}

.testimonials__track:hover {
  animation-play-state: paused;
}

@keyframes scrollTestimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  min-width: 340px;
  max-width: 340px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
  flex-shrink: 0;
  transition: border-color var(--transition-normal);
}

.testimonial-card:hover {
  border-color: var(--color-border-light);
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.testimonial-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent-gold), var(--color-accent-gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--color-bg-primary);
}

.testimonial-card__info {
  flex: 1;
}

.testimonial-card__name {
  font-size: 15px;
  font-weight: 700;
}

.testimonial-card__role {
  font-size: 13px;
  color: var(--color-text-dim);
}

.testimonial-card__stars {
  font-size: 14px;
  color: var(--color-warning);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-card__text {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
  font-style: italic;
}

/* ── Preise (Pricing) Section ──────────────────────────────── */
.preise__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  align-items: stretch;
}

.preis-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.preis-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.preis-card--featured {
  border-color: var(--color-accent-gold);
  background: linear-gradient(180deg, rgba(212, 168, 67, 0.05) 0%, var(--color-bg-card) 100%);
  transform: scale(1.02);
  box-shadow: var(--shadow-glow);
}

.preis-card--featured:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: var(--shadow-glow-strong);
}

.preis-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: var(--color-accent-gold);
  color: var(--color-bg-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  border-radius: 50px;
  white-space: nowrap;
}

.preis-card__name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.preis-card__desc {
  font-size: 14px;
  color: var(--color-text-dim);
  margin-bottom: 12px;
}

.preis-card__qty {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent-gold);
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.preis-card__save {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #34d399;
  margin-top: -18px;
  margin-bottom: 22px;
  letter-spacing: 0.3px;
}

.preis-card__price {
  margin-bottom: 28px;
}

.preis-card__amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--color-accent-gold);
  line-height: 1;
}

.preis-card__currency {
  font-size: 22px;
  font-weight: 700;
  vertical-align: super;
}

.preis-card__per {
  font-size: 15px;
  color: var(--color-text-dim);
  margin-left: 4px;
}

.preis-card__features {
  flex: 1;
  margin-bottom: 28px;
}

.preis-card__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
  color: var(--color-text-muted);
}

.preis-card__feature:last-child {
  border-bottom: none;
}

.preis-card__feature-icon {
  width: 18px;
  height: 18px;
  color: var(--color-success);
  flex-shrink: 0;
}

.preis-card__btn {
  width: 100%;
  justify-content: center;
}

.preis-card--featured .preis-card__btn {
  background: linear-gradient(135deg, var(--color-accent-gold), var(--color-accent-gold-dark));
  color: var(--color-bg-primary);
}

.preise__note {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--color-text-dim);
}

/* ── FAQ Section ───────────────────────────────────────────── */
.faq__list {
  max-width: 800px;
  margin: 60px auto 0;
}

.faq__item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition-normal);
}

.faq__item.is-open {
  border-color: var(--color-accent-gold);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--color-bg-card);
  color: var(--color-text-white);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  transition: background var(--transition-fast);
}

.faq__question:hover {
  background: var(--color-bg-card-hover);
}

.faq__icon {
  width: 20px;
  height: 20px;
  color: var(--color-accent-gold);
  flex-shrink: 0;
  transition: transform var(--transition-normal);
}

.faq__item.is-open .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ── SEO Content Section ───────────────────────────────────── */
.seo-content__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.seo-block {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.seo-block__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--color-bg-card);
  color: var(--color-text-white);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  transition: background var(--transition-fast);
}

.seo-block__toggle:hover {
  background: var(--color-bg-card-hover);
}

.seo-block__icon {
  width: 20px;
  height: 20px;
  color: var(--color-accent-gold);
  flex-shrink: 0;
  transition: transform var(--transition-normal);
}

.seo-block.is-open .seo-block__icon {
  transform: rotate(180deg);
}

.seo-block__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.seo-block__content-inner {
  padding: 0 24px 24px;
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.seo-block__content-inner h3 {
  color: var(--color-text-white);
  font-size: 18px;
  margin-top: 16px;
  margin-bottom: 8px;
}

.seo-block__content-inner p {
  margin-bottom: 12px;
}

.seo-block__content-inner ul {
  margin-bottom: 12px;
  padding-left: 20px;
  list-style: disc;
}

.seo-block__content-inner ul li {
  margin-bottom: 6px;
}

/* ── Kontakt (Contact) Section ─────────────────────────────── */
.kontakt__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
}

.kontakt__info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.kontakt__info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-normal);
}

.kontakt__info-card:hover {
  border-color: var(--color-border-light);
}

.kontakt__info-icon {
  width: 44px;
  height: 44px;
  background: rgba(212, 168, 67, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-gold);
  flex-shrink: 0;
}

.kontakt__info-icon svg {
  width: 22px;
  height: 22px;
}

.kontakt__info-label {
  font-size: 13px;
  color: var(--color-text-dim);
  margin-bottom: 4px;
}

.kontakt__info-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-white);
}

.kontakt__info-value a {
  color: var(--color-text-white);
}

.kontakt__info-value a:hover {
  color: var(--color-accent-gold);
}

/* Contact Feature Items */
.kontakt__features {
  display: grid;
  gap: 16px;
  margin-top: 8px;
  margin-bottom: 20px;
}

.kontakt__feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.kontakt__feature-item:hover {
  border-color: rgba(212, 168, 67, 0.3);
  transform: translateX(4px);
}

.kontakt__feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(212, 168, 67, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent-gold);
  font-size: 16px;
}

.kontakt__feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.kontakt__feature-text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-white);
}

.kontakt__feature-text span {
  font-size: 12px;
  color: var(--color-text-muted);
}

.kontakt__trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.kontakt__trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--color-success);
  font-weight: 600;
}

.kontakt__trust-badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Contact Form */
.kontakt__form-wrapper {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.kontakt__form-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.kontakt__form-subtitle {
  font-size: 14px;
  color: var(--color-text-dim);
  margin-bottom: 28px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form__group {
  margin-bottom: 16px;
}

.form__group--full {
  grid-column: 1 / -1;
}

.form__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.form__label .required {
  color: var(--color-danger);
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text-white);
  font-size: 15px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--color-accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.1);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--color-text-dim);
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form__select option {
  background: var(--color-bg-secondary);
  color: var(--color-text-white);
}

.form__textarea {
  min-height: 100px;
  resize: vertical;
}

.form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

/* Anti-spam slider */
.form__slider-wrapper {
  margin-bottom: 20px;
}

.form__slider-label {
  font-size: 13px;
  color: var(--color-text-dim);
  margin-bottom: 8px;
}

.form__slider-track {
  position: relative;
  height: 48px;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  overflow: hidden;
  user-select: none;
}

.form__slider-handle {
  position: absolute;
  left: 4px;
  top: 4px;
  width: 40px;
  height: 40px;
  background: var(--color-accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  transition: left 0.1s ease;
  z-index: 2;
}

.form__slider-handle:active {
  cursor: grabbing;
}

.form__slider-handle svg {
  width: 20px;
  height: 20px;
  color: var(--color-bg-primary);
}

.form__slider-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--color-text-dim);
  pointer-events: none;
}

.form__slider-track.is-verified {
  border-color: var(--color-success);
  background: rgba(34, 197, 94, 0.05);
}

.form__slider-track.is-verified .form__slider-text {
  color: var(--color-success);
}

/* Checkbox */
.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
  cursor: pointer;
}

.form__checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-accent-gold);
  flex-shrink: 0;
}

.form__checkbox-text {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.form__checkbox-text a {
  color: var(--color-accent-gold);
  text-decoration: underline;
}

.form__submit {
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(135deg, var(--color-accent-gold), var(--color-accent-gold-dark));
  color: var(--color-bg-primary);
  font-size: 16px;
  font-weight: 800;
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.form__submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 168, 67, 0.35);
}

.form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form__submit-text {
  position: relative;
  z-index: 1;
}

.form__submit-loader {
  display: none;
  width: 22px;
  height: 22px;
  border: 3px solid rgba(11, 17, 32, 0.3);
  border-top-color: var(--color-bg-primary);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.form__submit.is-loading .form__submit-text { display: none; }
.form__submit.is-loading .form__submit-loader { display: inline-block; }

.form__success,
.form__error {
  display: none;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
}

.form__success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--color-success);
}

.form__error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: var(--color-danger);
}

.form__ssl-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--color-text-dim);
}

.form__ssl-note svg {
  width: 14px;
  height: 14px;
  color: var(--color-success);
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  padding: 60px 0 30px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand-logo {
  height: 32px;
  width: auto;
  margin-bottom: 16px;
}

.footer__brand-text {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer__heading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-white);
  margin-bottom: 20px;
}

.footer__link {
  display: block;
  font-size: 14px;
  color: var(--color-text-muted);
  padding: 5px 0;
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-accent-gold);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Footer Trust Bar */
.footer__trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-sm);
  width: 100%;
}

.footer__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 500;
}

.footer__trust-item i {
  color: var(--color-success);
  font-size: 14px;
}

/* Footer Payment Icons */
.footer__payments {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__payments-label {
  font-size: 12px;
  color: var(--color-text-dim);
  margin-right: 4px;
}

.footer__payments i {
  font-size: 28px;
  color: var(--color-text-muted);
  opacity: 0.5;
  transition: opacity var(--transition-fast);
}

.footer__payments i:hover {
  opacity: 0.9;
}

.footer__copyright {
  font-size: 13px;
  color: var(--color-text-dim);
}

.footer__developer {
  font-size: 12px;
  color: var(--color-text-dim);
  opacity: 0.7;
}

.footer__developer a {
  color: var(--color-accent-gold);
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

.footer__developer a:hover {
  color: var(--color-accent-gold-light);
  opacity: 1;
}

.footer__legal-links {
  display: flex;
  gap: 20px;
}

.footer__legal-link {
  font-size: 13px;
  color: var(--color-text-dim);
  transition: color var(--transition-fast);
}

.footer__legal-link:hover {
  color: var(--color-accent-gold);
}

/* ── Floating Elements ─────────────────────────────────────── */
.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 90px;
  width: 48px;
  height: 48px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-normal);
  z-index: 100;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--color-accent-gold);
  color: var(--color-bg-primary);
  border-color: var(--color-accent-gold);
}

.scroll-top svg {
  width: 22px;
  height: 22px;
}

/* Mobile Phone CTA */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-accent-gold);
  padding: 14px;
  z-index: 999;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-bg-primary);
}

.mobile-cta svg {
  width: 20px;
  height: 20px;
}

/* Desktop Phone Float */
.desktop-phone-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  background: var(--color-accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bg-primary);
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.4);
  z-index: 100;
  animation: phoneRing 3s ease-in-out infinite;
  transition: transform var(--transition-fast);
}

.desktop-phone-float:hover {
  transform: scale(1.1);
  color: var(--color-bg-primary);
}

.desktop-phone-float svg {
  width: 24px;
  height: 24px;
}

@keyframes phoneRing {
  0%, 100% { box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3); }
  50% { box-shadow: 0 4px 30px rgba(212, 168, 67, 0.5), 0 0 0 10px rgba(212, 168, 67, 0.1); }
}

/* ── Animations (Scroll-triggered) ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--left {
  transform: translateX(-30px);
}

.reveal--left.is-visible {
  transform: translateX(0);
}

.reveal--right {
  transform: translateX(30px);
}

.reveal--right.is-visible {
  transform: translateX(0);
}

.reveal--scale {
  transform: scale(0.9);
}

.reveal--scale.is-visible {
  transform: scale(1);
}

/* Stagger delays for children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }

/* ── Performance Optimizations ─────────────────────────────── */
/* Skip rendering of off-screen sections (huge paint savings) */
#vorteile, #vergleich, #ablauf, #formel,
#referenzen, #preise, #faq, #wissen, #kontakt {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

.footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

/* GPU-promote animated decorative elements — paused by default */
.google-float,
.hero-orb,
.hero-float-badge,
.hero-map-pin,
.hero-map-card,
.hero-map-3d__grid,
.g-toast,
.g-rating-widget,
.g-progress-card,
.g-review-snippet,
.kontakt-shape,
.map-marker,
.mockup-browser,
.hero__particle,
.mockup-review--deleting,
.mockup-review__strikethrough,
.free-vps-banner,
.hero__badge-dot,
.hero__title-typed,
.preloader__spinner,
.preloader__logo {
  will-change: transform;
  contain: layout style paint;
  animation-play-state: paused;
}

/* Play animations only when the parent section is visible */
.section.is-visible .google-float,
.section.is-visible .g-toast,
.section.is-visible .g-rating-widget,
.section.is-visible .g-progress-card,
.section.is-visible .g-review-snippet,
.section.is-visible .kontakt-shape,
.section.is-visible .map-marker,
.hero .google-float,
.hero .hero-orb,
.hero .hero-float-badge,
.hero .hero-map-pin,
.hero .hero-map-card,
.hero .hero-map-3d__grid,
.hero .mockup-browser,
.hero .mockup-review--deleting,
.hero .mockup-review__strikethrough,
.hero .hero__particle,
.hero .hero__badge-dot,
.hero .hero__title-typed,
.free-vps-banner,
.preloader__spinner,
.preloader__logo,
.trust-band.is-visible .trust-band__bg *,
.platforms-band.is-visible .platforms-band__dots * {
  animation-play-state: running;
}

/* Accessibility + performance: honor reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__trust {
    justify-content: center;
  }

  .hero__visual {
    display: none;
  }

  .header__nav {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  .header__logo-main {
    font-size: 14px;
  }

  .header__logo-tagline {
    font-size: 7px;
    letter-spacing: 1.5px;
  }

  .header__logo-icon {
    width: 30px;
    height: 30px;
  }

  .header.is-scrolled .header__logo-main {
    font-size: 13px;
  }

  .header.is-scrolled .header__logo-icon {
    width: 24px;
    height: 24px;
  }

  /* Mobile Nav Overlay */
  .mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(11, 17, 32, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: 100px 24px 120px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
  }

  .mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
  }

  .mobile-nav__link {
    display: block;
    width: 100%;
    max-width: 320px;
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    color: var(--color-text-white);
    padding: 16px 24px;
    margin-bottom: 8px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--transition-fast);
  }

  .mobile-nav__link:hover,
  .mobile-nav__link:active {
    background: rgba(212, 168, 67, 0.12);
    border-color: rgba(212, 168, 67, 0.3);
    color: var(--color-accent-gold);
    transform: scale(1.02);
  }

  .mobile-nav .btn--primary {
    width: 100%;
    max-width: 320px;
    text-align: center;
    margin-top: 16px;
  }

  .mobile-nav__close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    color: var(--color-text-white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1101;
  }

  .vorteile__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vergleich__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .vergleich__arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }

  .vergleich__features {
    grid-template-columns: repeat(2, 1fr);
  }

  .ablauf__timeline::before {
    left: 24px;
  }

  .ablauf__step,
  .ablauf__step:nth-child(odd),
  .ablauf__step:nth-child(even) {
    flex-direction: row;
    text-align: left;
    padding-left: 70px;
  }

  .ablauf__step-number {
    left: 0;
    transform: none;
  }

  .formel__inner {
    grid-template-columns: 1fr;
  }

  .preise__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .preis-card--featured {
    transform: none;
  }

  .kontakt__inner {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Hide floating decorations on tablet */
  .google-float,
  .map-marker,
  .g-toast,
  .g-rating-widget,
  .g-progress-card,
  .g-review-snippet,
  .kontakt-shape,
  .hero-orb,
  .hero-map-3d,
  .trust-band__bg,
  .platforms-band__dots,
  .formel-stars {
    display: none;
  }

  .platforms-band__track {
    gap: 28px;
  }

  .platform-logo {
    height: 26px;
  }

  .kontakt__features {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .footer__trust-bar {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .vorteile__grid {
    grid-template-columns: 1fr;
  }

  .vergleich__features {
    grid-template-columns: 1fr;
  }

  .trust-band__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }

  .kontakt__trust-badges {
    grid-template-columns: 1fr;
  }

  .platforms-band__track {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .platform-logo {
    height: 22px;
  }

  .kontakt__features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer__trust-bar {
    gap: 14px;
    flex-direction: column;
  }

  .footer__payments i {
    font-size: 22px;
  }

  .mobile-cta {
    display: flex;
  }

  .desktop-phone-float {
    display: none;
  }

  .scroll-top {
    bottom: 70px;
  }

  .footer {
    padding-bottom: 80px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 32px;
  }

  .hero__badge {
    font-size: 11px;
  }

  .btn {
    padding: 14px 24px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }

  .kontakt__form-wrapper {
    padding: 24px;
  }

  .header__inner {
    padding: 0 16px;
  }

  .header__logo-main {
    font-size: 13px;
  }

  .header__logo-tagline {
    display: none;
  }

  .header__logo-icon {
    width: 26px;
    height: 26px;
  }

  .header__logo {
    gap: 8px;
  }

  .platforms-band {
    padding: 20px 0;
  }

  .platforms-band__title {
    font-size: 11px;
  }

  .platform-logo {
    height: 18px;
  }

  .footer__trust-item {
    font-size: 11px;
  }
}

/* ── Online Analyse — Unique Section Background ────────────── */
.section--analyse {
  background: linear-gradient(175deg, #0B1120 0%, #0F1A33 35%, #121E3A 65%, #0B1120 100%);
  position: relative;
  overflow: hidden;
}

/* Animated gradient layer */
.analyse-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.analyse-bg__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(212, 168, 67, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(66, 133, 244, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 50% 90%, rgba(52, 168, 83, 0.04) 0%, transparent 60%);
  animation: analyseGradientShift 12s ease-in-out infinite alternate;
}

@keyframes analyseGradientShift {
  0%  { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1;   transform: scale(1.05); }
  100%{ opacity: 0.7; transform: scale(0.98); }
}

/* Subtle grid pattern */
.analyse-bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 168, 67, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 168, 67, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: analyseGridDrift 30s linear infinite;
}

@keyframes analyseGridDrift {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

/* Floating orbs */
.analyse-bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: analyseOrbFloat 10s ease-in-out infinite alternate;
}

.analyse-bg__orb--1 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.25) 0%, transparent 70%);
  top: -80px;
  right: -60px;
  animation-duration: 12s;
}

.analyse-bg__orb--2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(66, 133, 244, 0.2) 0%, transparent 70%);
  bottom: -60px;
  left: -40px;
  animation-duration: 14s;
  animation-delay: 3s;
}

.analyse-bg__orb--3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(52, 168, 83, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 16s;
  animation-delay: 6s;
}

@keyframes analyseOrbFloat {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(20px, -15px) scale(1.08); }
  66%  { transform: translate(-15px, 10px) scale(0.95); }
  100% { transform: translate(10px, -20px) scale(1.03); }
}

/* Scanning line animation */
.analyse-scanline {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(212, 168, 67, 0) 10%,
    rgba(212, 168, 67, 0.4) 50%,
    rgba(212, 168, 67, 0) 90%,
    transparent 100%
  );
  opacity: 0;
  animation: analyseScanline 6s ease-in-out infinite;
}

@keyframes analyseScanline {
  0%   { top: -2px; opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.6; }
  100% { top: 100%; opacity: 0; }
}

/* Top/bottom decorative borders */
.section--analyse::before,
.section--analyse::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 1;
}

.section--analyse::before {
  top: 0;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.3), transparent);
}

.section--analyse::after {
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.2), transparent);
}

/* Analyse impact cards glow on hover */
.section--analyse .analyse-promo__impact-card {
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.section--analyse .analyse-promo__impact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(212, 168, 67, 0.12);
  border-color: rgba(212, 168, 67, 0.25);
}

/* Form card glow effect */
.section--analyse .analyse-promo__form-card {
  box-shadow:
    var(--shadow-lg),
    0 0 60px rgba(212, 168, 67, 0.06),
    0 0 120px rgba(66, 133, 244, 0.03);
}

/* ── Online Analyse Promo Section ──────────────────────────── */
.analyse-promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Impact stats row */
.analyse-promo__impact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.analyse-promo__impact-card {
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.analyse-promo__impact-num {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
}

.analyse-promo__impact-text {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* Sub title */
.analyse-promo__sub-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-white);
  margin-bottom: 20px;
}

/* Features list */
.analyse-promo__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.analyse-promo__feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.analyse-promo__feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid rgba(212, 168, 67, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent-gold);
  font-size: 16px;
}

.analyse-promo__feat strong {
  display: block;
  font-size: 14px;
  color: var(--color-text-white);
  margin-bottom: 2px;
}

.analyse-promo__feat span {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* Trust bar */
.analyse-promo__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.analyse-promo__trust span {
  font-size: 12px;
  color: var(--color-text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
}

.analyse-promo__trust i {
  color: var(--color-accent-gold);
  font-size: 13px;
}

/* ── Right side: Form card ──────────────────────────────────── */
.analyse-promo__form-side {
  position: sticky;
  top: 100px;
}

.analyse-promo__form-card {
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.analyse-promo__form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent-gold), #F59E0B);
}

.analyse-promo__form-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.analyse-promo__form-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-accent-gold), #F59E0B);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #0B1120;
  font-size: 20px;
}

.analyse-promo__form-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-white);
  margin: 0 0 2px;
}

.analyse-promo__form-sub {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0;
}

/* Form elements */
.analyse-promo__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.analyse-promo__form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-white);
  display: flex;
  align-items: center;
  gap: 6px;
}

.analyse-promo__form-label i {
  color: var(--color-accent-gold);
}

.analyse-promo__form-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  font-family: inherit;
  color: var(--color-text-white);
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.analyse-promo__form-input::placeholder {
  color: var(--color-text-dim);
}

.analyse-promo__form-input:focus {
  border-color: var(--color-accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.15);
}

.analyse-promo__form-hint {
  font-size: 12px;
  color: var(--color-text-dim);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin: 0;
  line-height: 1.4;
}

.analyse-promo__form-hint i {
  color: var(--color-accent-gold);
  margin-top: 1px;
  flex-shrink: 0;
}

.analyse-promo__form-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  color: #0B1120;
  background: linear-gradient(135deg, var(--color-accent-gold), #F59E0B);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3);
  margin-top: 4px;
}

.analyse-promo__form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212, 168, 67, 0.45);
}

.analyse-promo__form-btn .btn__icon {
  width: 20px;
  height: 20px;
}

/* Form footer stats */
.analyse-promo__form-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.analyse-promo__form-stats {
  display: flex;
  justify-content: space-around;
  gap: 16px;
}

.analyse-promo__form-stats span {
  font-size: 13px;
  color: var(--color-text-muted);
  text-align: center;
}

.analyse-promo__form-stats strong {
  color: var(--color-accent-gold);
}

/* ── Responsive: analyse-promo ──────────────────────────────── */
@media (max-width: 1024px) {
  .analyse-promo {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .analyse-promo__form-side {
    position: static;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .analyse-promo__impact-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .analyse-promo__impact-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .analyse-promo__impact-card {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    text-align: left;
    padding: 14px 16px;
  }

  .analyse-promo__impact-num {
    font-size: 1.5rem;
    min-width: 60px;
  }

  .analyse-promo__form-card {
    padding: 24px 20px;
  }

  .analyse-promo__trust {
    gap: 12px;
  }
}

/* Reduce animations on mobile for performance */
@media (max-width: 768px) {
  .analyse-bg__orb { display: none; }
  .analyse-scanline { display: none; }
  .section--analyse .google-float { display: none; }
  .analyse-bg__grid { animation: none; }
}

@media (prefers-reduced-motion: reduce) {
  .analyse-bg__gradient,
  .analyse-bg__grid,
  .analyse-bg__orb,
  .analyse-scanline {
    animation: none !important;
  }
}

/* ── Print ─────────────────────────────────────────────────── */
@media print {
  .preloader,
  .cookie-banner,
  .header,
  .hero__particles,
  .hero__visual,
  .hero-orb,
  .hero-map-3d,
  .trust-band__bg,
  .platforms-band__dots,
  .formel-stars,
  .google-float,
  .map-marker,
  .g-toast,
  .g-rating-widget,
  .g-progress-card,
  .g-review-snippet,
  .vorteile-map-bg,
  .kontakt-shape,
  .scroll-top,
  .mobile-cta,
  .desktop-phone-float,
  .mobile-nav {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .section {
    padding: 20px 0;
    break-inside: avoid;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .btn--primary,
  .btn--outline {
    border: 1px solid #000;
    background: none;
    color: #000;
  }
}

/* ── Skip to Content ───────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  padding: 12px 24px;
  background: var(--color-accent-gold);
  color: var(--color-bg-primary);
  font-weight: 700;
  z-index: 10000;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 0;
}

/* ── Legal Pages ───────────────────────────────────────────── */
.legal-page {
  background: var(--color-bg-primary);
}

.legal-content {
  min-height: 60vh;
}

.legal-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-text-white);
  margin-bottom: 8px;
}

.legal-subtitle {
  color: var(--color-accent-gold);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text-white);
  margin-top: 36px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

.legal-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-accent-gold-light);
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-content p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  color: var(--color-text-muted);
  margin: 12px 0 20px 24px;
  line-height: 1.8;
}

.legal-content li {
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--color-accent-gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.legal-content a:hover {
  color: var(--color-accent-gold-light);
}

.legal-content strong {
  color: var(--color-text-white);
}

.legal-content em {
  color: var(--color-text-dim);
  font-style: italic;
}
