/* ============================================================
   app2dat.com — Website-Stylesheet
   Designsystem der App: Navy-Shell + oranger Faden
   Farbquellen: MyCustomTheme (app2dat.Shared MainLayout)
   ============================================================ */

/* ---- Schrift: Manrope (lokal, SIL OFL — siehe fonts/OFL-Manrope.txt) ---- */
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin-ext.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---- Design-Tokens ---- */
:root {
  /* Marke (identisch mit dem App-Theme) */
  --navy-950: #020F2B;   /* Shell dunkel */
  --navy-800: #0D2452;
  --navy-700: #14284B;
  --navy-600: #1B3A66;   /* AppBar hell */
  --primary: #1D5BBF;
  --primary-soft: rgba(29, 91, 191, 0.09);
  --primary-pale: #9DC1F8;
  --orange: #F57B27;
  --orange-dark: #D96410;
  --orange-soft: rgba(245, 123, 39, 0.11);
  --canvas: #F4F6FA;
  --surface: #FFFFFF;
  --ink: #16233B;
  --ink-muted: #51607A;
  --border: #D9E2EF;
  --border-soft: #E7EDF5;
  --ok: #1A7F53;
  --shell-text: #E8EDF6;
  --shell-text-2: #B9C6DE;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(3, 23, 61, 0.06), 0 2px 8px rgba(3, 23, 61, 0.06);
  --shadow-md: 0 2px 6px rgba(3, 23, 61, 0.07), 0 10px 28px rgba(3, 23, 61, 0.10);
  --shadow-lg: 0 4px 12px rgba(3, 23, 61, 0.10), 0 22px 56px rgba(3, 23, 61, 0.16);
  --container: 1160px;
  --header-h: 64px;
}

/* ---- Basis ---- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--canvas);
  color: var(--ink);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { line-height: 1.22; margin: 0 0 0.5em; color: var(--navy-700); font-weight: 800; letter-spacing: -0.015em; }
p { margin: 0.8em 0; }
ul { margin: 0.8em 0; padding-left: 1.4em; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 4px; }
::selection { background: rgba(29, 91, 191, 0.18); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(16px, 4vw, 32px); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--orange); color: #fff; padding: 0.6em 1.2em; border-radius: 0 0 10px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  border-radius: 10px; border: 2px solid transparent;
  padding: 0.78em 1.5em;
  font: inherit; font-weight: 700; font-size: 1rem;
  cursor: pointer; text-decoration: none !important; text-align: center;
  transition: background 0.16s, border-color 0.16s, color 0.16s, transform 0.12s, box-shadow 0.16s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn .ico { width: 21px; height: 21px; flex-shrink: 0; }

.btn-cta { background: var(--orange); color: #fff; box-shadow: 0 6px 18px rgba(245, 123, 39, 0.35); }
.btn-cta:hover { background: var(--orange-dark); box-shadow: 0 8px 22px rgba(245, 123, 39, 0.42); }

.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: #17499A; }

.btn-ghost { border-color: rgba(255, 255, 255, 0.55); color: #fff; background: rgba(255, 255, 255, 0.04); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }

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

.btn-lg { font-size: 1.08rem; padding: 0.92em 1.9em; border-radius: 12px; }

/* ---- Icons ---- */
.ico { width: 24px; height: 24px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--navy-600);
  color: var(--shell-text);
  height: var(--header-h);
  transition: box-shadow 0.2s, background 0.2s;
}
.site-header.scrolled { box-shadow: 0 4px 18px rgba(2, 15, 43, 0.35); background: var(--navy-700); }
.header-inner { display: flex; align-items: center; gap: 1rem; height: var(--header-h); }

.brand { display: inline-flex; align-items: center; text-decoration: none !important; line-height: 1; }
.brand-img { height: 30px; width: auto; display: block; }
/* Wortmarke inline im Fließtext/Überschrift (z. B. „Mit [Logo]") —
   vertical-align setzt die Grundlinie der Wortmarke auf die Text-Grundlinie */
.brand-inline { height: 1.15em; width: auto; display: inline-block; vertical-align: -0.26em; }

.main-nav { display: flex; align-items: center; gap: 0.25rem; margin-left: auto; }
.main-nav a {
  color: var(--shell-text-2); text-decoration: none !important; font-weight: 600; font-size: 0.97rem;
  padding: 0.5em 0.8em; border-radius: 8px; transition: color 0.15s, background 0.15s;
}
.main-nav a:hover { color: #fff; background: rgba(255, 255, 255, 0.08); }

.header-actions { display: flex; align-items: center; gap: 0.6rem; }
.header-cta { padding: 0.55em 1.15em; font-size: 0.95rem; }

/* Sprachumschalter */
.lang-switch { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 0.4em;
  background: rgba(255, 255, 255, 0.07); color: var(--shell-text);
  border: 1px solid rgba(255, 255, 255, 0.22); border-radius: 10px;
  padding: 0.45em 0.75em; font: inherit; font-weight: 700; font-size: 0.9rem; cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.lang-btn:hover { background: rgba(255, 255, 255, 0.14); }
.lang-btn .ico { width: 17px; height: 17px; }
.lang-btn .chev { width: 13px; height: 13px; transition: transform 0.15s; }
.lang-switch.open .chev { transform: rotate(180deg); }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 8px); min-width: 160px;
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 6px; z-index: 250;
  display: none;
}
.lang-switch.open .lang-menu { display: block; }
.lang-menu button {
  display: flex; align-items: center; gap: 0.5em; width: 100%;
  background: none; border: none; border-radius: 8px;
  padding: 0.55em 0.8em; font: inherit; font-weight: 600; font-size: 0.95rem;
  color: var(--ink); cursor: pointer; text-align: left;
}
.lang-menu button:hover { background: var(--canvas); }
.lang-menu button.active { background: var(--primary-soft); color: var(--primary); font-weight: 800; }
.lang-menu button.active::after { content: "✓"; margin-left: auto; }

/* Mobile-Navigation */
.nav-toggle {
  display: none; background: none; border: none; color: var(--shell-text); cursor: pointer;
  padding: 8px; border-radius: 8px; min-width: 42px; min-height: 42px;
  align-items: center; justify-content: center;
}
.nav-toggle:hover { background: rgba(255, 255, 255, 0.1); }

@media (max-width: 980px) {
  .main-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: var(--navy-700);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 0.5rem 1rem 1.1rem;
    display: none; box-shadow: 0 18px 30px rgba(2, 15, 43, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.85em 0.6em; border-radius: 8px; font-size: 1.05rem; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .header-actions { margin-left: 0; }
  .header-cta { display: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(245, 123, 39, 0.16), transparent 60%),
    radial-gradient(700px 420px at -10% 110%, rgba(29, 91, 191, 0.35), transparent 60%),
    linear-gradient(150deg, var(--navy-600) 0%, var(--navy-800) 55%, var(--navy-950) 100%);
  color: var(--shell-text);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1.6px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 75%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 75%);
}
.hero-inner {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.5rem, 5vw, 4rem); align-items: center;
  padding-top: clamp(3rem, 7vw, 5.5rem);
  padding-bottom: clamp(4.5rem, 8vw, 7rem);
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: #FFB075; margin-bottom: 1.1rem;
}
.hero-tag::before { content: ""; width: 26px; height: 3px; border-radius: 2px; background: var(--orange); }
.hero h1 {
  color: #fff; font-size: clamp(2.3rem, 5.2vw, 3.7rem); font-weight: 800;
  letter-spacing: -0.025em; margin: 0 0 1rem; line-height: 1.08;
}
.hero h1 .accent { color: var(--orange); }
.hero-sub { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: #C6D3E8; max-width: 34em; margin: 0 0 1.8rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 1.1rem; }
.hero-note { display: flex; align-items: flex-start; gap: 0.5em; font-size: 0.9rem; color: var(--shell-text-2); max-width: 32em; margin: 0; }
.hero-note .ico { width: 17px; height: 17px; margin-top: 3px; flex-shrink: 0; color: var(--primary-pale); }

.hero-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.6rem; }
.hero-pills span {
  display: inline-flex; align-items: center; gap: 0.45em;
  background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.16);
  color: #DCE8FB; padding: 0.34em 0.85em; border-radius: 999px;
  font-size: 0.86rem; font-weight: 600;
}
.hero-pills .ico { width: 15px; height: 15px; color: var(--primary-pale); }

/* Screenshots: flache Darstellung ohne Rahmen und Abrundung (echte App-Proportionen) */
.screenshot-flat {
  display: block; margin: 0 auto;
  width: min(320px, 82vw); height: auto;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: #fff;
}
.hero .screenshot-flat, .pwa-card .screenshot-flat {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 30px 70px rgba(2, 15, 43, 0.55), 0 8px 22px rgba(2, 15, 43, 0.4);
}

/* Anker für die Badges = exakt die Bildbreite, damit „1/3 außerhalb" am Bildrand misst */
.hero-phone-wrap { position: relative; width: min(320px, 82vw); margin: 0 auto; }
.hero-phone-wrap .screenshot-flat { width: 100%; }
.hero-badge {
  position: absolute; z-index: 3;
  background: var(--surface); color: var(--ink); border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: 0.6em 0.95em;
  display: flex; align-items: center; gap: 0.6em;
  font-size: 0.86rem; font-weight: 700; line-height: 1.25;
}
.hero-badge .ico { width: 26px; height: 26px; padding: 5px; border-radius: 8px; box-sizing: content-box; }
.hero-badge small { display: block; font-weight: 600; color: var(--ink-muted); font-size: 0.78rem; }
/* leicht gedreht, ragt etwas über den Bildrand hinaus */
.hero-badge-1 { top: 30%; left: 0; transform: translateX(-18%) rotate(-5deg); }
.hero-badge-1 .ico { background: var(--orange-soft); color: var(--orange); }
.hero-badge-2 { bottom: 7%; right: 0; transform: translateX(10%) rotate(4deg); }
.hero-badge-2 .ico { background: var(--primary-soft); color: var(--primary); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding-bottom: 5.5rem; }
  .hero-phone-wrap { margin: 0.5rem auto 0; }
}
@media (max-width: 480px) {
  .hero-ctas .btn { flex: 1 1 100%; }
  /* Badges bleiben sichtbar — Bild schmaler + Badges kompakter,
     damit der 1/3-Überhang aufs Display passt */
  .hero-phone-wrap { width: min(320px, 72vw); }
  .hero-badge { font-size: 0.76rem; padding: 0.5em 0.75em; gap: 0.5em; max-width: 176px; }
  .hero-badge .ico { width: 20px; height: 20px; padding: 4px; }
  /* Überhang mobil reduziert, damit nichts am Displayrand abgeschnitten wird */
  .hero-badge-1 { transform: translateX(-11%) rotate(-5deg); }
  .hero-badge-2 { transform: translateX(3%) rotate(4deg); }
}

/* ---- Statistikband (überlappt Hero) ---- */
.stat-band { position: relative; z-index: 5; margin-top: -3.2rem; }
.stat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  overflow: hidden;
}
.stat { padding: 1.5rem 1.2rem; text-align: center; border-left: 1px solid var(--border-soft); }
.stat:first-child { border-left: none; }
.stat-num { font-size: 2.05rem; font-weight: 800; color: var(--primary); line-height: 1.1; letter-spacing: -0.02em; }
.stat-num .accent { color: var(--orange); }
.stat-label { font-size: 0.88rem; color: var(--ink-muted); margin-top: 0.3rem; font-weight: 600; }
@media (max-width: 760px) {
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .stat { border-top: 1px solid var(--border-soft); }
  .stat:nth-child(-n+2) { border-top: none; }
  .stat:nth-child(odd) { border-left: none; }
}

/* ============================================================
   Sektionen
   ============================================================ */
.section { padding: clamp(3.4rem, 7vw, 5.6rem) 0; }
.section-alt { background: var(--surface); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.section-head { max-width: 720px; margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5em;
  color: var(--orange-dark); font-size: 0.8rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.8rem;
}
.eyebrow::before { content: ""; width: 22px; height: 3px; border-radius: 2px; background: var(--orange); }
.section-head.center .eyebrow::after { content: ""; width: 22px; height: 3px; border-radius: 2px; background: var(--orange); }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.45rem); margin: 0 0 0.55rem; }
.section-head p { color: var(--ink-muted); font-size: 1.06rem; margin: 0; }

/* ---- Problem/Lösung ---- */
.chaos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.2rem, 3vw, 2rem); align-items: stretch; }
.chaos-card, .order-card { border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2.1rem); }
.chaos-card { background: var(--canvas); border: 1px dashed var(--border); }
.chaos-card h3, .order-card h3 { font-size: 1.22rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.55em; }
.chaos-card h3 { color: var(--ink-muted); }
.chaos-list, .order-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.65rem; }
.chaos-list li, .order-list li { display: flex; gap: 0.65em; align-items: flex-start; font-size: 0.99rem; }
.chaos-list .ico, .order-list .ico { width: 21px; height: 21px; flex-shrink: 0; margin-top: 2px; }
.chaos-list li { color: var(--ink-muted); }
.chaos-list .ico { color: #C0392B; }
.order-card { background: linear-gradient(150deg, var(--navy-600), var(--navy-800)); color: var(--shell-text); box-shadow: var(--shadow-md); }
.order-card h3 { color: #fff; }
.order-list li { color: #D5E0F2; }
.order-list .ico { color: #6FDCA0; }
.order-list strong { color: #fff; }
@media (max-width: 820px) { .chaos-grid { grid-template-columns: 1fr; } }

/* ---- Feature-Karten ---- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.05rem; }
.feature-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.35rem 1.35rem 1.25rem;
  transition: transform 0.16s, box-shadow 0.16s, border-color 0.16s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--primary-pale); }
.fc-ico {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-soft); color: var(--primary);
  margin-bottom: 0.85rem;
}
.feature-card:nth-child(3n+2) .fc-ico { background: var(--orange-soft); color: var(--orange-dark); }
.fc-ico .ico { width: 23px; height: 23px; }
.feature-card h3 { font-size: 1.06rem; margin: 0 0 0.3rem; }
.feature-card p { margin: 0; font-size: 0.93rem; color: var(--ink-muted); line-height: 1.55; }

/* ---- Zielgruppen ---- */
.aud-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 0.95rem; }
.aud-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.3rem 1rem; text-align: center;
  transition: transform 0.16s, box-shadow 0.16s;
}
.aud-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.aud-ico { font-size: 1.9rem; line-height: 1; }
.aud-card h3 { font-size: 1rem; margin: 0.55rem 0 0.25rem; }
.aud-card p { margin: 0; font-size: 0.85rem; color: var(--ink-muted); }
.aud-more { text-align: center; color: var(--ink-muted); margin-top: 1.4rem; font-size: 0.98rem; }

/* ---- Split-Layout (Text + Telefon) ---- */
.split { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); gap: clamp(1.8rem, 5vw, 4.5rem); align-items: center; }
.split.rev > .split-media { order: -1; }
.split h2 { font-size: clamp(1.65rem, 3.2vw, 2.3rem); }
.split .lead { color: var(--ink-muted); font-size: 1.05rem; }
.split-media { position: relative; }
.split-points { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: 1.05rem; }
.split-points li { display: flex; gap: 0.9em; align-items: flex-start; }
.split-points .pt-ico {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-soft); color: var(--primary);
}
.split-points li:nth-child(even) .pt-ico { background: var(--orange-soft); color: var(--orange-dark); }
.split-points .pt-ico .ico { width: 20px; height: 20px; }
.split-points h3 { font-size: 1.03rem; margin: 0 0 0.15rem; }
.split-points p { margin: 0; font-size: 0.94rem; color: var(--ink-muted); }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split.rev > .split-media { order: 0; }
  .split-media { max-width: 360px; margin: 0 auto; }
}

/* ---- Hinweiskasten ---- */
.callout {
  display: flex; gap: 0.9em; align-items: flex-start;
  border: 1px solid var(--border); border-left: 4px solid var(--ok);
  background: rgba(26, 127, 83, 0.07); border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.2rem; margin-top: 1.6rem; font-size: 0.96rem;
}
.callout .ico { color: var(--ok); flex-shrink: 0; margin-top: 2px; }
.callout p { margin: 0; color: var(--ink); }
.callout strong { display: block; margin-bottom: 0.15em; }

/* ---- QR-Video-Sektion ---- */
.qr-section {
  background:
    radial-gradient(700px 400px at 110% 10%, rgba(245, 123, 39, 0.14), transparent 55%),
    linear-gradient(150deg, var(--navy-700), var(--navy-950));
  color: var(--shell-text);
}
.qr-section .eyebrow { color: #FFB075; }
.qr-section h2 { color: #fff; }
.qr-section .section-head p { color: #BCCBE3; }
.qr-grid { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: clamp(1.8rem, 4.5vw, 4rem); align-items: center; }
.qr-video-card {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16), var(--shadow-lg);
  background: #000;
}
.qr-video-card video { width: 100%; height: auto; display: block; }
.qr-points { list-style: none; margin: 1.3rem 0 0; padding: 0; display: grid; gap: 0.85rem; }
.qr-points li { display: flex; gap: 0.7em; align-items: flex-start; color: #D5E0F2; font-size: 0.99rem; }
.qr-points .ico { color: var(--orange); flex-shrink: 0; margin-top: 2px; width: 21px; height: 21px; }
.qr-points strong { color: #fff; }
@media (max-width: 860px) { .qr-grid { grid-template-columns: 1fr; } }

/* ---- Screenshot-Galerie ---- */
.gallery-wrap { position: relative; }
.gallery {
  display: grid; grid-auto-flow: column; grid-auto-columns: min(240px, 62vw);
  gap: 1.1rem; overflow-x: auto; padding: 0.5rem 0.25rem 1.2rem;
  scroll-snap-type: x mandatory; scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.gallery::-webkit-scrollbar { height: 8px; }
.gallery::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.shot { scroll-snap-align: start; }
.shot-frame {
  overflow: hidden; background: #fff;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: transform 0.16s, box-shadow 0.16s;
}
.shot:hover .shot-frame { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.shot-frame img { width: 100%; height: auto; }
.shot figcaption { text-align: center; font-size: 0.88rem; font-weight: 700; color: var(--ink-muted); margin-top: 0.65rem; }
.gallery-nav {
  position: absolute; top: 38%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--surface); color: var(--navy-700);
  border: 1px solid var(--border); box-shadow: var(--shadow-md); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, transform 0.15s;
}
.gallery-nav:hover { background: var(--canvas); transform: translateY(-50%) scale(1.05); }
.gallery-nav.prev { left: -12px; }
.gallery-nav.next { right: -12px; }
@media (max-width: 700px) { .gallery-nav { display: none; } }

/* ---- Schritte ---- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; counter-reset: step; }
.step {
  position: relative; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.9rem 1.4rem 1.4rem; margin-top: 16px;
}
.step-n {
  position: absolute; top: -17px; left: 1.3rem;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; box-shadow: 0 4px 12px rgba(245, 123, 39, 0.4);
}
.step h3 { font-size: 1.12rem; margin: 0 0 0.3rem; }
.step p { margin: 0; font-size: 0.94rem; color: var(--ink-muted); }
@media (max-width: 780px) { .steps { grid-template-columns: 1fr; } }

/* ---- Download / Plattformen ---- */
.pwa-card {
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(1.5rem, 4vw, 3rem); align-items: center;
  background:
    radial-gradient(560px 300px at 100% 0%, rgba(245, 123, 39, 0.18), transparent 55%),
    linear-gradient(150deg, var(--navy-600), var(--navy-950));
  color: var(--shell-text);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: clamp(1.8rem, 4.5vw, 3.2rem);
  margin-bottom: 1.4rem;
}
.pwa-card h3 { color: #fff; font-size: clamp(1.45rem, 2.6vw, 1.9rem); margin: 0 0 0.6rem; }
.pwa-card p { color: #C6D3E8; margin: 0 0 1.4rem; font-size: 1rem; }
.pwa-chip {
  display: inline-flex; align-items: center; gap: 0.45em;
  background: rgba(245, 123, 39, 0.16); border: 1px solid rgba(245, 123, 39, 0.45);
  color: #FFB075; font-size: 0.8rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 999px; padding: 0.3em 0.9em; margin-bottom: 1rem;
}
.pwa-art { display: flex; justify-content: center; }
.pwa-art .screenshot-flat { width: min(300px, 100%); }
.pwa-hint { display: flex; align-items: center; gap: 0.5em; font-size: 0.88rem; color: var(--shell-text-2); margin-top: 0.9rem; }
.pwa-hint .ico { width: 17px; height: 17px; color: var(--primary-pale); }

.store-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.05rem; }
.store-card {
  position: relative; display: flex; align-items: center; gap: 0.95em;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.15rem 1.3rem;
  color: inherit; text-decoration: none !important;
  transition: transform 0.16s, box-shadow 0.16s, border-color 0.16s;
}
a.store-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--primary-pale); }
.store-ico {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px;
  background: var(--navy-700); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.store-ico .ico { width: 24px; height: 24px; }
.store-card small { display: block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-muted); }
.store-card .store-name { font-weight: 800; font-size: 1.05rem; color: var(--navy-700); line-height: 1.2; }
.store-card.soon { opacity: 0.9; }
.store-card.soon .store-ico { background: var(--canvas); color: var(--ink-muted); border: 1px solid var(--border); }
.soon-flag {
  position: absolute; top: -11px; right: 14px;
  background: var(--orange); color: #fff;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.22em 0.75em; border-radius: 999px; box-shadow: 0 3px 10px rgba(245, 123, 39, 0.4);
}
@media (max-width: 860px) {
  .pwa-card { grid-template-columns: 1fr; }
  .store-grid { grid-template-columns: 1fr; }
}

/* ---- FAQ ---- */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 0.75rem; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.faq-item[open] { border-color: var(--primary-pale); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 0.8em;
  padding: 1.05rem 1.25rem; font-weight: 700; font-size: 1.02rem; color: var(--navy-700);
  transition: background 0.14s;
}
.faq-item summary:hover { background: var(--canvas); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .ico { margin-left: auto; flex-shrink: 0; width: 20px; height: 20px; color: var(--orange); transition: transform 0.18s; }
.faq-item[open] summary .ico { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 1.25rem 1.15rem; color: var(--ink-muted); font-size: 0.97rem; }
.faq-item .faq-a p { margin: 0; }

/* ---- Über uns ---- */
.about-card {
  display: grid; grid-template-columns: auto 1fr; gap: 1.4rem;
  background: var(--surface); border: 1px solid var(--border);
  border-left: 5px solid var(--orange);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  padding: clamp(1.5rem, 3.5vw, 2.4rem); max-width: 880px; margin: 0 auto;
}
.about-mark { width: 58px; height: 58px; border-radius: 16px; background: var(--orange-soft); display: flex; align-items: center; justify-content: center; }
.about-mark img { width: 38px; height: 38px; }
.about-card h2 { font-size: 1.45rem; margin: 0 0 0.5rem; }
.about-card p { color: var(--ink-muted); font-size: 0.99rem; margin: 0.5em 0; }
.about-card p strong { color: var(--ink); }
@media (max-width: 620px) { .about-card { grid-template-columns: 1fr; } .about-mark { margin-bottom: -0.4rem; } }

/* ---- CTA-Banner ---- */
.cta-banner {
  background:
    radial-gradient(720px 380px at 15% 120%, rgba(245, 123, 39, 0.22), transparent 60%),
    linear-gradient(150deg, var(--navy-600), var(--navy-950));
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  color: var(--shell-text); text-align: center;
  padding: clamp(2.4rem, 6vw, 4rem) clamp(1.4rem, 4vw, 3rem);
}
.cta-banner h2 { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin: 0 0 0.5rem; }
.cta-banner p { color: #C6D3E8; max-width: 42em; margin: 0 auto 1.7rem; font-size: 1.05rem; }
.cta-banner .hero-ctas { justify-content: center; margin-bottom: 0; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--navy-950); color: var(--shell-text-2); margin-top: clamp(3rem, 7vw, 5rem); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(2.4rem, 5vw, 3.6rem) 0 2rem;
}
.footer-brand p { font-size: 0.92rem; margin: 0.9em 0 0; max-width: 26em; }
.footer-col h3 {
  color: #fff; font-size: 0.85rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em; margin: 0.3rem 0 0.9rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.footer-col a { color: var(--shell-text-2); text-decoration: none; font-size: 0.94rem; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.2rem 0 1.6rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.9rem 1.5rem;
  font-size: 0.86rem;
}
.footer-bottom .lang-switch { margin-left: auto; }
.footer-bottom .lang-menu { bottom: calc(100% + 8px); top: auto; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Cookie-Hinweis
   ============================================================ */
.cookie-bar {
  position: fixed; left: 50%; transform: translateX(-50%);
  bottom: max(14px, env(safe-area-inset-bottom, 14px));
  z-index: 400; width: min(680px, calc(100vw - 24px));
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.1rem 1.3rem;
  display: none;
}
.cookie-bar.show { display: block; }
.cookie-bar h2 { font-size: 1.02rem; margin: 0 0 0.3rem; display: flex; align-items: center; gap: 0.5em; }
.cookie-bar h2 .ico { color: var(--orange); width: 20px; height: 20px; }
.cookie-bar p { font-size: 0.9rem; color: var(--ink-muted); margin: 0 0 0.9rem; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center; }
.cookie-actions .btn { padding: 0.55em 1.2em; font-size: 0.92rem; }
.cookie-actions a { font-size: 0.88rem; font-weight: 600; margin-left: auto; }
.btn-quiet { background: var(--canvas); color: var(--ink); border-color: var(--border); }
.btn-quiet:hover { background: var(--border-soft); }

/* ============================================================
   Rechtsseiten (Impressum / Datenschutz)
   ============================================================ */
.legal-main { max-width: 800px; margin: 0 auto; padding: clamp(2rem, 5vw, 3.4rem) clamp(16px, 4vw, 32px) 4rem; }
.legal-main h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 0.4em; }
.legal-main h2 { font-size: 1.3rem; margin-top: 2em; }
.legal-main p, .legal-main li { color: var(--ink); font-size: 0.99rem; }
.legal-main .muted { color: var(--ink-muted); }
.legal-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  padding: clamp(1.3rem, 3vw, 2rem); margin: 1.4rem 0;
}
.legal-card p { margin: 0.45em 0; }
.back-link { display: inline-flex; align-items: center; gap: 0.4em; font-weight: 700; margin-bottom: 1.4rem; }
.back-link .ico { width: 18px; height: 18px; }

/* ============================================================
   Einblendanimationen
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .feature-card, .aud-card, .shot-frame, .store-card { transition: none; }
}

/* JS deaktiviert: alles sichtbar, Sprachumschalter versteckt */
.no-js .reveal { opacity: 1; transform: none; }
.no-js .lang-switch, .no-js .cookie-bar { display: none !important; }
