/* ============================================================
   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 {
  scroll-behavior: smooth;
  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;
}

.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); }

/* ── 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.6s ease, visibility 0.6s 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: var(--color-glass);
  backdrop-filter: blur(20px);
  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;
}

.trust-band__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.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;
}

.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;
}

.platforms-band__track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.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;
}

/* ── Google Floating Decorations ───────────────────────────── */
.google-float {
  position: absolute;
  font-size: 20px;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
  animation: googleFloat 12s ease-in-out infinite;
}

.google-float--1 { top: 10%; left: 5%; animation-delay: 0s; font-size: 28px; }
.google-float--2 { top: 20%; right: 8%; animation-delay: 2s; font-size: 22px; }
.google-float--3 { bottom: 30%; left: 10%; animation-delay: 4s; font-size: 24px; }
.google-float--4 { bottom: 15%; right: 12%; animation-delay: 6s; font-size: 20px; }
.google-float--5 { top: 50%; left: 2%; animation-delay: 3s; font-size: 18px; }
.google-float--6 { top: 40%; right: 3%; animation-delay: 5s; font-size: 26px; }

.google-float--faq-1 { top: 15%; right: 5%; animation-delay: 1s; font-size: 24px; }
.google-float--faq-2 { bottom: 20%; left: 5%; animation-delay: 3s; font-size: 22px; }
.google-float--faq-3 { top: 50%; right: 8%; animation-delay: 5s; font-size: 20px; }
.google-float--faq-4 { bottom: 10%; right: 15%; animation-delay: 7s; font-size: 26px; }

@keyframes googleFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.06; }
  25% { transform: translateY(-15px) rotate(5deg); opacity: 0.12; }
  50% { transform: translateY(-8px) rotate(-3deg); opacity: 0.08; }
  75% { transform: translateY(-20px) rotate(2deg); opacity: 0.10; }
}

/* ── 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: 24px;
}

.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); }

/* ── 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: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
  }

  .mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
  }

  .mobile-nav__link {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text-white);
    padding: 8px 0;
  }

  .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;
  }

  .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 {
    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;
  }
}

/* ── Print ─────────────────────────────────────────────────── */
@media print {
  .preloader,
  .cookie-banner,
  .header,
  .hero__particles,
  .hero__visual,
  .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;
}
