:root {
  --bg:#fff;
  --text:#111;
  --muted:#666;
  --radius:12px;
  --maxw:1100px;
}

* { box-sizing:border-box; margin:0; padding:0 }

body {
  font-family:'Poppins', sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  margin:0;
  padding-top:100px; /* Platz für fixierten Header */
  overflow-x:hidden;
}

.wrap { max-width:var(--maxw); margin:0 auto; padding:20px }

/* Glass-Effekt Header */
header {
  position:fixed;
  top:0;
  left:0;
  width:100%;
  background:rgba(17,17,17,0.6);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  color:#fff;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 40px;
  border-bottom:1px solid rgba(255,255,255,0.2);
  z-index:1000;
}

.brand img {
  height:60px;
  width:auto;
  display:block;
  filter: invert(1) brightness(1.8) contrast(1.05)
          drop-shadow(0 0 2px rgba(0,0,0,.6)); /* Logo weiß einfärben */
}

nav a {
  margin-left:20px;
  text-decoration:none;
  color:#fff;
  font-weight:500;
  transition:transform 0.2s ease;
  display:inline-block;
}
nav a:hover,
nav a:focus,
nav a:active {
  color:#fff;
  transform:scale(1.08);
}

section { margin:60px 0 }

h1,h2,h3 {
  margin-bottom:12px;
  font-weight:600;
  letter-spacing:0.5px;
}

p {
  font-weight:300;
  font-size:1.05rem;
}

.hero { text-align:center; padding:80px 20px }
.hero img { max-width:100%; border-radius:var(--radius); margin-top:20px }

.card {
  background:#f9f9f9;
  padding:24px;
  border-radius:var(--radius);
  box-shadow:0 4px 14px rgba(0,0,0,0.08);
  margin-top:20px;
}
.testimonial {
  display:flex;
  align-items:center;
  gap:15px;
  background:#f9f9f9;
  padding:20px;
  border-radius:var(--radius);
  box-shadow:0 4px 14px rgba(0,0,0,0.08);
  margin-top:20px;
}

.testimonial img {
  width:60px;
  height:60px;
  object-fit:cover;
  border-radius:50%; /* macht das Bild rund */
  flex-shrink:0;
}

.testimonial p {
  margin:0;
  font-size:1rem;
  color:var(--text);
}

.light-card {
  background:#fff; /* helle Karten für schwarze Abschnitte */
  color:#111;
}

/* Schwarze & Weiße Abschnitte */
.section-black {
  background:linear-gradient(180deg, #000 0%, #111 100%);
  color:#fff;
  padding:80px 20px;
  border-radius: var(--radius);   /* hier neu einfügen */
  overflow: hidden;               /* sorgt dafür, dass nix übersteht */
}
.section-white {
  background:#fff;
  color:#111;
  padding:80px 20px;
}

/* Flex Layout für ersten Abschnitt */
.flex-row {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}
.flex-row .text { flex:1; }
.flex-row .video {
  flex:1;
  display:flex;
  justify-content:center;
}

/* Video Preview */
.video-preview {
  position: relative;
  display: inline-block;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  max-width: 100%;
}
.video-preview img {
  display: block;
  width: 100%;
  height: auto;
}
.play-button {
  position: absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  width:70px;
  height:70px;
  background:rgba(255,255,255,0.85);
  border-radius:50%;
  box-shadow:0 0 15px rgba(0,0,0,0.3);
}
.play-button::after {
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-40%,-50%);
  border-left:20px solid #e60023;
  border-top:12px solid transparent;
  border-bottom:12px solid transparent;
}

/* Moderne Schwarze Spalten */
.row {
  display:flex;
  gap:20px;
  margin-top:30px;
}
.column {
  flex:1;
  background:linear-gradient(180deg, #111, #000);
  color:#fff;
  padding:24px;
  border-radius:var(--radius);
  box-shadow:0 6px 18px rgba(0,0,0,0.4);
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}
.column:hover {
  transform:translateY(-5px);
  box-shadow:0 10px 25px rgba(0,0,0,0.6);
}

form input, form button, textarea {
  width:100%;
  padding:12px;
  margin-top:10px;
  border-radius:var(--radius);
  border:1px solid #ccc;
  font-size:1rem;
  font-family:'Poppins', sans-serif;
}

form button {
  background:#111;
  color:#fff;
  border:0;
  cursor:pointer;
  font-weight:600;
  transition:transform 0.2s, background 0.2s;
}
form button:hover { transform:scale(1.05); }

footer {
  text-align:center;
  padding:20px 0;
  border-top:1px solid #eee;
  color:var(--muted);
  font-size:0.9rem;
}

/* Animationsklassen */
.hidden {
  opacity:0;
  transform:translateY(40px);
  transition:all 0.8s ease-out;
}
.show {
  opacity:1;
  transform:translateY(0);
}

/* Responsive Design – Handy & Tablet */
@media (max-width: 768px) {
  header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding:10px 15px;
  }

  nav {
    display:flex;
    flex-direction: row;
    justify-content: flex-end;
    flex-wrap: wrap;
    width:auto;
    margin-top:0;
  }

  nav a {
    margin:0 8px;
    flex:unset;
    text-align:center;
  }

  .brand img { height:45px; }
  .row { flex-direction: column; }
  .hero { padding:40px 10px; }
  iframe { width:100% !important; height:auto; }

  .flex-row { flex-direction:column; }
  .flex-row .text, .flex-row .video { flex:none; width:100%; }
}

@media (max-width: 500px) {
  h1 { font-size:1.6rem; }
  h2 { font-size:1.3rem; }
  section { margin:30px 0; }
}
.floating-btn {
  position:fixed;
  bottom:25px;
  right:25px;
  background:#111;              /* gleiche Farbe wie dein Stil */
  color:#fff;
  padding:14px 22px;
  border-radius: var(--radius);
  font-weight:600;
  text-decoration:none;
  box-shadow:0 6px 20px rgba(0,0,0,0.25);
  transition:transform 0.2s ease, box-shadow 0.2s ease;
  z-index:10000; /* über allem */
}

.floating-btn:hover {
  transform:scale(1.08);
  box-shadow:0 8px 28px rgba(0,0,0,0.35);
}
.cta-btn {
  display:inline-block;
  margin-top:20px;
  background:#111;        /* schwarz, wie der Rest deiner Seite */
  color:#fff;             /* weiße Schrift */
  padding:14px 32px;      /* Höhe / Breite */
  border-radius:9999px;   /* macht den Button richtig rund */
  font-weight:600;
  text-decoration:none;
  box-shadow:0 4px 14px rgba(0,0,0,0.15);
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn:hover {
  transform:scale(1.05);
  box-shadow:0 6px 20px rgba(0,0,0,0.25);
}
/* ===== FAQ (scoped) ===== */
#faq {
  /* bleibt weiß wie deine anderen weißen Sektionen */
  background:#fff;
  color:#111;
  padding:80px 20px;
}

#faq h2 {
  text-align:center;
  margin-bottom:40px;
  font-weight:600;
}

#faq .faq-grid {
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}

/* ab Tablet/Desk zwei Spalten, ohne den Rest zu beeinflussen */
@media (min-width: 900px) {
  #faq .faq-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

/* Bubble-Stil – an deine Cards angelehnt */
#faq .faq-bubble {
  background:#f9f9f9;
  border:1px solid #eee;
  border-radius:var(--radius);
  padding:20px;
}

/* Kopfzeile: kleines schwarzes Icon links + Frage */
#faq .faq-head {
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:8px;
}

#faq .faq-icon {
  width:18px; height:18px;
  line-height:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#111;          /* schwarz */
  flex:0 0 18px;
  user-select:none;
}

#faq h3 {
  /* keine Größe setzen -> übernimmt deine bestehenden h3-Styles */
  margin:0;            /* sauberer Ausgleich im Head */
}

#faq p {
  /* gleiche Typo wie sonst */
  color:var(--muted);
  margin:0;
}
/* ===== FAQ Interactive ===== */
#faq {
  padding:80px 20px;
}

#faq h2 {
  text-align:center;
  margin-bottom:40px;
}

#faq .faq-list {
  display:flex;
  flex-direction:column;
  gap:18px;
}

#faq .faq-item {
  background:#f9f9f9;
  border-radius:var(--radius);
  box-shadow:0 3px 10px rgba(0,0,0,0.08);
  overflow:hidden;
  transition:transform 0.2s ease, box-shadow 0.2s ease;
  cursor:pointer;
}

#faq .faq-item:hover {
  transform:scale(1.02);
  box-shadow:0 6px 16px rgba(0,0,0,0.15);
}

#faq .faq-question {
  display:flex;
  align-items:center;
  gap:12px;
  padding:18px 20px;
}

#faq .faq-icon {
  width:20px;
  height:20px;
  flex-shrink:0;
  color:#111;
  text-align:center;
}

#faq .faq-question h3 {
  margin:0;
  font-size:1.05rem;
  font-weight:500;
}

#faq .faq-answer {
  max-height:0;
  overflow:hidden;
  padding:0 20px;
  color:var(--muted);
  font-size:0.95rem;
  line-height:1.6;
  transition:max-height 0.4s ease, padding 0.3s ease;
}

#faq .faq-item.open .faq-answer {
  padding:0 20px 18px 52px;
  max-height:300px; /* ausreichend für Text */
}



