/* MT-Leadgen – Design System (music-tutorials.com Corporate) */

@import url('https://fonts.googleapis.com/css2?family=Catamaran:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:      #ec162c;
  --red-dark: #c0101f;
  --blue:     #3569b4;
  --dark:     #171716;
  --dark2:    #1e1e1c;
  --white:    #ffffff;
  --grey:     #aaaaaa;
  --font:     'Catamaran', -apple-system, sans-serif;
  --radius:   10px;
  --shadow:   0 4px 24px rgba(0,0,0,.45);
}

html { font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Hero / Background ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0); /* Alpha wird per Inline-Style gesetzt */
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ── Navbar ──────────────────────────────────────────────── */
.navbar {
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: .5px;
  color: var(--white);
  text-decoration: none;
}
.navbar-logo span { color: var(--red); }

/* ── Landing Page Main ───────────────────────────────────── */
.lp-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.lp-box {
  max-width: 680px;
  width: 100%;
  text-align: center;
}
.lp-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.lp-headline {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
}
.lp-headline em { color: var(--red); font-style: normal; }
.lp-subheadline {
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  margin-bottom: 28px;
}
.lp-bullets {
  list-style: none;
  margin: 0 auto 32px;
  max-width: 500px;
  text-align: left;
}
.lp-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.4;
}
.lp-bullets li::before {
  content: '✓';
  color: var(--red);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Social Proof ────────────────────────────────────────── */
.lp-social-proof {
  background: rgba(255,255,255,.08);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 18px;
  text-align: left;
  margin: 0 auto 28px;
  max-width: 500px;
}
.lp-social-proof blockquote {
  font-size: .95rem;
  font-style: italic;
  color: rgba(255,255,255,.9);
  margin-bottom: 6px;
}
.lp-social-proof cite {
  font-size: .82rem;
  color: var(--grey);
  font-style: normal;
}

/* ── CTA ─────────────────────────────────────────────────── */
.btn-cta {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  letter-spacing: .3px;
}
.btn-cta:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-cta:active { transform: translateY(0); }
.btn-cta-sub {
  display: block;
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  margin-top: 8px;
  letter-spacing: .2px;
}

/* ── Funnel Wrapper ──────────────────────────────────────── */
.funnel-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.funnel-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 40px 44px;
  max-width: 620px;
  width: 100%;
  box-shadow: var(--shadow);
}

/* ── Progress Bar ────────────────────────────────────────── */
.progress-wrap {
  margin-bottom: 28px;
}
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--grey);
  margin-bottom: 7px;
}
.progress-track {
  height: 8px;
  background: rgba(255,255,255,.15);
  border-radius: 99px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--red);
  border-radius: 99px;
  transition: width .4s ease;
}

/* ── Frage ───────────────────────────────────────────────── */
.question-area {
  animation: slideIn .3s ease;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}
.question-text {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 22px;
}

/* ── MC-Optionen ─────────────────────────────────────────── */
.options-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.option-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 13px 16px;
  cursor: pointer;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--white);
  text-align: left;
  transition: border-color .2s, background .2s;
}
.option-btn:hover { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.12); }
.option-btn.selected { border-color: var(--red); background: rgba(236,22,44,.15); }
.option-btn .opt-check {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, background .2s;
}
.option-btn.selected .opt-check { border-color: var(--red); background: var(--red); }
.option-btn.selected .opt-check::after { content: '✓'; font-size: .7rem; color: #fff; }
.option-btn.multi .opt-check { border-radius: 4px; }

/* ── Text-Input ──────────────────────────────────────────── */
.input-field {
  width: 100%;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--white);
  outline: none;
  transition: border-color .2s;
  margin-bottom: 8px;
}
.input-field:focus { border-color: var(--red); }
.input-field::placeholder { color: rgba(255,255,255,.4); }
textarea.input-field { min-height: 90px; resize: vertical; }

/* ── Telefon-Gruppe ──────────────────────────────────────── */
.phone-group { display: flex; gap: 8px; margin-bottom: 8px; }
.phone-prefix {
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 13px 12px;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--white);
  outline: none;
  cursor: pointer;
  flex-shrink: 0;
}
.phone-prefix option { background: #222; }
.phone-number { flex: 1; }

/* ── Fehlertext ──────────────────────────────────────────── */
.field-error { font-size: .85rem; color: #ff6b6b; margin-bottom: 12px; display: none; }
.field-error.visible { display: block; }

/* ── Funnel Buttons ──────────────────────────────────────── */
.funnel-buttons { display: flex; gap: 12px; align-items: center; }
.btn-next {
  flex: 1;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 14px 24px;
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-next:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-next:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.btn-back {
  background: transparent;
  color: var(--grey);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 13px 18px;
  font-family: var(--font);
  font-size: .9rem;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.btn-back:hover { border-color: rgba(255,255,255,.4); color: var(--white); }

/* ── Datenschutz-Hinweis ─────────────────────────────────── */
.privacy-note {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}
.privacy-note a { color: rgba(255,255,255,.6); }

/* ── E-Mail Micro-Copy ───────────────────────────────────── */
.input-hint { font-size: .8rem; color: var(--grey); margin-bottom: 16px; }

/* ── Cookie Consent Banner ───────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(20,20,18,.97);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 9999;
  font-size: .88rem;
  backdrop-filter: blur(8px);
}
#cookie-banner p { color: rgba(255,255,255,.8); flex: 1; line-height: 1.5; }
#cookie-banner p a { color: var(--grey); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.btn-consent-accept {
  background: var(--red); color: #fff;
  border: none; border-radius: 6px;
  padding: 9px 20px; font-family: var(--font);
  font-size: .9rem; font-weight: 700;
  cursor: pointer; white-space: nowrap;
}
.btn-consent-accept:hover { background: var(--red-dark); }
.btn-consent-decline {
  background: transparent; color: var(--grey);
  border: none; font-family: var(--font);
  font-size: .88rem; cursor: pointer;
  text-decoration: underline; white-space: nowrap;
  padding: 9px 4px;
}

/* ── Danke-Seite ─────────────────────────────────────────── */
.danke-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.danke-card {
  max-width: 700px;
  width: 100%;
  text-align: center;
}
.danke-headline { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; margin-bottom: 8px; }
.danke-subheadline { font-size: 1.05rem; color: rgba(255,255,255,.75); margin-bottom: 28px; }
.danke-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0,0,0,.4);
  margin-bottom: 28px;
}
.danke-video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.danke-video-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; color: var(--grey);
}
.danke-video-placeholder svg { opacity: .4; }
.danke-text-below { font-size: 1rem; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 32px; }
.danke-next-step { margin-bottom: 28px; }
.danke-next-step .btn-cta { font-size: 1rem; padding: 14px 32px; }

/* Calendly Embed */
.calendly-inline-widget { border-radius: 12px; overflow: hidden; min-height: 660px; }
@media(max-width: 640px) { .calendly-inline-widget { min-height: 400px !important; } }

/* ── Footer ──────────────────────────────────────────────── */
footer {
  position: relative; z-index: 1;
  text-align: center;
  padding: 16px 20px;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}
footer a { color: rgba(255,255,255,.45); text-decoration: none; }
footer a:hover { color: rgba(255,255,255,.75); }
footer .sep { margin: 0 8px; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 600px) {
  .funnel-card { padding: 28px 20px; }
  .navbar { padding: 16px 20px; }
  #cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-btns { width: 100%; }
  .btn-consent-accept { flex: 1; }
}
