

  * { margin: 0; padding: 0; box-sizing: border-box; }
  
  :root {
    --primary: #ff7a59;
    --primary-dark: #f25c3a;
    --secondary: #ffb15a;
    --bg-light: #fff8f2;
    --text-dark: #1c1b22;
    --text-gray: #6b7280;
    --border: #e5e7eb;
  }
  
  body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    margin: 0;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  
  /* Header/Nav */
   .header {
    background: #fff8f2;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
    padding: 16px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
 .logo {
      height: 80px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
       .logo-img {
      height: 70px;
      width: auto;
      max-width: 280px;
      object-fit: contain;
      display: block;
    }
    
    .language-switch .lang-flag {
  transition: transform 0.15s ease;
}

.language-switch .lang-flag:hover {
  transform: scale(1.15);
}

@media (max-width: 600px) {
  .language-switch {
    font-size: 20px;
    gap: 10px;
  }
}
  
/* =========================================
   GLOBAL LIST DESIGN (ul, ol, li)
   ========================================= */

/* Grundlayout: einheitliche Abstände */
ul, ol {
  margin: 1rem 0;
  padding-left: 1.4rem;  /* saubere Grund-Einrückung */
}

/* Abstände zwischen Listenelementen */
li {
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

/* UL: Schöne, dezente Bullets */
ul {
  list-style-type: disc; /* klassischer Bullet */
}

/* OL: Saubere Nummerierung */
ol {
  list-style-type: decimal; /* klassische Zahlen */
}

/* Optional: tiefere Ebenen */
ul ul,
ol ol,
ul ol,
ol ul {
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-left: 1.4rem;
}

/* Optional: Bullet-Größe leicht anpassen (dezenter Look) */
ul li::marker {
  font-size: 1.1rem;
  color: var(--primary, #444);
}

/* Optional: Nummerndesign */
ol li::marker {
  font-weight: 500;
  color: var(--primary, #444);
}


.hero {
  background: linear-gradient(135deg, #fff8f2 0%, #ffe9f5 100%);
  padding: 80px 20px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* optional soft pattern */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
  opacity: 0.8;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 12px;
}

/* Badge (Trust) */
.hero-badge {
  display: inline-block;
  background: #fef3c7;
  color: #92400e;
  padding: 6px 16px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

/* Headline */
.hero h1 {
  font-size: clamp(34px, 6vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subheadline */
.hero p {
  font-size: clamp(17px, 3vw, 20px);
  color: var(--text-gray);
  margin-bottom: 36px;
  line-height: 1.6;
}



.video-container {
  width: 100%;
  max-width: 720px;
  margin: 40px auto 58px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(255, 122, 89, 0.15);
  animation: slideInUp 0.6s ease-out 0.1s both;
}

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

/* 16:9 Aspect Ratio */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Video Upload & Player */
.video-upload-section {
  position: relative;
  z-index: 10;
}

.video-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
  color: var(--text-gray);
  width: 100%;
  padding: 20px;
}

.video-placeholder-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 12px;
}

.video-placeholder-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-gray);
  display: block;
  margin-bottom: 4px;
}

.video-placeholder-hint {
  font-size: 13px;
  color: #9ca3af;
  display: block;
}

/* Video Controls (Spielen, etc.) */
.video-controls {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 20;
  display: flex;
  gap: 8px;
}

/* Upload Button */
.video-upload-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 15;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(255, 122, 89, 0.2);
  z-index: 16;
}

.video-wrapper video[src]:not([src=""]) ~ .video-play-btn {
  display: flex;
}

.video-play-btn:hover {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 12px 32px rgba(255, 122, 89, 0.25);
}


.video-info-bar {
  display: none;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(255, 122, 89, 0.1), rgba(255, 181, 90, 0.1));
  border-bottom: 1px solid var(--border);
  border-radius: 0 0 20px 20px;
  text-align: center;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 600;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 100px;
  }
}

.video-info-bar.active {
  display: block;
}

/* Video Upload Input */
#videoUpload {
  display: none;
}

/* Remove Video Button */
.remove-video-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 25;
  opacity: 0;
}

.video-wrapper:hover .remove-video-btn {
  opacity: 1;
}

.remove-video-btn:hover {
  background: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}


@media (max-width: 768px) {
  .video-container {
    margin-bottom: 36px;
  }
  
  .video-placeholder-icon {
    font-size: 36px;
    margin-bottom: 8px;
  }
  
  .video-placeholder-text {
    font-size: 14px;
  }
  
  .video-placeholder-hint {
    font-size: 12px;
  }
  
  .video-play-btn {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }
}


.hero-ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.hero-cta {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-cta--primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 6px 24px rgba(255, 122, 89, 0.3);
}

.hero-cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 122, 89, 0.4);
}

.hero-cta--ghost {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.hero-cta--ghost:hover {
  background: rgba(255, 122, 89, 0.05);
}

/* Trust note under CTA */
.hero-privacy {
  font-size: 14px;
  color: var(--text-gray);
  margin-top: 4px;
}
  
  .hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
  }
  
  .hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 15px;
  }
  
  .hero-feature svg {
    width: 20px;
    height: 20px;
    color: #22c55e;
  }
  
  /* Section */
  .section {
    padding: 80px 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .section-title {
    text-align: center;
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 800;
    margin-bottom: 16px;
  }
  
  .section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 18px;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .step {
    text-align: center;
    position: relative;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 4px 16px rgba(255,122,89,.3);
  }
  
  .step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
  }
  
  .step p {
    color: var(--text-gray);
    line-height: 1.6;
  }
  
  @media (max-width: 480px) {
  .section {
    padding: 50px 16px 20px !important;
  }
  
  .steps {
    gap: 20px !important;
  }
  
  .section-title {
    font-size: 22px !important;
  }
  
  .section-subtitle {
    font-size: 14px !important;
    margin-bottom: 30px !important;
  }
}
  
  .form-section{ background:#fff; padding:80px 20px; }
  .form-container{ max-width:680px; margin:0 auto; }
  .card{
    background: linear-gradient(135deg,#f9fafb 0%,#f3f4f6 100%);
    border:1px solid var(--border); border-radius:22px; padding:34px;
    box-shadow:0 10px 36px rgba(0,0,0,.08);
  }
  .form-intro{ text-align:center; margin-bottom:24px; }
  .form-intro h2{ font-size:26px; font-weight:800; margin-bottom:6px; }
  .form-intro p{ color:var(--text-gray); }

  label{ display:block; margin:18px 0 8px; font-weight:700; font-size:15px; color:var(--text-dark); }
  input, select, textarea{
    width:100%; padding:14px 16px; border:2px solid var(--border); border-radius:12px;
    font-size:14px; background:#fff; transition:border-color .2s, box-shadow .2s;
  }
  input:focus, select:focus, textarea:focus{
    outline:none; border-color:var(--primary); box-shadow:0 0 0 3px rgba(255,122,89,.12);
  }
  input::placeholder, textarea::placeholder{ color:#9ca3af; }
  textarea{ resize:vertical; min-height:88px; }
  .row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
  @media (max-width:640px){ .row{ grid-template-columns:1fr; gap:0; } .card{ padding:26px 18px; } .form-section{ padding:60px 20px; } }

  /* Theme Grid */
  .theme-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:12px; margin:14px 0 8px; }
  @media (min-width:768px){ .theme-grid{ grid-template-columns:repeat(4,1fr); gap:14px; } }
  .theme-option{ position:relative; }
  .theme-option input[type="radio"]{ position:absolute; inset:0; opacity:0; pointer-events:none; }
  .theme-label{
    display:flex; flex-direction:column; align-items:center; justify-content:center; gap:6px;
    padding:14px 10px; min-height:130px; text-align:center; cursor:pointer;
    background:#fff; border:2px solid #e5e7eb; border-radius:14px; transition:transform .06s ease,border-color .15s ease, box-shadow .15s ease, background .15s ease;
    font-weight:600; font-size:14px; color:var(--text-dark);
  }
  .theme-icon{ font-size:30px; line-height:1; }

  .theme-option input[type="radio"]:checked + .theme-label{
    border-color:var(--primary);
    background:linear-gradient(135deg,#fff9f0,#fff0f8);
    box-shadow:0 4px 16px rgba(255,122,89,.22);
    transform:translateY(-1px);
  }
  .theme-option input[type="radio"]:focus-visible + .theme-label{
    outline:2px solid var(--primary); outline-offset:3px;
  }
  /* Hover nur Desktop */
  @media (hover:hover) and (pointer:fine){
    .theme-label:hover{ border-color:var(--primary); background:#fff9f0; transform:translateY(-2px); box-shadow:0 6px 14px rgba(255,122,89,.18); }
  }

  .theme-tooltip{
    position:fixed; z-index:9999; pointer-events:none;
    background:rgba(0,0,0,.92); color:#fff; padding:10px 12px; border-radius:12px;
    font-size:12.5px; line-height:1.3; box-shadow:0 10px 30px rgba(0,0,0,.25);
    opacity:0; transform:translateY(-6px); transition:opacity .12s ease, transform .12s ease;
    max-width:260px;
  }
  .theme-tooltip[data-show="true"]{ opacity:1; transform:translateY(0); }
  .theme-tooltip::after{ content:""; position:absolute; width:10px; height:10px; background:rgba(0,0,0,.92); transform:rotate(45deg); bottom:-5px; left:16px; }

  /* Info-Bar (Mobile + Screenreader) */
  .theme-info{
    margin-top:25px; margin-bottom:25px; padding:10px 12px; border-radius:12px;
    background: color-mix(in srgb, var(--primary) 8%, #fff);
    color:#333; font-size:14px; min-height:1.4em;
    border:1px solid color-mix(in srgb, var(--primary) 20%, transparent);
  }
  @media (hover:none), (pointer:coarse){ .theme-tooltip{ display:none; } }
  
  .btn-primary {
    width: 100%;
    margin-top: 32px;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: 4px solid #fff;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 6px 24px rgba(255,122,89,.3);
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255,122,89,.4);
  }
  
  .btn-primary:active {
    transform: translateY(0);
  }
  


    .price-tag {
    position: relative; /* Wichtig für das Platzieren des Badges */
    background: #fff7e6;
    border: 2px solid #ffd27f;
    padding: 14px 18px;
    margin-top:20px;
    border-radius: 10px;
    display: inline-masonry;
    text-align:center;
  }

  /* Der angeklebte SALE-Badge */
  .sale-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #e63946;
    color: #fff;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: bold;
    border-radius: 20px;
    animation: pulse 1.4s infinite ease-in-out;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
  }

  /* Pulsanimation */
  @keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
  }

  .price-tag .old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
    margin-right: 8px;
  }

  .price-tag .new-price {
    color: #e63946;
    font-size: 22px;
    font-weight: bold;
  }

  .price-tag .offer-note {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #e63946;
    font-weight: bold;
  }
  
  .err {
    background: #fee2e2;
    border: 3px solid var(--primary);
    color: var(--primary-dark);
    padding: 14px;
    border-radius: 12px;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 700;
  }
  
 /* --- BASIS: Sektion hervorheben --- */
.press-section {
  padding: 4rem 0 3.5rem;
  margin: 2rem 0;
  border-radius: 32px;
}

.press-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Titel: perfekt mittig zentriert --- */
.press-title {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 auto 1.8rem auto;
  text-align: center;
  color: #0f172a;
  letter-spacing: -0.5px;
  width: 100%;
  display: block;
  position: relative;
}

/* kleine Linie unter dem Titel (optional, aber sehr schön) */
.press-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #1B74E4; /* blau passend zu Verified / Social */
  margin: 0.8rem auto 0 auto;
  border-radius: 2px;
}

/* --- Social-Logos (YouTube, TikTok, Instagram) --- */
.press-logos-social {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.press-logo-big {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #334155;
  gap: 0.5rem;
  font-size: 0.9rem;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.press-logo-big img {
  width: 130px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.12));
}

.press-logo-big:hover {
  transform: translateY(-4px);
  opacity: 0.9;
}

/* --- Subheading --- */
.press-subheading {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e293b;
  text-align: center;
}

/* --- Pill-Badges (KiKA, TOGGO, etc.) --- */
.press-badges-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.network-badge {
  padding: 7px 16px;
  background: #f1f5f9;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: background 0.25s ease, color 0.2s ease, transform 0.25s ease;
}

.network-badge:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
}

/* --- MOBILE OPTIMIERUNG --- */
@media (max-width: 768px) {
  .press-section {
    padding: 2.5rem 0 2.2rem;
    margin: 1.5rem 0;
    border-radius: 24px;
  }

  .press-wrapper {
    padding: 0 1.2rem;
  }

  .press-title {
    font-size: 1.6rem;
    margin-bottom: 1.4rem;
  }

  .press-title::after {
    width: 50px;
    height: 2.5px;
  }

  .press-logos-social {
    gap: 1.8rem;
    margin-bottom: 2rem;
  }

  .press-logo-big img {
    width: 100px; /* Logos etwas kleiner auf Mobile */
  }

  .press-logo-big span {
    font-size: 0.85rem;
  }

  .press-subheading {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
  }

  .press-badges-row {
    gap: 0.6rem;
  }

  .network-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

/* Extra klein (z.B. sehr schmale Phones) */
@media (max-width: 480px) {
  .press-section {
    padding: 2.2rem 0 2rem;
  }

  .press-logos-social {
    flex-direction: column;
    align-items: center;
  }

  .press-logo-big img {
    width: 90px;
  }

  .press-badges-row {
    justify-content: center;
  }
}

  
  

.faq-section-enhanced {
  background: var(--bg-light);
  padding: 80px 20px;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-section-enhanced .section-title {
  text-align: center;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ff7a59, #ffb15a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-section-enhanced .section-subtitle {
  text-align: center;
  color: #6b7280;
  font-size: 18px;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

/* LEFT COLUMN: FAQ ITEMS */
.faq-items-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: fadeInLeft 0.6s ease-out backwards;
}

.faq-item:nth-child(1) { animation-delay: 0.05s; }
.faq-item:nth-child(2) { animation-delay: 0.1s; }
.faq-item:nth-child(3) { animation-delay: 0.15s; }
.faq-item:nth-child(4) { animation-delay: 0.2s; }
.faq-item:nth-child(5) { animation-delay: 0.25s; }
.faq-item:nth-child(6) { animation-delay: 0.3s; }

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

.faq-item:hover {
  border-color: #ff7a59;
  box-shadow: 0 6px 20px rgba(255, 122, 89, 0.1);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s;
  color: #1c1b22;
}

.faq-question:hover {
  background: #fafafa;
}

.faq-icon {
  font-size: 18px;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 0 24px 20px;
  color: #6b7280;
  line-height: 1.7;
  font-size: 15px;
}

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

.support-card {
  background: linear-gradient(135deg, #fff8f2 0%, #ffe9f5 100%);
  border: 2px solid rgba(255, 122, 89, 0.2);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(255, 122, 89, 0.08);
  animation: fadeInRight 0.6s ease-out 0.1s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.support-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.support-icon {
  font-size: 32px;
}

.support-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: #1c1b22;
  margin: 0;
}

.support-text {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 24px;
}

.support-methods {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.support-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(255, 122, 89, 0.1);
}

.method-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.method-info {
  flex-grow: 1;
}

.method-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1c1b22;
  margin: 0 0 2px 0;
}

.method-info p {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}

/* ABOUT CARD */
.about-card {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  animation: fadeInRight 0.6s ease-out 0.2s both;
}

.about-card:hover {
  border-color: #ff7a59;
  box-shadow: 0 12px 40px rgba(255, 122, 89, 0.1);
}

.about-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.about-icon {
  font-size: 32px;
}

.about-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: #1c1b22;
  margin: 0;
}

.about-text {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-text strong {
  color: #ff7a59;
  font-weight: 700;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.value {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: linear-gradient(135deg, #fff8f2, #ffe9f5);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #1c1b22;
}

.value-icon {
  font-size: 18px;
}

@media (max-width: 1024px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .support-column {
    order: -1; /* Support oben auf Mobile */
  }
}

@media (max-width: 768px) {
  .faq-section-enhanced {
    padding: 60px 20px;
  }

  .faq-section-enhanced .section-title {
    font-size: 28px;
  }

  .faq-section-enhanced .section-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .faq-items-column {
    gap: 12px;
  }

  .support-card,
  .about-card {
    padding: 24px;
  }

  .support-header h3,
  .about-header h3 {
    font-size: 18px;
  }

  .support-text,
  .about-text {
    font-size: 14px;
  }

  .about-values {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .faq-section-enhanced {
    padding: 50px 16px;
  }

  .faq-section-enhanced .section-title {
    font-size: 24px;
  }

  .faq-section-enhanced .section-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .faq-question {
    padding: 16px 20px;
    font-size: 15px;
  }

  .faq-answer-content {
    padding: 0 20px 16px;
    font-size: 14px;
  }

  .support-card,
  .about-card {
    padding: 20px;
  }

  .support-header h3,
  .about-header h3 {
    font-size: 16px;
  }

  .support-text,
  .about-text {
    font-size: 13px;
    margin-bottom: 14px;
  }

  .about-values {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .method-icon {
    font-size: 20px;
  }
}
  
  /* Footer */
  .footer {
    background: #fff;
    padding: 20px 10px;
    text-align: center;
    border-top: 1px solid var(--border);
  }
  
  .footer p {
    color: var(--text-gray);
    font-size: 14px;
  }
  

.footer-links {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 14px;
  align-items: center;
}

.footer-link {
  color: var(--primary-dark, #333);
  text-decoration: none;
  font-size: 0.95rem;
}

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

.separator {
  color: var(--text, #555);
}

  
.testimonials-new {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  padding: 80px 20px;

}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.testimonials-text h2 {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ff7a59, #ffb15a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonials-text p {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.6;
}

.testimonials-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  animation: fadeInRight 0.6s ease-out;
}

.verified-icon {
  display: inline-flex;
  vertical-align: middle;
  margin-left: 6px;
}


@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 4ER GRID MIT SONGS */
.songs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.song-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  animation: slideUp 0.5s ease-out backwards;
}

.song-card:nth-child(1) { animation-delay: 0.1s; }
.song-card:nth-child(2) { animation-delay: 0.2s; }
.song-card:nth-child(3) { animation-delay: 0.3s; }
.song-card:nth-child(4) { animation-delay: 0.4s; }

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

.song-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(255, 122, 89, 0.15);
}

.song-image {
  position: relative;
  width: 100%;
  padding-bottom: 100%; /* 1:1 Square */
  overflow: hidden;
  background: linear-gradient(135deg, #f9fafb, #f3f4f6);
}

.song-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.song-card:hover .song-image img {
  transform: scale(1.05);
}

.song-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(255, 122, 89, 0.2);
}

.song-card:hover .song-play-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.song-info {
  padding: 20px;
}

.song-title {
  font-size: 18px;
  font-weight: 700;
  color: #1c1b22;
  margin-bottom: 6px;
  line-height: 1.3;
}

.song-category {
  font-size: 13px;
  color: #ff7a59;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.song-audio {
  appearance: none;
  width: 100%;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff8f2, #ffe9f5);
  border: 1px solid #e5e7eb;
  outline: none;
  cursor: pointer;
}

.song-audio::-webkit-media-controls-panel {
  background-color: #fff;
  border-radius: 8px;
}


@media (max-width: 1024px) {
  .testimonials-header {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonials-image {
    min-height: 300px;
  }

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

  .testimonials-new {
    padding: 60px 20px;
  }
}

@media (max-width: 768px) {
  .songs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .song-title {
    font-size: 16px;
  }

  .testimonials-text h2 {
    font-size: 28px;
  }

  .testimonials-text p {
    font-size: 16px;
  }

  .testimonials-new {
    padding: 50px 50px;
   
  }

  .testimonials-header {
    margin-bottom: 50px;
  }
}

.testimonials-redesigned {
  background: linear-gradient(135deg, #fff8f2 0%, #ffe9f5 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

/* Soft background pattern */
.testimonials-redesigned::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

.testimonials-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-header .section-title {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #ff7a59, #ffb15a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonials-header .section-subtitle {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.6;
}

/* 3ER GRID MIT CARDS */
.testimonial-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(255, 122, 89, 0.08);
  border: 1px solid rgba(255, 122, 89, 0.1);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  animation: fadeInUp 0.6s ease-out backwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

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

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(255, 122, 89, 0.15);
  border-color: rgba(255, 122, 89, 0.3);
}

/* Top Accent */
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff7a59, #ffb15a);
  border-radius: 20px 20px 0 0;
}

/* Sternenreihe */
.testimonial-stars {
  font-size: 20px;
  color: #ffb15a;
  margin-bottom: 16px;
  letter-spacing: 2px;
  line-height: 1;
}

/* Testimonial Text */
.testimonial-text {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 24px;
  flex-grow: 1;
  font-style: italic;
  font-weight: 500;
}

.testimonial-text::before {
  content: """;
  font-size: 28px;
  color: rgba(255, 122, 89, 0.15);
  display: block;
  margin-bottom: 4px;
}

/* Author Info */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.author-avatar {
  font-size: 32px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff8f2, #ffe9f5);
  border-radius: 50%;
  border: 2px solid rgba(255, 122, 89, 0.2);
}

.author-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1c1b22;
  margin: 0;
  line-height: 1.2;
}

.author-info span {
  font-size: 13px;
  color: #9ca3af;
  display: block;
}

/* TABLET (2 SPALTEN) */
@media (max-width: 1024px) {
  .testimonial-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .testimonial-card {
    padding: 28px;
  }

  .testimonials-redesigned {
    padding: 60px 20px;
    margin: 40px 0;
  }
}

/* MOBILE (1 SPALTE) */
@media (max-width: 768px) {
  .testimonial-grid-new {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonials-header .section-title {
    font-size: 28px;
  }

  .testimonials-header .section-subtitle {
    font-size: 16px;
  }

  .testimonial-text {
    font-size: 15px;
  }

  .author-avatar {
    font-size: 28px;
    width: 40px;
    height: 40px;
  }

  .author-info h4 {
    font-size: 14px;
  }

  .testimonials-redesigned {
    padding: 50px 16px;
    margin: 30px 0;
  }

  .testimonials-header {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .testimonials-header .section-title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .testimonials-header .section-subtitle {
    font-size: 14px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-text {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .testimonial-stars {
    font-size: 18px;
    margin-bottom: 14px;
  }
}


/* MOBILE (1 SPALTE) */
@media (max-width: 480px) {
  .songs-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .song-title {
    font-size: 14px;
  }

  .song-category {
    font-size: 12px;
  }

  .testimonials-text h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .testimonials-text p {
    font-size: 14px;
  }

  .song-play-overlay {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .song-info {
    padding: 16px;
  }
}

.theme-category-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 24px 0 12px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}

.theme-category-label:first-of-type {
  margin-top: 16px;
}

.input-error {
  border-color: #ff7a59 !important;
  background-color: #fff9f8 !important;
}

.input-valid {
  border-color: #22c55e !important;
  background-color: #f0fdf4 !important;
}

.success {
  background: #dcfce7;
  border: 2px solid #22c55e;
  color: #166534;
  padding: 14px 16px;
  border-radius: 12px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   Datenschutz: alles linksbündig ausrichten
   (Overrides – ans Dateiende setzen)
   ========================================= */

/* Hero Privacy Bereich */
.hero-privacy {
  width: 100%;
  padding: 60px 20px;
  background: var(--bg-light, #f9f9f9);
  text-align: left; /* linksbündig */
}

.hero-privacy h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.hero-privacy p {
  font-size: 1.1rem;
  max-width: 700px;
  line-height: 1.6;
}

/* Datenschutzblock linksbündig */
.privacy-notice {
  width: 100%;
  text-align: left;
  padding: 20px;
}

/* Abstände für alle Überschriften im Datenschutzbereich */
.privacy-notice h1,
.privacy-notice h2,
.privacy-notice h3,
.privacy-notice h4,
.privacy-notice h5,
.privacy-notice h6 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.privacy-hint {
  font-size: 10px;
  line-height: 1.3;
  color: #6b7280;
  margin: 30px 40px 0px;
  text-align:center;
}

.privacy-hint a {
  color: #ff7a59;
  text-decoration: underline;
}

.value-list {
  list-style: none;
  padding: 0;
  margin: 30px 40px 30px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.6;
  text-align:center;
}



