/* Page CSS: workshops */

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Roboto', sans-serif; color: #484848; background: #fff; line-height: 1.6; }
    :root {
      --navy:    #1c244b;
      --blue:    #3a3eff;
      --sky:     #0396e0;
      --gray:    #484848;
      --light:   #f0f4f8;
      --white:   #ffffff;
    }
    .container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
    a { color: var(--sky); }

    /* NAV */
    nav { background: var(--white); border-bottom: 3px solid var(--blue); box-shadow: 0 2px 12px rgba(0,0,0,.08); position: sticky; top: 0; z-index: 100; }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
    .nav-logo { color: var(--navy); font-size: 14px; font-weight: 700; text-decoration: none; line-height: 1.3; }
    .nav-logo span { color: var(--sky); font-size: 11px; font-weight: 400; display: block; }
    .nav-links { display: flex; gap: 24px; list-style: none; }
    .nav-links a { color: var(--navy); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
    .nav-links a:hover { color: var(--sky); }
    .btn { display: inline-block; background: var(--blue); color: #fff; font-weight: 700; font-size: 14px; padding: 12px 28px; border-radius: 6px; text-decoration: none; transition: background .2s; }
    .btn:hover { background: #2b2ecc; }
    .btn-outline { background: transparent; border: 2px solid var(--sky); color: var(--sky); }
    .btn-outline:hover { background: var(--sky); color: #fff; }

    /* HERO */
    .hero { background: linear-gradient(135deg, var(--navy) 0%, #0d1635 100%); padding: 80px 0 60px; position: relative; overflow: hidden; }
    .hero::after { content: 'BOOTCAMP'; position: absolute; right: -20px; top: 20px; font-size: 120px; font-weight: 900; color: rgba(255,255,255,.03); pointer-events: none; white-space: nowrap; }
    .hero-badge { display: inline-block; background: rgba(3,150,224,.2); border: 1px solid rgba(3,150,224,.4); color: var(--sky); font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 20px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
    .hero h1 { font-size: 48px; font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 16px; }
    .hero h1 em { color: var(--sky); font-style: normal; }
    .hero p { font-size: 18px; color: rgba(255,255,255,.78); max-width: 600px; margin-bottom: 32px; }
    .hero-meta { display: flex; gap: 32px; flex-wrap: wrap; margin-bottom: 36px; }
    .hero-meta-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.7); font-size: 14px; }
    .hero-meta-item strong { color: #fff; }
    .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

    /* TRUST STRIP */
    .strip { background: var(--light); padding: 18px 0; border-bottom: 1px solid #d8e4f0; }
    .strip-inner { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
    .strip-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray); font-weight: 500; }
    .strip-item::before { content: '✓'; color: var(--sky); font-weight: 900; }

    /* WHAT IS IT */
    .intro { padding: 72px 0; }
    .intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .tag { display: inline-block; background: rgba(3,150,224,.1); color: var(--navy); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 12px; }
    h2 { font-size: 32px; font-weight: 900; color: var(--navy); line-height: 1.2; margin-bottom: 14px; }
    h2 em { color: var(--sky); font-style: normal; }
    p { color: var(--gray); font-size: 15px; margin-bottom: 14px; line-height: 1.7; }
    .check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 16px 0; }
    .check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--gray); }
    .check-list li::before { content: '✓'; color: var(--sky); font-weight: 900; flex-shrink: 0; margin-top: 2px; }
    .info-box { background: var(--navy); border-radius: 16px; padding: 32px; color: #fff; }
    .info-box h3 { font-size: 20px; font-weight: 700; color: var(--sky); margin-bottom: 20px; }
    .info-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 14px; }
    .info-row:last-child { border: none; }
    .info-row span:first-child { color: rgba(255,255,255,.6); }
    .info-row span:last-child { color: #fff; font-weight: 600; }

    /* WORKSHOPS */
    .workshops { background: var(--light); padding: 80px 0; }
    .workshops h2 { text-align: center; margin-bottom: 12px; }
    .workshops .sub { text-align: center; color: var(--gray); font-size: 16px; max-width: 600px; margin: 0 auto 48px; }
    .workshop-cards { display: flex; flex-direction: column; gap: 24px; }
    .wcard { background: var(--white); border-radius: 16px; overflow: hidden; border: 1px solid #dce8f4; display: grid; grid-template-columns: 80px 130px 1fr auto; gap: 0; align-items: stretch; transition: box-shadow .2s, transform .2s; }
    .wcard:hover { box-shadow: 0 12px 40px rgba(28,36,75,.1); transform: translateY(-2px); }
    .wcard.featured { border-color: var(--sky); border-width: 2px; position: relative; }
    .wcard.featured::before { content: 'NÄCHSTER TERMIN'; position: absolute; top: -12px; left: 24px; background: var(--sky); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 20px; letter-spacing: 1px; }
    .wcard-date { text-align: center; background: var(--navy); padding: 20px 12px; display: flex; flex-direction: column; justify-content: center; }
    .wcard-date .day { font-size: 28px; font-weight: 900; color: var(--white); line-height: 1; }
    .wcard-date .month { font-size: 12px; color: var(--sky); font-weight: 700; text-transform: uppercase; margin-top: 4px; }
    .wcard-img { width: 130px; overflow: hidden; position: relative; }
    .wcard-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .wcard-body { padding: 24px 28px; }
    .wcard-nr { display: inline-block; background: rgba(3,150,224,.1); color: var(--sky); font-size: 11px; font-weight: 700; padding: 2px 10px; border-radius: 10px; margin-bottom: 8px; }
    .wcard h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .wcard p { font-size: 14px; color: var(--gray); margin: 0; }
    .wcard-meta { display: flex; gap: 16px; margin-top: 12px; flex-wrap: wrap; }
    .wcard-meta span { font-size: 12px; color: var(--gray); display: flex; align-items: center; gap: 4px; }
    .wcard-price { text-align: right; padding: 24px 28px; border-left: 1px solid #eef4f8; display: flex; flex-direction: column; justify-content: center; min-width: 140px; }
    .wcard-price .amount { font-size: 28px; font-weight: 900; color: var(--navy); line-height: 1; }
    .wcard-price .vat { font-size: 11px; color: var(--gray); margin-top: 2px; }
    .wcard-price .btn { margin-top: 12px; font-size: 13px; padding: 10px 20px; white-space: nowrap; text-align: center; }

    /* ALL WORKSHOPS OVERVIEW */
    .overview { padding: 80px 0; }
    .overview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
    .ov-card { background: var(--light); border-radius: 12px; padding: 24px; border-top: 3px solid var(--blue); }
    .ov-nr { font-size: 11px; font-weight: 700; color: var(--sky); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
    .ov-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .ov-card p { font-size: 13px; color: var(--gray); margin: 0; }
    .ov-card .date-badge { margin-top: 12px; font-size: 12px; color: var(--sky); font-weight: 600; }

    /* FOR WHOM */
    .forwho { background: var(--navy); padding: 72px 0; }
    .forwho h2 { color: #fff; text-align: center; margin-bottom: 12px; }
    .forwho .sub { color: rgba(255,255,255,.65); text-align: center; max-width: 560px; margin: 0 auto 48px; }
    .persona-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .persona { background: rgba(255,255,255,.06); border: 1px solid rgba(3,150,224,.2); border-radius: 14px; padding: 24px; text-align: center; }
    .persona .icon { font-size: 36px; margin-bottom: 12px; }
    .persona h4 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 8px; }
    .persona p { color: rgba(255,255,255,.6); font-size: 13px; margin: 0; }

    /* FAQ */
    .faq { padding: 80px 0; }
    .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
    .faq-item { background: var(--light); border-radius: 12px; padding: 24px; }
    .faq-item h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .faq-item p { font-size: 14px; color: var(--gray); margin: 0; }

    /* CTA */
    .cta { background: linear-gradient(135deg, var(--navy) 0%, #0d1635 100%); padding: 80px 0; text-align: center; }
    .cta h2 { color: #fff; font-size: 36px; margin-bottom: 14px; }
    .cta p { color: rgba(255,255,255,.75); font-size: 16px; max-width: 520px; margin: 0 auto 32px; }
    .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

    /* FOOTER */
    footer { background: #090d24; color: rgba(255,255,255,.6); padding: 48px 0 24px; }
    .footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 32px; margin-bottom: 32px; }
    .footer-brand h3 { color: #fff; font-size: 15px; margin-bottom: 4px; }
    .footer-brand .sky { color: var(--sky); font-size: 12px; margin-bottom: 12px; }
    .footer-brand p { font-size: 13px; }
    .footer-links h4 { color: #fff; font-size: 13px; margin-bottom: 12px; }
    .footer-links ul { list-style: none; }
    .footer-links ul li { margin-bottom: 6px; }
    .footer-links ul a { color: rgba(255,255,255,.55); text-decoration: none; font-size: 13px; }
    .footer-links ul a:hover { color: var(--sky); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
    .legal { font-size: 11px; color: rgba(255,255,255,.3); }
    .legal strong { color: rgba(255,255,255,.45); }

    @media (max-width: 900px) {
      .intro-grid, .persona-grid, .overview-grid, .faq-grid { grid-template-columns: 1fr; }
      .wcard { grid-template-columns: 60px 1fr; }
      .wcard-img { display: none; }
      .wcard-body { padding: 16px; }
      .wcard-price { grid-column: 1/-1; display: flex; align-items: center; justify-content: space-between; border-left: none; border-top: 1px solid #eef4f8; padding: 16px; }
      .hero h1 { font-size: 32px; }
    }
  