/* ==========================================================
   Funnel Builder — Base Styles
   Mobile-first, Premium-Feel, große Touch-Targets
   ========================================================== */

:root {
  --primary: #0A0A0A;
  --primary-dark: #0A0A0A;
  --accent: #E8950A;
  --bg: #ffffff;
  --bg-soft: #fafaf7;
  --text: #0f172a;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --success: #16a34a;
  --error: #dc2626;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08), 0 2px 4px rgba(15, 23, 42, 0.04);
  --radius: 14px;
  --radius-lg: 20px;
  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }
*:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; border-radius: 4px; }

html, body { margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg-soft);
  min-height: 100vh;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------- Header ---------- */
.funnel-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.funnel-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.progress-wrap {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: var(--primary);
  border-radius: 999px;
  transition: width 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.progress-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
  min-width: 64px;
  text-align: right;
}

/* ---------- Main / Step ---------- */
.funnel-main {
  padding: 32px 20px 100px;
  max-width: 540px;
  margin: 0 auto;
}

.step {
  animation: stepFadeIn 380ms cubic-bezier(0.4, 0, 0.2, 1);
}

.step:not(.active) { display: none; }

@keyframes stepFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-question {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--text);
}

.step-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0 0 28px;
  line-height: 1.5;
}

/* ---------- Choice Buttons ---------- */
.choice-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.choice-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  min-height: 64px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  font-family: inherit;
  box-shadow: var(--shadow-sm);
  -webkit-tap-highlight-color: transparent;
}

.choice-btn:hover,
.choice-btn:focus-visible {
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.choice-btn:active {
  transform: translateY(0);
  background: var(--bg-soft);
}

.choice-btn.selected {
  border-color: var(--primary);
  background: color-mix(in srgb, var(--primary) 6%, white);
}

.choice-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}

.choice-text {
  flex: 1;
}

.choice-label {
  display: block;
  font-size: 17px;
  font-weight: 600;
}

.choice-sublabel {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 2px;
}

.choice-arrow {
  color: var(--text-muted);
  font-size: 20px;
  transition: var(--transition);
  flex-shrink: 0;
}

.choice-btn:hover .choice-arrow,
.choice-btn.selected .choice-arrow {
  color: var(--primary);
  transform: translateX(4px);
}

/* ---------- Contact Form ---------- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 16px 18px;
  font-size: 17px;
  font-family: inherit;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  width: 100%;
  min-height: 56px;
  color: var(--text);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 15%, transparent);
}

.form-field input.invalid {
  border-color: var(--error);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  cursor: pointer;
}

.consent input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.consent a {
  color: var(--primary);
  text-decoration: underline;
}

/* ---------- CTA Button ---------- */
.cta-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 24px;
  min-height: 60px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 17px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 14px color-mix(in srgb, var(--primary) 40%, transparent);
  -webkit-tap-highlight-color: transparent;
  width: 100%;
  margin-top: 8px;
}

.cta-primary:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--primary) 50%, transparent);
}

.cta-primary:active:not(:disabled) {
  transform: translateY(0);
}

.cta-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.cta-primary[data-loading="true"] .cta-label { display: none; }
.cta-primary[data-loading="true"] .cta-spinner { display: inline-flex; }
.cta-spinner svg { animation: spin 800ms linear infinite; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-error {
  color: var(--error);
  font-size: 14px;
  margin: 8px 0 0;
  padding: 12px 14px;
  background: color-mix(in srgb, var(--error) 8%, white);
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--error) 25%, transparent);
}

/* ---------- Funnel: 1:1 Sections der Landingpage auf der letzten Seite ---------- */
/* .funnel-main hat max-width:540px — diese Sections sind aber für volle Viewport-Breite
   gebaut (wie auf index.html). Der Wrapper bricht bewusst aus dem schmalen Container aus. */

.funnel-fullbleed {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  margin-top: 40px;
}

/* ---------- Trust ---------- */
.funnel-trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 16px 20px 24px;
  background: transparent;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 13px;
  color: var(--text-muted);
  background: linear-gradient(to top, var(--bg-soft) 60%, transparent);
  pointer-events: none;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--success);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

/* ---------- Tablet/Desktop ---------- */
@media (min-width: 640px) {
  .funnel-main { padding: 48px 24px 120px; }
  .step-question { font-size: 34px; }
  .step-subtitle { font-size: 17px; }
  .choice-btn { padding: 20px 24px; min-height: 72px; }
  .choice-label { font-size: 18px; }
}

@media (min-width: 1024px) {
  .step-question { font-size: 40px; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================
   LANDING PAGE STYLES
   Premium Long-Form Landing für BN Sanierung
   Anthrazit + Warm-Gold, Magazine-Style
   ========================================================== */

.landing {
  background: var(--bg-soft);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.landing .funnel-trust { display: none; }

/* ---------- Landing Header + Rating Badge ---------- */

.landing-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 18px 20px;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.landing-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.landing-logo {
  height: 42px;
  width: auto;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.rating-google {
  flex-shrink: 0;
}

.rating-stars {
  display: inline-flex;
  gap: 1px;
  font-size: 16px;
  line-height: 1;
  color: #f5b800;
  letter-spacing: 0;
}

.rating-stars .star {
  color: #f5b800;
}

.rating-text {
  font-weight: 500;
  color: var(--text);
}

.rating-text strong {
  color: var(--accent);
  font-weight: 700;
}

/* ---------- Hero ---------- */

.hero {
  background: #0A0A0A;
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.04);
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(36px, 7vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
  color: #fff;
}

.hero-title .accent { color: var(--accent); }

.hero-sub {
  font-size: clamp(16px, 2.1vw, 19px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin: 0;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 2px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.hero-badge-chip {
  background: #fff;
  border-radius: 10px;
  padding: 7px 12px;
  display: inline-flex;
  align-items: center;
}

.hero-badge-chip img { height: 20px; width: auto; display: block; }

.hero-image-wrap {
  position: relative;
  margin: 8px -20px 0;
}

.hero-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-stat-row {
  display: flex;
  gap: 10px;
  padding: 16px 20px 32px;
  overflow-x: auto;
}

.hero-stat-chip {
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 10px 14px;
  min-width: 118px;
}

.hero-stat-chip .value {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--accent);
  line-height: 1.1;
}

.hero-stat-chip .label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 3px;
  line-height: 1.3;
}

.hero-floating-badge { display: none; }

/* ---------- Hero: Ambient Glow + Entrance Motion ---------- */

.hero { position: relative; }

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  width: 420px;
  height: 420px;
  background: color-mix(in srgb, var(--accent) 35%, transparent);
  top: -140px;
  right: -100px;
}

.hero::after {
  width: 320px;
  height: 320px;
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  bottom: -100px;
  left: -80px;
}

.hero-inner { position: relative; z-index: 1; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow,
.hero-title,
.hero-sub,
.hero-cta-row,
.hero-meta,
.hero-trust-row {
  animation: heroFadeUp 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-eyebrow  { animation-delay: 0ms; }
.hero-title    { animation-delay: 90ms; }
.hero-sub      { animation-delay: 180ms; }
.hero-cta-row  { animation-delay: 270ms; }
.hero-meta     { animation-delay: 340ms; }
.hero-trust-row { animation-delay: 400ms; }

@keyframes eyebrowPulse {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 55%, transparent); }
  50% { box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent) 0%, transparent); }
}

.hero-eyebrow-dot {
  animation: eyebrowPulse 2.2s ease-out infinite;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-floating-badge {
  animation: heroFadeUp 700ms cubic-bezier(0.16, 1, 0.3, 1) both, floatBadge 4.5s ease-in-out infinite;
}

.badge-discount   { animation-delay: 500ms, 1200ms; }
.badge-price       { animation-delay: 600ms, 1600ms; }
.badge-experience  { animation-delay: 700ms, 2000ms; }

.hero-badge-chip { transition: transform var(--transition), box-shadow var(--transition); }
.hero-badge-chip:hover { transform: translateY(-2px) scale(1.03); }

.hero-stat-chip { transition: transform var(--transition), border-color var(--transition); }
.hero-stat-chip:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 50%, transparent);
}

.hero-image-wrap img { transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1); }

@media (min-width: 900px) {
  .hero-image-wrap:hover img { transform: scale(1.02); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow, .hero-title, .hero-sub, .hero-cta-row, .hero-meta, .hero-trust-row,
  .hero-floating-badge, .hero-eyebrow-dot {
    animation: none !important;
  }
}

/* ---------- CTA (Landing-Style) ---------- */

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  min-height: 56px;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.landing .cta-primary {
  background: var(--accent);
  color: var(--primary);
  border: none;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent) 40%, transparent);
  width: auto;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.landing .cta-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  transition: left 600ms ease;
}

.landing .cta-primary:hover::before { left: 130%; }

.landing .cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--accent) 55%, transparent);
  background: color-mix(in srgb, var(--accent) 90%, #fff);
}

.landing .cta-primary:hover .cta-arrow { transform: translateX(4px); }

.cta-hero {
  padding: 18px 32px;
  font-size: 17px;
}

.cta-large {
  padding: 22px 40px;
  font-size: 18px;
}

.cta-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-strong);
}

.cta-ghost:hover {
  border-color: var(--text);
  background: rgba(10, 10, 10, 0.04);
}

.cta-ghost .cta-play-icon {
  width: 18px;
  height: 18px;
}

.hero-cta-row .cta-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-cta-row .cta-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-arrow {
  font-size: 20px;
  transition: var(--transition);
}

.cta:hover .cta-arrow {
  transform: translateX(4px);
}

/* ---------- Section Head ---------- */

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
}

.kicker {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 8px;
}

.section-head h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  color: var(--text);
}

/* ---------- Trust Section ---------- */

.trust-section {
  padding: 64px 20px;
  background: #fff;
}

.trust-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

.trust-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--text);
}

.trust-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
}

.trust-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.trust-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--text);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
}

.check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  margin-top: 1px;
}

/* ---------- Proof Bar ---------- */

.proof-bar {
  padding: 56px 20px;
  text-align: center;
  background: var(--bg-soft);
}

.proof-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.proof-title strong {
  color: var(--accent);
}

.proof-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0 0 20px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.proof-stars {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.star-row {
  font-size: 20px;
  color: #f5b800;
  letter-spacing: 1px;
}

.proof-stars-label {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

.proof-stars-label strong {
  color: var(--accent);
  font-weight: 700;
}

/* ---------- Services ---------- */

.services {
  padding: 80px 20px;
  background: #fff;
}

.service-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-card {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.service-body {
  padding: 24px 24px 28px;
}

.service-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.3;
  color: var(--text);
}

.service-body p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.services-cta {
  text-align: center;
  margin-top: 32px;
}

/* ---------- Kursinhalte Accordion ---------- */

.services-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.services-image-desktop { display: none; }

.services-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.acc-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-soft);
}

.acc-item.is-active { border-color: var(--accent); }

.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 20px 22px;
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-muted);
  text-align: left;
  cursor: pointer;
}

.acc-item.is-active .acc-trigger { color: var(--text); }

.acc-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--duration-base) var(--ease-out);
}

.acc-item.is-active .acc-icon { transform: rotate(180deg); color: var(--accent); }

.acc-content {
  padding: 0 22px 22px;
}

.acc-content p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 16px;
}

.acc-benefit {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin: 0 0 16px;
}

.acc-benefit-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--accent);
  margin-top: 1px;
}

.acc-benefit p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
}

.acc-benefit p strong {
  color: var(--text);
  font-weight: 700;
}

.acc-mobile-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

@media (min-width: 900px) {
  .services-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }

  .services-accordion { flex: 1; min-width: 0; }

  .acc-mobile-image { display: none; }

  .services-image-desktop {
    display: block;
    flex: 1;
    position: sticky;
    top: 100px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--bg-soft);
  }

  .services-image-desktop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}

/* ---------- Bonus: WhatsApp-Community ---------- */

.bonus-community {
  background: #0A0A0A;
  padding: 56px 20px;
  position: relative;
  overflow: hidden;
}

.bonus-community::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(100px);
  background: color-mix(in srgb, var(--accent) 28%, transparent);
  top: -120px;
  left: -100px;
  pointer-events: none;
}

.bonus-community-grid {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.bonus-community-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 360px;
  margin: 0 auto;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.bonus-community-image img {
  width: 100%;
  height: auto;
  display: block;
}

.bonus-community-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  max-width: 160px;
}

.bonus-community-badge .value {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--accent);
  line-height: 1.1;
}

.bonus-community-badge .label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 3px;
  line-height: 1.3;
}

.bonus-community-text {
  color: #fff;
  text-align: center;
}

.bonus-community-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 16px;
}

.bonus-community-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: #fff;
}

.bonus-community-text > p {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 22px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.bonus-community-text .check-list {
  text-align: left;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.bonus-community-text .check-list li { color: rgba(255, 255, 255, 0.88); }

@media (min-width: 900px) {
  .bonus-community { padding: 88px 32px; }

  .bonus-community-grid {
    grid-template-columns: 0.85fr 1fr;
    gap: 64px;
    text-align: left;
  }

  .bonus-community-image { margin: 0; max-width: none; }

  .bonus-community-text { text-align: left; }

  .bonus-community-text > p,
  .bonus-community-text .check-list {
    margin-left: 0;
    margin-right: 0;
  }
}

/* ---------- Preis ---------- */

.pricing {
  padding: 64px 20px;
  background: var(--bg-soft);
}

.pricing-card {
  max-width: 640px;
  margin: 0 auto;
  background: #0A0A0A;
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
}

.pricing-card-head .kicker { color: var(--accent); }

.pricing-card-head h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 3.5vw, 30px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 24px;
}

.pricing-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.pricing-old {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
}

.pricing-new {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.pricing-discount-tag {
  background: var(--accent);
  color: #0A0A0A;
  font-weight: 800;
  font-size: 14px;
  padding: 5px 12px;
  border-radius: 999px;
}

.pricing-hint {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 28px;
}

.pricing-hint strong { color: var(--accent); }

.pricing-modules {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-modules li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-modules svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-modules span {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.85);
}

.pricing-cta { width: 100%; }

/* ---------- Features ---------- */

.features {
  padding: 80px 20px;
  background: var(--bg-soft);
}

.feature-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.feature-item {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.feature-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.feature-item h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin: 20px 22px 8px;
  color: var(--text);
}

.feature-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 22px 22px;
}

/* ---------- About ---------- */

.about {
  padding: 80px 20px;
  background: #fff;
}

.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.about-text .kicker {
  text-align: left;
}

.about-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--text);
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 14px;
}

.about-text p strong {
  color: var(--text);
}

.about-badge {
  height: 36px;
  width: auto;
  margin: 4px 0 20px;
  display: block;
}

.about-stats {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.about-stats li {
  display: flex;
  flex-direction: column;
}

.about-stats strong {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.about-stats span {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- Testimonials ---------- */

.testimonials {
  padding: 80px 20px;
  background: var(--bg-soft);
}

.testimonial-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  padding: 22px 24px 0;
  color: var(--accent);
  letter-spacing: 2px;
  font-size: 15px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.testimonial-body {
  padding: 22px 24px 26px;
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 14px;
  font-style: italic;
}

.testimonial-author {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author strong {
  color: var(--text);
  font-weight: 600;
}

/* ---------- Final CTA ---------- */

.final-cta {
  padding: 80px 20px;
  background: var(--primary);
  color: #fff;
  text-align: center;
}

.final-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.final-cta h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 14px;
  color: #fff;
}

.final-cta p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 28px;
}

.final-cta-trust {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.55) !important;
  margin-top: 18px !important;
  letter-spacing: 0.5px;
}

/* ---------- Footer ---------- */

.landing-footer {
  background: #0f0f0f;
  color: rgba(255, 255, 255, 0.5);
  padding: 28px 20px;
  text-align: center;
  font-size: 13px;
}

.landing-footer a {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 8px;
  text-decoration: none;
}

.landing-footer a:hover {
  color: var(--accent);
}

/* ---------- Responsive ---------- */

@media (min-width: 640px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .landing-header { padding: 18px 32px; }

  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    padding: 88px 32px 96px;
  }

  .hero-image-wrap {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: visible;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  }

  .hero-image-wrap img {
    border-radius: var(--radius-lg);
    height: 480px;
    object-fit: cover;
  }

  .hero-stat-row { display: none; }

  .hero-floating-badge {
    display: block;
    position: absolute;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  }

  .hero-floating-badge .value {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--accent);
    line-height: 1.1;
    white-space: nowrap;
  }

  .hero-floating-badge .label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 3px;
    white-space: nowrap;
  }

  .badge-discount { top: 24px; right: -18px; }
  .badge-price { bottom: 88px; left: -24px; }
  .badge-experience { bottom: 24px; right: 24px; }

  .video-card {
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    padding: 40px;
  }

  .trust-section { padding: 96px 32px; }
  .trust-grid { grid-template-columns: 1.2fr 1fr; gap: 64px; }

  .proof-bar { padding: 72px 32px; }

  .services { padding: 96px 32px; }
  .service-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  .features { padding: 96px 32px; }
  .feature-grid { grid-template-columns: repeat(4, 1fr); }

  .about { padding: 96px 32px; }
  .about-grid { grid-template-columns: 1fr 1fr; gap: 64px; }

  .testimonials { padding: 96px 32px; }
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }

  .final-cta { padding: 96px 32px; }
}

@media (max-width: 600px) {
  .landing-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .rating-badge {
    width: 100%;
    justify-content: flex-start;
  }
  .rating-text {
    font-size: 12px;
  }
}

/* ---------- Cookie Consent Modal ---------- */
#cookie-consent-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: consentFadeIn 0.25s ease-out;
}

@keyframes consentFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

#cookie-consent-banner {
  width: 100%;
  max-width: 420px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  animation: consentIn 0.35s ease-out;
}

@keyframes consentIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.consent-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
}

.consent-text {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 20px;
}

.consent-text a { color: var(--accent); text-decoration: underline; }

.consent-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.consent-btn {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.consent-btn-accept {
  background: var(--accent);
  color: #fff;
  border: none;
}

.consent-btn-accept:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

.consent-btn-reject {
  background: transparent;
  color: var(--text);
}

.consent-btn-reject:hover { border-color: var(--border-strong); }

#cookie-consent-reopen {
  position: fixed;
  right: 16px;
  bottom: 76px; /* über der fixed .funnel-trust-Bar (bottom:0), sonst überlappen sich beide */
  z-index: 900;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

/* ===== Trustpilot-Badge (Header) ===== */
.tp-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  background: #fff;
}

.tp-badge img { height: 18px; width: auto; }

.tp-badge .tp-badge-stars {
  display: flex;
  gap: 1px;
}

.tp-badge .tp-badge-stars svg { width: 14px; height: 14px; }

.tp-badge-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.3;
}

.tp-badge-text strong { color: var(--text); }

/* ===== Logo-Marquee (Kundenlogos, auto-scroll) ===== */
.logo-cloud {
  padding: 64px 20px 72px;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.logo-cloud-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.logo-cloud-head .kicker { text-align: center; }

.logo-cloud-head h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text);
}

.logo-cloud-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 16px;
  place-items: center;
}

@media (min-width: 640px) {
  .logo-cloud-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
}

.logo-cloud-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  flex-shrink: 0;
  cursor: default;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-cloud-item img {
  height: 100%;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.55;
  display: block;
  transition: filter 300ms ease, opacity 300ms ease;
}

.logo-cloud-item:hover { transform: scale(1.08); }
.logo-cloud-item:hover img { filter: grayscale(0%); opacity: 1; }

.logo-cloud-item.is-waving img { animation: logoWipe 900ms cubic-bezier(0.16, 1, 0.3, 1); }

@keyframes logoWipe {
  0% { opacity: 0.55; filter: grayscale(100%) blur(0px); }
  40% { opacity: 0.15; filter: grayscale(100%) blur(6px); }
  100% { opacity: 0.55; filter: grayscale(100%) blur(0px); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-cloud-item.is-waving img { animation: none; }
}

/* ===== Intro-Video Section ===== */
.video-section {
  padding: 64px 20px;
  background: var(--bg);
}

.video-card {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.video-card-text .kicker { margin-bottom: 8px; }

.video-card-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 3.5vw, 30px);
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.video-card-text > p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 20px;
}

.profile-card-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent) 30%, transparent);
  margin-bottom: 4px;
}

.profile-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-card-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--accent);
  margin: -6px 0 14px;
}

.profile-card-bio {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 20px;
}

.profile-card-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.profile-card-stats li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  min-width: 92px;
}

.profile-card-stats strong {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--primary);
  line-height: 1.1;
}

.profile-card-stats span {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.3;
}

@media (min-width: 640px) {
  .profile-card-photo { width: 120px; height: 120px; }
}

.video-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-md);
  transition: transform var(--duration-base) var(--ease-out);
}

.video-frame:hover { transform: scale(1.015); }

.video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.28);
  border: none;
  padding: 0;
  cursor: pointer;
}

.video-play-btn svg {
  width: 76px;
  height: 76px;
  color: #fff;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.35));
  transition: transform var(--duration-base) var(--ease-out);
}

.video-play-btn:hover svg { transform: scale(1.08); }

/* Desktop-Grid-Fix: die frühere @media(900px)-Regel für .video-card wird von der
   unconditional Basis-Regel weiter oben (gleiche Specificity, späterer Source-Order)
   überschrieben. Deshalb hier erneut gesetzt, nach der Basis-Regel im Cascade. */
@media (min-width: 900px) {
  .video-card {
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    padding: 40px;
    align-items: center;
  }
}

.video-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.video-modal-overlay[hidden] { display: none; }

.video-modal-inner {
  position: relative;
  width: 100%;
  max-width: 900px;
}

.video-modal-inner video {
  width: 100%;
  border-radius: var(--radius-md);
  display: block;
}

.video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
}

.video-modal-close svg { width: 28px; height: 28px; }

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-overlay[hidden] { display: none; }

.lightbox-inner {
  position: relative;
  max-width: 520px;
  width: 100%;
}

.lightbox-inner img {
  width: 100%;
  height: auto;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  display: block;
  background: #ECE5DD;
}

.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
}

.lightbox-close svg { width: 28px; height: 28px; }


/* ===== Udemy-Bewertungen (Scroll-Columns, analog Trustpilot-Wall) ===== */
.udemy-reviews {
  padding: 80px 0;
  background: var(--bg-soft);
  overflow: hidden;
}

.udemy-reviews .section-head { padding: 0 20px; margin-bottom: 8px; }

.udemy-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.udemy-badge strong { color: var(--text); }

.udemy-columns {
  display: flex;
  justify-content: center;
  gap: 16px;
  max-width: 1200px;
  margin: 32px auto 0;
  padding: 0 20px;
  max-height: 560px;
  mask-image: linear-gradient(to bottom, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 8%, #000 92%, transparent);
}

.udemy-col { flex: 1; min-width: 0; max-width: 340px; overflow: hidden; }

/* Mobile: nur 1 Spalte, sonst werden Karten zu schmal für lesbaren Text (siehe wall-testimonials in asia-logistics-kurs) */
.udemy-col-md, .udemy-col-lg { display: none; }

@media (min-width: 640px) {
  .udemy-col-md { display: block; }
}

@media (min-width: 900px) {
  .udemy-col-lg { display: block; }
}

.udemy-col-track {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: udemyScroll linear infinite;
}

.udemy-col-track.reverse { animation-direction: reverse; }

@keyframes udemyScroll {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

.udemy-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
}

.udemy-card-stars { color: var(--accent); letter-spacing: 2px; font-size: 14px; margin-bottom: 10px; }

.udemy-card-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 14px;
}

.udemy-card-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

@media (prefers-reduced-motion: reduce) {
  .udemy-col-track { animation: none; }
  .udemy-columns { overflow-y: auto; }
}

@media (max-width: 640px) {
  .udemy-columns { gap: 12px; max-height: 520px; }
}

/* ===== WhatsApp-Feedback (swipebare Screenshots) ===== */
.whatsapp-section {
  padding: 80px 0;
  background: var(--bg);
}

.whatsapp-section .section-head { padding: 0 20px; }

.folder-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 20px 8px;
}

.folder-stage {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.folder-photos {
  position: absolute;
  bottom: 54px;
  left: 50%;
  width: 0;
  height: 0;
}

.folder-photo {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 122px;
  height: 162px;
  margin-left: -61px;
  border-radius: 14px;
  overflow: hidden;
  background: #ECE5DD;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.28);
  transform-origin: bottom center;
  transition: transform 480ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 300ms ease;
  cursor: pointer;
  touch-action: none;
  transform:
    translateX(calc(var(--offset) * 7px))
    translateY(calc(var(--absoffset) * -4px))
    rotate(calc(var(--offset) * 4deg))
    scale(calc(1 - var(--absoffset) * 0.04));
  z-index: calc(10 - var(--absoffset));
}

.folder-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
}

.folder-gallery.is-open .folder-photo {
  transform:
    translateX(calc(var(--offset) * var(--spacing, 60px)))
    translateY(-100px)
    rotate(calc(var(--offset) * 5deg))
    scale(1.02);
  z-index: 40;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.32);
}

.folder-gallery.is-open .folder-photo:hover {
  transform:
    translateX(calc(var(--offset) * var(--spacing, 60px)))
    translateY(-112px)
    rotate(calc(var(--offset) * 5deg))
    scale(1.08);
  z-index: 60;
}

.folder-gallery.is-open .folder-photo.is-dragging {
  transition: none;
  transform:
    translateX(calc(var(--offset) * var(--spacing, 60px)))
    translateY(calc(-100px + var(--dragY, 0px)))
    rotate(calc(var(--offset) * 5deg))
    scale(1.06);
  z-index: 80;
  box-shadow: 0 28px 56px rgba(15, 23, 42, 0.38);
}

.folder-icon {
  position: relative;
  width: 200px;
  height: 138px;
  background: linear-gradient(180deg, #2a2a2a, #0a0a0a);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.3);
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
  transition: transform 320ms cubic-bezier(0.34, 1.56, 0.64, 1), opacity 300ms ease;
  z-index: 20;
}

.folder-icon::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 0;
  width: 84px;
  height: 18px;
  background: linear-gradient(180deg, #2a2a2a, #1a1a1a);
  border-radius: 10px 10px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: none;
}

.folder-icon-label {
  background: #000;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.folder-icon:hover { transform: translateY(-6px); }

.folder-gallery.is-open .folder-icon {
  opacity: 0;
  pointer-events: none;
}

.folder-hint {
  margin-top: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 300ms ease, transform 300ms ease;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  pointer-events: none;
}

.folder-gallery.is-open .folder-hint {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .folder-photo { width: 180px; height: 236px; margin-left: -90px; }
}

@media (min-width: 900px) {
  .folder-stage { max-width: 760px; }
}

@media (prefers-reduced-motion: reduce) {
  .folder-photo, .folder-icon, .folder-hint { transition: none; }
}

#cookie-consent-reopen:hover { color: var(--text); border-color: var(--border-strong); }
