/* ==========================================================================
   LexwareApp – Website Stylesheet
   Modern, responsive, statisch (kein Build-Schritt nötig)
   ========================================================================== */

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Marken-/Basisfarben */
  --c-bg: #ffffff;
  --c-bg-soft: #f6f8fc;
  --c-bg-dark: #0f172a;
  --c-bg-darker: #0a0f1f;
  --c-surface: #ffffff;
  --c-border: #e6eaf2;
  --c-border-strong: #d3dae8;

  --c-text: #0f172a;
  --c-text-soft: #475569;
  --c-text-muted: #94a3b8;
  --c-text-invert: #ffffff;

  --c-primary: #2222cc;
  --c-primary-dark: #1a1a9e;
  --c-primary-soft: #ececfb;

  /* App-Akzentfarben */
  --c-plus: #2222cc;        /* MobiLager Plus  – Blau */
  --c-lxo: #2222cc;         /* einheitlich Blau */
  --c-service: #2222cc;     /* einheitlich Blau */
  --c-shop: #2222cc;        /* einheitlich Blau */

  --c-success: #16a34a;

  /* Radius & Schatten */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-full: 999px;

  --sh-sm: 0 1px 2px rgba(15, 23, 42, .06);
  --sh-md: 0 6px 24px rgba(15, 23, 42, .08);
  --sh-lg: 0 20px 60px rgba(15, 23, 42, .14);
  --sh-glow: 0 18px 50px rgba(34, 34, 204, .25);

  /* Layout */
  --container: 1180px;
  --nav-h: 72px;

  /* Schrift */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Transition */
  --t: .25s cubic-bezier(.4, 0, .2, 1);
}

/* ---------- 2. Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- 3. Layout-Helfer ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding: 96px 0; }
.section--soft { background: var(--c-bg-soft); }
.section--tight { padding: 64px 0; }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 14px;
}

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }

h1, h2, h3, h4 { line-height: 1.18; font-weight: 800; letter-spacing: -.02em; color: var(--c-text); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.3rem; }

.lead { font-size: 1.18rem; color: var(--c-text-soft); }
.muted { color: var(--c-text-soft); }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 1rem;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: linear-gradient(135deg, #2e2ee0, #1a1a9e);
  color: #fff;
  box-shadow: var(--sh-glow);
}
.btn--primary:hover { background: linear-gradient(135deg, #2222cc, #141478); transform: translateY(-2px); }

.btn--ghost {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .25);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .16); }

.btn--outline {
  background: transparent;
  color: var(--c-primary);
  border: 1.5px solid var(--c-border-strong);
}
.btn--outline:hover { border-color: var(--c-primary); background: var(--c-primary-soft); }

.btn--lg { padding: 16px 32px; font-size: 1.05rem; }

/* ---------- 5. Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), box-shadow var(--t);
}
.site-header.scrolled {
  border-bottom-color: var(--c-border);
  box-shadow: var(--sh-sm);
}
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -.02em;
}
.brand img { height: 46px; width: auto; }
.brand-logo { height: 46px; width: auto; display: block; }
.brand .brand-mark {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--c-primary), #8a8af2);
  color: #fff;
  font-size: 1.1rem;
}
.brand b { color: var(--c-primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 9px 14px;
  border-radius: var(--r-sm);
  font-weight: 500;
  font-size: .97rem;
  color: var(--c-text-soft);
  transition: color var(--t), background var(--t);
}
.nav-links a:hover { color: var(--c-text); background: var(--c-bg-soft); }
.nav-links a.active { color: var(--c-primary); }
/* Der Primär-Button in den Links ist nur im mobilen Menü sichtbar */
.nav-links > .btn { display: none; }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 5b. Top-Bar (Kontakt + Partner) ---------- */
.topbar {
  background: linear-gradient(90deg, #1a1a9e, #2222cc);
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.topbar-contact { display: flex; align-items: center; gap: 20px; }
.topbar-contact a { display: inline-flex; align-items: center; gap: 7px; color: #fff; opacity: .95; transition: opacity var(--t); }
.topbar-contact a:hover { opacity: 1; text-decoration: underline; }
.topbar-contact svg { flex: none; opacity: .85; }
.topbar-badge { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.topbar-star { flex: none; color: #ffd35c; }
.topbar-sep { opacity: .55; margin: 0 2px; }
@media (max-width: 820px) {
  .topbar-badge { display: none; }
  .topbar-inner { justify-content: center; }
  .topbar-contact { gap: 16px; }
}
@media (max-width: 480px) {
  .topbar { font-size: .78rem; }
  .topbar-contact a:last-child { display: none; }
}

/* Partner-Badge im Header (neben Demo-Button) */
.partner-badge { height: 34px; width: auto; flex: none; }
@media (max-width: 720px) { .partner-badge { height: 30px; } }
@media (max-width: 400px) { .partner-badge { display: none; } }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  padding: 84px 0 96px;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(34, 34, 204, .18), transparent 60%),
    radial-gradient(700px 400px at 0% 10%, rgba(87, 87, 230, .12), transparent 55%),
    linear-gradient(180deg, #fbfdff, #ffffff);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: start;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: var(--r-full);
  background: #fff;
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-sm);
  font-size: .85rem;
  font-weight: 600;
  color: var(--c-text-soft);
  margin-bottom: 22px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-primary); }
.hero h1 { margin-bottom: 20px; }
.hero h1 .grad {
  background: linear-gradient(120deg, #5757e6, #1818ac);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lead { margin-bottom: 32px; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  color: var(--c-text-muted);
  font-size: .92rem;
  font-weight: 500;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { color: var(--c-primary); }

.hero-visual { position: relative; display: grid; place-items: center; }

/* ---------- 7. Phone-Mockup ---------- */
.phone {
  position: relative;
  width: 280px;
  aspect-ratio: 9 / 19.5;
  border-radius: 42px;
  background: #0f172a;
  padding: 12px;
  box-shadow: var(--sh-lg);
  border: 1px solid #1e293b;
}
.phone::before {
  content: "";
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 24px;
  background: #0f172a;
  border-radius: 0 0 16px 16px;
  z-index: 3;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: var(--c-bg-soft);
  position: relative;
}
.phone-screen img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.phone--floating { animation: float 6s ease-in-out infinite; }
.phone--sm { width: 220px; }

.hero-phones { display: flex; align-items: center; justify-content: center; margin-top: -24px; }
.hero-phones .phone { width: 214px; }
.hero-phones .phone:nth-child(1) { transform: rotate(-6deg) translateY(16px); z-index: 1; margin-right: -48px; }
.hero-phones .phone:nth-child(2) { transform: scale(1.07); z-index: 2; box-shadow: var(--sh-lg), var(--sh-glow); }
.hero-phones .phone:nth-child(3) { transform: rotate(6deg) translateY(16px); z-index: 1; margin-left: -48px; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- 8. Logo-Bar / Ökosystem ---------- */
.eco-bar { padding: 40px 0; border-bottom: 1px solid var(--c-border); }
.eco-bar p { text-align: center; color: var(--c-text-muted); font-weight: 600; font-size: .88rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 22px; }
.eco-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.eco-logos .pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--c-text-soft);
  font-size: 1.05rem;
}
.eco-logos .pill .ic { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; color: #fff; font-size: .9rem; }

/* ---------- 8b. Stats-Band ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat { text-align: center; padding: 6px; }
.stat-num {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  background: linear-gradient(120deg, #5757e6, #1818ac);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label { margin-top: 10px; color: var(--c-text-soft); font-weight: 600; font-size: .95rem; }
@media (max-width: 720px) {
  .stats { grid-template-columns: 1fr 1fr; gap: 30px 16px; }
}

/* ---------- 9. App-Karten (Grid auf Startseite) ---------- */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.app-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 32px;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.app-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--accent, var(--c-primary));
}
.app-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: transparent; }
.app-card .app-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: var(--accent-soft, var(--c-primary-soft));
  color: var(--accent, var(--c-primary));
  margin-bottom: 20px;
  font-size: 1.6rem;
}
.app-card .tag {
  position: absolute;
  top: 24px; right: 24px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: var(--r-full);
  background: var(--accent-soft, var(--c-primary-soft));
  color: var(--accent, var(--c-primary));
}
.app-card h3 { margin-bottom: 8px; font-size: 1.4rem; }
.app-card .app-sub { color: var(--c-text-muted); font-weight: 600; font-size: .9rem; margin-bottom: 14px; }
.app-card p { color: var(--c-text-soft); margin-bottom: 22px; }
.app-card .mods { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.app-card .mods span {
  font-size: .82rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: var(--r-full);
  background: var(--c-bg-soft);
  color: var(--c-text-soft);
  border: 1px solid var(--c-border);
}
.app-card .app-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  color: var(--accent, var(--c-primary));
}
.app-card .app-link svg { transition: transform var(--t); }
.app-card:hover .app-link svg { transform: translateX(4px); }

/* Akzent-Klassen – einheitlich Blau */
.accent-plus,
.accent-lxo,
.accent-service,
.accent-shop { --accent: var(--c-primary); --accent-soft: var(--c-primary-soft); --accent-glow: rgba(34, 34, 204, .16); }

/* ---------- 10. Feature-Reihen (Bild + Text wechselnd) ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 28px 0;
}
.feature-row.reverse .feature-media { order: 2; }
.feature-row .feature-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--accent-soft, var(--c-primary-soft));
  color: var(--accent, var(--c-primary));
  font-weight: 800;
  margin-bottom: 18px;
}
.feature-row h3 { font-size: 1.7rem; margin-bottom: 14px; }
.feature-row p { color: var(--c-text-soft); margin-bottom: 20px; }
.feature-list { display: grid; gap: 12px; }
.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--c-text-soft);
}
.feature-list svg { flex: none; color: var(--accent, var(--c-success)); margin-top: 4px; }
.feature-list b { color: var(--c-text); font-weight: 600; }

.feature-media { display: grid; place-items: center; }

/* Bildrahmen (Screenshot-Frame) */
.shot {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  background: var(--c-bg-soft);
  box-shadow: var(--sh-md);
  width: 100%;
}
.shot img { width: 100%; height: auto; }
.shot--phone {
  max-width: 300px;
  border-radius: 38px;
  border: 12px solid #0f172a;
  box-shadow: var(--sh-lg);
}
.shot--phone img { border-radius: 0; }

/* ---------- 11. Bento / Vorteile ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bento .cell {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 28px;
  transition: transform var(--t), box-shadow var(--t);
}
.bento .cell:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.bento .cell .ic {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--c-primary-soft);
  color: var(--c-primary);
  margin-bottom: 16px;
}
.bento .cell h3 { font-size: 1.15rem; margin-bottom: 8px; }
.bento .cell p { color: var(--c-text-soft); font-size: .97rem; }
.bento .cell.wide { grid-column: span 2; }

/* ---------- 12. Schritt-Ablauf (How it works) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step {
  position: relative;
  padding: 28px 24px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
}
.step .num {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--accent, var(--c-primary));
  color: #fff;
  font-weight: 800;
  margin-bottom: 16px;
}
.step h4 { font-size: 1.05rem; margin-bottom: 6px; }
.step p { font-size: .94rem; color: var(--c-text-soft); }

/* ---------- 13. App-Hero (Detailseiten) ---------- */
.app-hero {
  padding: 64px 0 72px;
  background:
    radial-gradient(800px 420px at 85% -10%, var(--accent-glow, rgba(34,34,204,.16)), transparent 60%),
    linear-gradient(180deg, #fbfdff, #fff);
}
.app-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.app-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent, var(--c-primary));
  margin-bottom: 16px;
}
.app-kicker .ic { width: 26px; height: 26px; border-radius: 7px; display: grid; place-items: center; background: var(--accent, var(--c-primary)); color: #fff; }
.app-hero h1 { margin-bottom: 18px; }
.app-hero .lead { margin-bottom: 28px; }
.app-platform-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  border-radius: var(--r-full);
  background: #fff;
  border: 1px solid var(--c-border);
  font-size: .9rem;
  font-weight: 600;
  color: var(--c-text-soft);
  margin-top: 8px;
}

/* Breadcrumb */
.crumbs { font-size: .9rem; color: var(--c-text-muted); margin-bottom: 22px; }
.crumbs a:hover { color: var(--c-primary); }
.crumbs span { margin: 0 8px; }

/* ---------- 14. Modul-Anker-Navigation ---------- */
.module-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
}
.module-nav ul {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 12px 0;
  scrollbar-width: none;
}
.module-nav ul::-webkit-scrollbar { display: none; }
.module-nav a {
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: .92rem;
  color: var(--c-text-soft);
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
  transition: all var(--t);
}
.module-nav a:hover { color: var(--accent, var(--c-primary)); border-color: var(--accent, var(--c-primary)); }

/* ---------- 15. CTA-Banner ---------- */
.cta {
  position: relative;
  border-radius: var(--r-xl);
  padding: 64px 48px;
  text-align: center;
  background: linear-gradient(130deg, #10106e, #2222cc 60%, #5757e6);
  color: #fff;
  overflow: hidden;
}
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 280px at 80% 0%, rgba(255,255,255,.18), transparent 60%);
}
.cta > * { position: relative; z-index: 1; }
.cta h2 { color: #fff; margin-bottom: 14px; }
.cta p { color: rgba(255,255,255,.85); max-width: 620px; margin: 0 auto 28px; font-size: 1.1rem; }
.cta .hero-actions { justify-content: center; }

/* ---------- 16. FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  margin-bottom: 14px;
  background: var(--c-surface);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--c-text);
}
.faq-q .chev { flex: none; transition: transform var(--t); color: var(--c-primary); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a div { padding: 0 24px 22px; color: var(--c-text-soft); }

/* ---------- 17. Footer ---------- */
.site-footer {
  background: var(--c-bg-darker);
  color: #cbd5e1;
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .brand { color: #fff; margin-bottom: 16px; }
/* Firmenlogo auf dunklem Footer: weißer Chip für Sichtbarkeit */
.footer-brand .brand { display: inline-flex; align-items: center; background: #fff; padding: 9px 14px; border-radius: 12px; box-shadow: var(--sh-sm); }
.footer-brand .brand img,
.brand-logo--footer { height: 30px; }
.footer-brand .brand .brand-mark { background: linear-gradient(135deg, #2222cc, #1818ac); }
.footer-brand p { color: #94a3b8; font-size: .96rem; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 18px; }
.footer-col a { display: block; color: #94a3b8; padding: 6px 0; font-size: .96rem; transition: color var(--t); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  color: #64748b;
  font-size: .88rem;
}
.footer-bottom a { color: #94a3b8; }
.footer-bottom a:hover { color: #fff; }
.footer-legal-note {
  margin-top: 18px;
  font-size: .8rem;
  color: #475569;
  line-height: 1.6;
  max-width: 880px;
}

/* ---------- 18. Content-Seiten (Impressum/Datenschutz) ---------- */
.doc {
  max-width: 800px;
  margin-inline: auto;
}
.doc h1 { margin-bottom: 28px; }
.doc h2 { font-size: 1.5rem; margin: 36px 0 14px; }
.doc h3 { font-size: 1.15rem; margin: 24px 0 10px; }
.doc p, .doc li { color: var(--c-text-soft); margin-bottom: 12px; }
.doc ul { list-style: disc; padding-left: 22px; }
.doc a { color: var(--c-primary); text-decoration: underline; }
.doc .placeholder {
  background: #fff8e6;
  border: 1px dashed #f0c000;
  border-radius: var(--r-sm);
  padding: 2px 8px;
  font-weight: 600;
  color: #92700a;
}

/* ---------- 19. Kontaktformular ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.form-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--sh-sm);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--c-border-strong);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 1rem;
  color: var(--c-text);
  background: #fff;
  transition: border-color var(--t), box-shadow var(--t);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px var(--c-primary-soft);
}
.field textarea { resize: vertical; min-height: 130px; }
.contact-info .info-item { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-info .info-item .ic {
  flex: none;
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--c-primary-soft);
  color: var(--c-primary);
}
.contact-info .info-item h4 { font-size: 1.05rem; margin-bottom: 4px; }
.contact-info .info-item p, .contact-info .info-item a { color: var(--c-text-soft); }

/* ---------- 19b. Video-Grid (YouTube, Klick zum Laden) ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.yt-lite {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  margin: 0;
  cursor: pointer;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  background: #0f172a;
  text-align: left;
}
.yt-lite img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.yt-lite::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,.05), rgba(15,23,42,.55));
  transition: opacity var(--t);
}
.yt-lite:hover img { transform: scale(1.05); }
.yt-play {
  position: absolute; inset: 0; margin: auto;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(34, 34, 204, .94);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: var(--sh-glow);
  transition: transform var(--t), background var(--t);
  z-index: 2;
}
.yt-play svg { margin-left: 4px; }
.yt-lite:hover .yt-play { transform: scale(1.08); background: var(--c-primary); }
.yt-title {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 16px 18px 14px;
  color: #fff;
  font-weight: 600;
  font-size: .98rem;
  line-height: 1.35;
  background: linear-gradient(transparent, rgba(15, 23, 42, .85));
}
.yt-lite iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.yt-lite.playing { background: #000; }
.yt-lite.playing::after,
.yt-lite.playing .yt-play,
.yt-lite.playing .yt-title { display: none; }

/* ---------- 19c. Foto-Strip ---------- */
.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  aspect-ratio: 4 / 3;
  margin: 0;
}
.photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.photo:hover img { transform: scale(1.05); }
.photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 18px 16px;
  color: #fff;
  font-weight: 600;
  background: linear-gradient(transparent, rgba(15, 23, 42, .8));
}

/* ---------- 20. Reveal-Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- 21. Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .app-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-phones { margin-top: 0; }
  .hero-phones .phone:nth-child(1),
  .hero-phones .phone:nth-child(3) { display: none; }
  .hero-phones .phone:nth-child(2) { transform: none; width: 240px; }
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse .feature-media { order: 0; }
  .apps-grid { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento .cell.wide { grid-column: span 2; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Navigation: bei mittleren Breiten auf Hamburger-Menü umschalten */
@media (max-width: 1024px) {
  .nav-links, .nav-cta .btn--outline { display: none; }
  .nav-toggle { display: flex; }

  /* Mobile-Menü */
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--c-border);
    box-shadow: var(--sh-md);
    padding: 16px 24px 24px;
    gap: 4px;
  }
  .nav-links.mobile-open a { padding: 13px 12px; font-size: 1.05rem; border-radius: var(--r-sm); }
  .nav-links.mobile-open > .btn { display: inline-flex; margin-top: 8px; justify-content: center; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  .hero-phones .phone:nth-child(2) { width: 210px; }
  .photo-strip { grid-template-columns: 1fr; }
  .photo { aspect-ratio: 16 / 9; }
  .video-grid { grid-template-columns: 1fr; }
  .yt-play { width: 60px; height: 60px; }
  .bento { grid-template-columns: 1fr; }
  .bento .cell.wide { grid-column: span 1; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .cta { padding: 48px 26px; }
  .section-head { margin-bottom: 40px; }
}

/* Reduzierte Bewegung respektieren */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
