    /* ─────────────────────────────────────────────
       TOKENS
    ───────────────────────────────────────────── */
    :root {
      --amber:       #F5821F;
      --amber-dark:  #D9680A;
      --amber-light: #FFD199;
      --amber-pale:  #FFF3E5;
      --teal:        #45B8C0;
      --teal-dark:   #2F939A;
      --teal-light:  #B4E8EB;
      --yellow:      #F7C948;
      --yellow-light:#FFF4C2;
      --cream:       #FFFBF4;
      --cream-2:     #FFF5E4;
      --ink:         #1E1A14;
      --ink-mid:     #4A3F33;
      --ink-soft:    #8A7766;
      --white:       #FFFFFF;

      --radius-sm:   8px;
      --radius-md:   16px;
      --radius-lg:   24px;
      --radius-xl:   40px;

      --shadow-card: 0 4px 6px rgba(245,130,31,0.06), 0 12px 40px rgba(245,130,31,0.10);
      --shadow-btn:  0 4px 16px rgba(245,130,31,0.35), 0 1px 3px rgba(245,130,31,0.20);
      --shadow-teal: 0 4px 16px rgba(69,184,192,0.35);

      --ff-display: 'Fredoka', sans-serif;
      --ff-body:    'Nunito', sans-serif;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: var(--ff-body);
      background: var(--cream);
      color: var(--ink);
      line-height: 1.7;
    }

    /* ─────────────────────────────────────────────
       BACKGROUND TEXTURE / NOISE
    ───────────────────────────────────────────── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
    }

    /* ─────────────────────────────────────────────
       HONEYCOMB SVG PATTERN
    ───────────────────────────────────────────── */
    .hex-bg {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V18L28 2l28 16v32L28 66zm0-92L0 -26V6l28 16 28-16V-26L28-26z' fill='none' stroke='%23F5821F' stroke-width='0.8' stroke-opacity='0.10'/%3E%3C/svg%3E");
    }

    /* ─────────────────────────────────────────────
       NAV
    ───────────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 0 5%;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(255,251,244,0.85);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(245,130,31,0.10);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }
    .nav-logo img {
      height: 40px;
      width: auto;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
    }
    .nav-links a {
      font-family: var(--ff-body);
      font-weight: 600;
      font-size: 0.925rem;
      color: var(--ink-mid);
      text-decoration: none;
      transition: color 0.2s ease;
    }
    .nav-links a:hover { color: var(--amber); }

    .btn-nav {
      background: var(--amber);
      color: var(--white) !important;
      padding: 9px 22px;
      border-radius: 100px;
      box-shadow: var(--shadow-btn);
      transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease !important;
    }
    .btn-nav:hover {
      background: var(--amber-dark) !important;
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(245,130,31,0.40) !important;
    }
    .btn-nav:active { transform: translateY(0) !important; }

    /* ─────────────────────────────────────────────
       HERO
    ───────────────────────────────────────────── */
    .hero {
      min-height: 100vh;
      padding: 120px 5% 80px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 60px;
      position: relative;
      overflow: visible;
    }

    /* radial glow blobs */
    .hero::after {
      content: '';
      position: absolute;
      width: 700px; height: 700px;
      right: -160px; top: -120px;
      background: radial-gradient(circle, rgba(245,201,72,0.22) 0%, rgba(69,184,192,0.12) 50%, transparent 75%);
      border-radius: 50%;
      pointer-events: none;
    }
    .blob-bottom {
      position: absolute;
      width: 500px; height: 500px;
      left: -100px; bottom: -100px;
      background: radial-gradient(circle, rgba(245,130,31,0.12) 0%, transparent 65%);
      border-radius: 50%;
      pointer-events: none;
    }

    .hero-text { position: relative; z-index: 1; }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--yellow-light);
      border: 1.5px solid rgba(247,201,72,0.5);
      color: #8A6800;
      font-family: var(--ff-body);
      font-weight: 700;
      font-size: 0.82rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 100px;
      margin-bottom: 28px;
    }
    .hero-badge span { font-size: 1rem; }

    .hero-headline {
      font-family: var(--ff-display);
      font-size: clamp(2.6rem, 4.5vw, 4rem);
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -0.01em;
      color: var(--ink);
      margin-bottom: 24px;
    }
    .hero-headline em {
      font-style: normal;
      color: var(--amber);
      position: relative;
    }
    .hero-headline em::after {
      content: '';
      position: absolute;
      left: 0; bottom: 2px;
      width: 100%; height: 6px;
      background: var(--yellow);
      border-radius: 4px;
      z-index: -1;
      opacity: 0.6;
    }

    .hero-sub {
      font-size: 1.1rem;
      color: var(--ink-mid);
      max-width: 480px;
      margin-bottom: 40px;
      line-height: 1.75;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      align-items: center;
      flex-wrap: wrap;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--amber);
      color: var(--white);
      font-family: var(--ff-body);
      font-weight: 700;
      font-size: 1rem;
      padding: 14px 28px;
      border-radius: 100px;
      text-decoration: none;
      box-shadow: var(--shadow-btn);
      transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    }
    .btn-primary:hover {
      background: var(--amber-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(245,130,31,0.42);
    }
    .btn-primary:active { transform: translateY(0); }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--white);
      color: var(--ink);
      font-family: var(--ff-body);
      font-weight: 700;
      font-size: 1rem;
      padding: 13px 24px;
      border-radius: 100px;
      text-decoration: none;
      border: 2px solid rgba(30,26,20,0.12);
      transition: border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    .btn-secondary:hover {
      border-color: var(--teal);
      color: var(--teal-dark);
      transform: translateY(-2px);
      box-shadow: var(--shadow-teal);
    }

    .hero-stats {
      display: flex;
      gap: 32px;
      margin-top: 48px;
      padding-top: 32px;
      border-top: 1px solid rgba(245,130,31,0.12);
    }
    .stat-item {}
    .stat-num {
      font-family: var(--ff-display);
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--amber);
      display: block;
    }
    .stat-label {
      font-size: 0.82rem;
      color: var(--ink-soft);
      font-weight: 600;
    }

    /* ─── HERO VISUAL ─── */
    .hero-visual {
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 40px 150px 40px 150px;
    }

    .phone-wrap {
      position: relative;
      animation: float 5s ease-in-out infinite;
    }
    @keyframes float {
      0%, 100% { transform: translateY(0px) rotate(-1deg); }
      50%       { transform: translateY(-18px) rotate(1deg); }
    }

    .phone-shell {
      width: 260px;
      height: 520px;
      background: var(--ink);
      border-radius: 40px;
      border: 6px solid rgba(255,255,255,0.15);
      box-shadow:
        0 30px 80px rgba(30,26,20,0.35),
        0 0 0 1px rgba(255,255,255,0.06),
        inset 0 0 30px rgba(0,0,0,0.3);
      overflow: hidden;
      position: relative;
    }

    .phone-screen {
      width: 100%;
      height: 100%;
      background: #FEFBEA;
      padding: 18px 14px 14px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      position: relative;
    }

    .phone-notch {
      position: absolute;
      top: 14px; left: 50%;
      transform: translateX(-50%);
      width: 70px; height: 10px;
      background: var(--ink);
      border-radius: 8px;
    }

    .phone-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 6px;
    }
    .phone-greeting {
      font-family: var(--ff-display);
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--ink);
    }
    .phone-greeting small {
      display: block;
      font-size: 0.65rem;
      color: var(--ink-soft);
      font-family: var(--ff-body);
      font-weight: 400;
    }

    .phone-avatar {
      width: 34px; height: 34px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--amber), var(--yellow));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
    }

    .phone-progress-card {
      background: var(--amber);
      border-radius: 16px;
      padding: 14px 16px;
      color: white;
    }
    .ppc-label {
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      opacity: 0.8;
      font-weight: 700;
      margin-bottom: 4px;
    }
    .ppc-title {
      font-family: var(--ff-display);
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 8px;
    }
    .ppc-bar-bg {
      height: 6px;
      background: rgba(255,255,255,0.3);
      border-radius: 4px;
    }
    .ppc-bar-fill {
      height: 6px;
      width: 68%;
      background: white;
      border-radius: 4px;
    }
    .ppc-meta {
      font-size: 0.6rem;
      opacity: 0.7;
      margin-top: 4px;
    }

    .phone-section-title {
      font-family: var(--ff-display);
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--ink-soft);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .phone-stories {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .story-card {
      display: flex;
      align-items: center;
      gap: 10px;
      background: white;
      border-radius: 12px;
      padding: 10px 12px;
      box-shadow: 0 2px 8px rgba(245,130,31,0.08);
    }
    .story-emoji {
      width: 36px; height: 36px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .story-info {}
    .story-name {
      font-family: var(--ff-display);
      font-size: 0.72rem;
      font-weight: 600;
      color: var(--ink);
    }
    .story-level {
      font-size: 0.6rem;
      color: var(--ink-soft);
    }
    .story-stars {
      margin-left: auto;
      font-size: 0.6rem;
      color: var(--yellow);
    }

    .phone-bottom {
      margin-top: auto;
      background: white;
      border-radius: 16px;
      padding: 10px 16px;
      display: flex;
      justify-content: space-around;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }
    .phone-nav-icon {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 3px;
      font-size: 1rem;
    }
    .phone-nav-icon span {
      font-size: 0.5rem;
      color: var(--ink-soft);
    }
    .phone-nav-icon.active span { color: var(--amber); }

    /* Orbiting badges */
    .orbit-badge {
      position: absolute;
      background: white;
      border-radius: 16px;
      padding: 10px 14px;
      box-shadow: 0 8px 32px rgba(30,26,20,0.14);
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: var(--ff-body);
      font-weight: 700;
      font-size: 0.8rem;
      white-space: nowrap;
    }
    .ob-icon {
      width: 32px; height: 32px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
    }
    .ob-sub {
      font-size: 0.65rem;
      color: var(--ink-soft);
      font-weight: 500;
      display: block;
      margin-top: 1px;
    }

    .ob-1 {
      top: 60px;
      left: 100%;
      margin-left: 10px;
      animation: bob1 4s ease-in-out infinite;
    }
    .ob-2 {
      bottom: 140px;
      right: 100%;
      margin-right: 10px;
      animation: bob2 5s ease-in-out infinite;
    }
    .ob-3 {
      bottom: 60px;
      left: 100%;
      margin-left: 10px;
      animation: bob1 3.5s ease-in-out infinite 0.7s;
    }

    @keyframes bob1 {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-8px); }
    }
    @keyframes bob2 {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(10px); }
    }

    /* ── Award Corner Ribbon ── */
    .award-corner {
      position: absolute;
      top: 72px; /* unterhalb der Nav */
      right: 0;
      width: 200px;
      height: 200px;
      overflow: hidden;
      pointer-events: none;
      z-index: 50;
    }
    .award-corner-ribbon {
      position: absolute;
      top: 48px;
      right: -62px;
      width: 230px;
      background: linear-gradient(135deg, #F7C948 0%, #F5821F 100%);
      color: var(--ink);
      text-align: center;
      transform: rotate(45deg);
      padding: 14px 0 12px;
      font-family: var(--ff-body);
      font-size: 0.7rem;
      font-weight: 800;
      line-height: 1.55;
      letter-spacing: 0.01em;
      box-shadow:
        0 4px 20px rgba(245,130,31,0.5),
        0 1px 0 rgba(255,255,255,0.3) inset;
      text-decoration: none;
      pointer-events: all;
    }
    .award-corner-ribbon:hover {
      background: linear-gradient(135deg, #FFDA5A 0%, #F5821F 100%);
    }

    /* ── READING VIEW (phone mockup) ── */
    .phone-read-header {
      display: flex;
      align-items: center;
      gap: 5px;
      margin-top: 6px;
    }
    .phone-back {
      font-size: 1.1rem;
      background: none;
      border: none;
      color: var(--ink);
      cursor: pointer;
      padding: 0;
      line-height: 1;
      font-weight: 700;
    }
    .phone-user-chip {
      display: flex;
      align-items: center;
      gap: 4px;
      background: rgba(69,184,192,0.15);
      border-radius: 20px;
      padding: 3px 8px;
      font-size: 0.58rem;
      font-weight: 700;
      color: var(--teal-dark);
    }
    .phone-user-dot {
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--teal);
    }
    .phone-logo-mid {
      height: 20px;
      width: auto;
      margin: 0 auto;
    }
    .phone-hdr-icons {
      display: flex;
      gap: 5px;
      font-size: 0.7rem;
      color: var(--ink-mid);
      margin-left: auto;
    }

    /* Speed slider */
    .phone-speed-row {
      display: flex;
      align-items: center;
      gap: 6px;
      background: transparent;
      padding: 4px 0;
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .phone-speed-label {
      display: flex;
      flex-direction: column;
      min-width: 42px;
    }
    .phone-speed-val {
      font-family: var(--ff-display);
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--amber);
      line-height: 1;
    }
    .phone-speed-unit {
      font-size: 0.48rem;
      color: var(--ink-soft);
      white-space: nowrap;
    }
    .phone-slider-track {
      flex: 1;
      height: 4px;
      background: rgba(245,130,31,0.18);
      border-radius: 4px;
      position: relative;
    }
    .phone-slider-fill {
      position: absolute;
      left: 0; top: 0;
      height: 4px; width: 52%;
      background: var(--amber);
      border-radius: 4px;
    }
    .phone-slider-thumb {
      position: absolute;
      left: 52%; top: 50%;
      transform: translate(-50%, -50%);
      width: 11px; height: 11px;
      background: var(--amber);
      border: 2px solid white;
      border-radius: 50%;
      box-shadow: 0 2px 6px rgba(245,130,31,0.45);
    }
    .phone-size-ctrls {
      display: flex;
      align-items: center;
      gap: 3px;
      font-size: 0.58rem;
      font-weight: 700;
    }
    .phone-size-btn { color: var(--teal-dark); }
    .phone-size-num {
      color: var(--ink);
      font-family: var(--ff-display);
      font-size: 0.65rem;
      min-width: 16px;
      text-align: center;
    }

    /* Reading text */
    @font-face {
      font-family: 'OpenDyslexic';
      src: url('https://cdn.jsdelivr.net/npm/open-dyslexic@1.0.3/woff/OpenDyslexic-Regular.woff') format('woff');
      font-weight: normal;
      font-style: normal;
      font-display: swap;
    }
    .phone-reading-text {
      flex: 1;
      overflow: hidden;
      background: transparent;
      padding: 4px 0 0;
      font-family: 'OpenDyslexic', var(--ff-body);
      font-size: 0.76rem;
      line-height: 2;
      color: var(--ink);
    }
    .rline { margin-bottom: 2px; }
    .rs-b  { color: #3B7FD4; }
    .rs-r  { color: #C8373A; }
    .rs-hi {
      background: rgba(59,127,212,0.18);
      border-radius: 2px;
      padding: 0 1px;
    }
    .rs-ri {
      background: rgba(200,55,58,0.15);
      border-radius: 2px;
      padding: 0 1px;
    }

    /* Bottom buttons */
    .phone-read-bottom {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .phone-btn-reset, .phone-btn-read {
      flex: 1;
      background: #4CAF80;
      color: white;
      border: none;
      border-radius: 20px;
      padding: 9px 0;
      font-family: var(--ff-body);
      font-size: 0.58rem;
      font-weight: 700;
      cursor: pointer;
    }
    .phone-btn-fast {
      width: 28px; height: 28px;
      background: rgba(76,175,128,0.15);
      color: #2E8B57;
      border: none;
      border-radius: 50%;
      font-size: 0.5rem;
      font-weight: 900;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* ─────────────────────────────────────────────
       SECTION SHARED
    ───────────────────────────────────────────── */
    section { position: relative; z-index: 1; }

    .section-tag {
      display: inline-block;
      font-family: var(--ff-body);
      font-weight: 700;
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--amber);
      margin-bottom: 12px;
    }
    .section-title {
      font-family: var(--ff-display);
      font-size: clamp(1.9rem, 3.2vw, 2.8rem);
      font-weight: 500;
      line-height: 1.2;
      color: var(--ink);
      margin-bottom: 16px;
    }
    .section-sub {
      font-size: 1rem;
      color: var(--ink-mid);
      max-width: 560px;
      line-height: 1.75;
    }
    .centered {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }
    .center-block {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    /* ─────────────────────────────────────────────
       LOGOS / TRUST BAR
    ───────────────────────────────────────────── */
    .trust-bar {
      padding: 48px 5%;
      background: linear-gradient(135deg, #1a1209 0%, #2d1f0a 50%, #1a1209 100%);
      border-top: 2px solid rgba(247,201,72,0.3);
      border-bottom: 2px solid rgba(247,201,72,0.3);
      position: relative;
      overflow: hidden;
    }
    .trust-bar::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 50%, rgba(247,201,72,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .trust-inner {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      position: relative;
      z-index: 1;
    }
    .trust-eyebrow {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: rgba(247,201,72,0.6);
    }
    .trust-award-badge {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .trust-medal {
      font-size: 2.8rem;
      filter: drop-shadow(0 0 12px rgba(247,201,72,0.6));
      animation: medalPulse 3s ease-in-out infinite;
    }
    @keyframes medalPulse {
      0%, 100% { filter: drop-shadow(0 0 10px rgba(247,201,72,0.5)); }
      50% { filter: drop-shadow(0 0 22px rgba(247,201,72,0.9)); }
    }
    .trust-award-text {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 2px;
    }
    .trust-award-title {
      font-family: var(--ff-display);
      font-size: 2rem;
      font-weight: 700;
      line-height: 1.1;
      background: linear-gradient(135deg, #F7C948 0%, #FFE88A 40%, #F5821F 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -0.02em;
    }
    .trust-award-source {
      font-size: 0.95rem;
      font-weight: 600;
      color: rgba(255,255,255,0.55);
      letter-spacing: 0.04em;
      text-decoration: none;
      transition: color 0.2s ease;
    }
    a.trust-award-source:hover {
      color: rgba(247,201,72,0.9);
    }
    .trust-divider {
      width: 3px;
      height: 48px;
      background: linear-gradient(to bottom, transparent, rgba(247,201,72,0.4), transparent);
      border-radius: 2px;
    }
    .trust-label {
      display: none;
    }
    .trust-logos {
      display: none;
    }
    .trust-logo {
      font-family: var(--ff-display);
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--ink-soft);
      opacity: 0.55;
      letter-spacing: -0.01em;
    }

    /* ─────────────────────────────────────────────
       FEATURES
    ───────────────────────────────────────────── */
    .features {
      padding: 100px 5%;
    }
    .features-inner {
      max-width: 1100px;
      margin: 0 auto;
    }
    .features-header {
      margin-bottom: 64px;
    }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .feat-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 36px 32px;
      border: 1.5px solid rgba(245,130,31,0.08);
      box-shadow: var(--shadow-card);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      position: relative;
      overflow: hidden;
    }
    .feat-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 4px;
      background: var(--feat-accent, var(--amber));
    }
    .feat-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 12px rgba(245,130,31,0.08), 0 24px 64px rgba(245,130,31,0.14);
    }
    .feat-icon-wrap {
      width: 56px; height: 56px;
      border-radius: var(--radius-md);
      background: var(--feat-bg, var(--amber-pale));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 24px;
    }
    .feat-title {
      font-family: var(--ff-display);
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 10px;
    }
    .feat-body {
      font-size: 0.93rem;
      color: var(--ink-mid);
      line-height: 1.7;
    }

    /* ─────────────────────────────────────────────
       HOW IT WORKS
    ───────────────────────────────────────────── */
    .how {
      padding: 100px 5%;
      background: linear-gradient(180deg, var(--cream) 0%, var(--amber-pale) 100%);
    }
    .how-inner {
      max-width: 1100px;
      margin: 0 auto;
    }
    .how-header {
      text-align: center;
      margin-bottom: 72px;
    }
    .how-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      position: relative;
    }

    .how-video-row {
      margin-top: 64px;
      display: flex;
      align-items: center;
      gap: 64px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .how-video-label {
      flex: 1;
      min-width: 220px;
      max-width: 320px;
    }
    .how-video-label .section-tag { margin-bottom: 12px; display: inline-block; }
    .how-video-desc {
      font-size: 1rem;
      color: var(--ink-mid);
      line-height: 1.7;
    }

    /* Facade */
    .yt-facade {
      position: relative;
      width: 270px;
      aspect-ratio: 9 / 16;
      border-radius: var(--radius-lg);
      overflow: hidden;
      cursor: pointer;
      box-shadow: var(--shadow-card);
      flex-shrink: 0;
    }
    .yt-thumb {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }
    .yt-facade:hover .yt-thumb { transform: scale(1.03); }
    .yt-play-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: rgba(0,0,0,0.6);
      border-radius: 50%;
      width: 72px;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s ease, transform 0.2s ease;
    }
    .yt-facade:hover .yt-play-btn {
      background: rgba(245,130,31,0.9);
      transform: translate(-50%, -50%) scale(1.08);
    }
    .yt-consent {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0,0,0,0.7);
      padding: 8px 12px;
      font-size: 0.7rem;
      color: rgba(255,255,255,0.7);
      text-align: center;
      line-height: 1.4;
    }
    .yt-consent a { color: var(--amber-light); }
    @media (max-width: 700px) {
      .how-video-row { flex-direction: column; }
      .how-video-label { max-width: 100%; text-align: center; }
    }
    .how-steps::before {
      content: '';
      position: absolute;
      top: 36px;
      left: calc(16.67% + 36px);
      right: calc(16.67% + 36px);
      height: 2px;
      background: repeating-linear-gradient(
        90deg,
        var(--amber-light) 0,
        var(--amber-light) 8px,
        transparent 8px,
        transparent 16px
      );
    }

    .step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 20px;
    }
    .step-num {
      width: 72px; height: 72px;
      border-radius: 50%;
      background: var(--white);
      border: 3px solid var(--amber-light);
      box-shadow: 0 4px 20px rgba(245,130,31,0.18);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--ff-display);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--amber);
      position: relative;
      z-index: 1;
    }
    .step-icon { font-size: 1.5rem; }
    .step-img {
      width: 100%;
      max-width: 200px;
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(245,130,31,0.15);
    }
    .step-img img {
      width: 100%;
      height: auto;
      display: block;
    }
    .step-title {
      font-family: var(--ff-display);
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--ink);
    }
    .step-body {
      font-size: 0.92rem;
      color: var(--ink-mid);
      line-height: 1.7;
    }

    /* ─────────────────────────────────────────────
       SHOWCASE (big feature highlight)
    ───────────────────────────────────────────── */
    .showcase {
      padding: 100px 5%;
    }
    .showcase-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .showcase-inner.reverse { direction: rtl; }
    .showcase-inner.reverse > * { direction: ltr; }

    .showcase-visual {
      background: var(--amber-pale);
      border-radius: var(--radius-xl);
      aspect-ratio: 4/3;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      border: 1.5px solid rgba(245,130,31,0.12);
    }

    .showcase-visual .visual-emoji {
      font-size: 7rem;
      filter: drop-shadow(0 16px 32px rgba(245,130,31,0.20));
      animation: pulse 3s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50%       { transform: scale(1.06); }
    }

    .sv-deco {
      position: absolute;
      border-radius: 50%;
    }
    .sv-deco-1 {
      width: 120px; height: 120px;
      background: radial-gradient(circle, rgba(247,201,72,0.35), transparent);
      top: -20px; right: -20px;
    }
    .sv-deco-2 {
      width: 90px; height: 90px;
      background: radial-gradient(circle, rgba(69,184,192,0.30), transparent);
      bottom: 10px; left: 10px;
    }

    .showcase-text {}
    .check-list {
      list-style: none;
      margin-top: 28px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .check-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 0.95rem;
      color: var(--ink-mid);
      line-height: 1.6;
    }
    .check-icon {
      width: 22px; height: 22px;
      border-radius: 50%;
      background: var(--amber-pale);
      border: 1.5px solid var(--amber-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.65rem;
      color: var(--amber-dark);
      flex-shrink: 0;
      margin-top: 2px;
    }

    /* ─────────────────────────────────────────────
       TESTIMONIALS
    ───────────────────────────────────────────── */
    .testimonials {
      padding: 100px 5%;
      background: var(--ink);
      position: relative;
      overflow: hidden;
    }
    .testimonials::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V18L28 2l28 16v32L28 66zm0-92L0 -26V6l28 16 28-16V-26L28-26z' fill='none' stroke='%23F5821F' stroke-width='0.8' stroke-opacity='0.06'/%3E%3C/svg%3E");
      pointer-events: none;
    }
    .testimonials-inner {
      max-width: 1100px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }
    .testimonials .section-tag { color: var(--yellow); }
    .testimonials .section-title { color: var(--white); }
    .testimonials .section-sub { color: rgba(255,255,255,0.55); }

    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 56px;
    }

    .lmz-card {
      background: rgba(255,255,255,0.04);
      border: 1.5px solid rgba(247,201,72,0.25);
      border-radius: var(--radius-lg);
      padding: 36px 40px;
      margin-bottom: 32px;
      position: relative;
      overflow: hidden;
    }
    .lmz-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(247,201,72,0.6), transparent);
    }
    .lmz-card-inner {
      display: flex;
      gap: 32px;
      align-items: flex-start;
      flex-wrap: wrap;
    }
    .lmz-badge {
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      padding: 16px 20px;
      background: rgba(247,201,72,0.08);
      border: 1px solid rgba(247,201,72,0.2);
      border-radius: var(--radius-md);
      text-align: center;
      min-width: 120px;
    }
    .lmz-badge-icon { font-size: 1.8rem; }
    .lmz-badge-label {
      font-size: 0.62rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--yellow);
      line-height: 1.3;
    }
    .lmz-content { flex: 1; min-width: 240px; }
    .lmz-tag {
      display: inline-block;
      font-size: 0.68rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--yellow);
      margin-bottom: 12px;
    }
    .lmz-quote {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.88);
      line-height: 1.7;
      font-style: italic;
      margin-bottom: 16px;
    }
    .lmz-source {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.4);
    }
    .lmz-source strong { color: rgba(255,255,255,0.65); font-style: normal; }

    .testi-card {
      background: rgba(255,255,255,0.05);
      border: 1.5px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-lg);
      padding: 32px 28px;
      backdrop-filter: blur(8px);
      transition: transform 0.25s ease, background 0.25s ease;
    }
    .testi-card:hover {
      transform: translateY(-4px);
      background: rgba(255,255,255,0.08);
    }

    .testi-stars {
      color: var(--yellow);
      font-size: 0.9rem;
      margin-bottom: 16px;
      letter-spacing: 2px;
    }
    .testi-quote {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.80);
      line-height: 1.75;
      margin-bottom: 24px;
      font-style: italic;
    }
    .testi-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .testi-avatar {
      width: 40px; height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .testi-name {
      font-family: var(--ff-display);
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--white);
    }
    .testi-role {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.4);
    }

    /* ─────────────────────────────────────────────
       CTA
    ───────────────────────────────────────────── */
    /* ── ÜBER UNS ── */
    .about-section {
      padding: 100px 5%;
      background: var(--cream);
      position: relative;
    }
    .about-inner {
      max-width: 1100px;
      margin: 0 auto;
    }
    .about-story {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
      margin-top: 56px;
    }
    .about-quote-block {
      position: relative;
      padding: 36px 40px;
      background: var(--amber-pale);
      border-left: 5px solid var(--amber);
      border-radius: var(--radius-md);
    }
    .about-quote-mark {
      font-family: Georgia, serif;
      font-size: 5rem;
      line-height: 0.6;
      color: var(--amber);
      display: block;
      margin-bottom: 16px;
    }
    .about-quote-text {
      font-family: var(--ff-display);
      font-size: 1.45rem;
      font-weight: 600;
      color: var(--ink);
      line-height: 1.4;
      margin-bottom: 20px;
    }
    .about-quote-sub {
      font-size: 0.88rem;
      color: var(--ink-soft);
      line-height: 1.7;
    }
    .about-body-text p {
      font-size: 1rem;
      color: var(--ink-mid);
      line-height: 1.8;
      margin-bottom: 20px;
    }
    .about-body-text p:last-child { margin-bottom: 0; }
    .about-body-text strong { color: var(--ink); font-weight: 700; }

    /* Team */
    .about-team {
      margin-top: 80px;
      border-top: 1px solid rgba(245,130,31,0.12);
      padding-top: 64px;
    }
    .about-team-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-top: 40px;
    }
    .team-card {
      display: flex;
      gap: 24px;
      align-items: flex-start;
      background: white;
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: var(--shadow-card);
    }
    .team-avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
      background: linear-gradient(135deg, var(--amber-light), var(--teal-light));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
    }
    .team-avatar img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
    }
    .team-info {}
    .team-name {
      font-family: var(--ff-display);
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 4px;
    }
    .team-role {
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--amber);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 12px;
    }
    .team-bio {
      font-size: 0.9rem;
      color: var(--ink-mid);
      line-height: 1.7;
    }
    .team-placeholder {
      font-size: 0.82rem;
      color: var(--ink-soft);
      font-style: italic;
    }

    .cta-section {
      padding: 100px 5%;
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 50%, rgba(245,201,72,0.18) 0%, rgba(245,130,31,0.08) 40%, transparent 70%);
    }
    .cta-inner {
      max-width: 680px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 1;
    }
    .cta-bee {
      font-size: 4rem;
      margin-bottom: 24px;
      display: block;
      animation: float 4s ease-in-out infinite;
    }
    @keyframes wiggle {
      0%   { transform: rotate(0deg) scale(1); }
      15%  { transform: rotate(-8deg) scale(1.05); }
      30%  { transform: rotate(8deg) scale(1.05); }
      45%  { transform: rotate(-5deg) scale(1.02); }
      60%  { transform: rotate(5deg) scale(1.02); }
      75%  { transform: rotate(-2deg) scale(1); }
      100% { transform: rotate(0deg) scale(1); }
    }
    .cta-logo {
      width: 88px;
      height: 88px;
      object-fit: contain;
      display: block;
      margin: 0 auto 24px;
      animation: wiggle 3s ease-in-out infinite;
      transform-origin: center center;
    }
    .cta-inner .section-title { font-size: clamp(2rem, 3.5vw, 3rem); }

    .cta-stores {
      display: flex;
      gap: 16px;
      justify-content: center;
      margin-top: 40px;
      flex-wrap: wrap;
    }
    .store-btn {
      display: flex;
      align-items: center;
      gap: 12px;
      background: var(--ink);
      color: var(--white);
      text-decoration: none;
      padding: 12px 24px;
      border-radius: var(--radius-md);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      box-shadow: 0 4px 20px rgba(30,26,20,0.25);
    }
    .store-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 32px rgba(30,26,20,0.30);
    }
    .store-btn-icon { font-size: 1.6rem; line-height: 1; }
    .store-btn-text {}
    .store-btn-sub {
      font-size: 0.65rem;
      opacity: 0.6;
      display: block;
      margin-bottom: 1px;
    }
    .store-btn-name {
      font-family: var(--ff-display);
      font-size: 1rem;
      font-weight: 600;
    }

    .store-btn-school {
      display: flex;
      align-items: center;
      gap: 12px;
      background: var(--ink);
      color: var(--white);
      text-decoration: none;
      padding: 12px 24px;
      border-radius: var(--radius-md);
      box-shadow: 0 4px 20px rgba(30,26,20,0.25);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .store-btn-school:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 32px rgba(30,26,20,0.30);
    }

    .cta-note {
      margin-top: 20px;
      font-size: 0.82rem;
      color: var(--ink-soft);
    }

    /* ─────────────────────────────────────────────
       FAQ SECTION
    ───────────────────────────────────────────── */
    .faq-section {
      padding: 100px 5%;
      background: var(--cream-2);
    }

    .faq-inner {
      max-width: 780px;
      margin: 0 auto;
    }

    .faq-list {
      margin-top: 52px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .faq-item {
      background: var(--white);
      border-radius: 16px;
      box-shadow: var(--shadow-card);
      overflow: hidden;
      transition: box-shadow 0.25s ease;
    }

    .faq-item[open] {
      box-shadow: 0 4px 8px rgba(245,130,31,0.10), 0 16px 48px rgba(245,130,31,0.16);
    }

    .faq-question {
      list-style: none;
      padding: 20px 26px;
      font-family: var(--ff-display);
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--ink);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      user-select: none;
      transition: color 0.2s ease;
    }

    .faq-question::-webkit-details-marker { display: none; }

    .faq-question::after {
      content: '+';
      font-family: var(--ff-body);
      font-size: 1.5rem;
      font-weight: 300;
      color: var(--amber);
      flex-shrink: 0;
      transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      line-height: 1;
    }

    .faq-item[open] .faq-question::after {
      transform: rotate(45deg);
    }

    .faq-item[open] .faq-question {
      color: var(--amber-dark);
      border-bottom: 1px solid var(--amber-pale);
      padding-bottom: 18px;
    }

    .faq-answer {
      padding: 18px 26px 22px;
      font-size: 0.935rem;
      color: var(--ink-mid);
      line-height: 1.75;
    }

    /* ─────────────────────────────────────────────
       SCHOOL SECTION
    ───────────────────────────────────────────── */
    .school-section {
      padding: 100px 5%;
      background: var(--cream-2);
    }
    .school-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 64px;
    }
    .school-body {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }
    .school-steps {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }
    .school-step {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }
    .school-step-num {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--amber);
      color: white;
      font-family: var(--ff-display);
      font-weight: 700;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .school-step-title {
      font-family: var(--ff-display);
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 6px;
    }
    .school-step-body {
      font-size: 0.9rem;
      color: var(--ink-mid);
      line-height: 1.7;
    }
    .school-aside {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .school-quote {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 32px;
      box-shadow: var(--shadow-card);
    }
    .school-quote-text {
      font-size: 0.97rem;
      line-height: 1.75;
      color: var(--ink);
      font-style: italic;
      margin-bottom: 20px;
    }
    .school-quote-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .school-quote-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--amber-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      flex-shrink: 0;
    }
    .school-quote-name {
      font-family: var(--ff-display);
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--ink);
    }
    .school-quote-role {
      font-size: 0.82rem;
      color: var(--ink-soft);
    }
    .school-privacy {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      background: var(--teal-light);
      border-radius: var(--radius-md);
      padding: 20px 24px;
      font-size: 0.88rem;
      color: var(--ink-mid);
      line-height: 1.6;
    }
    .school-privacy-icon {
      font-size: 1.3rem;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .school-cta {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }
    .school-cta-note {
      font-size: 0.82rem;
      color: var(--ink-soft);
    }

    /* ── Trial Process Strip ───────────────────────────────────── */
    .trial-process {
      text-align: center;
    }
    .trial-process-label {
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--ink-soft);
      margin-bottom: 40px;
    }
    .trial-process-steps {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      gap: 0;
    }
    .trial-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      max-width: 220px;
      flex: 1;
    }
    .trial-step-icon {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--amber-pale) 0%, #fff8ee 100%);
      border: 2px solid var(--amber-light);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(245, 130, 31, 0.15);
      flex-shrink: 0;
      position: relative;
      z-index: 1;
    }
    .trial-step-num {
      font-family: var(--ff-display);
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--amber);
    }
    .trial-step-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
    }
    .trial-step-title {
      font-family: var(--ff-display);
      font-size: 1rem;
      font-weight: 600;
      color: var(--ink);
    }
    .trial-step-body {
      font-size: 0.82rem;
      color: var(--ink-mid);
      line-height: 1.65;
      max-width: 180px;
    }
    .trial-step-connector {
      flex: 0 0 48px;
      height: 2px;
      background: repeating-linear-gradient(
        90deg,
        var(--amber-light) 0px,
        var(--amber-light) 6px,
        transparent 6px,
        transparent 12px
      );
      margin-top: 27px;
      align-self: flex-start;
      opacity: 0.7;
    }
    @media (max-width: 700px) {
      .trial-process-steps {
        flex-direction: column;
        align-items: center;
        gap: 24px;
      }
      .trial-step-connector {
        width: 2px;
        height: 28px;
        flex: 0 0 28px;
        margin-top: 0;
        align-self: center;
        background: repeating-linear-gradient(
          180deg,
          var(--amber-light) 0px,
          var(--amber-light) 6px,
          transparent 6px,
          transparent 12px
        );
      }
    }

    .school-refs {
      border-top: 1px solid rgba(30,26,20,0.08);
      padding-top: 48px;
    }
    /* ── Lehrerportal Screenshot-Galerie ── */
    .portal-gallery {
      margin: 60px 0 0;
    }
    .portal-gallery-label {
      text-align: center;
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--ink-soft);
      font-weight: 700;
      margin-bottom: 28px;
    }
    .portal-gallery-scroll {
      display: flex;
      gap: 20px;
      overflow: visible;
      padding: 12px 4px 80px;
      scrollbar-width: none;
      -ms-overflow-style: none;
      justify-content: center;
      flex-wrap: wrap;
    }
    .portal-gallery-scroll::-webkit-scrollbar { display: none; }
    .portal-screenshot {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }
    .portal-screenshot-frame {
      width: 160px;
      border-radius: 18px;
      overflow: hidden;
      box-shadow:
        0 8px 32px rgba(30,26,20,0.16),
        0 0 0 1px rgba(0,0,0,0.06);
      background: #FEFBEA;
      transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
      transform-origin: bottom center;
      cursor: zoom-in;
    }
    .portal-screenshot-frame:hover {
      transform: scale(2.2) translateY(-10%);
      box-shadow: 0 32px 80px rgba(30,26,20,0.35), 0 0 0 1px rgba(0,0,0,0.08);
      z-index: 10;
      position: relative;
    }
    .portal-screenshot-frame img {
      width: 100%;
      display: block;
    }
    .portal-screenshot-label {
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--ink-mid);
      text-align: center;
    }

    .school-refs-title {
      text-align: center;
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--ink-soft);
      margin-bottom: 28px;
    }
    .school-logos {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      align-items: center;
    }
    .school-logo-item,
    .school-name-item {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 56px;
      padding: 8px 20px;
      background: var(--white);
      border-radius: var(--radius-sm);
      box-shadow: 0 2px 8px rgba(30,26,20,0.06);
    }
    .school-logo-item img {
      max-height: 36px;
      max-width: 140px;
      width: auto;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.65;
      transition: filter 0.2s ease, opacity 0.2s ease;
    }
    .school-logo-item:hover img {
      filter: grayscale(0%);
      opacity: 1;
    }
    .school-name-item {
      font-family: var(--ff-display);
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--ink-soft);
      text-align: center;
    }

    /* ─────────────────────────────────────────────
       FOOTER
    ───────────────────────────────────────────── */
    /* ─────────────────────────────────────────────
       CONTACT
    ───────────────────────────────────────────── */
    .contact-section {
      padding: 100px 5%;
      background: var(--cream-2);
      position: relative;
      overflow: hidden;
    }
    .contact-section::before {
      content: '';
      position: absolute;
      top: -120px; right: -120px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(245,130,31,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .contact-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }
    .contact-intro .section-title {
      margin-bottom: 12px;
    }
    .contact-intro .section-sub {
      margin-bottom: 40px;
    }
    .contact-channels {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .contact-channel {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }
    .contact-channel-icon {
      font-size: 1.5rem;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .contact-channel-title {
      font-family: var(--ff-display);
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 2px;
    }
    .contact-channel-text {
      font-size: 0.85rem;
      color: var(--ink-soft);
      line-height: 1.5;
    }

    /* Form */
    .contact-form {
      background: var(--white);
      border-radius: var(--radius-xl);
      padding: 40px;
      box-shadow: var(--shadow-card);
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .form-group label {
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--ink-mid);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
    .form-group input,
    .form-group textarea {
      font-family: var(--ff-body);
      font-size: 0.95rem;
      color: var(--ink);
      background: var(--cream);
      border: 1.5px solid rgba(30,26,20,0.1);
      border-radius: var(--radius-md);
      padding: 12px 16px;
      outline: none;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
      resize: vertical;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: var(--ink-soft);
    }
    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--amber);
      box-shadow: 0 0 0 3px rgba(245,130,31,0.12);
    }
    .contact-submit {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: var(--amber);
      color: var(--white);
      font-family: var(--ff-display);
      font-size: 1rem;
      font-weight: 600;
      border: none;
      border-radius: var(--radius-full);
      padding: 14px 28px;
      cursor: pointer;
      box-shadow: var(--shadow-btn);
      transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
      align-self: flex-start;
    }
    .contact-submit:hover {
      background: var(--amber-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(245,130,31,0.35);
    }
    .contact-submit:active {
      transform: translateY(0);
    }
    .contact-submit-bee {
      font-size: 1.1rem;
      transition: transform 0.2s ease;
    }
    .contact-submit:hover .contact-submit-bee {
      transform: rotate(15deg) scale(1.15);
    }
    @media (max-width: 800px) {
      .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    footer {
      background: var(--ink);
      padding: 60px 5% 40px;
      color: rgba(255,255,255,0.5);
    }
    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
    }
    .footer-top {
      display: flex;
      justify-content: space-between;
      gap: 40px;
      margin-bottom: 48px;
      flex-wrap: wrap;
    }
    .footer-brand {}
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
    }
    .footer-logo img { height: 36px; }
    .footer-tagline {
      font-size: 0.88rem;
      max-width: 240px;
      line-height: 1.7;
    }
    .footer-col-title {
      font-family: var(--ff-display);
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 16px;
    }
    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-links a {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--amber); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.07);
      padding-top: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-copy { font-size: 0.82rem; }
    .footer-socials {
      display: flex;
      gap: 16px;
    }
    .social-pill {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      text-decoration: none;
      transition: background 0.2s, transform 0.2s;
    }
    .social-pill:hover {
      background: var(--amber);
      transform: translateY(-2px);
    }

    /* ─────────────────────────────────────────────
       SCROLL ANIMATIONS
    ───────────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ─────────────────────────────────────────────
       RESPONSIVE
    ───────────────────────────────────────────── */
    /* ─── TABLET (≤900px) ─── */
    @media (max-width: 900px) {
      /* Nav */
      .nav-links { display: none; }

      /* Hero */
      .hero {
        grid-template-columns: 1fr;
        padding: 100px 5% 60px;
        text-align: center;
        gap: 32px;
      }
      .hero-visual {
        order: -1;
        padding: 20px 40px 20px;
      }
      .hero-sub { max-width: 100%; }
      .hero-actions { justify-content: center; }
      .hero-stats { justify-content: center; }

      /* Award Ribbon kleiner */
      .award-corner { width: 150px; height: 150px; top: 72px; }
      .award-corner-ribbon {
        top: 38px; right: -52px;
        width: 200px;
        font-size: 0.62rem;
        padding: 10px 0 8px;
      }

      /* Features */
      .features-grid { grid-template-columns: 1fr 1fr; }

      /* How */
      .how-steps { grid-template-columns: 1fr; }
      .how-steps::before { display: none; }

      /* Showcase */
      .showcase-inner { grid-template-columns: 1fr; gap: 40px; }
      .showcase-inner.reverse { direction: ltr; }

      /* Testimonials */
      .testi-grid { grid-template-columns: 1fr; }

      /* School */
      .school-body { grid-template-columns: 1fr; gap: 40px; }

      /* About */
      .about-story { grid-template-columns: 1fr; gap: 40px; }
      .about-team-grid { grid-template-columns: 1fr; }
    }

    /* ─── MOBILE (≤600px) ─── */
    @media (max-width: 600px) {
      /* Nav */
      nav { padding: 0 4%; height: 64px; }
      .nav-logo img { height: 34px; }

      /* Hero */
      .hero { padding: 88px 4% 48px; gap: 28px; }
      .hero-headline { font-size: clamp(2rem, 8vw, 2.6rem); }
      .hero-badge { font-size: 0.75rem; }
      .hero-stats { gap: 18px; flex-wrap: wrap; justify-content: flex-start; }

      /* Phone Mockup: kleiner, Orbit-Badges ausblenden */
      .hero-visual { padding: 12px 16px; }
      .phone-shell {
        width: 220px;
        height: 440px;
        border-radius: 32px;
      }
      .phone-screen { padding: 14px 12px 12px; }
      .orbit-badge { display: none; }

      /* Award-Ribbon ausblenden */
      .award-corner { display: none; }

      /* Features */
      .features-grid { grid-template-columns: 1fr; }
      .feat-card { padding: 28px 24px; }

      /* Section titles */
      .section-title { font-size: clamp(1.6rem, 6vw, 2rem); }

      /* Showcase */
      .showcase { padding: 60px 4%; }
      .showcase-inner { padding: 60px 0; }
      .showcase-visual { aspect-ratio: 3/2; }

      /* Testimonials */
      .testi-card { padding: 28px 22px; }

      /* School */
      .school-section { padding: 60px 4%; }
      .school-inner { padding: 0; }
      .school-step { gap: 14px; }
      .portal-screenshot-frame { width: 110px; border-radius: 14px; }
      .portal-gallery-scroll { gap: 12px; }
      .school-logos { gap: 8px; }
      .school-logo-item { height: 40px; padding: 6px 12px; }
      .school-cta { flex-direction: column; align-items: center; gap: 12px; }

      /* Portal Gallery: kein Zoom auf Touch */
      .portal-screenshot-frame:hover {
        transform: none;
        box-shadow: 0 8px 32px rgba(30,26,20,0.16), 0 0 0 1px rgba(0,0,0,0.06);
      }
      .portal-screenshot-frame { cursor: default; }

      /* About */
      .about-section { padding: 60px 4%; }
      .about-story { margin-top: 32px; gap: 28px; }
      .about-quote-block { padding: 24px 24px; }
      .about-quote-text { font-size: 1.2rem; }
      .about-quote-mark { font-size: 3.5rem; }
      .about-body-text p { font-size: 0.95rem; }
      .about-team-grid { gap: 14px; }
      .team-card { padding: 20px; gap: 16px; }
      .team-avatar { width: 60px; height: 60px; font-size: 1.5rem; }
      .team-name { font-size: 1.05rem; }

      /* CTA */
      .cta-section { padding: 60px 4%; }
      .cta-stores { flex-direction: column; align-items: center; gap: 12px; }
      .store-btn { width: 100%; max-width: 280px; justify-content: center; }

      /* Footer */
      .footer-top { flex-direction: column; gap: 32px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
      .footer-tagline { max-width: 100%; }
    }

/* ════════════════════════════════════════════════════════════
   SCHULEN-SEITE  (schulen.html)
   ════════════════════════════════════════════════════════════ */

  /* Page background */
  .schulen-page { background: var(--cream); }

  /* ── Page Header ── */
  .reg-header {
    padding: 80px 6% 48px;
    text-align: center;
    background: linear-gradient(180deg, #fff8ee 0%, var(--cream) 100%);
    border-bottom: 1px solid rgba(245,130,31,0.1);
  }
  .reg-header-inner { max-width: 640px; margin: 0 auto; }
  .reg-header-title {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.03em;
    margin: 12px 0 16px;
  }
  .reg-header-sub {
    font-size: 1rem;
    color: var(--ink-mid);
    line-height: 1.6;
  }

  /* ── Main Section ── */
  .reg-section {
    padding: 56px 6% 80px;
  }
  .reg-inner {
    max-width: 1060px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
  }

  /* ── Form Card ── */
  .reg-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 48px;
    box-shadow:
      0 4px 24px rgba(245,130,31,0.08),
      0 1px 4px rgba(30,26,20,0.06);
  }
  .reg-form-title {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
  }
  .reg-form-sub {
    font-size: 0.88rem;
    color: var(--ink-mid);
    line-height: 1.65;
    margin-bottom: 36px;
  }

  /* Fieldset titles */
  .reg-fieldset-title {
    font-family: var(--ff-display);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-soft);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(30,26,20,0.07);
  }
  .reg-fieldset-title--gap { margin-top: 32px; }

  /* Rows */
  .reg-row { margin-bottom: 20px; }
  .reg-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .reg-field-plz { max-width: 120px; }
  .reg-field-grow { flex: 1; }

  /* Fields */
  .reg-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .reg-field label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink);
  }
  .reg-field input,
  .reg-field textarea {
    font-family: var(--ff-body);
    font-size: 0.95rem;
    color: var(--ink);
    background: var(--cream);
    border: 1.5px solid rgba(30,26,20,0.15);
    border-radius: 10px;
    padding: 10px 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    resize: vertical;
  }
  .reg-field input:focus,
  .reg-field textarea:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(245,130,31,0.12);
  }
  .reg-field input.field-invalid,
  .reg-field textarea.field-invalid {
    border-color: #e04040;
    box-shadow: 0 0 0 3px rgba(224,64,64,0.1);
  }
  .req { color: var(--amber); font-weight: 700; }
  .opt { font-weight: 400; color: var(--ink-soft); font-size: 0.78rem; }

  /* Error messages */
  .field-error {
    font-size: 0.78rem;
    color: #c0392b;
    min-height: 1em;
    display: block;
  }

  /* Privacy note */
  .reg-privacy-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--ink-soft);
    line-height: 1.6;
    margin: 24px 0 28px;
  }
  .reg-privacy-note svg { flex-shrink: 0; margin-top: 1px; color: var(--teal); }
  .reg-privacy-note a { color: var(--teal-dark); text-decoration: underline; }

  /* Submit button */
  .reg-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--amber);
    color: #fff;
    font-family: var(--ff-display);
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: var(--shadow-btn);
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  }
  .reg-submit:hover { background: var(--amber-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(245,130,31,0.35); }
  .reg-submit:active { transform: translateY(0); }
  .reg-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

  /* Spinner */
  .reg-spinner svg {
    animation: spin 0.8s linear infinite;
  }
  @keyframes spin { to { transform: rotate(360deg); } }

  /* Success state */
  .reg-success {
    text-align: center;
    padding: 40px 24px;
  }
  .reg-success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--teal-light);
    color: var(--teal-dark);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }
  .reg-success h3 {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
  }
  .reg-success p { font-size: 0.95rem; color: var(--ink-mid); line-height: 1.7; margin-bottom: 8px; }
  .reg-success-note { font-size: 0.82rem !important; }
  .reg-success a { color: var(--teal-dark); }

  /* Error message */
  .reg-error-msg {
    background: #fff0f0;
    border: 1px solid rgba(224,64,64,0.3);
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 0.88rem;
    color: #c0392b;
    margin-top: 16px;
    line-height: 1.6;
  }
  .reg-error-msg a { color: #c0392b; }

  /* ── Sidebar ── */
  .reg-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 90px;
  }
  .reg-side-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow:
      0 2px 12px rgba(30,26,20,0.06),
      0 1px 3px rgba(30,26,20,0.04);
  }
  .reg-side-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-soft);
    margin-bottom: 16px;
  }

  /* Sidebar Steps */
  .reg-side-steps { display: flex; flex-direction: column; gap: 16px; }
  .reg-side-step { display: flex; gap: 12px; align-items: flex-start; }
  .reg-side-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--amber-pale);
    border: 1.5px solid var(--amber-light);
    color: var(--amber);
    font-family: var(--ff-display);
    font-size: 0.82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .reg-side-step-title {
    font-family: var(--ff-display);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 2px;
  }
  .reg-side-step-body { font-size: 0.78rem; color: var(--ink-mid); line-height: 1.6; }

  /* Privacy Card */
  .reg-side-privacy {
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }
  .reg-side-privacy-icon { font-size: 1.3rem; flex-shrink: 0; }
  .reg-side-privacy p { font-size: 0.82rem; color: var(--ink-mid); line-height: 1.65; }

  /* Contact Card */
  .reg-side-contact p { font-size: 0.82rem; color: var(--ink-mid); margin-bottom: 8px; }
  .reg-side-email {
    font-family: var(--ff-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--teal-dark);
    text-decoration: none;
  }
  .reg-side-email:hover { text-decoration: underline; }

  /* ── Responsive ── */
  @media (max-width: 860px) {
    .reg-inner { grid-template-columns: 1fr; }
    .reg-sidebar { position: static; }
    .reg-form-card { padding: 32px 24px; }
  }
  @media (max-width: 520px) {
    .reg-row-split { grid-template-columns: 1fr; }
    .reg-field-plz { max-width: 100%; }
    .reg-header { padding: 60px 5% 36px; }
  }

  /* ── Land-Dropdown ── */
  .reg-field select {
    font-family: var(--ff-body);
    font-size: 0.95rem;
    color: var(--ink);
    background: var(--cream);
    border: 1.5px solid rgba(30,26,20,0.15);
    border-radius: 10px;
    padding: 10px 14px;
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A7766' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .reg-field select:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(245,130,31,0.12);
  }

  /* ── Nicht-DACH-Hinweis ── */
  .non-dach-notice {
    background: linear-gradient(135deg, #f0fafa 0%, #e8f7f8 100%);
    border: 1.5px solid var(--teal-light);
    border-radius: 16px;
    padding: 36px 32px;
    text-align: center;
    margin: 8px 0 4px;
  }
  .non-dach-icon { font-size: 2.2rem; margin-bottom: 16px; }
  .non-dach-notice h3 {
    font-family: var(--ff-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
  }
  .non-dach-notice p {
    font-size: 0.88rem;
    color: var(--ink-mid);
    line-height: 1.7;
    max-width: 420px;
    margin: 0 auto 24px;
  }
  .non-dach-btn {
    display: inline-block;
    background: var(--teal);
    color: #fff;
    font-family: var(--ff-display);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
  }
  .non-dach-btn:hover { background: var(--teal-dark); transform: translateY(-1px); }

