    /* =========================================================
       DESIGN TOKENS
       ========================================================= */
    :root {
      /* CJD-inspirierte Palette */
      --cjd-blue:       #0066CC;
      --cjd-blue-dark:  #0052A3;
      --cjd-blue-deep:  #003F7D;
      --cjd-blue-light: #E6F0FA;

      /* Jugendlicher Akzent (Grün) */
      --coral:          #89C165;
      --coral-dark:     #6FA84D;

      /* Neutrale Skala */
      --white:          #FFFFFF;
      --gray-50:        #FAFBFC;
      --gray-100:       #F5F5F5;
      --gray-200:       #E5E7EB;
      --gray-300:       #D1D5DB;
      --gray-400:       #9CA3AF;
      --gray-600:       #4B5563;
      --gray-800:       #1F2937;
      --gray-900:       #1A1A1A;

      /* Sonstige */
      --wa-green:       #25D366;
      --wa-green-dark:  #1EBE5D;

      /* Geometrie & Tiefe */
      --radius:         8px;
      --radius-lg:      12px;
      --radius-full:    9999px;
      --shadow-sm:      0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
      --shadow:         0 2px 8px rgba(0,0,0,.08);
      --shadow-md:      0 6px 20px rgba(0,0,0,.10);
      --shadow-lg:      0 16px 40px rgba(0,0,0,.16);

      /* Font-Stack: Inter mit System-Fallback (kein FOIT auf langsamem Mobilfunk) */
      --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
                   Roboto, "Helvetica Neue", Arial, system-ui, sans-serif;
    }

    /* =========================================================
       RESET & BASE
       ========================================================= */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
      text-size-adjust: 100%;
    }

    body {
      font-family: var(--font-sans);
      color: var(--gray-900);
      background: var(--white);
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    img, svg { display: block; max-width: 100%; height: auto; }

    button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

    a { color: var(--cjd-blue); text-decoration: none; }
    a:hover { color: var(--cjd-blue-dark); }

    /* Accessibility */
    .skip-link {
      position: absolute; left: 8px; top: -40px;
      background: var(--cjd-blue); color: #fff;
      padding: 8px 16px; border-radius: var(--radius);
      font-weight: 700; z-index: 1000;
      transition: top .15s;
    }
    .skip-link:focus { top: 8px; color: #fff; }

    :focus-visible {
      outline: 2px solid var(--cjd-blue);
      outline-offset: 2px;
      border-radius: 2px;
    }

    /* =========================================================
       LAYOUT
       ========================================================= */
    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 20px;
    }

    section {
      padding: 56px 0;
    }

    .section-tag {
      display: inline-block;
      background: var(--cjd-blue-light);
      color: var(--cjd-blue);
      font-size: 12px; font-weight: 700;
      letter-spacing: .08em; text-transform: uppercase;
      padding: 6px 14px; border-radius: var(--radius-full);
      margin-bottom: 14px;
    }
    .section-title {
      font-size: clamp(26px, 6vw, 40px);
      font-weight: 800; line-height: 1.15;
      letter-spacing: -.02em;
      margin-bottom: 14px;
      color: var(--gray-900);
    }
    .section-title em {
      font-style: normal;
      color: var(--cjd-blue);
    }
    .section-sub {
      font-size: 16px; color: var(--gray-600);
      line-height: 1.6; max-width: 560px;
    }

    /* =========================================================
       BUTTONS
       ========================================================= */
    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      gap: 10px;
      min-height: 48px;            /* Tap-Target ≥ 44 */
      padding: 12px 22px;
      border-radius: var(--radius);
      font-size: 16px; font-weight: 700;
      text-decoration: none; line-height: 1.2;
      transition: transform .15s, background .2s, box-shadow .2s, color .2s, border-color .2s;
      white-space: nowrap;
    }
    .btn:active { transform: translateY(1px); }
    .btn svg { width: 20px; height: 20px; flex-shrink: 0; }

    .btn-primary {
      background: var(--cjd-blue); color: #fff;
      box-shadow: 0 4px 12px rgba(0,102,204,.25);
    }
    .btn-primary:hover { background: var(--cjd-blue-dark); color: #fff; box-shadow: 0 6px 16px rgba(0,102,204,.35); transform: translateY(-2px); }

    .btn-coral {
      background: var(--coral); color: #fff;
      box-shadow: 0 4px 12px rgba(137,193,101,.30);
    }
    .btn-coral:hover { background: var(--coral-dark); color: #fff; transform: translateY(-2px); }

    .btn-outline {
      background: transparent; color: var(--cjd-blue);
      border: 2px solid var(--cjd-blue);
    }
    .btn-outline:hover { background: var(--cjd-blue); color: #fff; }

    .btn-outline-light {
      background: rgba(255,255,255,.10); color: #fff;
      border: 2px solid rgba(255,255,255,.55);
      backdrop-filter: blur(4px);
    }
    .btn-outline-light:hover { background: #fff; color: var(--cjd-blue-deep); border-color: #fff; }

    /* =========================================================
       HEADER
       ========================================================= */
    .site-header {
      position: sticky; top: 0; z-index: 100;
      background: rgba(255,255,255,.92);
      backdrop-filter: saturate(180%) blur(10px);
      -webkit-backdrop-filter: saturate(180%) blur(10px);
      box-shadow: 0 1px 0 var(--gray-200), 0 4px 12px rgba(0,0,0,.04);
    }
    .site-header__inner {
      max-width: 1100px; margin: 0 auto;
      padding: 10px 20px;
      display: flex; align-items: center; justify-content: space-between;
      gap: 12px;
    }
    .logo-group {
      display: inline-flex; align-items: center; gap: 16px;
    }
    .logo-link {
      display: inline-flex; align-items: center;
      text-decoration: none; color: inherit;
      min-height: 44px;
    }
    .logo-link img {
      height: 40px; width: auto;
    }
    .cjd-logo {
      height: 56px; width: auto; display: block;
    }
    @media (max-width: 479px) {
      .cjd-logo { height: 32px; }
      .logo-link img { height: 28px; }
      .logo-group { gap: 10px; }
    }
    .logo-fallback {
      display: inline-flex; align-items: center; gap: 10px;
      color: var(--cjd-blue-deep);
      font-weight: 800; letter-spacing: -.01em;
      font-size: 15px; line-height: 1.1;
    }
    .logo-fallback strong { color: var(--cjd-blue); }
    .header-ctas {
      display: flex; align-items: center; gap: 8px; flex-shrink: 0;
    }
    .header-cta {
      display: inline-flex; align-items: center; gap: 7px;
      min-height: 44px;
      padding: 10px 14px;
      background: var(--cjd-blue); color: #fff;
      border-radius: var(--radius);
      font-size: 13px; font-weight: 700;
      text-decoration: none;
      transition: background .2s, transform .15s;
      white-space: nowrap;
    }
    .header-cta:hover { background: var(--cjd-blue-dark); color: #fff; transform: translateY(-1px); }
    .header-cta svg { width: 15px; height: 15px; flex-shrink: 0; }
    /* Mobil: zweiten Header-Button ausblenden */
    @media (max-width: 639px) {
      .header-cta--second { display: none; }
    }
    /* Auf sehr kleinen Screens nur Icon zeigen */
    @media (max-width: 479px) {
      .header-cta span { display: none; }
      .header-cta { padding: 10px 12px; }
    }
    /* Instagram-Icon im Header (Desktop) */
    .header-instagram {
      display: inline-flex; align-items: center; justify-content: center;
      width: 44px; height: 44px; flex-shrink: 0;
      transition: transform .15s, opacity .2s;
      text-decoration: none;
    }
    .header-instagram:hover { transform: translateY(-2px); opacity: .85; }
    .header-instagram img { width: 40px; height: 40px; display: block; border-radius: 9px; }
    @media (max-width: 639px) { .header-instagram { display: none; } }
    /* Instagram-Icon im Hero (Mobile) */
    .hero-instagram {
      display: none;
      position: absolute; top: 18px; right: 18px; z-index: 10;
      width: 52px; height: 52px;
      text-decoration: none;
      transition: transform .15s, opacity .2s;
    }
    .hero-instagram:hover { transform: scale(1.06); opacity: .9; }
    .hero-instagram img { width: 52px; height: 52px; display: block; border-radius: 11px; }
    @media (max-width: 639px) { .hero-instagram { display: block; } }

    /* =========================================================
       HERO mit Background-Bild + dunklem Overlay
       ========================================================= */
    .hero {
      position: relative;
      padding: 56px 20px 72px;
      min-height: 78dvh;
      display: grid;
      align-items: center;
      background-color: var(--cjd-blue-deep);   /* Fallback bis Bild geladen */
      background-image: url("hero-bg.jpg");
      background-size: cover;
      background-position: 72% 30%;             /* favorisiert Gesicht + Handy beim Mobile-Crop */
      color: #fff;
      overflow: hidden;
    }
    /* Dunkler Blau-Overlay für Lesbarkeit */
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background:
        linear-gradient(135deg,
          rgba(0, 30, 60, 0.88) 0%,
          rgba(0, 63, 125, 0.72) 50%,
          rgba(0, 102, 204, 0.55) 100%),
        radial-gradient(ellipse at center, transparent 35%, rgba(0,20,45,0.45) 100%);
      pointer-events: none;
      z-index: 0;
    }
    /* Schwebende Kreise über Bild deaktiviert */
    .hero-circles { display: none; }

    .hero-inner {
      position: relative; z-index: 1;
      max-width: 640px;
      margin: 0 auto;
      text-align: center;
    }

    /* Chat-Bubbles */
    .chat {
      display: flex; flex-direction: column; gap: 10px;
      margin: 0 auto 26px;
      max-width: 460px;
      text-align: left;
    }
    .bubble {
      display: inline-block;
      padding: 12px 18px;
      border-radius: 18px;
      font-size: clamp(15px, 4vw, 18px);
      font-weight: 600; line-height: 1.35;
      max-width: 88%;
      opacity: 0; transform: translateY(12px);
      animation: bubbleIn .45s ease forwards;
    }
    .bubble.left  { background: var(--coral); color: #fff; border-bottom-left-radius: 4px; align-self: flex-start; animation-delay: .1s; }
    .bubble.right { background: rgba(255,255,255,.18); color: #fff; border: 1.5px solid rgba(255,255,255,.32); border-bottom-left-radius: 4px; align-self: flex-start; animation-delay: .35s; }
    .bubble.reply { background: #fff; color: var(--cjd-blue-deep); border-bottom-right-radius: 4px; align-self: flex-end; animation-delay: .6s; font-weight: 700; }
    @keyframes bubbleIn {
      to { opacity: 1; transform: translateY(0); }
    }

    .hero h1 {
      font-size: clamp(28px, 7vw, 46px);
      font-weight: 900; line-height: 1.1;
      letter-spacing: -.025em;
      margin-bottom: 14px;
      opacity: 0;
      animation: bubbleIn .5s ease .85s forwards;
    }
    .hero h1 em { font-style: normal; color: var(--coral); }
    .hero-sub {
      color: rgba(255,255,255,.88);
      font-size: clamp(15px, 3.5vw, 18px);
      margin: 0 auto 28px;
      max-width: 520px;
      opacity: 0;
      animation: bubbleIn .5s ease 1.05s forwards;
    }
    .hero-btns {
      display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
      opacity: 0;
      animation: bubbleIn .5s ease 1.25s forwards;
    }
    .hero-btns .btn { flex: 1 1 auto; min-width: 160px; }

    .hero-email {
      margin-top: 14px;
      color: rgba(255,255,255,.75);
      font-size: 14px;
      opacity: 0;
      animation: bubbleIn .5s ease 1.45s forwards;
    }
    .hero-motto {
      margin-top: 14px;
      color: rgba(255,255,255,.65);
      font-size: 13px; font-weight: 500;
      letter-spacing: .02em;
      opacity: 0;
      animation: bubbleIn .5s ease 1.5s forwards;
    }

    /* =========================================================
       WHY
       ========================================================= */
    .why { background: var(--gray-100); }
    .why-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      margin-top: 32px;
    }
    .why-card {
      background: #fff;
      border-radius: var(--radius-lg);
      padding: 24px 22px;
      box-shadow: var(--shadow);
      transition: transform .2s, box-shadow .25s;
    }
    .why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
    .why-icon {
      width: 44px; height: 44px;
      border-radius: var(--radius);
      background: var(--cjd-blue-light);
      color: var(--cjd-blue);
      display: grid; place-items: center;
      margin-bottom: 14px;
    }
    .why-icon svg { width: 22px; height: 22px; }
    .why-card h3 {
      font-size: 17px; font-weight: 800; color: var(--gray-900);
      margin-bottom: 6px; letter-spacing: -.01em;
    }
    .why-card p {
      font-size: 14.5px; color: var(--gray-600); line-height: 1.55;
    }

    /* =========================================================
       BERUFE
       ========================================================= */
    .berufe { background: #fff; }

    .filter-bar {
      display: flex; gap: 8px;
      margin: 24px 0 20px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 4px;       /* damit Scroll-Schatten Platz hat */
      scrollbar-width: thin;
    }
    .filter-bar::-webkit-scrollbar { height: 4px; }
    .filter-bar::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 2px; }
    .filter-bar::-webkit-scrollbar-track { background: transparent; }

    .filter-btn {
      flex-shrink: 0;
      scroll-snap-align: start;
      min-height: 40px;
      padding: 8px 18px;
      border: 2px solid var(--gray-200);
      background: #fff;
      color: var(--gray-600);
      border-radius: var(--radius-full);
      font-size: 14px; font-weight: 700;
      cursor: pointer;
      transition: background .18s, color .18s, border-color .18s, transform .15s;
    }
    .filter-btn:hover { color: var(--cjd-blue); border-color: var(--cjd-blue); }
    .filter-btn.active {
      background: var(--cjd-blue); color: #fff; border-color: var(--cjd-blue);
      box-shadow: 0 2px 8px rgba(0,102,204,.30);
    }

    .berufe-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }
    .beruf-card {
      display: flex; align-items: flex-start; gap: 10px;
      min-height: 80px;
      background: var(--gray-50);
      border: 1.5px solid var(--gray-200);
      border-radius: var(--radius-lg);
      padding: 14px 14px;
      cursor: pointer;
      text-align: left;
      width: 100%;
      transition: background .2s, border-color .2s, transform .15s, box-shadow .2s;
    }
    .beruf-card:hover, .beruf-card:focus-visible {
      background: var(--cjd-blue-light);
      border-color: var(--cjd-blue);
      transform: translateY(-2px);
      box-shadow: var(--shadow);
    }
    .beruf-card.hidden { display: none; }
    .beruf-icon {
      font-size: 22px; line-height: 1; flex-shrink: 0;
    }
    .beruf-info {
      min-width: 0; flex: 1;
    }
    .beruf-name {
      font-size: 13.5px; font-weight: 700; color: var(--cjd-blue-deep);
      line-height: 1.3; word-break: break-word;
    }
    .beruf-typ {
      display: inline-block; margin-top: 6px;
      font-size: 11px; color: var(--gray-600);
      background: var(--white);
      border: 1px solid var(--gray-200);
      padding: 2px 8px; border-radius: var(--radius-full);
    }

    /* =========================================================
       STUFEN (Drei Schritte)
       ========================================================= */
    .stufen { background: var(--gray-100); }
    .steps {
      display: flex; flex-direction: column;
      gap: 0;
      margin-top: 32px;
      position: relative;
    }
    .steps::before {
      content: '';
      position: absolute;
      left: 22px; top: 12px; bottom: 12px;
      width: 2px;
      background: var(--gray-300);
    }
    .step {
      display: flex; gap: 16px; align-items: flex-start;
      padding-bottom: 28px;
      position: relative;
    }
    .step:last-child { padding-bottom: 0; }
    .step-num {
      width: 46px; height: 46px; border-radius: 50%;
      background: var(--cjd-blue);
      color: #fff; font-size: 18px; font-weight: 800;
      display: grid; place-items: center;
      flex-shrink: 0;
      position: relative; z-index: 1;
      box-shadow: 0 0 0 5px var(--gray-100), 0 4px 12px rgba(0,102,204,.25);
    }
    .step-body { padding-top: 8px; }
    .step-body h3 {
      font-size: 17px; font-weight: 800;
      color: var(--gray-900);
      margin-bottom: 6px;
      letter-spacing: -.01em;
    }
    .step-body p {
      font-size: 15px; color: var(--gray-600); line-height: 1.55;
    }

    /* =========================================================
       CTA SECTION
       ========================================================= */
    .cta-section {
      background: var(--cjd-blue-deep);
      background-image:
        radial-gradient(circle at 80% 20%, rgba(137,193,101,.15) 0%, transparent 50%),
        linear-gradient(160deg, var(--cjd-blue-deep) 0%, var(--cjd-blue) 100%);
      color: #fff;
      text-align: center;
    }
    .cta-section h2 {
      font-size: clamp(26px, 6vw, 38px);
      font-weight: 900; color: #fff;
      letter-spacing: -.02em;
      margin-bottom: 10px;
    }
    .cta-section .lead {
      color: rgba(255,255,255,.85);
      font-size: 17px; max-width: 480px;
      margin: 0 auto 32px;
    }
    .cta-cards {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
      max-width: 460px;
      margin: 0 auto;
    }
    .cta-card {
      display: flex; align-items: center; gap: 14px;
      background: rgba(255,255,255,.10);
      border: 1.5px solid rgba(255,255,255,.22);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border-radius: var(--radius-lg);
      padding: 16px 18px;
      color: #fff;
      text-align: left;
      text-decoration: none;
      transition: background .2s, border-color .2s, transform .15s;
      min-height: 64px;
    }
    .cta-card:hover {
      background: rgba(255,255,255,.18);
      border-color: rgba(255,255,255,.4);
      color: #fff;
      transform: translateY(-2px);
    }
    .cta-card-icon {
      width: 40px; height: 40px;
      flex-shrink: 0;
      background: rgba(255,255,255,.15);
      border-radius: 50%;
      display: grid; place-items: center;
    }
    .cta-card-icon svg { width: 20px; height: 20px; color: #fff; }
    .cta-card-label {
      font-size: 11px; font-weight: 700; opacity: .75;
      letter-spacing: .08em; text-transform: uppercase;
    }
    .cta-card-value {
      font-size: 16px; font-weight: 700; line-height: 1.3;
    }

    /* =========================================================
       FOOTER
       ========================================================= */
    .site-footer {
      background: #0E1A2B;
      color: rgba(255,255,255,.7);
      padding: 40px 0 24px;
      font-size: 14px;
      line-height: 1.6;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 28px;
      margin-bottom: 28px;
    }
    .footer-col h4 {
      color: #fff;
      font-size: 13px; font-weight: 800;
      letter-spacing: .08em; text-transform: uppercase;
      margin-bottom: 12px;
    }
    .footer-col p, .footer-col a { color: rgba(255,255,255,.7); }
    .footer-col a { display: inline-block; padding: 4px 0; min-height: 32px; }
    .footer-col a:hover { color: #fff; }
    .footer-bottom {
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,.12);
      display: flex; flex-direction: column; gap: 8px;
      align-items: center; text-align: center;
      font-size: 12.5px;
      color: rgba(255,255,255,.55);
    }
    .footer-motto {
      display: inline-block;
      padding: 6px 14px;
      background: rgba(255,255,255,.08);
      border-radius: var(--radius-full);
      color: rgba(255,255,255,.85);
      font-style: italic;
    }
    to   { opacity: 1; transform: scale(1); }
    }

    /* =========================================================
       BERUF-DETAIL-MODAL (<dialog>)
       ========================================================= */
    .beruf-dialog {
      width: min(66vw, 800px);
      max-height: 85dvh;
      border: none;
      border-radius: var(--radius-lg);
      padding: 0;
      background: #fff;
      box-shadow: var(--shadow-lg);
      color: var(--gray-900);
      overflow: hidden;
      position: fixed !important;
      left: 50% !important;
      top: 50% !important;
      transform: translate(-50%, -50%) !important;
      margin: 0 !important;
    }
    .beruf-dialog::backdrop {
      background: rgba(15, 26, 45, .55);
      backdrop-filter: blur(4px);
    }
    .beruf-dialog__head {
      padding: 22px 22px 8px;
      display: flex; align-items: flex-start; gap: 12px;
    }
    .beruf-dialog__icon {
      width: 48px; height: 48px;
      background: var(--cjd-blue-light);
      border-radius: var(--radius);
      display: grid; place-items: center;
      font-size: 26px;
      flex-shrink: 0;
    }
    .beruf-dialog__title { flex: 1; min-width: 0; }
    .beruf-dialog__title h3 {
      font-size: 18px; font-weight: 800; color: var(--cjd-blue-deep);
      letter-spacing: -.01em; line-height: 1.25;
    }
    .beruf-dialog__title .meta {
      display: inline-block; margin-top: 6px;
      font-size: 12px; color: var(--gray-600);
      background: var(--gray-100);
      border-radius: var(--radius-full);
      padding: 3px 10px;
    }
    .beruf-dialog__close {
      width: 36px; height: 36px; flex-shrink: 0;
      border-radius: 50%;
      color: var(--gray-600);
      display: grid; place-items: center;
    }
    .beruf-dialog__close:hover { background: var(--gray-100); color: var(--gray-900); }
    .beruf-dialog__close svg { width: 18px; height: 18px; }
    .beruf-dialog__body {
      padding: 8px 22px 16px;
      overflow-y: auto;
      max-height: calc(88dvh - 170px);
    }
    .dlg-berufsbild {
      font-size: 15px; line-height: 1.65;
      color: var(--gray-600);
      margin-bottom: 18px;
    }
    .dlg-section-title {
      font-size: 11px; font-weight: 800;
      text-transform: uppercase; letter-spacing: .07em;
      color: var(--cjd-blue); margin-bottom: 8px;
    }
    .dlg-inhalte-liste {
      margin: 0; padding-left: 18px;
    }
    .dlg-inhalte-liste li {
      font-size: 14px; line-height: 1.55;
      color: var(--gray-600); margin-bottom: 5px;
    }
    .beruf-dialog__cta {
      padding: 20px 22px 22px;
      display: flex; gap: 8px; flex-wrap: wrap;
    }
    .beruf-dialog__cta .btn { flex: 1; min-width: 140px; min-height: 44px; padding: 10px 16px; font-size: 14px; }

    /* =========================================================
       SCROLL-REVEAL (initial hidden via JS)
       ========================================================= */
    .reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
    .reveal.is-visible { opacity: 1; transform: translateY(0); }

    /* =========================================================
       RESPONSIVE — Mobile-First, Breakpoints aufwärts
       ========================================================= */
    @media (min-width: 480px) {
      .berufe-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
      .hero-btns .btn { flex: 0 0 auto; min-width: 0; }
    }

    @media (min-width: 720px) {
      section { padding: 72px 0; }
      .container { padding: 0 28px; }
      .why-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
      .berufe-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
      .beruf-card { padding: 16px; }
      .beruf-name { font-size: 14.5px; }
      .cta-cards { grid-template-columns: repeat(3, 1fr); max-width: none; }
      .cta-card { flex-direction: column; align-items: center; text-align: center; padding: 22px 18px; }
      .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; }
      .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
      .hero { padding: 72px 20px 88px; }
    }

    @media (min-width: 1024px) {
      section { padding: 88px 0; }
      .why-grid { grid-template-columns: repeat(4, 1fr); }
      .berufe-grid { grid-template-columns: repeat(4, 1fr); }
      .step-num { width: 52px; height: 52px; font-size: 20px; }
      .steps::before { left: 25px; }
      .site-header__inner { padding: 14px 28px; }
      .logo-link img { height: 44px; }
    }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
      }
      .reveal { opacity: 1; transform: none; }
    }
