/* Phone Forensik — SEO Landing (getrennt vom Dashboard) */
:root {
  --brand: #00d4ff;
  --brand-light: #b3efff;
  --brand-dark: #0088a8;
  --brand-glow: rgba(0, 212, 255, 0.4);
  --brand-glow-soft: rgba(0, 212, 255, 0.15);
  --dark: #0a0a0f;
  --dark-card: #111118;
  --dark-surface: #16161f;
  --dark-border: #1e1e2a;
  --text: #e0e0e8;
  --text-muted: #8888a0;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', Consolas, monospace;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --radius: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; }
/* Content images only — brand marks stay inline (never break hero/nav) */
img { max-width: 100%; height: auto; }
img.lp-brand-mark,
img.mark,
.lp-brand-mark,
.lp-hero h1 .mark {
  max-width: none;
}
.container { width: min(1120px, 100% - 2rem); margin: 0 auto; }

/* Topbar */
.lp-nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 64px;
  padding: 0.75rem clamp(1rem, 4vw, 3rem);
  background: rgba(10, 10, 15, 0.78);
  border-bottom: 1px solid rgba(0, 212, 255, 0.16);
  backdrop-filter: blur(16px);
}
.lp-brand {
  display: inline-flex;
  align-items: center;
  font: 700 0.82rem/1 var(--font-mono);
  letter-spacing: 0.14em;
  text-decoration: none; white-space: nowrap;
}
.lp-brand strong { color: var(--brand); }
.lp-brand-mark,
img.lp-brand-mark {
  display: inline-block !important;
  width: 1.35rem;
  height: 1.35rem;
  margin-right: 0.35rem;
  vertical-align: middle;
  flex-shrink: 0;
  object-fit: contain;
}
.lp-nav-links { display: flex; gap: clamp(1rem, 3vw, 2rem); }
.lp-nav-links a {
  color: var(--text-muted); text-decoration: none; font-size: 0.88rem;
  transition: color 0.2s;
}
.lp-nav-links a:hover { color: var(--brand); }
.lp-nav-actions { display: flex; align-items: center; gap: 0.55rem; flex-shrink: 0; }
.lp-lang {
  display: inline-flex; align-items: center; gap: 0.25rem; padding: 0.25rem 0.5rem;
  border: 1px solid rgba(0,212,255,.22); border-radius: 999px; background: rgba(0,0,0,.35);
}
.lp-lang select {
  appearance: none; border: 0; background: transparent; color: var(--brand-light);
  font: 600 0.68rem/1.2 var(--font-mono); max-width: 11rem; cursor: pointer; outline: none;
  padding: 0.3rem 0.2rem;
}
.lp-lang select option { color: #111; background: #fff; }
.lp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  border: 0; border-radius: 10px; padding: 0.75rem 1.1rem;
  font: 700 0.78rem/1 var(--font-mono); letter-spacing: 0.03em;
  text-decoration: none; cursor: pointer; transition: 0.3s var(--ease);
}
.lp-btn-primary { background: var(--brand); color: var(--dark); }
.lp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 30px var(--brand-glow); }
.lp-btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid rgba(0,212,255,.35);
}
.lp-btn-ghost:hover { border-color: var(--brand); color: var(--brand); }

/* Hero */
.lp-hero {
  position: relative; overflow: hidden;
  padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  text-align: center;
  background:
    radial-gradient(circle at 50% 18%, rgba(0,212,255,.12), transparent 34%),
    linear-gradient(180deg, #111118 0%, #0a0a0f 90%);
  border-bottom: 1px solid rgba(0,212,255,.2);
}
.lp-hero-glow {
  position: absolute; border-radius: 50%; filter: blur(10px); pointer-events: none; opacity: .45;
}
.lp-hero-glow-1 { top: -180px; left: 10%; width: 340px; height: 340px; background: radial-gradient(circle, rgba(0,212,255,.2), transparent 70%); }
.lp-hero-glow-2 { right: 5%; bottom: -220px; width: 380px; height: 380px; background: radial-gradient(circle, rgba(0,136,168,.18), transparent 70%); }
.lp-kicker {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--brand); font: 600 0.7rem/1 var(--font-mono);
  letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1.25rem;
}
.lp-kicker-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--brand);
  box-shadow: 0 0 14px var(--brand); animation: glowPulse 2.4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.85); }
}
.lp-hero h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.12em 0.18em;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 0.98; letter-spacing: -0.06em; font-weight: 800;
  margin-bottom: 1.25rem;
}
.lp-hero h1 .mark,
.lp-hero h1 img.mark {
  display: inline-block !important;
  width: 0.85em;
  height: 0.85em;
  margin: 0;
  vertical-align: middle;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.45));
}
.gradient-text {
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradShift 4.5s ease-in-out infinite;
}
@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.lp-typewriter {
  width: min(720px, 100%);
  margin: 0 auto 1.75rem;
  min-height: 3.5em;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.7;
}
.lp-typewriter-cursor {
  display: inline-block; width: 2px; height: 0.95em; margin-left: 3px;
  background: var(--brand); vertical-align: baseline;
  animation: blink 0.6s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.lp-hero-actions {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem;
  margin-bottom: 2rem;
}
.lp-trust-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem 1.25rem;
  color: var(--text-muted); font: 0.75rem/1.4 var(--font-mono);
}
.lp-trust-row span { display: inline-flex; align-items: center; gap: 0.35rem; }

/* Proof cards */
.lp-section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.lp-section-alt {
  background: linear-gradient(180deg, transparent, rgba(0,212,255,.03), transparent);
}
.lp-eyebrow {
  color: var(--brand); font: 600 0.7rem/1.3 var(--font-mono);
  letter-spacing: 0.16em; text-transform: uppercase;
}
.lp-section h2 {
  margin: 0.85rem 0 0.75rem;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.08; letter-spacing: -0.04em;
}
.lp-section-lead {
  max-width: 640px; color: var(--text-muted); line-height: 1.8; margin-bottom: 2rem;
}
.lp-proof-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.lp-card {
  background: linear-gradient(145deg, rgba(22,22,31,.95), rgba(17,17,24,.75));
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 1.35rem;
  transition: transform 0.35s var(--ease), border-color 0.25s, box-shadow 0.35s;
}
.lp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,212,255,.35);
  box-shadow: 0 12px 40px rgba(0,0,0,.35), 0 0 28px var(--brand-glow-soft);
}
.lp-card-icon {
  color: var(--brand); font-size: 1.5rem; margin-bottom: 0.65rem;
  animation: iconGlow 3.2s ease-in-out infinite;
}
@keyframes iconGlow {
  0%, 100% { filter: drop-shadow(0 0 0 transparent); }
  50% { filter: drop-shadow(0 0 8px var(--brand-glow)); }
}
.lp-card strong { display: block; margin-bottom: 0.35rem; font-size: 1.05rem; }
.lp-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.55; }

/* Story + flow visual */
.lp-story {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
}
.lp-points {
  display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.25rem;
}
.lp-points span {
  padding: 0.35rem 0.7rem; border-radius: 999px;
  border: 1px solid rgba(0,212,255,.25); color: var(--brand-light);
  font: 0.72rem/1.4 var(--font-mono);
}

/* Visual cards / animations */
.lp-visual {
  position: relative; min-height: 420px; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 0.4rem;
  padding: 1.5rem;
  border: 1px solid rgba(0,212,255,.3); border-radius: 20px;
  background:
    radial-gradient(circle at 50% 18%, rgba(0,212,255,.16), transparent 38%),
    linear-gradient(145deg, var(--dark-card), var(--dark));
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.lp-orb {
  position: absolute; top: 8%; left: 50%; width: 140px; height: 140px;
  transform: translateX(-50%);
  border: 1px solid rgba(0,212,255,.4); border-radius: 50%;
  box-shadow: 0 0 30px var(--brand-glow), inset 0 0 30px var(--brand-glow-soft);
  animation: float 4s ease-in-out infinite; pointer-events: none;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}
.lp-rings { position: absolute; top: 5%; left: 50%; width: 180px; height: 180px; transform: translateX(-50%); pointer-events: none; }
.lp-rings span {
  position: absolute; inset: 0; border: 1px solid rgba(0,212,255,.16); border-radius: 50%;
  animation: ringPulse 4.5s ease-out infinite;
}
.lp-rings span:nth-child(2) { inset: 12%; animation-delay: .9s; }
.lp-rings span:nth-child(3) { inset: 24%; animation-delay: 1.8s; }
@keyframes ringPulse {
  0% { transform: scale(.72); opacity: .7; }
  100% { transform: scale(1.2); opacity: 0; }
}
.lp-flow-stage {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 110px 1fr; gap: 1rem; min-height: 200px; margin-bottom: 0.75rem;
}
.lp-phone {
  border-radius: 18px; border: 1px solid rgba(0,212,255,.35);
  background: linear-gradient(180deg, #12121a, #0a0a10);
  padding: 8px 7px 10px; box-shadow: 0 12px 30px rgba(0,0,0,.45);
}
.lp-phone-notch { width: 36%; height: 5px; margin: 0 auto 8px; border-radius: 999px; background: #2a2a38; }
.lp-phone-screen {
  position: relative; height: 170px; border-radius: 12px; overflow: hidden;
  background: radial-gradient(circle at 50% 20%, rgba(0,212,255,.12), transparent 55%), #0d0d14;
  border: 1px solid rgba(0,212,255,.12);
}
.lp-scanline {
  position: absolute; left: 0; right: 0; height: 28%; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(0,212,255,.18), transparent);
  animation: scan 2.4s ease-in-out infinite;
}
@keyframes scan {
  0% { top: -30%; opacity: 0; }
  15% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
.lp-grid {
  position: absolute; inset: 0; opacity: .4; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,212,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,.06) 1px, transparent 1px);
  background-size: 14px 14px;
  animation: gridDrift 8s linear infinite;
}
@keyframes gridDrift { to { background-position: 0 28px; } }
.lp-slide {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.3rem; padding: 0.6rem;
  text-align: center; opacity: 0; transform: translateY(10px) scale(.96);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.lp-slide.is-active { opacity: 1; transform: none; }
.lp-slide-icon { font-size: 1.4rem; filter: drop-shadow(0 0 10px rgba(0,212,255,.45)); }
.lp-slide-title { color: var(--brand-light); font: 700 0.78rem/1.2 var(--font-sans); }
.lp-slide-desc { color: var(--text-muted); font: 0.62rem/1.35 var(--font-mono); }
.lp-term {
  min-height: 170px; padding: 0.85rem; border-radius: 12px;
  border: 1px solid rgba(0,212,255,.18); background: rgba(0,0,0,.45);
  font: 0.68rem/1.55 var(--font-mono); color: #9adcf0; overflow: hidden;
}
.lp-term::before {
  content: attr(data-session);
  display: block; margin-bottom: 0.5rem; color: var(--brand);
  font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.lp-term-line { opacity: 0; animation: termIn .35s var(--ease) forwards; }
.lp-term-line:nth-child(1) { animation-delay: .05s; }
.lp-term-line:nth-child(2) { animation-delay: .18s; }
.lp-term-line:nth-child(3) { animation-delay: .32s; }
.lp-term-line:nth-child(4) { animation-delay: .48s; }
.lp-term-line.is-ok { color: #4ade80; }
@keyframes termIn { from { opacity: 0; transform: translateX(-6px); } to { opacity: 1; transform: none; } }
.lp-visual-label { position: relative; z-index: 1; color: var(--brand); font: 0.68rem/1 var(--font-mono); letter-spacing: .15em; }
.lp-visual strong { position: relative; z-index: 1; font-size: 1.45rem; letter-spacing: -0.03em; }
.lp-visual small { position: relative; z-index: 1; color: var(--text-muted); min-height: 1.35em; }
.lp-bars { display: flex; gap: .45rem; margin-top: .5rem; position: relative; z-index: 1; }
.lp-bars i { height: 4px; flex: 1; border-radius: 999px; background: rgba(0,212,255,.18); transition: .35s var(--ease); }
.lp-bars i.is-done { background: rgba(0,212,255,.45); }
.lp-bars i.is-active { background: var(--brand); box-shadow: 0 0 12px var(--brand-glow); }
.lp-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.5rem; position: relative; z-index: 1; list-style: none; }
.lp-chips li {
  padding: 0.28rem 0.55rem; border-radius: 999px; border: 1px solid var(--dark-border);
  color: #555566; font: 500 0.62rem/1 var(--font-mono);
}
.lp-chips li.is-active { color: var(--dark); background: var(--brand); border-color: var(--brand); }

/* Showcase grid of more animations */
.lp-showcase {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem;
}
.lp-show-card {
  min-height: 220px; position: relative; overflow: hidden;
  border-radius: var(--radius); border: 1px solid var(--dark-border);
  background: linear-gradient(160deg, var(--dark-card), #0c0c14);
  padding: 1.1rem;
}
.lp-show-card h3 { font-size: 0.95rem; margin-bottom: 0.35rem; position: relative; z-index: 1; }
.lp-show-card p { color: var(--text-muted); font-size: 0.8rem; position: relative; z-index: 1; }
.lp-radar {
  position: absolute; inset: 20% 15% 25%; border-radius: 50%;
  border: 1px solid rgba(0,212,255,.2);
}
.lp-radar::before, .lp-radar::after {
  content: ''; position: absolute; inset: 18%; border-radius: 50%;
  border: 1px dashed rgba(0,212,255,.15);
}
.lp-radar-beam {
  position: absolute; left: 50%; top: 50%; width: 48%; height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, var(--brand), transparent);
  animation: radarSpin 3.2s linear infinite;
}
@keyframes radarSpin { to { transform: rotate(360deg); } }
.lp-radar-dot {
  position: absolute; width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand); box-shadow: 0 0 12px var(--brand);
  animation: blip 2.8s ease-in-out infinite;
}
.lp-radar-dot:nth-child(2) { top: 32%; left: 58%; animation-delay: .6s; }
.lp-radar-dot:nth-child(3) { top: 55%; left: 35%; animation-delay: 1.2s; }
.lp-radar-dot:nth-child(4) { top: 40%; left: 70%; animation-delay: 1.8s; }
@keyframes blip {
  0%, 100% { opacity: .3; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.2); }
}
.lp-timeline {
  position: relative; z-index: 1; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.55rem;
}
.lp-timeline-item {
  display: flex; gap: 0.6rem; align-items: center;
  opacity: 0; transform: translateX(-8px);
  animation: tlIn 4.8s ease-in-out infinite;
}
.lp-timeline-item:nth-child(2) { animation-delay: 1.2s; }
.lp-timeline-item:nth-child(3) { animation-delay: 2.4s; }
.lp-timeline-item:nth-child(4) { animation-delay: 3.6s; }
@keyframes tlIn {
  0%, 10% { opacity: 0; transform: translateX(-8px); }
  20%, 70% { opacity: 1; transform: none; }
  90%, 100% { opacity: 0; }
}
.lp-tl-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); flex-shrink: 0; }
.lp-tl-text { font: 0.7rem/1.3 var(--font-mono); color: var(--text-muted); }
.lp-matrix {
  position: absolute; inset: 0; opacity: .35; overflow: hidden; pointer-events: none;
  font: 0.55rem/1.2 var(--font-mono); color: rgba(0,212,255,.55);
  white-space: pre; animation: matrixScroll 12s linear infinite;
}
@keyframes matrixScroll {
  from { transform: translateY(-20%); }
  to { transform: translateY(20%); }
}
.lp-lock-ring {
  position: absolute; left: 50%; top: 42%; width: 70px; height: 70px;
  margin: -35px 0 0 -35px; border-radius: 50%;
  border: 2px solid rgba(0,212,255,.35);
  animation: lockPulse 2.2s ease-in-out infinite;
}
.lp-lock-ring::after {
  content: '🔒'; position: absolute; inset: 0; display: grid; place-items: center; font-size: 1.4rem;
}
@keyframes lockPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,212,255,.25); }
  50% { box-shadow: 0 0 0 14px rgba(0,212,255,0); }
}

/* Steps / trust */
.lp-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem;
}
.lp-step {
  padding: 1.25rem; border-radius: var(--radius);
  border: 1px solid var(--dark-border);
  background: linear-gradient(145deg, var(--dark-card), var(--dark-surface));
  transition: transform .3s var(--ease), box-shadow .3s;
}
.lp-step:hover { transform: translateY(-3px); box-shadow: 0 0 24px var(--brand-glow-soft); }
.lp-step strong {
  display: block; color: var(--brand); font: 700 1.6rem/1 var(--font-mono); margin-bottom: 0.5rem;
}
.lp-step span { display: block; font-weight: 600; margin-bottom: 0.35rem; }
.lp-step small { color: var(--text-muted); font-size: 0.85rem; }

/* Features list */
.lp-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 2rem; margin-top: 1.5rem;
}
.lp-feature {
  display: grid; grid-template-columns: auto 1fr; gap: 0.35rem 0.85rem;
  padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.04);
}
.lp-feature-icon { color: var(--brand); font-size: 1.2rem; grid-row: span 2; }
.lp-feature strong { font-size: 0.95rem; }
.lp-feature p { color: var(--text-muted); font-size: 0.88rem; }

/* FAQ */
.lp-faq { max-width: 760px; }
.lp-faq details {
  border: 1px solid var(--dark-border); border-radius: 12px;
  background: var(--dark-card); margin-bottom: 0.65rem; padding: 0.9rem 1.1rem;
}
.lp-faq summary {
  cursor: pointer; font-weight: 600; list-style: none;
  display: flex; justify-content: space-between; gap: 1rem;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after { content: '+'; color: var(--brand); font-size: 1.2rem; }
.lp-faq details[open] summary::after { content: '−'; }
.lp-faq p { color: var(--text-muted); margin-top: 0.7rem; font-size: 0.92rem; line-height: 1.7; }

/* CTA band */
.lp-cta-band {
  text-align: center; padding: clamp(3rem, 7vw, 5rem) 1rem;
  border-radius: 24px;
  border: 1px solid rgba(0,212,255,.25);
  background:
    radial-gradient(circle at 50% 0%, rgba(0,212,255,.14), transparent 50%),
    linear-gradient(145deg, var(--dark-card), var(--dark));
}
.lp-cta-band h2 { margin-bottom: 0.75rem; }
.lp-cta-band p { color: var(--text-muted); max-width: 520px; margin: 0 auto 1.5rem; }

/* Footer */
.lp-footer {
  border-top: 1px solid var(--dark-border);
  padding: 2rem 0 2.5rem; margin-top: 2rem;
  color: var(--text-muted); font-size: 0.85rem;
}
.lp-footer-row {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; align-items: center;
}
.lp-footer a { color: var(--text-muted); text-decoration: none; margin-right: 1rem; }
.lp-footer a:hover { color: var(--brand); }

/* Reveal */
.lp-reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
  transition-delay: calc(var(--stagger, 0) * 90ms);
}
.lp-reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  .lp-hero h1 { font-size: clamp(2.2rem, 6.5vw, 3.4rem); }
}
@media (max-width: 900px) {
  .lp-nav { padding: 0.9rem 1.1rem; }
  .lp-nav-links { display: none; }
  .lp-hero { padding: 3rem 1.1rem 2.5rem; text-align: left; }
  .lp-hero h1 { font-size: clamp(1.9rem, 8vw, 2.6rem); line-height: 1.12; }
  .lp-hero p { font-size: 0.95rem; }
  .lp-hero-actions { flex-direction: column; align-items: stretch; gap: 0.7rem; }
  .lp-hero-actions .lp-btn { width: 100%; text-align: center; }
  .lp-proof-grid, .lp-showcase, .lp-steps { grid-template-columns: 1fr; }
  .lp-story { grid-template-columns: 1fr; }
  .lp-features { grid-template-columns: 1fr; }
  .lp-flow-stage { grid-template-columns: 1fr; }
  .lp-phone { max-width: 150px; margin: 0 auto; }
  .lp-flow-stage { gap: 1.4rem; }
  .lp-bars { flex-wrap: wrap; }
  .lp-footer { padding: 2.5rem 1.1rem; text-align: left; }
  .lp-footer-row { flex-direction: column; gap: 1rem; }
  .lp-cta-band { padding: 2.5rem 1.1rem; text-align: center; }
  .lp-cta-band h2 { font-size: 1.6rem; }
  .lp-section-head { padding: 0 1.1rem; }
  .lp-pricing-toggle { flex-wrap: wrap; padding: 0 1rem; }
}
@media (max-width: 520px) {
  .lp-hero h1 { font-size: 1.75rem; }
  .lp-typewriter, .lp-hero .lp-typewriter { font-size: 0.85rem; min-height: 3.6em; }
  .lp-kicker { font-size: 0.68rem; letter-spacing: 0.12em; }
  .lp-eyebrow { font-size: 0.7rem; }
  .lp-section { padding: 2.8rem 0.9rem; }
  .lp-card { padding: 1.3rem 1.1rem; }
  .lp-anim-visual, .lp-matrix, .lp-radar, .lp-timeline { transform: scale(0.92); transform-origin: top center; }
  .lp-faq summary { font-size: 0.95rem; padding: 0.9rem 0.4rem; }
  .lp-faq .lp-faq-body { padding: 0 0.4rem 0.9rem; font-size: 0.9rem; }
  .lp-price-card { padding: 1.4rem 1.2rem; }
  .lp-price-amount { font-size: 2rem; }
  .lp-lang { font-size: 0.75rem; }
  .lp-nav-brand { font-size: 0.85rem; }
}
@media (prefers-reduced-motion: reduce) {
  .lp-typewriter-cursor, .lp-orb, .lp-rings span, .lp-scanline, .lp-grid,
  .lp-radar-beam, .lp-radar-dot, .lp-timeline-item, .lp-matrix, .lp-lock-ring,
  .lp-card-icon, .gradient-text { animation: none !important; }
  .lp-reveal { opacity: 1; transform: none; }
  .lp-term-line { opacity: 1; animation: none !important; }
}
