/* =================================================================
   LanguageFast – Landing Page Stylesheet
   Geteilt über alle Sprachversionen (DE, EN, …).
   Ändere das Design EINMAL hier – es gilt automatisch überall.
   ================================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Marke */
  --navy:        #0b2341;
  --navy-800:    #0f2c52;
  --navy-700:    #163a6b;
  --blue:        #1d6fe0;   /* Primär-Aktion */
  --blue-bright: #3b9dff;   /* App-Verlauf hell */
  --blue-deep:   #1556b0;
  --red:         #d5121b;   /* Schweizer Rot */
  --red-deep:    #b00d15;

  /* Neutral */
  --ink:    #0c1726;
  --slate:  #3f4f63;
  --mute:   #6b7c91;
  --line:   #e4ebf3;
  --line-2: #eef3f9;
  --bg:     #f5f8fc;
  --bg-2:   #eef5ff;
  --card:   #ffffff;
  --white:  #ffffff;

  /* Verläufe & Atmosphäre */
  --grad-app:  linear-gradient(150deg, #3b9dff 0%, #1d6fe0 60%, #1556b0 100%);
  --grad-hero: radial-gradient(120% 120% at 80% -10%, #e7f2ff 0%, #f5f8fc 45%, #f5f8fc 100%);
  --grad-text: linear-gradient(100deg, #1d6fe0, #3b9dff);

  /* Radien */
  --r-sm: 12px;
  --r:    18px;
  --r-lg: 26px;
  --r-xl: 36px;
  --r-full: 999px;

  /* Schatten (geschichtet, weich) */
  --sh-sm: 0 1px 2px rgba(11,35,65,.06), 0 2px 8px rgba(11,35,65,.05);
  --sh:    0 4px 12px rgba(11,35,65,.07), 0 14px 34px rgba(11,35,65,.08);
  --sh-lg: 0 10px 24px rgba(11,35,65,.10), 0 30px 70px rgba(11,35,65,.16);
  --sh-blue: 0 18px 50px -12px rgba(29,111,224,.55);

  /* Layout */
  --maxw: 1180px;
  --pad: clamp(1.1rem, 4vw, 2rem);

  /* Typo */
  --font-display: "Clash Display", "Switzer", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Switzer", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: clamp(1rem, 0.97rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--red); color: #fff; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  word-spacing: 0.12em;
  color: var(--navy);
  overflow-wrap: break-word;
  hyphens: auto;
}
/* Lange Komposita (z. B. „Schweizerdeutsch") sauber umbrechen statt überlaufen */
p, li, summary { overflow-wrap: break-word; }

/* ---------- Layout-Helfer ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .9rem;
}
.section-head { max-width: 46rem; margin: 0 auto clamp(2.5rem, 5vw, 3.75rem); text-align: center; }
.section-head h2 { font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem); margin-bottom: .9rem; }
.section-head p { color: var(--slate); font-size: 1.12rem; }
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--navy); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-weight: 600; font-size: 1rem; padding: .85rem 1.55rem; border-radius: var(--r-full);
  border: 1px solid transparent; transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--navy); color: #fff; box-shadow: var(--sh); }
.btn-primary:hover { background: #11305a; transform: translateY(-2px); box-shadow: var(--sh-lg); }
.btn-blue { background: var(--grad-app); color: #fff; box-shadow: var(--sh-blue); }
.btn-blue:hover { transform: translateY(-2px); filter: brightness(1.04); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.25); }
.btn-ghost:hover { background: rgba(255,255,255,.16); }

/* App-Store-Badges */
.stores { display: flex; flex-wrap: wrap; gap: .9rem; }
.store-badge { max-width: 100%; }
.store-badge img { height: clamp(46px, 13vw, 54px); width: auto; max-width: 100%; border-radius: 11px; box-shadow: var(--sh); transition: transform .3s ease, box-shadow .3s ease; }
.store-badge:hover img { transform: translateY(-3px); box-shadow: var(--sh-lg); }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 70px; }
.brand { display: flex; align-items: center; gap: .65rem; font-family: var(--font-display); font-weight: 700; font-size: 1.28rem; color: var(--navy); letter-spacing: -.02em; }
.brand img { height: 38px; width: 38px; border-radius: 10px; }
.nav-links { display: none; align-items: center; gap: 2rem; font-weight: 500; }
.nav-links a { color: var(--slate); transition: color .2s; }
.nav-links a:hover { color: var(--blue); }
.nav-right { display: flex; align-items: center; gap: .8rem; }

/* Sprach-Umschalter (rein CSS, ohne JS) */
.lang { position: relative; }
.lang > summary {
  list-style: none; display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem .8rem; border-radius: var(--r-full); background: var(--bg-2);
  color: var(--navy); font-weight: 600; font-size: .9rem; border: 1px solid var(--line);
}
.lang > summary::-webkit-details-marker { display: none; }
.lang > summary::after { content: "▾"; font-size: .7rem; opacity: .6; }
.lang[open] > summary::after { transform: rotate(180deg); }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + .5rem); min-width: 190px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--sh-lg);
  padding: .4rem; z-index: 70; max-height: 60vh; overflow-y: auto;
}
.lang-menu a { display: flex; align-items: center; gap: .6rem; padding: .55rem .7rem; border-radius: var(--r-sm); font-size: .92rem; color: var(--slate); }
.lang-menu a:hover { background: var(--bg-2); color: var(--navy); }
.lang-menu a[aria-current="true"] { color: var(--navy); font-weight: 700; background: var(--bg-2); }

.nav-cta { display: none; }
.burger {
  display: inline-flex; flex-direction: column; gap: 5px; padding: 9px; border-radius: 10px;
  background: var(--bg-2); border: 1px solid var(--line);
}
.burger span { width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }
.mobile-menu { display: none; flex-direction: column; gap: .25rem; padding: .5rem var(--pad) 1.2rem; border-bottom: 1px solid var(--line); background: #fff; }
.mobile-menu.open { display: flex; }
.mobile-menu > a:not(.btn) { padding: .85rem .4rem; font-weight: 600; color: var(--navy); border-bottom: 1px solid var(--line-2); }
.mobile-menu .btn { margin-top: 1rem; width: 100%; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .burger { display: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--grad-hero); overflow: hidden; padding-block: clamp(3rem, 7vw, 6rem) clamp(4rem, 9vw, 7rem); }
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; z-index: 0; pointer-events: none;
}
.hero::before { width: 460px; height: 460px; background: #bcdcff; top: -120px; left: -120px; }
.hero::after  { width: 420px; height: 420px; background: #d7e8ff; bottom: -160px; right: -100px; }
.hero-grid { position: relative; z-index: 1; display: grid; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; }
.hero-grid > * { min-width: 0; }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.05fr .95fr; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem; padding: .45rem .9rem .45rem .55rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-full);
  font-size: .85rem; font-weight: 600; color: var(--navy); box-shadow: var(--sh-sm); margin-bottom: 1.4rem;
}
.hero-badge .flag { width: 22px; height: 22px; border-radius: 6px; display: grid; place-items: center; background: var(--red); color: #fff; font-weight: 800; font-size: .8rem; }
.hero h1 { font-size: clamp(2.5rem, 1.6rem + 4.2vw, 4.3rem); margin-bottom: 1.2rem; }
.hero h1 .grad { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: clamp(1.08rem, 1rem + .5vw, 1.3rem); color: var(--slate); max-width: 33rem; margin-bottom: 1.9rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-bottom: 1.7rem; }
.hero-proof {
  display: inline-flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  color: var(--slate); font-weight: 500;
  background: rgba(255,255,255,.7); border: 1px solid var(--line);
  border-radius: var(--r-full); padding: .6rem 1.2rem; box-shadow: var(--sh-sm);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.hero-proof strong { color: var(--navy); }
.hero-proof .proof-div { width: 1px; height: 22px; background: var(--line); flex: none; }
.stars { color: #f5a623; letter-spacing: 1px; font-size: 1.1rem; }
.dot { width: 5px; height: 5px; border-radius: 50%; background: #c2cedd; }

@media (max-width: 959px) {
  .hero-copy { text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-cta, .hero-proof { justify-content: center; }
}

/* Telefon-Mockup mit Video */
.phone-stage { position: relative; display: flex; justify-content: center; }
.phone {
  position: relative; width: min(310px, 78vw); aspect-ratio: 9 / 19.3;
  border-radius: 44px; padding: 9px; background: linear-gradient(160deg,#fff,#e9eef5);
  box-shadow: var(--sh-lg); border: 1px solid #fff; z-index: 2;
}
.phone video, .phone img { width: 100%; height: 100%; object-fit: cover; border-radius: 36px; background: #cfe2ff; }
.phone-glow { position: absolute; inset: -10% -8%; background: var(--grad-app); filter: blur(60px); opacity: .35; border-radius: 50%; z-index: 0; }
.float-card {
  position: absolute; background: #fff; border-radius: var(--r); box-shadow: var(--sh-lg);
  padding: .7rem .9rem; display: flex; align-items: center; gap: .6rem; z-index: 3; font-size: .85rem; font-weight: 600; color: var(--navy);
  border: 1px solid var(--line);
}
.float-card .ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; font-size: 1.1rem; }
.float-1 { top: 12%; left: -6%; }
.float-2 { bottom: 14%; right: -8%; }
@media (max-width: 520px) { .float-card { display: none; } }

/* ---------- Stat-Streifen ---------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; margin-top: clamp(2.5rem, 5vw, 3.5rem); }
@media (min-width: 720px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: #fff; padding: 1.6rem 1rem; text-align: center; }
.stat b { font-family: var(--font-display); font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.3rem); color: var(--navy); display: block; line-height: 1; }
.stat span { color: var(--mute); font-size: .9rem; font-weight: 500; }

/* ---------- Trust / Bern ---------- */
.trust { background: var(--navy); color: #fff; }
.trust-card { display: flex; gap: 1.4rem; align-items: center; max-width: 60rem; margin-inline: auto; text-align: left; flex-wrap: wrap; justify-content: center; }
.trust-card .seal { width: 64px; height: 64px; flex: none; }
.trust-card .seal svg { width: 100%; height: 100%; display: block; filter: drop-shadow(0 6px 14px rgba(213,18,27,.35)); }
.trust-card .t-body { flex: 1; min-width: 260px; }
.trust-card h4 { color: #fff; font-size: 1.12rem; margin-bottom: .35rem; }
.trust-card p { color: #c2d2e6; font-style: italic; font-size: .98rem; margin-bottom: .6rem; }
.trust-link { display: inline-flex; align-items: center; gap: .4rem; color: #7fc0ff; font-weight: 600; font-style: normal; font-size: .92rem; }
.trust-link:hover { color: #fff; }

/* ---------- Features ---------- */
.features-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }
.feature {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 2rem 1.7rem; box-shadow: var(--sh-sm); transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: #d4e4f7; }
.feature .ic { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; font-size: 1.6rem; margin-bottom: 1.3rem; background: var(--bg-2); }
.feature h3 { font-size: 1.22rem; margin-bottom: .6rem; }
.feature p { color: var(--slate); font-size: .98rem; }

/* ---------- Inhalt / dunkle Sektion ---------- */
.content { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.content::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px); background-size: 26px 26px; opacity: .6; }
.content-grid { position: relative; z-index: 1; display: grid; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; }
@media (min-width: 880px) { .content-grid { grid-template-columns: 1.1fr .9fr; } }
.content h2 { color: #fff; font-size: clamp(2rem, 1.5rem + 2vw, 2.9rem); margin-bottom: 1.1rem; }
.content > .content-grid p.lead { color: #c2d2e6; font-size: 1.12rem; margin-bottom: 1.8rem; }
.content .lead strong { color: #fff; }
.cat-list { display: grid; gap: .9rem; }
.cat-list li { display: flex; gap: .75rem; align-items: flex-start; color: #d3e0ee; }
.cat-list .chk { color: #7fc0ff; margin-top: .15rem; flex: none; }
.cat-list strong { color: #fff; }
.content-panel { background: var(--navy-700); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-lg); padding: clamp(1.6rem, 3vw, 2.4rem); }
.content-panel h3 { color: #fff; font-size: 1.18rem; margin: 1.4rem 0 .5rem; }
.content-panel h3:first-child { margin-top: 0; }
.content-panel p { color: #c2d2e6; font-size: .98rem; }

/* ---------- Galerie ---------- */
.gallery { display: flex; gap: 1.3rem; overflow-x: auto; padding: .5rem .25rem 2rem; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.gallery::-webkit-scrollbar { display: none; }
.gallery img {
  height: clamp(420px, 60vw, 520px); width: auto; border-radius: var(--r-lg);
  scroll-snap-align: center; box-shadow: var(--sh); border: 1px solid var(--line); flex: none;
}
.gallery-hint { text-align: center; color: var(--mute); font-size: .88rem; margin-top: -.5rem; }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; gap: 1.3rem; grid-template-columns: 1fr; }
@media (min-width: 620px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(4, 1fr); } }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.6rem; box-shadow: var(--sh-sm); display: flex; flex-direction: column; }
.review .stars { margin-bottom: .8rem; }
.review blockquote { flex: 1; margin-bottom: 1.1rem; }
.review p { color: var(--slate); font-size: .98rem; }
.review .meta { display: flex; justify-content: space-between; align-items: center; font-size: .85rem; }
.review .meta b { color: var(--navy); }
.review .meta span { color: var(--mute); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 50rem; margin-inline: auto; display: grid; gap: .9rem; }
.faq {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: box-shadow .25s, border-color .25s;
}
.faq[open] { box-shadow: var(--sh); border-color: #d4e4f7; }
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem; font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: 1.08rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--bg-2); color: var(--blue); display: grid; place-items: center; transition: transform .3s; font-size: 1.1rem; }
.faq[open] summary .pm { transform: rotate(45deg); }
.faq-body { padding: 0 1.5rem 1.4rem; color: var(--slate); }

/* ---------- Pricing ---------- */
.pricing { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.pricing::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px); background-size: 30px 30px; }
.pricing .wrap { position: relative; z-index: 1; text-align: center; }
.pricing h2 { color: #fff; font-size: clamp(2rem, 1.5rem + 2.6vw, 3.2rem); margin-bottom: 1rem; }
.pricing .lead { color: #9fc3ee; font-size: 1.18rem; max-width: 40rem; margin: 0 auto 2.8rem; }

.plan-grid { display: grid; gap: 1.4rem; max-width: 48rem; margin-inline: auto; text-align: left; }
@media (min-width: 760px) { .plan-grid { grid-template-columns: 1fr 1fr; align-items: stretch; gap: 1.6rem; } }
.plan {
  background: #fff; color: var(--ink); border-radius: var(--r-xl);
  padding: clamp(1.7rem, 3.5vw, 2.5rem); box-shadow: var(--sh-lg);
  display: flex; flex-direction: column; position: relative;
  border: 1px solid var(--line);
}
.plan.is-premium {
  border: 2px solid var(--blue);
  background: linear-gradient(180deg, #f4f9ff 0%, #ffffff 26%);
}
.plan-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad-app); color: #fff; font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: .35rem 1rem;
  border-radius: var(--r-full); white-space: nowrap; box-shadow: var(--sh-blue);
}
.plan-head { border-bottom: 1px solid var(--line); padding-bottom: 1.3rem; margin-bottom: 1.4rem; }
.plan-name {
  display: inline-block; font-family: var(--font-display); font-weight: 600;
  font-size: .8rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue); background: var(--bg-2); padding: .3rem .8rem; border-radius: var(--r-full); margin-bottom: .9rem;
}
.plan-price { font-family: var(--font-display); font-size: clamp(1.7rem, 1.3rem + 1.5vw, 2.1rem); color: var(--navy); line-height: 1.1; }
.plan-price small { font-size: .9rem; color: var(--mute); font-weight: 500; }
.plan-sub { color: var(--mute); font-size: .92rem; margin-top: .5rem; }
.plan-list { display: grid; gap: .9rem; margin-bottom: 1.6rem; flex: 1; }
.plan-list li { display: flex; gap: .7rem; align-items: flex-start; font-size: .96rem; font-weight: 500; color: var(--slate); }
.plan-list strong { color: var(--ink); }
.plan-list .chk { width: 22px; height: 22px; border-radius: 50%; background: #e6f7ec; color: #1a9d4d; display: grid; place-items: center; flex: none; font-size: .78rem; margin-top: .15rem; }
.plan-cta { width: 100%; margin-top: auto; }
.plan-foot { margin-top: auto; color: var(--mute); font-size: .9rem; font-weight: 600; text-align: center; padding-top: .4rem; }
.plan-note { color: #9fc3ee; font-size: .85rem; margin-top: 2rem; text-align: center; }

/* Bestehende Einzelkarte (Fallback) */
.price-card { background: #fff; color: var(--ink); border-radius: var(--r-xl); padding: clamp(1.8rem, 4vw, 3rem); max-width: 38rem; margin-inline: auto; box-shadow: var(--sh-lg); text-align: left; }
.price-top { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: flex-start; border-bottom: 1px solid var(--line); padding-bottom: 1.6rem; margin-bottom: 1.6rem; }
.price-top h3 { font-size: 1.5rem; margin-bottom: .25rem; }
.price-top p { color: var(--mute); font-size: .95rem; }
.price-tag { text-align: right; }
.price-tag b { font-family: var(--font-display); font-size: 1.7rem; color: var(--navy); display: block; }
.price-tag .pill { display: inline-block; margin-top: .4rem; background: var(--bg-2); color: var(--blue); font-weight: 700; font-size: .8rem; padding: .25rem .65rem; border-radius: var(--r-full); }
.price-list { display: grid; gap: 1rem; margin-bottom: 1.8rem; }
.price-list li { display: flex; gap: .7rem; align-items: center; font-weight: 500; }
.price-list .chk { width: 24px; height: 24px; border-radius: 50%; background: #e6f7ec; color: #1a9d4d; display: grid; place-items: center; flex: none; }

/* ---------- Download CTA ---------- */
.download { background: var(--bg); border-top: 1px solid var(--line); text-align: center; }
.download h2 { font-size: clamp(1.9rem, 1.4rem + 2.2vw, 2.7rem); margin-bottom: 1rem; }
.download p { color: var(--slate); font-size: 1.12rem; max-width: 38rem; margin: 0 auto 2.2rem; }
.download .stores { justify-content: center; }

/* ---------- Footer ---------- */
.footer { background: #081626; color: #93a6bd; font-size: .92rem; padding-block: 3rem; }
.footer-top { display: grid; gap: 2rem; align-items: center; justify-items: center; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.08); }
@media (min-width: 760px) { .footer-top { grid-template-columns: 1fr 1fr 1fr; justify-items: stretch; } }
.footer .brand { color: #fff; }
.footer .brand img { filter: grayscale(1); opacity: .85; height: 32px; width: 32px; }
.footer-mid { text-align: center; }
.footer-mid a { color: #6db4ff; font-weight: 600; }
.footer-mid a:hover { color: #fff; }
.footer-links { display: flex; gap: 1.6rem; justify-content: center; flex-wrap: wrap; }
@media (min-width: 760px) { .footer-links { justify-content: flex-end; } }
.footer-links a:hover { color: #fff; }
.footer-bottom { text-align: center; color: #5e718a; font-size: .8rem; margin-top: 2rem; }

/* ---------- Inhalts­seiten (Datenschutz / Impressum) ---------- */
.doc-page { background: var(--bg); padding-block: clamp(2rem, 5vw, 4rem); min-height: 60vh; }
.doc-head { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 40; }
.doc-head .nav-inner { height: 64px; }
.doc-head .back { color: var(--blue); font-weight: 600; font-size: .92rem; }
.doc-head .back:hover { color: var(--navy); }
.doc { max-width: 52rem; margin-inline: auto; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.8rem, 5vw, 3.5rem); box-shadow: var(--sh-sm); scroll-margin-top: 84px; }
.doc + .doc { margin-top: 1.4rem; }
.doc h1 { font-size: clamp(1.9rem, 1.5rem + 1.6vw, 2.4rem); margin-bottom: .4rem; }
.doc .updated { color: var(--mute); font-weight: 600; margin-bottom: 2rem; }
.doc h2 { font-size: 1.25rem; margin: 2rem 0 .8rem; }
.doc h3 { font-size: 1.05rem; margin: 1.4rem 0 .5rem; color: var(--navy); }
.doc p, .doc li { color: var(--slate); }
.doc p { margin-bottom: 1rem; }
.doc ul { list-style: disc; padding-left: 1.3rem; margin-bottom: 1rem; display: grid; gap: .4rem; }
.doc a { color: var(--blue); }
.doc a:hover { text-decoration: underline; }

/* Sprach-Anker-Leiste für Doku-Seiten */
.lang-tabs { max-width: 52rem; margin: 0 auto 1.4rem; display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.lang-tabs a { display: inline-flex; align-items: center; gap: .4rem; padding: .45rem .9rem; border-radius: var(--r-full); background: #fff; border: 1px solid var(--line); color: var(--slate); font-weight: 600; font-size: .88rem; box-shadow: var(--sh-sm); }
.lang-tabs a:hover { color: var(--navy); border-color: #d4e4f7; }

/* ---------- Scroll-Reveal (nur mit JS aktiv, Fallback bleibt sichtbar) ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
}

/* Hero-Einblendung beim Laden (gestaffelt) */
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.hero-copy > * { animation: rise .8s both cubic-bezier(.2,.7,.3,1); }
.hero-copy > *:nth-child(1) { animation-delay: .05s; }
.hero-copy > *:nth-child(2) { animation-delay: .15s; }
.hero-copy > *:nth-child(3) { animation-delay: .25s; }
.hero-copy > *:nth-child(4) { animation-delay: .35s; }
.hero-copy > *:nth-child(5) { animation-delay: .45s; }
.phone-stage { animation: rise 1s .35s both cubic-bezier(.2,.7,.3,1); }
@media (prefers-reduced-motion: reduce) {
  .hero-copy > *, .phone-stage { animation: none; }
}
