    /* ═══════════════════════════════════════════
       DESIGN TOKENS – exakt von autismusstiftung.de
    ═══════════════════════════════════════════ */
    :root {
      --pink:        #D82E67;   /* rgb(216,46,103) – gemessen von Live-Site */
      --pink-dark:   #B01F52;
      --pink-light:  #FAE8EF;
      --pink-xlight: #FDF4F7;
      --body-text:   #515151;   /* rgb(81,81,81) */
      --heading:     #1a1a1a;
      --white:       #FFFFFF;
      --gray-bg:     #F7F7F7;
      --gray-line:   #E8E8E8;
      --shadow:      0 2px 20px rgba(0,0,0,0.08);
      --shadow-card: 0 4px 30px rgba(0,0,0,0.09);
      --radius:      0px;       /* Buttons: KEIN border-radius – so wie Live-Site */
      --radius-card: 4px;
      --font:        'Roboto', sans-serif;
      --ls:          0.06em;    /* letter-spacing wie Live-Site */
      --max-w:       1200px;
    }

    /* ═══════════════════════════════════════════
       RESET & BASE
    ═══════════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font);
      font-size: 18px;
      line-height: 1.7;
      color: var(--body-text);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; display: block; }
    a { color: var(--pink); text-decoration: none; }
    a:hover { text-decoration: underline; }
    .container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
    section { padding: 80px 0; }

    /* ═══════════════════════════════════════════
       TYPOGRAPHY SYSTEM
    ═══════════════════════════════════════════ */
    h1, h2, h3, h4 {
      font-family: var(--font);
      color: var(--heading);
      line-height: 1.25;
      letter-spacing: -0.01em;
    }
    h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; }
    h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; }
    h3 { font-size: 1.25rem; font-weight: 700; }
    h4 { font-size: 1.05rem; font-weight: 700; }
    p { margin-bottom: 1rem; }
    p:last-child { margin-bottom: 0; }

    /* Section-Label – exakt wie auf Live-Site: "|| Farbe Text" */
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--pink);
      font-size: 0.875rem;
      font-weight: 700;
      letter-spacing: var(--ls);
      text-transform: uppercase;
      margin-bottom: 14px;
    }
    .section-label::before { content: '||'; opacity: 0.6; font-weight: 400; }

    /* ═══════════════════════════════════════════
       BUTTONS – Square (0px radius) wie Live-Site
    ═══════════════════════════════════════════ */
    .btn {
      display: inline-block;
      padding: 14px 32px;
      border-radius: var(--radius);
      font-family: var(--font);
      font-weight: 700;
      font-size: 0.85rem;
      letter-spacing: var(--ls);
      text-transform: uppercase;
      text-decoration: none;
      cursor: pointer;
      border: 2px solid transparent;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    }
    .btn:hover { text-decoration: none; transform: translateY(-1px); }

    .btn-primary {
      background: var(--pink);
      color: var(--white);
      border-color: var(--pink);
    }
    .btn-primary:hover { background: var(--pink-dark); border-color: var(--pink-dark); box-shadow: 0 4px 16px rgba(216,46,103,0.3); }

    .btn-outline {
      background: transparent;
      color: var(--pink);
      border-color: var(--pink);
    }
    .btn-outline:hover { background: var(--pink-light); }

    .btn-white {
      background: var(--white);
      color: var(--pink);
      border-color: var(--white);
    }
    .btn-white:hover { background: var(--pink-light); border-color: var(--pink-light); }

    /* ═══════════════════════════════════════════
       HEADER / NAVIGATION
       Exakt wie Live-Site: Zweistufig, weiß, sticky
    ═══════════════════════════════════════════ */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--white);
      box-shadow: 0 1px 0 var(--gray-line);
    }
    .header-top {
      background: var(--white);
      border-bottom: 1px solid var(--gray-line);
      padding: 6px 0;
    }
    .header-top .container {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 24px;
    }
    .header-top a {
      font-size: 0.85rem;
      color: var(--body-text);
      font-weight: 500;
    }
    .header-top a:hover { color: var(--pink); text-decoration: none; }

    .header-main { padding: 16px 0; }
    .header-main .container {
      display: flex;
      align-items: center;
      gap: 40px;
    }
    .site-logo {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }
    .logo-icon {
      width: 52px; height: 52px;
    }
    .logo-text { line-height: 1.1; }
    .logo-text strong {
      display: block;
      font-size: 1.1rem;
      font-weight: 900;
      color: var(--heading);
      letter-spacing: 0.04em;
    }
    .logo-text span { font-size: 0.85rem; color: var(--body-text); letter-spacing: 0.06em; }

    .main-nav { flex: 1; }
    .main-nav ul {
      list-style: none;
      display: flex;
      gap: 36px;
    }
    .main-nav a {
      font-size: 1rem;
      font-weight: 500;
      color: var(--body-text);
      padding: 4px 0;
      border-bottom: 2px solid transparent;
      transition: color 0.2s, border-color 0.2s;
    }
    .main-nav a:hover { color: var(--pink); border-color: var(--pink); text-decoration: none; }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-left: auto;
    }
    .icon-btn {
      width: 36px; height: 36px;
      display: flex; align-items: center; justify-content: center;
      color: var(--body-text);
      border-radius: 50%;
      transition: background 0.2s, color 0.2s;
    }
    .icon-btn:hover { background: var(--pink-light); color: var(--pink); }
    .icon-btn svg { width: 20px; height: 20px; }

    /* ═══════════════════════════════════════════
       HERO SECTION
       Modernisiert – emotional, nicht nur "Autismus-Stiftung"
    ═══════════════════════════════════════════ */
    .hero {
      padding: 90px 0 80px;
      background: var(--white);
      overflow: hidden;
    }
    .hero .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .hero-content {}
    .hero-content .section-label { margin-bottom: 20px; }
    .hero-content h1 {
      color: var(--heading);
      margin-bottom: 24px;
      font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    }
    .hero-content h1 em {
      font-style: normal;
      color: var(--pink);
    }
    .hero-content p {
      font-size: 1.1rem;
      color: var(--body-text);
      margin-bottom: 36px;
      max-width: 480px;
    }
    .hero-cta {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    /* Brain/puzzle masked image – exakt wie Live-Site */
    .hero-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .brain-mask-wrap {
      position: relative;
      width: 460px;
      height: 420px;
    }

    /* SVG Brain-Puzzle Clip-Path (vereinfachte Version des Live-Site Logos) */
    .brain-mask {
      width: 100%;
      height: 100%;
      clip-path: url(#brainClip);
    }
    .brain-mask img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Schwebende Badges – NEU: Trust-Signale im Hero */
    .hero-badge {
      position: absolute;
      background: var(--white);
      border-radius: 8px;
      padding: 14px 18px;
      box-shadow: var(--shadow-card);
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--heading);
      white-space: nowrap;
    }
    .hero-badge .badge-icon { font-size: 1.4rem; }
    .hero-badge.badge-1 { bottom: 30px; left: -20px; }
    .hero-badge.badge-2 { top: 30px; right: -10px; }
    .hero-badge span.pink { color: var(--pink); font-size: 1.1rem; }

    /* ═══════════════════════════════════════════
       IMPACT COUNTER BAR – NEU
    ═══════════════════════════════════════════ */
    .impact-bar {
      background: var(--pink);
      padding: 0;
      overflow: hidden;
    }
    .impact-bar .container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }
    .impact-item {
      padding: 36px 24px;
      text-align: center;
      color: white;
      position: relative;
      border-right: 1px solid rgba(255,255,255,0.2);
      transition: background 0.2s;
    }
    .impact-item:last-child { border-right: none; }
    .impact-item:hover { background: rgba(255,255,255,0.08); }
    .impact-number {
      display: block;
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      font-weight: 900;
      line-height: 1;
      letter-spacing: -0.02em;
      margin-bottom: 6px;
    }
    .impact-label {
      font-size: 0.85rem;
      opacity: 0.85;
      font-weight: 500;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    /* ═══════════════════════════════════════════
       PERSONA ENTRY SECTION – NEU
       3 Einstiegspunkte für die 3 Zielgruppen
    ═══════════════════════════════════════════ */
    .persona-entry { background: var(--gray-bg); padding: 70px 0; }
    .persona-entry .container { text-align: center; }
    .persona-entry h2 { margin-bottom: 12px; }
    .persona-entry .intro { color: var(--body-text); max-width: 580px; margin: 0 auto 48px; }
    .persona-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .persona-card {
      background: var(--white);
      border-top: 4px solid var(--pink);
      padding: 36px 28px;
      text-align: left;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: var(--shadow);
    }
    .persona-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
    .persona-icon {
      width: 56px; height: 56px;
      background: var(--pink-light);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem;
      margin-bottom: 20px;
    }
    .persona-card h3 { color: var(--heading); margin-bottom: 10px; font-size: 1.1rem; }
    .persona-card p { font-size: 0.95rem; color: var(--body-text); margin-bottom: 20px; }
    .persona-card .arrow-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--pink);
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .persona-card .arrow-link::after { content: '→'; transition: transform 0.2s; }
    .persona-card:hover .arrow-link::after { transform: translateX(4px); }

    /* ═══════════════════════════════════════════
       TWO TILES + CTA (01.2)
       Exakt wie Live-Site – nur bessere Inhalte
    ═══════════════════════════════════════════ */
    .two-tiles { background: var(--white); }
    .two-tiles .container {
      display: grid;
      grid-template-columns: 1fr 1fr auto;
      gap: 28px;
      align-items: start;
    }
    .tile-card {
      background: var(--white);
      border: 1px solid var(--gray-line);
      border-radius: var(--radius-card);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .tile-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
    .tile-img-wrap {
      background: var(--pink-xlight);
      height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    /* Cloud-shaped image mask – wie Live-Site */
    .cloud-img {
      width: 140px; height: 140px;
      clip-path: url(#cloudClip);
      object-fit: cover;
    }
    .tile-body { padding: 24px; }
    .tile-body h3 {
      color: var(--pink);
      font-size: 1rem;
      margin-bottom: 10px;
      text-align: center;
    }
    .tile-body p { font-size: 0.9rem; text-align: center; color: var(--body-text); }

    .tile-cta {
      padding: 20px 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      max-width: 280px;
    }
    .tile-cta .section-label { margin-bottom: 12px; }
    .tile-cta h2 { font-size: 1.5rem; margin-bottom: 14px; }
    .tile-cta p { font-size: 0.95rem; margin-bottom: 24px; }

    /* ═══════════════════════════════════════════
       MEMORIAL SECTION (Walter Wagner)
       Exakt wie Live-Site – nur CSS-Klassen gepflegt
    ═══════════════════════════════════════════ */
    .memorial { background: var(--white); padding: 80px 0; }
    .memorial .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .memorial-content .section-label { margin-bottom: 16px; }
    .memorial-content h2 { margin-bottom: 20px; }
    .memorial-content p { font-size: 1rem; color: var(--body-text); }
    .memorial-content strong { color: var(--heading); }
    .memorial-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 20px;
      color: var(--pink);
      font-weight: 600;
      font-size: 0.95rem;
    }
    /* Pink blob + cloud image – exakt wie Live-Site */
    .memorial-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .blob-bg {
      position: absolute;
      width: 360px; height: 340px;
      background: #F8C8DC;
      border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
    }
    .memorial-img {
      position: relative;
      z-index: 1;
      width: 280px; height: 280px;
      border-radius: 50%;
      object-fit: cover;
      object-position: top center;
    }

    /* ═══════════════════════════════════════════
       FULL WIDTH CTA (01.3) – wie Live-Site
    ═══════════════════════════════════════════ */
    .fullwidth-cta {
      position: relative;
      padding: 100px 0;
      text-align: center;
      overflow: hidden;
      background: #1a1a1a;
    }
    .fullwidth-cta-bg {
      position: absolute;
      inset: 0;
      background-image: url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?w=1400&q=80');
      background-size: cover;
      background-position: center;
      opacity: 0.35;
    }
    .fullwidth-cta .container { position: relative; z-index: 1; }
    .fullwidth-cta h2 {
      color: var(--white);
      font-size: clamp(1.5rem, 3vw, 2rem);
      max-width: 650px;
      margin: 0 auto 16px;
    }
    .fullwidth-cta p {
      color: rgba(255,255,255,0.8);
      max-width: 540px;
      margin: 0 auto 32px;
      font-size: 1rem;
    }

    /* ═══════════════════════════════════════════
       IMPACT STORIES – NEU
       3 echte Geschichten, cloud-shaped Fotos
    ═══════════════════════════════════════════ */
    .stories { background: var(--pink-xlight); }
    .stories-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 48px;
      flex-wrap: wrap;
      gap: 16px;
    }
    .stories-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .story-card {
      background: var(--white);
      border-radius: var(--radius-card);
      overflow: hidden;
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .story-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
    .story-img-area {
      height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      background: var(--pink-light);
    }
    .story-cat {
      position: absolute;
      top: 14px; left: 14px;
      background: var(--pink);
      color: white;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 4px 10px;
    }
    .story-emoji { font-size: 3.5rem; }
    .story-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
    .story-body blockquote {
      font-size: 0.95rem;
      font-style: italic;
      color: var(--body-text);
      line-height: 1.65;
      padding-left: 14px;
      border-left: 3px solid var(--pink);
      margin-bottom: 18px;
    }
    .story-person { margin-top: auto; }
    .story-person strong { display: block; font-size: 0.9rem; color: var(--heading); }
    .story-person span { font-size: 0.82rem; color: var(--body-text); }
    .story-result {
      background: var(--pink-xlight);
      padding: 10px 14px;
      margin-top: 14px;
      font-size: 0.82rem;
      border-left: 2px solid var(--pink);
    }
    .story-result strong { color: var(--pink); }

    /* ═══════════════════════════════════════════
       VALUES / 4-TILE SECTION (01.2 Background)
       Die "Wir lernen / teilen / inspirieren / fordern" Section
    ═══════════════════════════════════════════ */
    .values { background: var(--white); }
    .values-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      margin-top: 48px;
    }
    .value-item { text-align: left; }
    .value-number {
      font-size: 3rem;
      font-weight: 900;
      color: var(--pink);
      line-height: 1;
      margin-bottom: 8px;
    }
    .value-number:nth-child(2) { color: #9B51E0; }
    .value-number:nth-child(3) { color: #00D084; }
    .value-item:nth-child(2) .value-number { color: #9B51E0; }
    .value-item:nth-child(3) .value-number { color: #2196F3; }
    .value-item:nth-child(4) .value-number { color: #00BFA5; }
    .value-item h4 { color: var(--pink); margin-bottom: 8px; font-size: 1rem; }
    .value-item:nth-child(2) h4 { color: #9B51E0; }
    .value-item:nth-child(3) h4 { color: #2196F3; }
    .value-item:nth-child(4) h4 { color: #00BFA5; }
    .value-item p { font-size: 0.9rem; color: var(--body-text); }

    /* ═══════════════════════════════════════════
       NEWSLETTER SECTION – NEU
    ═══════════════════════════════════════════ */
    .newsletter {
      background: var(--pink);
      padding: 70px 0;
      text-align: center;
    }
    .newsletter .section-label { color: rgba(255,255,255,0.75); justify-content: center; }
    .newsletter .section-label::before { color: rgba(255,255,255,0.5); }
    .newsletter h2 { color: var(--white); margin-bottom: 12px; font-size: 1.8rem; }
    .newsletter p { color: rgba(255,255,255,0.85); max-width: 480px; margin: 0 auto 32px; }
    .newsletter-form {
      display: flex;
      gap: 0;
      max-width: 480px;
      margin: 0 auto;
    }
    .newsletter-form input {
      flex: 1;
      padding: 15px 20px;
      border: none;
      font-family: var(--font);
      font-size: 1rem;
      outline: none;
      border-radius: 0;
    }
    .newsletter-form button {
      padding: 15px 28px;
      background: var(--heading);
      color: var(--white);
      border: none;
      font-family: var(--font);
      font-weight: 700;
      font-size: 0.85rem;
      letter-spacing: var(--ls);
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.2s;
    }
    .newsletter-form button:hover { background: #333; }
    .newsletter-note { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 14px; }

    /* ═══════════════════════════════════════════
       PARTNER LOGOS – wie Live-Site
    ═══════════════════════════════════════════ */
    .partners { background: var(--white); padding: 50px 0; }
    .partners-label { text-align: center; margin-bottom: 32px; }
    .partners-grid {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
    }
    .partner-logo {
      height: 36px;
      opacity: 0.55;
      filter: grayscale(100%);
      transition: opacity 0.2s, filter 0.2s;
      object-fit: contain;
    }
    .partner-logo:hover { opacity: 1; filter: none; }
    .partner-text {
      font-size: 0.9rem;
      font-weight: 700;
      color: #999;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      border: 2px solid #ddd;
      padding: 6px 14px;
      transition: color 0.2s, border-color 0.2s;
    }
    .partner-text:hover { color: var(--pink); border-color: var(--pink); }

    /* ═══════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════ */
    .site-footer {
      background: #1a1a1a;
      color: rgba(255,255,255,0.6);
      padding: 60px 0 30px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }
    .footer-brand { }
    .footer-logo { color: white; font-size: 1.1rem; font-weight: 900; letter-spacing: 0.04em; margin-bottom: 14px; }
    .footer-brand p { font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; }
    .footer-col h4 { color: rgba(255,255,255,0.85); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 8px; }
    .footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
    .footer-col a:hover { color: var(--pink); text-decoration: none; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 0.82rem;
    }
    .footer-bottom a { color: rgba(255,255,255,0.4); }
    .footer-bottom a:hover { color: var(--pink); }
    .footer-trust {
      display: flex;
      align-items: center;
      gap: 6px;
      color: rgba(255,255,255,0.5);
      font-size: 0.82rem;
    }

    /* ═══════════════════════════════════════════
       DEMO WATERMARK
    ═══════════════════════════════════════════ */
    .demo-bar {
      background: #1a1a1a;
      color: rgba(255,255,255,0.8);
      text-align: center;
      padding: 10px;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.06em;
    }
    .demo-bar span { color: var(--pink); }

    /* ═══════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════ */
    @media (max-width: 1024px) {
      .hero .container { grid-template-columns: 1fr; gap: 40px; }
      .two-tiles .container { grid-template-columns: 1fr 1fr; }
      .tile-cta { display: none; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .values-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      section { padding: 60px 0; }
      .container { padding: 0 20px; }
      .persona-grid { grid-template-columns: 1fr; }
      .stories-grid { grid-template-columns: 1fr; }
      .impact-bar .container { grid-template-columns: repeat(2, 1fr); }
      .memorial .container { grid-template-columns: 1fr; }
      .two-tiles .container { grid-template-columns: 1fr; }
      .header-main .container { flex-wrap: wrap; }
      .newsletter-form { flex-direction: column; }
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
      .values-grid { grid-template-columns: 1fr 1fr; }
    }
