*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy: #0e1b4d;
      --navy-mid: #1a2a6c;
      --blue: #2b3fa0;
      --blue-bright: #3451c7;
      --accent: #4361ee;
      --accent-light: #6c80f5;
      --white: #ffffff;
      --gray: #6b7280;
      --light-bg: #f0f3ff;
      --card-bg: rgba(255,255,255,0.06);
      --radius: 16px;
      --radius-sm: 10px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--white);
      color: var(--navy);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 24px;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(14,27,77,0.08);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .nav-logo img {
      width: 34px;
      height: 34px;
    }

    .nav-logo span {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 1.2rem;
      color: var(--navy);
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--accent);
      color: var(--white);
      font-family: 'Sora', sans-serif;
      font-weight: 600;
      font-size: 0.88rem;
      padding: 10px 20px;
      border-radius: 50px;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
    }

    .nav-cta:hover { background: var(--blue-bright); transform: translateY(-1px); }
    .nav-cta svg { width: 14px; height: 14px; }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 100px 24px 60px;
      background: linear-gradient(160deg, #eef1ff 0%, #f7f8ff 40%, #ffffff 100%);
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -200px; right: -200px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(67,97,238,0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -150px; left: -150px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(43,63,160,0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(67,97,238,0.1);
      color: var(--accent);
      font-family: 'Sora', sans-serif;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 50px;
      margin-bottom: 24px;
      opacity: 0;
      animation: fadeUp 0.6s ease 0.1s forwards;
    }

    .hero-badge::before {
      content: '';
      width: 7px; height: 7px;
      background: var(--accent);
      border-radius: 50%;
    }

    .hero h1 {
      font-family: 'Sora', sans-serif;
      font-weight: 800;
      font-size: clamp(2.2rem, 7vw, 3.8rem);
      line-height: 1.12;
      color: var(--navy);
      max-width: 700px;
      margin-bottom: 20px;
      opacity: 0;
      animation: fadeUp 0.7s ease 0.2s forwards;
    }

    .hero h1 em {
      font-style: normal;
      color: var(--accent);
    }

    .hero-sub {
      font-size: 1.1rem;
      color: var(--gray);
      max-width: 480px;
      line-height: 1.6;
      margin-bottom: 36px;
      opacity: 0;
      animation: fadeUp 0.7s ease 0.3s forwards;
    }

    .hero-checks {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px 20px;
      margin-bottom: 44px;
      opacity: 0;
      animation: fadeUp 0.7s ease 0.4s forwards;
    }

    .hero-checks li {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--navy);
    }

    .check-icon {
      width: 20px; height: 20px;
      background: rgba(67,97,238,0.12);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .check-icon svg { width: 11px; height: 11px; color: var(--accent); }

    .hero-cta-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      opacity: 0;
      animation: fadeUp 0.7s ease 0.5s forwards;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--accent);
      color: var(--white);
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 1.05rem;
      padding: 18px 40px;
      border-radius: 50px;
      text-decoration: none;
      box-shadow: 0 8px 32px rgba(67,97,238,0.35);
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      position: relative;
      overflow: hidden;
    }

    .btn-primary::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
      pointer-events: none;
    }

    .btn-primary:hover {
      background: var(--blue-bright);
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(67,97,238,0.45);
    }

    .btn-primary svg { width: 18px; height: 18px; }

    .hero-note {
      font-size: 0.82rem;
      color: var(--gray);
    }

    /* ── FEATURES ── */
    .features {
      background: var(--navy);
      padding: 80px 24px;
      position: relative;
    }

    .features::before {
      content: '';
      position: absolute;
      top: -2px; left: 0; right: 0;
      height: 60px;
      background: linear-gradient(to bottom right, #fff 49%, transparent 50%);
    }

    .section-label {
      font-family: 'Sora', sans-serif;
      font-size: 0.92rem;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: var(--accent-light);
      text-align: center;
      margin-bottom: 10px;
    }

    .section-title {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: clamp(1.6rem, 4.5vw, 2.2rem);
      text-align: center;
      color: var(--white);
      margin-bottom: 48px;
      line-height: 1.25;
    }

    .features-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      max-width: 640px;
      margin: 0 auto;
    }

    .feature-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius);
      padding: 24px;
      display: flex;
      gap: 18px;
      align-items: flex-start;
      transition: background 0.2s, transform 0.2s;
    }

    .feature-card:hover {
      background: rgba(255,255,255,0.1);
      transform: translateY(-2px);
    }

    .feature-icon {
      width: 48px; height: 48px;
      background: rgba(67,97,238,0.25);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .feature-icon svg { width: 22px; height: 22px; color: var(--accent-light); }

    .feature-card h3 {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      color: var(--white);
      margin-bottom: 6px;
    }

    .feature-card p {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.55;
    }

    /* ── FOR WHOM ── */
    .forwhom {
      padding: 80px 24px;
      background: var(--light-bg);
    }

    .forwhom .section-title { color: var(--navy); }
    .forwhom .section-label { color: var(--accent); }

    .forwhom-box {
      max-width: 580px;
      margin: 0 auto;
      background: var(--white);
      border-radius: var(--radius);
      padding: 32px 28px;
      box-shadow: 0 4px 32px rgba(14,27,77,0.08);
    }

    .forwhom-box p {
      font-size: 1rem;
      line-height: 1.65;
      color: #374151;
    }

    .forwhom-box p + p {
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid rgba(14,27,77,0.08);
      color: var(--gray);
    }

    /* ── CTA BOTTOM ── */
    .cta-bottom {
      background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
      padding: 80px 24px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-bottom::before {
      content: '';
      position: absolute;
      top: -100px; right: -100px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(108,128,245,0.2) 0%, transparent 65%);
    }

    .cta-bottom h2 {
      font-family: 'Sora', sans-serif;
      font-weight: 800;
      font-size: clamp(1.8rem, 5vw, 2.8rem);
      color: var(--white);
      margin-bottom: 16px;
      line-height: 1.2;
    }

    .cta-bottom p {
      color: rgba(255,255,255,0.65);
      font-size: 1rem;
      max-width: 400px;
      margin: 0 auto 40px;
      line-height: 1.6;
    }

    .btn-white {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--white);
      color: var(--accent);
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 1.05rem;
      padding: 18px 40px;
      border-radius: 50px;
      text-decoration: none;
      box-shadow: 0 8px 32px rgba(0,0,0,0.2);
      transition: transform 0.15s, box-shadow 0.2s;
    }

    .btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
    .btn-white svg { width: 18px; height: 18px; }

    /* ── FOOTER ── */
    footer {
      background: var(--navy);
      border-top: 1px solid rgba(255,255,255,0.07);
      padding: 32px 24px;
      text-align: center;
    }

    .footer-logo {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
      text-decoration: none;
    }

    .footer-logo img { width: 28px; height: 28px; }

    .footer-logo span {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      color: var(--white);
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 6px 4px;
      margin-bottom: 16px;
    }

    .footer-links a {
      color: rgba(255,255,255,0.45);
      font-size: 0.8rem;
      text-decoration: none;
      transition: color 0.2s;
      padding: 2px 8px;
    }

    .footer-links a:hover { color: rgba(255,255,255,0.9); }
    .footer-sep { color: rgba(255,255,255,0.2); font-size: 0.8rem; padding: 2px 0; }

    .footer-copy {
      color: rgba(255,255,255,0.25);
      font-size: 0.78rem;
    }

    /* ── LEGAL PAGES ── */
    .legal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(14,27,77,0.6);
      backdrop-filter: blur(4px);
      padding: 20px 16px;
      overflow-y: auto;
    }

    .legal-overlay.active { display: flex; align-items: flex-start; justify-content: center; }

    .legal-box {
      background: var(--white);
      border-radius: 20px;
      max-width: 680px;
      width: 100%;
      padding: 32px 28px;
      position: relative;
      margin: auto;
    }

    .legal-box h2 {
      font-family: 'Sora', sans-serif;
      font-weight: 800;
      font-size: 1.5rem;
      color: var(--navy);
      margin-bottom: 24px;
    }

    .legal-box h3 {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      color: var(--navy);
      margin: 20px 0 8px;
    }

    .legal-box p, .legal-box li {
      font-size: 0.88rem;
      line-height: 1.7;
      color: #374151;
    }

    .legal-box ul { padding-left: 20px; margin-top: 6px; }
    .legal-box li { margin-bottom: 4px; }
    .legal-box a { color: var(--accent); }

    .legal-close {
      position: absolute;
      top: 20px; right: 20px;
      background: var(--light-bg);
      border: none;
      border-radius: 50%;
      width: 36px; height: 36px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: var(--navy);
      transition: background 0.2s;
    }

    .legal-close:hover { background: #dde3ff; }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }

    /* ── LOGO aspect ratio fix ── */
    .nav-logo img, .footer-logo img {
      width: auto;
      height: 34px;
      object-fit: contain;
    }
    .footer-logo img { height: 28px; }

    /* ── 4 SCHRITTE ── */
    .steps {
      padding: 80px 24px;
      background: var(--white);
    }

    .steps-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      max-width: 640px;
      margin: 0 auto;
    }

    .step-card {
      background: var(--light-bg);
      border-radius: var(--radius);
      padding: 24px 20px;
      position: relative;
    }

    .step-num {
      width: 36px; height: 36px;
      background: var(--accent);
      color: var(--white);
      font-family: 'Sora', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
    }

    .step-card h3 {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--navy);
      margin-bottom: 6px;
    }

    .step-card p {
      font-size: 0.85rem;
      color: var(--gray);
      line-height: 1.55;
    }

    /* ── TOOLS ── */
    .tools {
      padding: 80px 24px;
      background: var(--navy);
    }

    .tools-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 14px;
      max-width: 640px;
      margin: 0 auto;
    }

    .tool-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius);
      padding: 20px;
      display: flex;
      gap: 16px;
      align-items: flex-start;
      transition: background 0.2s;
    }

    .tool-card:hover { background: rgba(255,255,255,0.1); }

    .tool-icon {
      width: 42px; height: 42px;
      background: rgba(67,97,238,0.25);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .tool-icon svg { width: 20px; height: 20px; color: var(--accent-light); }

    .tool-card h3 {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--white);
      margin-bottom: 4px;
    }

    .tool-card p {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.5;
    }

    /* ── FAQ ── */
    .faq {
      padding: 80px 24px;
      background: var(--light-bg);
    }

    .faq-list {
      max-width: 640px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .faq-item {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(14,27,77,0.06);
    }

    .faq-q {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px 22px;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--navy);
      transition: color 0.2s;
    }

    .faq-q:hover { color: var(--accent); }

    .faq-chevron {
      width: 18px; height: 18px;
      flex-shrink: 0;
      color: var(--gray);
      transition: transform 0.3s ease;
    }

    .faq-item.open .faq-chevron { transform: rotate(180deg); }
    .faq-item.open .faq-q { color: var(--accent); }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.3s ease;
      font-size: 0.9rem;
      color: var(--gray);
      line-height: 1.65;
      padding: 0 22px;
    }

    .faq-item.open .faq-a {
      max-height: 300px;
      padding: 0 22px 20px;
    }


    @media (min-width: 600px) {
      .features-grid { grid-template-columns: 1fr 1fr; }
      .tools-grid { grid-template-columns: 1fr 1fr; }
    }