  :root {
    --red: #C8102E;
    --red-dark: #8E0C22;
    --red-dark-2: #6E0919;
    --ink: #1B1B1B;
    --paper: #F6F5F4;
    --white: #FFFFFF;
    --signal: #C8102E;
    --signal-dark: #8E0C22;
    --green: #3FA34D;
    --yellow: #F2C94C;
    --line: rgba(27,27,27,0.14);
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'IBM Plex Sans', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
    --maxw: 1120px;
  }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { animation: none !important; transition: none !important; } }

  body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.55;
  }
  h1, h2, h3 { font-family: var(--font-display); font-weight: 600; margin: 0 0 0.5em; letter-spacing: -0.01em; }
  p { margin: 0 0 1em; }
  a { color: inherit; }
  .mono { font-family: var(--font-mono); }
  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
  section { padding: 88px 0; position: relative; }
  .eyebrow { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--signal); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
  .eyebrow::before { content: ""; width: 18px; height: 2px; background: var(--signal); display: inline-block; }

  button, .btn { font-family: var(--font-body); font-weight: 600; font-size: 16px; cursor: pointer; border-radius: 3px; }
  .btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 28px; text-decoration: none; border: 1.5px solid transparent; transition: transform 0.15s ease, background 0.15s ease; }
  .btn:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; }
  .btn-primary { background: var(--signal); color: var(--white); }
  .btn-primary:hover { background: var(--signal-dark); transform: translateY(-1px); }
  .btn-on-dark { background: var(--white); color: var(--red-dark); }
  .btn-on-dark:hover { background: #F2E9E9; transform: translateY(-1px); }
  .btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
  .btn-ghost:hover { border-color: #fff; }
  .btn-ghost-dark { background: transparent; color: var(--ink); border-color: var(--ink); }
  .btn-ghost-dark:hover { background: var(--ink); color: var(--white); }

  /* ---- Header ---- */
  .site-header { background: var(--white); border-bottom: 1px solid var(--line); }

  /* ---- Hero ---- */
  .hero {
    background: var(--red-dark);
    color: var(--white);
    padding: 64px 0 96px;
    background-image:
      linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
  }
  .hero-inner { max-width: 760px; }
  .hero h1 { font-size: clamp(32px, 4.6vw, 52px); line-height: 1.08; color: var(--white); }
  .hero .sub { font-size: 19px; color: rgba(255,255,255,0.78); max-width: 620px; }
  .hero-meta { display: flex; flex-wrap: wrap; gap: 22px; margin: 28px 0 34px; font-family: var(--font-mono); font-size: 14px; color: rgba(255,255,255,0.85); }
  .hero-meta span { display: flex; align-items: center; gap: 8px; }
  .hero-meta b { color: var(--white); font-weight: 500; }
  .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
  .scale-bar { margin-top: 56px; max-width: 460px; }
  .scale-bar .label { font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 8px; display: flex; justify-content: space-between; }
  .scale-track { height: 10px; border-radius: 2px; overflow: hidden; display: flex; }
  .scale-track div { height: 100%; }

  /* ---- Trust bar ---- */
  .trust-bar { background: var(--red-dark-2); padding: 0; }
  .trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
  .trust-item { padding: 26px 24px; border-right: 1px solid rgba(255,255,255,0.12); text-align: center; }
  .trust-item:last-child { border-right: none; }
  .trust-item .num { font-family: var(--font-display); font-size: 26px; color: var(--white); font-weight: 600; }
  .trust-item .lbl { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 4px; }

  /* ---- Why now ---- */
  .why-now .wrap { max-width: 820px; }
  .why-now h2 { font-size: 30px; }
  .why-now p { font-size: 17px; color: rgba(27,27,27,0.85); }
  .vorher-nachher { display: flex; gap: 16px; margin-top: 36px; }
  .vorher-nachher figure { flex: 1; margin: 0; }
  .vorher-nachher img { width: 100%; height: 220px; object-fit: cover; border-radius: 2px; display: block; }
  .vorher-nachher figcaption { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--red); margin-top: 8px; }

  /* ---- Benefits ---- */
  .benefits { background: var(--white); }
  .benefits h2 { font-size: 30px; max-width: 620px; }
  .benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); margin-top: 40px; border: 1px solid var(--line); }
  .benefit-card { background: var(--white); padding: 30px; }
  .benefit-card .idx { font-family: var(--font-mono); font-size: 13px; color: var(--signal); margin-bottom: 10px; }
  .benefit-card h3 { font-size: 19px; }
  .benefit-card p { font-size: 15px; color: rgba(18,41,59,0.75); margin: 0; }

  /* ---- Curriculum ---- */
  .curriculum h2 { font-size: 30px; }
  .curriculum .sub { color: rgba(18,41,59,0.7); max-width: 560px; margin-bottom: 48px; }
  .timeline { position: relative; padding-left: 90px; }
  .timeline::before { content: ""; position: absolute; left: 40px; top: 6px; bottom: 6px; width: 1.5px; background: var(--line); }
  .day { position: relative; padding-bottom: 44px; }
  .day:last-child { padding-bottom: 0; }
  .day .tag { position: absolute; left: -90px; top: 0; width: 76px; text-align: right; font-family: var(--font-mono); font-size: 13px; color: var(--signal); font-weight: 500; }
  .day::after { content: ""; position: absolute; left: -54px; top: 4px; width: 10px; height: 10px; border-radius: 50%; background: var(--signal); border: 3px solid var(--paper); }
  .day h3 { font-size: 19px; margin-bottom: 8px; }
  .day ul { margin: 0; padding-left: 18px; color: rgba(18,41,59,0.75); font-size: 15px; }
  .day li { margin-bottom: 4px; }

  /* ---- Instructor ---- */
  .instructor { background: var(--white); }
  .instructor-grid { display: grid; grid-template-columns: 160px 1fr; gap: 32px; align-items: start; }
  .avatar { width: 160px; height: 160px; border-radius: 4px; background: linear-gradient(135deg, var(--red-dark), var(--red-dark-2)); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-family: var(--font-mono); font-size: 12px; text-align: center; padding: 12px; }
  .instructor h3 { font-size: 22px; margin-bottom: 4px; }
  .instructor .role { font-family: var(--font-mono); font-size: 13px; color: var(--signal); margin-bottom: 14px; }
  .instructor p { font-size: 15.5px; color: rgba(18,41,59,0.8); }

  /* ---- Testimonials ---- */
  .testimonials h2 { font-size: 26px; }
  .placeholder-flag { display: inline-block; font-family: var(--font-mono); font-size: 11px; background: var(--yellow); color: #4A3B00; padding: 3px 8px; border-radius: 2px; margin-bottom: 20px; }
  .quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }
  .quote-card { background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--signal); padding: 22px; font-size: 14.5px; }
  .quote-card .who { font-family: var(--font-mono); font-size: 12.5px; color: rgba(18,41,59,0.55); margin-top: 14px; }

  /* ---- Pricing ---- */
  .pricing { background: var(--red-dark); color: var(--white); }
  .pricing h2 { color: var(--white); font-size: 30px; }
  .pricing .sub { color: rgba(255,255,255,0.7); max-width: 560px; margin-bottom: 40px; }
  .date-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .date-card { background: var(--red-dark-2); border: 1px solid rgba(255,255,255,0.12); padding: 26px; display: flex; flex-direction: column; }
  .date-card.featured { border-color: var(--white); position: relative; }
  .date-card .badge { font-family: var(--font-mono); font-size: 11px; background: var(--white); color: var(--red-dark); padding: 3px 8px; border-radius: 2px; align-self: flex-start; margin-bottom: 14px; }
  .date-card .date { font-family: var(--font-mono); font-size: 15px; color: rgba(255,255,255,0.6); }
  .date-card .price { font-family: var(--font-display); font-size: 28px; margin: 10px 0 16px; }
  .date-card .seats { font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 20px; }
  .date-card ul { list-style: none; padding: 0; margin: 0 0 24px; font-size: 13.5px; color: rgba(255,255,255,0.8); }
  .date-card li { padding: 4px 0 4px 20px; position: relative; }
  .date-card li::before { content: "—"; position: absolute; left: 0; color: var(--signal); }
  .date-card .btn { margin-top: auto; justify-content: center; }

  /* ---- FAQ ---- */
  .faq { background: var(--white); }
  .faq h2 { font-size: 28px; }
  .faq-item { border-bottom: 1px solid var(--line); }
  .faq-q { width: 100%; text-align: left; background: none; border: none; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 16.5px; font-weight: 500; color: var(--ink); }
  .faq-q .plus { font-family: var(--font-mono); font-size: 20px; color: var(--signal); transition: transform 0.2s ease; }
  .faq-item.open .plus { transform: rotate(45deg); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; font-size: 15px; color: rgba(27,27,27,0.75); }
  .faq-a-inner { padding-bottom: 20px; max-width: 700px; }

  /* ---- Final CTA ---- */
  .final-cta { text-align: center; }
  .final-cta h2 { font-size: 28px; max-width: 560px; margin: 0 auto 12px; }
  .final-cta p { color: rgba(27,27,27,0.7); max-width: 480px; margin: 0 auto 30px; }
  .final-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

  footer { background: var(--red-dark); color: rgba(255,255,255,0.55); padding: 32px 0; font-size: 13px; text-align: center; }

  @media (max-width: 860px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-item:nth-child(2) { border-right: none; }
    .benefit-grid { grid-template-columns: 1fr; }
    .vorher-nachher { flex-direction: column; }
    .instructor-grid { grid-template-columns: 1fr; }
    .quote-grid { grid-template-columns: 1fr; }
    .date-grid { grid-template-columns: 1fr; }
    section { padding: 56px 0; }
    .timeline { padding-left: 70px; }
    .day .tag { left: -70px; width: 56px; }
    .day::after { left: -34px; }
    .timeline::before { left: 20px; }
  }

.main-nav { display: flex; gap: 22px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 12.5px; align-items: center; }
.main-nav a { text-decoration: none; color: var(--ink); opacity: 0.7; transition: opacity 0.15s ease; }
.main-nav a:hover, .main-nav a.active { opacity: 1; color: var(--red); }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { background: none; border: none; font-family: var(--font-mono); font-size: 12.5px; color: var(--ink); opacity: 0.7; cursor: pointer; padding: 0; display: flex; align-items: center; gap: 4px; }
.nav-dropdown-toggle:hover, .nav-dropdown-toggle.active { opacity: 1; color: var(--red); }
.nav-dropdown-toggle .caret { font-size: 10px; transition: transform 0.15s ease; }
.nav-dropdown.open .nav-dropdown-toggle .caret { transform: rotate(180deg); }
.nav-dropdown-menu { display: none; position: absolute; top: 100%; left: 0; margin-top: 14px; background: var(--white); border: 1px solid var(--line); border-radius: 3px; min-width: 240px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); overflow: hidden; z-index: 20; }
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { display: block; padding: 12px 16px; font-size: 13px; color: var(--ink); opacity: 1; border-bottom: 1px solid var(--line); }
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover, .nav-dropdown-menu a.active { background: var(--paper); color: var(--red); }
@media (max-width: 860px) {
  .nav-dropdown-menu { position: static; box-shadow: none; border: none; margin-top: 8px; min-width: 0; }
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; flex-wrap: wrap; gap: 14px; }
.page-hero { background: var(--red-dark); color: var(--white); padding: 56px 0 72px; }
.page-hero h1 { color: var(--white); font-size: clamp(28px, 4vw, 42px); line-height: 1.12; max-width: 760px; }
.page-hero .sub { color: rgba(255,255,255,0.78); font-size: 17px; max-width: 640px; }
.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 32px; }
.card-grid .card { background: var(--white); padding: 26px; }
.card-grid .card h3 { font-size: 18px; margin-bottom: 8px; }
.card-grid .card p { font-size: 14.5px; color: rgba(27,27,27,0.75); margin: 0 0 14px; }
.press-item { border-bottom: 1px solid var(--line); padding: 20px 0; display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.press-item .meta { font-family: var(--font-mono); font-size: 12.5px; color: rgba(27,27,27,0.55); white-space: nowrap; }
.press-item h3 { font-size: 16.5px; margin: 0; }
@media (max-width: 860px) {
  .card-grid { grid-template-columns: 1fr; }
}
