/* landing.css - Redesign der Flightbook-Landingpage
   Designsprache analog zu den Auth-Seiten (auth.css):
   Poppins, Navy/Blau/Cyan, Telemetrie-Elemente, Charts & Schemata */

:root {
  --fb-navy-900: #081527;
  --fb-navy-800: #0b1d33;
  --fb-navy-700: #10294a;
  --fb-blue: #1c64d9;
  --fb-blue-soft: #4889cc;
  --fb-sky: #a3d1ff;
  --fb-cyan: #38bdf8;
  --fb-green: #22c55e;
  --fb-amber: #f59e0b;
  --fb-violet: #8b5cf6;
  --fb-text: #17263b;
  --fb-muted: #64748b;
  --fb-border: #dbe4f0;
  --fb-ring: rgba(28, 100, 217, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.landing {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--fb-text);
  background: #fbfdff;
  overflow-x: hidden;
}

.landing h1, .landing h2, .landing h3, .landing h4, .landing h5 {
  font-family: inherit;
}

/* ---------- Navbar ---------- */

.lp-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 14px 5vw;
  background: rgba(8, 21, 39, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(163, 209, 255, 0.12);
}

.lp-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: #fff;
  margin-right: auto;
}

.lp-brand .brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 16px rgba(28, 100, 217, 0.4);
}
.lp-brand .brand-icon img { width: 86%; height: 86%; object-fit: contain; display: block; }

.lp-brand .brand-name { font-size: 18px; font-weight: 600; }
.lp-brand .brand-name span { color: var(--fb-sky); }

.lp-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.lp-nav .nav-links a {
  color: rgba(234, 243, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.12s ease, background 0.12s ease;
}
.lp-nav .nav-links a:hover { color: #fff; background: rgba(163, 209, 255, 0.1); }

.lp-nav .nav-lang {
  display: flex;
  gap: 2px;
  margin: 0 4px;
  font-size: 12.5px;
}
.lp-nav .nav-lang a {
  color: rgba(234, 243, 255, 0.55);
  text-decoration: none;
  padding: 5px 8px;
  border-radius: 6px;
}
.lp-nav .nav-lang a:hover { color: #fff; background: rgba(163, 209, 255, 0.12); }

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 20px;
  border: none;
  border-radius: 11px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease, background 0.12s ease;
}

.lp-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--fb-blue) 0%, #2e8ee6 100%);
  box-shadow: 0 10px 24px rgba(28, 100, 217, 0.35);
}
.lp-btn-primary:hover { filter: brightness(1.07); transform: translateY(-1px); color: #fff; }

.lp-btn-green {
  color: #fff;
  background: linear-gradient(135deg, #16a34a 0%, var(--fb-green) 100%);
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.32);
}
.lp-btn-green:hover { filter: brightness(1.07); transform: translateY(-1px); color: #fff; }

.lp-btn-ghost {
  color: #eaf3ff;
  background: rgba(163, 209, 255, 0.1);
  border: 1.5px solid rgba(163, 209, 255, 0.3);
}
.lp-btn-ghost:hover { background: rgba(163, 209, 255, 0.18); color: #fff; }

.lp-btn-lg { padding: 14px 28px; font-size: 16px; border-radius: 13px; }

/* ---------- Hero ---------- */

.lp-hero {
  position: relative;
  color: #eaf3ff;
  background:
    radial-gradient(1100px 600px at 85% -10%, rgba(56, 189, 248, 0.2), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(28, 100, 217, 0.35), transparent 60%),
    linear-gradient(160deg, var(--fb-navy-800) 0%, var(--fb-navy-900) 55%, #060f1d 100%);
  overflow: hidden;
}

.lp-hero .hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(163, 209, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(163, 209, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 85% at 50% 30%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 85% at 50% 30%, black 30%, transparent 100%);
  pointer-events: none;
}

.lp-hero svg.hero-telemetry-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.75;
  pointer-events: none;
}

/* Abstrakte Anflug-Szene: wenige Linien, quasi 3D */
.lp-hero .horizon {
  stroke: rgba(163, 209, 255, 0.12);
  stroke-width: 1;
}
.lp-hero .ground-line {
  stroke: rgba(163, 209, 255, 0.1);
  stroke-width: 1;
}

.lp-hero .runway-surface { fill: url(#lpRunwayFill); }
.lp-hero .runway-edge {
  fill: none;
  stroke: var(--fb-cyan);
  stroke-width: 2.5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(56, 189, 248, 0.55));
  opacity: 0.75;
}
.lp-hero .runway-threshold {
  stroke: rgba(163, 209, 255, 0.5);
  stroke-width: 2;
}
.lp-hero .runway-center line {
  stroke: rgba(234, 243, 255, 0.3);
  stroke-linecap: round;
}
.lp-hero .runway-light {
  fill: var(--fb-cyan);
  filter: drop-shadow(0 0 5px rgba(56, 189, 248, 0.9));
  animation: pulse 3.2s ease-in-out infinite;
}
.lp-hero .runway-light.rl2, .lp-hero .runway-light.rl6 { animation-delay: 0.5s; }
.lp-hero .runway-light.rl3, .lp-hero .runway-light.rl7 { animation-delay: 1s; }
.lp-hero .runway-light.rl4, .lp-hero .runway-light.rl8 { animation-delay: 1.5s; }

.lp-hero .flightpath {
  fill: none;
  stroke: rgba(163, 209, 255, 0.5);
  stroke-width: 2;
  stroke-dasharray: 10 12;
  animation: dashmove 26s linear infinite;
}
.lp-hero .waypoint {
  fill: var(--fb-sky);
  filter: drop-shadow(0 0 5px rgba(163, 209, 255, 0.9));
  animation: pulse 3.2s ease-in-out infinite;
}
.lp-hero .waypoint.wp2 { animation-delay: 1s; }
.lp-hero .waypoint.wp3 { animation-delay: 2s; }

@keyframes dashmove { to { stroke-dashoffset: -440; } }
@keyframes pulse { 0%,100% { opacity: 0.45; } 50% { opacity: 1; } }

.lp-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 84px 5vw 120px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  margin-bottom: 22px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--fb-sky);
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.35);
}
.hero-badge i.bi { color: var(--fb-cyan); }

.lp-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.18;
  color: #fff;
}
.lp-hero h1 .accent {
  background: linear-gradient(100deg, var(--fb-cyan), var(--fb-sky));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-hero .hero-sub {
  margin: 0 0 30px;
  font-size: 16.5px;
  line-height: 1.6;
  color: rgba(234, 243, 255, 0.72);
  max-width: 520px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-note {
  margin: 16px 0 0;
  font-size: 12.5px;
  color: rgba(234, 243, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-note i.bi { color: var(--fb-green); }

/* Hero-Dashboard (schematische Live-Ansicht) */
.hero-dash {
  border-radius: 20px;
  padding: 20px 22px;
  background: rgba(8, 21, 39, 0.65);
  border: 1px solid rgba(163, 209, 255, 0.18);
  backdrop-filter: blur(8px);
  box-shadow: 0 30px 70px rgba(3, 10, 22, 0.55);
}

.hero-dash .dash-head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
}
.hero-dash .dash-head .live-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--fb-green);
  animation: livedot 2s ease-out infinite;
}
@keyframes livedot {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.55); }
  70% { box-shadow: 0 0 0 9px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.hero-dash .dash-head .dash-title {
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(234,243,255,0.65);
  font-weight: 500;
}
.hero-dash .dash-head .rec {
  margin-left: auto;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fca5a5;
  padding: 2px 8px;
  border-radius: 6px;
  background: rgba(220, 38, 38, 0.18);
  border: 1px solid rgba(248, 113, 113, 0.35);
  animation: recblink 1.6s ease-in-out infinite;
}
@keyframes recblink { 0%,100% { opacity: 1; } 50% { opacity: 0.45; } }

.hero-dash .dash-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.hero-dash .dash-kpis > div {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(163, 209, 255, 0.06);
  border: 1px solid rgba(163, 209, 255, 0.1);
}
.hero-dash .dash-kpis span {
  display: block;
  font-size: 9.5px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(234,243,255,0.55);
  margin-bottom: 3px;
}
.hero-dash .dash-kpis strong {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
}
.hero-dash .dash-kpis strong small { font-size: 11px; color: rgba(234,243,255,0.55); font-weight: 500; }

.hero-dash svg.dash-chart {
  display: block;
  width: 100%;
  height: 110px;
  border-radius: 12px;
  background: rgba(163, 209, 255, 0.04);
}
.hero-dash .chart-gridlines line { stroke: rgba(163,209,255,0.09); stroke-width: 1; }
.hero-dash .chart-area { fill: url(#dashFill); }
.hero-dash .chart-line {
  fill: none;
  stroke: var(--fb-cyan);
  stroke-width: 2.5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 5px rgba(56,189,248,0.6));
}
.hero-dash .chart-dot {
  fill: #fff;
  stroke: var(--fb-cyan);
  stroke-width: 2;
  animation: pulse 2s ease-in-out infinite;
}

.hero-dash .dash-pilots {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.hero-dash .pilot-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px 5px 6px;
  border-radius: 999px;
  font-size: 12px;
  color: #eaf3ff;
  background: rgba(163, 209, 255, 0.08);
  border: 1px solid rgba(163, 209, 255, 0.16);
}
.hero-dash .pilot-chip .avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--fb-blue), var(--fb-cyan));
}
.hero-dash .pilot-chip.guest .avatar { background: linear-gradient(135deg, #b45309, var(--fb-amber)); }

/* ---------- Sektionen (allgemein) ---------- */

.lp-section { padding: 88px 5vw; }
.lp-section-inner { max-width: 1200px; margin: 0 auto; }

.lp-section .sec-head { text-align: center; max-width: 640px; margin: 0 auto 54px; }
.lp-section .sec-head h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--fb-text);
}
.lp-section .sec-head p { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--fb-muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 5px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--fb-blue);
  background: #eaf2ff;
  border: 1px solid #cfe1fa;
}

/* Scroll-Reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Feature-Grid ---------- */

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feat-card {
  position: relative;
  padding: 28px 26px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--fb-border);
  box-shadow: 0 6px 24px rgba(23, 38, 59, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.feat-card:hover {
  transform: translateY(-5px);
  border-color: var(--fb-blue-soft);
  box-shadow: 0 18px 40px rgba(28, 100, 217, 0.12);
}

.feat-card .feat-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--fb-blue), var(--fb-cyan));
  box-shadow: 0 8px 18px rgba(28, 100, 217, 0.3);
}
.feat-card .feat-icon.icon-ai      { background: linear-gradient(135deg, #7c3aed, var(--fb-violet)); box-shadow: 0 8px 18px rgba(139, 92, 246, 0.3); }
.feat-card .feat-icon.icon-geo     { background: linear-gradient(135deg, #0e7490, var(--fb-cyan)); box-shadow: 0 8px 18px rgba(56, 189, 248, 0.3); }
.feat-card .feat-icon.icon-monitor { background: linear-gradient(135deg, #b45309, var(--fb-amber)); box-shadow: 0 8px 18px rgba(245, 158, 11, 0.3); }
.feat-card .feat-icon.icon-hangar  { background: linear-gradient(135deg, #15803d, var(--fb-green)); box-shadow: 0 8px 18px rgba(34, 197, 94, 0.3); }
.feat-card .feat-icon.icon-chart   { background: linear-gradient(135deg, #1d4ed8, #60a5fa); box-shadow: 0 8px 18px rgba(59, 130, 246, 0.3); }

.feat-card h3 { margin: 0 0 8px; font-size: 17px; font-weight: 600; color: var(--fb-text); }
.feat-card p  { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--fb-muted); }

.badge-new {
  position: absolute;
  top: 18px; right: 18px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #fff;
  background: linear-gradient(135deg, #16a34a, var(--fb-green));
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.35);
}

.feat-card a.feat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fb-blue);
  text-decoration: none;
}
.feat-card a.feat-link:hover { text-decoration: underline; }

/* ---------- Split-Sektionen (Text + Schema) ---------- */

.lp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.lp-split h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  color: var(--fb-text);
  line-height: 1.25;
}
.lp-split .split-sub { margin: 0 0 22px; font-size: 15px; line-height: 1.65; color: var(--fb-muted); }

.check-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: #33445c;
}
.check-list li i.bi {
  flex: 0 0 auto;
  margin-top: 1px;
  font-size: 17px;
  color: var(--fb-green);
}

/* ---------- Schema: NFC & Geo-Login ---------- */

.login-schema {
  padding: 30px 26px;
  border-radius: 20px;
  background: linear-gradient(165deg, #123a6e 0%, var(--fb-navy-700) 45%, var(--fb-navy-800) 100%);
  border: 1px solid rgba(163, 209, 255, 0.16);
  box-shadow: 0 24px 60px rgba(3, 10, 22, 0.35);
  color: #eaf3ff;
}

.login-schema .schema-sources {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.schema-node {
  padding: 16px 15px;
  border-radius: 14px;
  background: rgba(8, 21, 39, 0.55);
  border: 1px solid rgba(163, 209, 255, 0.18);
  text-align: center;
}

.schema-node .node-visual {
  height: 74px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}

.schema-node h4 { margin: 0 0 4px; font-size: 13.5px; font-weight: 600; color: #fff; }
.schema-node p  { margin: 0; font-size: 11.5px; line-height: 1.45; color: rgba(234,243,255,0.6); }

/* NFC-Terminal-Grafik */
.nfc-visual {
  position: relative;
  width: 86px; height: 62px;
  border-radius: 10px;
  background: #1e293b;
  border: 2px solid rgba(163, 209, 255, 0.35);
  display: grid;
  place-items: center;
}
.nfc-visual::after {
  content: "";
  position: absolute;
  top: 6px; left: 8px; right: 8px; bottom: 18px;
  border-radius: 5px;
  background: linear-gradient(135deg, rgba(56,189,248,0.35), rgba(28,100,217,0.35));
}
.nfc-visual .nfc-led {
  position: absolute;
  bottom: 5px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--fb-green);
  animation: livedot 2s ease-out infinite;
}
.nfc-visual .nfc-chip {
  position: absolute;
  right: -16px; top: -14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--fb-blue), var(--fb-cyan));
  box-shadow: 0 6px 14px rgba(56, 189, 248, 0.45);
  animation: chiptap 2.6s ease-in-out infinite;
}
@keyframes chiptap {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-9px, 9px); }
}

/* Handy-mit-Geo-Grafik */
.geo-visual {
  position: relative;
  width: 44px; height: 72px;
  border-radius: 9px;
  background: #1e293b;
  border: 2px solid rgba(163, 209, 255, 0.35);
}
.geo-visual::after {
  content: "";
  position: absolute;
  inset: 5px 4px 12px;
  border-radius: 4px;
  background: linear-gradient(160deg, rgba(56,189,248,0.3), rgba(28,100,217,0.3));
}
.geo-visual .geo-pin {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  color: #f87171;
  filter: drop-shadow(0 0 6px rgba(248, 113, 113, 0.6));
  animation: pinbounce 2s ease-in-out infinite;
  z-index: 1;
}
@keyframes pinbounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-5px); }
}
.geo-visual .geo-ring {
  position: absolute;
  left: 50%; top: 50%;
  width: 60px; height: 60px;
  border: 1.5px solid rgba(56, 189, 248, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: georing 2.4s ease-out infinite;
}
@keyframes georing {
  0%   { opacity: 0.7; width: 40px; height: 40px; }
  100% { opacity: 0; width: 90px; height: 90px; }
}

/* Verbindungslinien + Cloud + Ergebnis */
.schema-flow {
  display: flex;
  justify-content: center;
  padding: 4px 0;
}
.schema-flow svg { width: 200px; height: 46px; display: block; }
.schema-flow .flow-line {
  fill: none;
  stroke: rgba(163, 209, 255, 0.5);
  stroke-width: 2;
  stroke-dasharray: 6 8;
  animation: dashmove 14s linear infinite;
}

.schema-cloud {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
  padding: 12px 22px;
  width: fit-content;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--fb-blue), var(--fb-cyan));
  box-shadow: 0 10px 26px rgba(56, 189, 248, 0.35);
}

.schema-results {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.schema-results span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--fb-sky);
  background: rgba(163, 209, 255, 0.1);
  border: 1px solid rgba(163, 209, 255, 0.22);
}
.schema-results i.bi { color: var(--fb-cyan); }

/* ---------- Schema: KI-Assistent ---------- */

.ai-mock {
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--fb-border);
  box-shadow: 0 24px 60px rgba(23, 38, 59, 0.1);
}

.ai-mock .mock-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--fb-text);
}
.ai-mock .mock-head i.bi { color: var(--fb-violet); font-size: 18px; }

.ai-mock .mock-input-row {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}
.ai-mock .mock-input {
  flex: 1;
  padding: 11px 14px;
  border-radius: 11px;
  border: 1.5px solid var(--fb-border);
  font-size: 14px;
  color: var(--fb-text);
  background: #f8fafd;
}
.ai-mock .mock-ai-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border: none;
  border-radius: 11px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #7c3aed, var(--fb-violet));
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.35);
  white-space: nowrap;
}
.ai-mock .mock-ai-btn i.bi { animation: sparkle 1.8s ease-in-out infinite; }
@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  50%      { transform: scale(1.25) rotate(12deg); opacity: 0.8; }
}

.ai-mock .mock-fields { display: flex; flex-direction: column; gap: 10px; }

.ai-mock .mock-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 11px;
  background: #f5f3ff;
  border: 1px solid #ddd6fe;
  opacity: 0;
  animation: fieldin 0.5s ease forwards;
}
.ai-mock .mock-field:nth-child(1) { animation-delay: 0.25s; }
.ai-mock .mock-field:nth-child(2) { animation-delay: 0.55s; }
.ai-mock .mock-field:nth-child(3) { animation-delay: 0.85s; }
.ai-mock .mock-field:nth-child(4) { animation-delay: 1.15s; }
@keyframes fieldin {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

.ai-mock .mock-field span  { font-size: 12px; color: #6d28d9; font-weight: 500; }
.ai-mock .mock-field strong { font-size: 13.5px; color: var(--fb-text); font-weight: 600; }

.ai-mock .mock-done {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 500;
  color: #047857;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  opacity: 0;
  animation: fieldin 0.5s ease forwards;
  animation-delay: 1.5s;
}

/* ---------- Mock: Digitales Flugbuch ---------- */

.fb-mock {
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--fb-border);
  box-shadow: 0 24px 60px rgba(23, 38, 59, 0.1);
}
.fb-mock .mock-head,
.hg-mock .mock-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--fb-text);
}
.fb-mock .mock-head i.bi,
.hg-mock .mock-head i.bi { font-size: 18px; }

.fb-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.fb-stats > div {
  padding: 10px 14px;
  border-radius: 12px;
  background: #f2f7ff;
  border: 1px solid #d8e6fb;
}
.fb-stats span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--fb-muted);
  margin-bottom: 3px;
}
.fb-stats strong { font-size: 17px; font-weight: 600; color: var(--fb-blue); }

.fb-table { display: flex; flex-direction: column; gap: 6px; }
.fb-row {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr 0.6fr 0.6fr;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 10px;
  background: #f8fafd;
  border: 1px solid #edf2f9;
  font-size: 13px;
  color: var(--fb-text);
}
.fb-row span:nth-child(2) { font-weight: 500; }
.fb-row span:nth-child(3), .fb-row span:nth-child(4) { text-align: right; color: var(--fb-muted); }
.fb-row-head {
  background: transparent;
  border: none;
  padding-top: 0;
  padding-bottom: 2px;
  font-size: 10.5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--fb-muted);
  font-weight: 600;
}
.fb-row-head span:nth-child(2) { font-weight: 600; }
.fb-row-head span:nth-child(3), .fb-row-head span:nth-child(4) { color: var(--fb-muted); }

/* ---------- Mock: Hangar & Akku-Manager ---------- */

.hg-mock {
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--fb-border);
  box-shadow: 0 24px 60px rgba(23, 38, 59, 0.1);
}

.hg-model {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  border-radius: 12px;
  background: #f8fafd;
  border: 1px solid #edf2f9;
  margin-bottom: 10px;
}
.hg-model-icon {
  width: 40px; height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: #fff;
  background: linear-gradient(135deg, #15803d, var(--fb-green));
  flex: 0 0 auto;
}
.hg-model-info { flex: 1; min-width: 0; }
.hg-model-info strong { display: block; font-size: 14px; font-weight: 600; color: var(--fb-text); }
.hg-model-info span { font-size: 11.5px; color: var(--fb-muted); }
.hg-chip {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
}
.hg-chip-ok { color: #16a34a; background: #ecfdf5; border: 1px solid #a7f3d0; }

.hg-batt-title {
  margin: 16px 0 10px;
  font-size: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--fb-muted);
}
.hg-batt { margin-bottom: 12px; }
.hg-batt-head {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--fb-text);
  margin-bottom: 6px;
}
.hg-batt-head span:last-child { color: var(--fb-muted); font-size: 11.5px; }
.hg-bar {
  height: 9px;
  border-radius: 999px;
  background: #eef2f8;
  overflow: hidden;
}
.hg-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #16a34a, var(--fb-green));
}
.hg-bar-fill.warn { background: linear-gradient(90deg, #b45309, var(--fb-amber)); }
.hg-warn {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 7px;
  font-size: 11.5px;
  font-weight: 500;
  color: #b45309;
}
.hg-warn i.bi { font-size: 12px; }

/* ---------- Mock: Telemetrie ---------- */

.tm-mock {
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(165deg, #123a6e 0%, var(--fb-navy-700) 45%, var(--fb-navy-800) 100%);
  border: 1px solid rgba(163, 209, 255, 0.16);
  box-shadow: 0 24px 60px rgba(3, 10, 22, 0.35);
  color: #eaf3ff;
}
.tm-head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
}
.tm-head .live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--fb-green);
  animation: livedot 2s ease-out infinite;
}
.tm-title {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(234, 243, 255, 0.7);
}
.tm-time { margin-left: auto; font-size: 12px; font-weight: 600; color: var(--fb-sky); }

svg.tm-chart {
  display: block;
  width: 100%;
  height: 130px;
  border-radius: 12px;
  background: rgba(163, 209, 255, 0.05);
}
.tm-gridlines line { stroke: rgba(163, 209, 255, 0.1); stroke-width: 1; }
.tm-area { fill: url(#tmFill); }
.tm-line {
  fill: none;
  stroke: var(--fb-cyan);
  stroke-width: 2.5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 5px rgba(56, 189, 248, 0.6));
}
.tm-line2 {
  fill: none;
  stroke: rgba(139, 92, 246, 0.85);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 5 6;
}
.tm-dot {
  fill: #fff;
  stroke: var(--fb-cyan);
  stroke-width: 2;
  animation: pulse 2s ease-in-out infinite;
}
.tm-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.tm-stats > div {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(163, 209, 255, 0.07);
  border: 1px solid rgba(163, 209, 255, 0.12);
}
.tm-stats span {
  display: block;
  font-size: 9.5px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(234, 243, 255, 0.55);
  margin-bottom: 3px;
}
.tm-stats strong { font-size: 16px; font-weight: 600; color: #fff; }

/* ---------- Vereine: Monitor-Render + Admin-Grid ---------- */

.monitor-frame {
  max-width: 900px;
  margin: 0 auto;
  padding: 12px;
  border-radius: 22px;
  background: #0f172a;
  border: 1px solid #1e293b;
  box-shadow: 0 34px 80px rgba(3, 10, 22, 0.35);
}
.monitor-frame img {
  display: block;
  width: 100%;
  border-radius: 12px;
}

.monitor-caption {
  margin: 14px auto 0;
  max-width: 700px;
  text-align: center;
  font-size: 12.5px;
  color: var(--fb-muted);
}

.check-row {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}
.check-row li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: #33445c;
}
.check-row li i.bi { color: var(--fb-green); font-size: 16px; }

.admin-head {
  text-align: center;
  max-width: 620px;
  margin: 64px auto 36px;
}
.admin-head h3 {
  margin: 0 0 10px;
  font-size: clamp(21px, 2.4vw, 27px);
  font-weight: 700;
  color: var(--fb-text);
}
.admin-head p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--fb-muted); }

.admin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.admin-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--fb-border);
  box-shadow: 0 5px 20px rgba(23, 38, 59, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.admin-item:hover {
  transform: translateY(-4px);
  border-color: var(--fb-blue-soft);
  box-shadow: 0 14px 34px rgba(28, 100, 217, 0.1);
}
.admin-icon {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 19px;
  color: var(--fb-blue);
  background: #eaf2ff;
  border: 1px solid #cfe1fa;
}
.admin-item h4 { margin: 0 0 5px; font-size: 14.5px; font-weight: 600; color: var(--fb-text); }
.admin-item p  { margin: 0; font-size: 12.5px; line-height: 1.55; color: var(--fb-muted); }

/* ---------- Galerie (Original-Renders) ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.gallery-card {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--fb-border);
  box-shadow: 0 6px 24px rgba(23, 38, 59, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.gallery-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(28, 100, 217, 0.12); }

.g-shot {
  height: 250px;
  background:
    radial-gradient(400px 220px at 50% 0%, rgba(56, 189, 248, 0.14), transparent 70%),
    linear-gradient(165deg, #10294a 0%, var(--fb-navy-900) 100%);
  display: grid;
  place-items: center;
  padding: 20px;
  overflow: hidden;
}
.g-shot img {
  display: block;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(3, 10, 22, 0.55);
}
.g-shot-device img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.g-shot-phone img {
  width: auto;
  max-width: 46%;
  height: 105%;
  object-fit: cover;
  object-position: top;
  border-radius: 14px;
  margin-top: 30px;
}

.gallery-card .g-body { padding: 16px 18px; }
.gallery-card h4 {
  margin: 0 0 5px;
  font-size: 15px;
  font-weight: 600;
  color: var(--fb-text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.gallery-card h4 i.bi { color: var(--fb-blue); font-size: 15px; }
.gallery-card p  { margin: 0; font-size: 12.5px; line-height: 1.5; color: var(--fb-muted); }

/* ---------- CTA-Band ---------- */

.lp-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(700px 400px at 20% -30%, rgba(56, 189, 248, 0.25), transparent 60%),
    linear-gradient(150deg, #123a6e 0%, var(--fb-navy-800) 70%);
}
.lp-cta .cta-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(163, 209, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(163, 209, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.lp-cta .lp-section-inner { position: relative; }
.lp-cta h2 { margin: 0 0 12px; font-size: clamp(26px, 3vw, 36px); font-weight: 700; }
.lp-cta p  { margin: 0 auto 28px; max-width: 480px; font-size: 15.5px; color: rgba(234, 243, 255, 0.75); }

/* ---------- Kontakt ---------- */

.lp-contact { background: #f2f6fc; }

.contact-card {
  max-width: 640px;
  margin: 0 auto;
  padding: 34px 36px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--fb-border);
  box-shadow: 0 14px 44px rgba(23, 38, 59, 0.08);
}

.lp-msg {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  margin-bottom: 18px;
  border-radius: 12px;
  font-size: 13.5px;
  line-height: 1.5;
}
.lp-msg i.bi { font-size: 16px; margin-top: 1px; }
.lp-msg.lp-msg-success { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.lp-msg.lp-msg-error   { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }

/* ---------- Footer ---------- */

.lp-footer {
  padding: 40px 5vw;
  background: var(--fb-navy-900);
  color: rgba(234, 243, 255, 0.55);
}
.lp-footer .foot-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.lp-footer .foot-brand { display: flex; align-items: center; gap: 10px; color: #fff; }
.lp-footer .foot-brand .brand-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  display: grid;
  place-items: center;
}
.lp-footer .foot-brand .brand-icon img { width: 86%; height: 86%; object-fit: contain; }
.lp-footer .foot-brand strong { font-size: 15px; }
.lp-footer .foot-tagline { font-size: 12px; }
.lp-footer a { color: rgba(234, 243, 255, 0.7); text-decoration: none; font-size: 13px; }
.lp-footer a:hover { color: #fff; }
.lp-footer .foot-links { display: flex; gap: 18px; align-items: center; }

/* ---------- Responsive ---------- */

@media (max-width: 992px) {
  .lp-hero-inner { grid-template-columns: 1fr; gap: 44px; padding-bottom: 150px; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .lp-split { grid-template-columns: 1fr; gap: 36px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .admin-grid { grid-template-columns: 1fr 1fr; }
  .lp-nav .nav-links a:not(.lp-btn) { display: none; }
}

@media (max-width: 640px) {
  .lp-hero svg.hero-telemetry-svg { opacity: 0.5; }
  .lp-hero .flightpath,
  .lp-hero .waypoint { display: none; }
  .feat-grid { grid-template-columns: 1fr; }
  .hero-dash .dash-kpis { grid-template-columns: 1fr 1fr; }
  .admin-grid { grid-template-columns: 1fr; }
  .check-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .lp-section { padding: 64px 5vw; }
  .contact-card { padding: 26px 20px; }
}
