@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ────────────────────────────────────────────────────────────────────────
   MyLISA Landingpage – CI-Redesign (2026-08-15, nachgebessert 2026-08-15)
   Farben & Typografie aus "MyLISA Pitch Deck CI.pdf" (Slide 17, "Marke & CI"):
   Navy #14213D · Teal #017E8C · Mint #02A6A0 · Amber #F4A259 · Spark #FFB703
   · Panel #F2F5FA. Wortmarke/Headlines: Baloo 2, Fließtext: Inter.
   Struktur/Text der Seite aus "mylisa-landingpage.pdf" (Konzeptentwurf).

   'Baloo 2' und 'Inter' werden per Google-Fonts-CDN geladen (@import oben,
   bewusste Ausnahme von der sonstigen "keine externen Abhängigkeiten"-
   Konvention dieser Seite, da keine Font-Dateien zum Selbsthosten vorlagen).
   ──────────────────────────────────────────────────────────────────────── */

  :root {
    --navy: #14213D;
    --teal: #017E8C;
    --mint: #02A6A0;
    --amber: #F4A259;
    --spark: #FFB703;
    --panel: #F2F5FA;

    --ink: var(--navy);
    --ink-soft: #55607A;
    --paper: #FFFFFF;
    --border: #E1E7F0;
    --line: rgba(20, 33, 61, 0.14);
    --radius: 14px;

    --font-display: 'Baloo 2', ui-rounded, 'Segoe UI', system-ui, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink-soft);
    background-color: var(--paper);
    line-height: 1.65;
    overflow-x: hidden;
  }

  a { color: var(--teal); }
  a:hover { color: var(--navy); }

  .wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

  /* ── Kopfzeile ── */
  header.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--border);
  }
  .topbar-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
  }
  .wordmark {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--teal);
    text-decoration: none;
  }
  .wordmark-accent { color: var(--navy); }
  .wordmark-dot { color: var(--spark); }

  .mainnav { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
  .mainnav a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
  }
  .mainnav a:hover { color: var(--teal); }
  .mainnav a.muted { color: var(--ink-soft); font-weight: 500; }

  /* ── Buttons ── */
  .btn {
    display: inline-block;
    background: var(--spark);
    color: var(--navy);
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 999px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: transform .12s ease, box-shadow .12s ease;
    font-family: var(--font-body);
    white-space: nowrap;
  }
  .btn:hover { transform: translateY(-2px); color: var(--navy); box-shadow: 0 6px 16px rgba(20, 33, 61, 0.18); }
  .btn.small { padding: 8px 18px; font-size: 0.88rem; }

  .btn-outline {
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
  }
  .btn-outline:hover { background: var(--teal); color: #fff; }

  .cta-muted {
    color: var(--ink-soft);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 13px 4px;
  }
  .cta-muted:hover { color: var(--teal); }

  /* ── Sektionen allgemein ── */
  section { padding: 72px 0; border-bottom: 1px solid var(--line); }
  section:last-of-type { border-bottom: none; }

  .eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 14px;
  }

  h1, h2, h3, h4 { font-family: var(--font-display); color: var(--navy); }
  h1 { font-size: clamp(2.4rem, 6vw, 3.6rem); margin: 4px 0 18px; line-height: 1.12; font-weight: 700; }
  h1 em { color: var(--teal); font-style: italic; }
  h2 { font-size: clamp(1.7rem, 4vw, 2.3rem); margin: 0 0 18px; line-height: 1.2; font-weight: 700; }
  h3.feature-group-title { font-size: 1.15rem; margin: 40px 0 16px; display: flex; align-items: center; }
  h4 { font-size: 1.05rem; margin: 0 0 8px; }

  .claim { font-size: 1.15rem; color: var(--ink-soft); max-width: 620px; margin: 0 auto 28px; }

  p { color: var(--ink-soft); }
  section p { max-width: 680px; }

  /* ── Hero ── */
  .hero { text-align: center; padding-top: 56px; }
  .hero .wrap { display: flex; flex-direction: column; align-items: center; gap: 4px; }
  .hero-ctas { display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; margin: 10px 0 8px; }

  .quote {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.5;
    color: var(--navy);
    border-left: 3px dashed var(--teal);
    text-align: left;
    padding: 4px 0 4px 22px;
    margin: 36px auto 0;
    max-width: 560px;
  }
  .quote-attrib { display: block; margin-top: 8px; font-size: 0.9rem; color: var(--ink-soft); font-style: normal; }

  /* ── "Was ist MyLISA?" (LISA-Akronym) ── */
  .lisa-intro {
    background: #1D263D; /* exakter Navy-Ton aus der Logo-Datei, bewusst nicht --navy,
                             damit der Bildrand nahtlos in den Sektionshintergrund übergeht */
    padding: 64px 0;
    text-align: center;
  }
  .lisa-logo {
    max-width: 340px;
    width: 100%;
    height: auto;
    margin: 0 auto 28px;
    display: block;
  }
  .lisa-claim {
    color: #C7D0E0;
    max-width: 560px;
    margin: 0 auto 40px;
    font-size: 1rem;
  }
  .lisa-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    text-align: left;
  }
  .lisa-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 14px;
    padding: 22px 20px;
  }
  .lisa-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 14px;
  }
  .lisa-card h4 {
    font-family: var(--font-display);
    color: #fff;
    font-size: 1rem;
    margin: 0 0 6px;
  }
  .lisa-card p {
    color: #C7D0E0;
    font-size: 0.9rem;
    margin: 0;
  }
  @media (max-width: 640px) {
    .lisa-grid { grid-template-columns: 1fr 1fr; }
  }

  /* ── Karten-Raster ── */
  .card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }
  .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

  .card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 22px;
  }
  .card h3, .card h4 { margin-top: 0; }
  .card p { margin-bottom: 0; max-width: none; }
  .card-icon { font-size: 1.7rem; display: block; margin-bottom: 10px; }

  .card-dashed {
    background: #fff;
    border: 1.5px dashed var(--border);
  }

  /* ── Feature-Gruppen ("Was heute schon läuft") ── */
  .feature-group:first-of-type h3.feature-group-title { margin-top: 8px; }
  .tick {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 3px;
    margin-right: 10px;
  }
  .tick-teal { background: var(--teal); }
  .tick-navy { background: var(--navy); }
  .tick-mint { background: var(--mint); }
  .tick-amber { background: var(--amber); }

  /* ── Status-Tags ("Noch nicht heute") ── */
  .tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 3px 11px;
    border-radius: 999px;
    margin-bottom: 10px;
  }
  .tag-amber { background: rgba(244, 162, 89, 0.16); color: #a15a1c; }
  .tag-teal  { background: rgba(1, 126, 140, 0.12); color: var(--teal); }
  .tag-navy  { background: rgba(20, 33, 61, 0.10); color: var(--navy); }

  /* ── Vertrauens-Liste ── */
  .trust-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--panel);
    padding: 22px 26px;
  }
  .trust-list li { color: var(--ink-soft); max-width: none; }
  .trust-list li b { color: var(--navy); }

  /* ── FAQ ── */
  .faq-item { border-bottom: 1px solid var(--line); }
  .faq-item summary {
    cursor: pointer;
    padding: 18px 0;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--navy);
    font-size: 1.02rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--teal);
    flex-shrink: 0;
    transition: transform 0.15s ease;
  }
  .faq-item[open] summary::after { transform: rotate(45deg); }
  .faq-item p { padding-bottom: 18px; margin: 0; }

  /* ── Schluss-CTA ── */
  footer.final-cta {
    background: var(--navy);
    color: #fff;
    text-align: center;
    padding: 72px 24px 56px;
  }
  footer.final-cta h2 { color: #fff; }
  footer.final-cta p { color: rgba(255, 255, 255, 0.85); max-width: 480px; margin: 0 auto 26px; }
  footer.final-cta .btn { font-size: 1.05rem; }
  footer.final-cta .fineprint { margin-top: 40px; font-size: 0.8rem; color: rgba(255, 255, 255, 0.6); }
  footer.final-cta .fineprint a { color: #fff; text-decoration: underline; }

  /* ── Rechtstexte: bewusst schlicht, keine verspielten Elemente ──
     Wird von impressum/index.html und datenschutz/index.html genutzt
     (siehe Klassen .legal / .wrap / .final-cta / .fineprint). */
  .legal { background: var(--panel); }
  .legal h2 {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--navy);
    font-size: 1.6rem;
    border-bottom: 2px solid var(--navy);
    padding-bottom: 10px;
    margin-bottom: 8px;
  }
  .legal h3 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy);
    margin: 26px 0 6px;
  }
  .legal p, .legal li { color: var(--ink-soft); max-width: 680px; }
  .legal ul { padding-left: 22px; }
  .legal .stand { color: var(--ink-soft); font-style: italic; margin: 12px 0 28px; font-size: 0.92rem; }
  .legal .todo {
    display: inline-block;
    background: #fff3cd; border: 1px solid #d9a900; color: #6b5300;
    padding: 1px 9px; border-radius: 6px; font-weight: 600; font-size: 0.92em;
    font-family: var(--font-body);
  }
  .legal address { font-style: normal; margin: 16px 0; color: var(--ink-soft); }

  @media (max-width: 760px) {
    .card-grid.cols-2, .card-grid.cols-3 { grid-template-columns: 1fr; }
  }

  @media (max-width: 600px) {
    section { padding: 48px 0; }
    .wrap { padding: 0 18px; }
    .mainnav { gap: 16px; }
  }
