/* ============================================================
 * landing-pages.css — gemeinsame Styles für /zeiterfassung/,
 * /schichtplanung/, /urlaubsplanung/, /krankmeldung/,
 * /gastronomie/, /reinigung/, /pflege/
 * (A1-L01, 2026-06-10)
 *
 * Selbst-gehostet (Memory-Regel A1-279: keine Drittland-CDNs).
 * Token-konsistent mit index.html (gleiche Akzent-Blau-Range
 * #3B82F6/#2563eb/#1E3A8A, gleiche Inter-Font-Stack).
 * ============================================================ */

:root {
  --brand-50: #eff6ff;
  --brand-100: #dbeafe;
  --brand-500: #3B82F6;
  --brand-600: #2563eb;
  --brand-700: #1d4ed8;
  --brand-900: #1E3A8A;
  --ink-900: #0f172a;
  --ink-700: #334155;
  --ink-500: #64748b;
  --ink-300: #cbd5e1;
  --ink-200: #e2e8f0;
  --ink-100: #f1f5f9;
  --ink-50: #f8fafc;
  --brand-300: #93c5fd;
  --brand-200: #bfdbfe;
  --green-600: #16a34a;
  --green-50:  #f0fdf4;
  --amber-500: #f59e0b;
  --red-600:   #dc2626;
  --shadow-card: 0 1px 2px rgba(15,23,42,0.04), 0 4px 12px rgba(15,23,42,0.06);
  --radius-card: 14px;
  --radius-pill: 999px;
  --max-w: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-900);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--brand-600); text-decoration: none; }
a:hover { text-decoration: underline; }

/* --- Top-Nav (sticky, minimal) --- */
/* A1-LR02 T0-NACHTRAG (2026-06-10): Funktionen-/Branchen-Dropdowns +
   Mobile-Hamburger + identische Struktur auf allen 9 Landing-Seiten. */
.lp-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--ink-200);
}
.lp-nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; gap: 24px;
}
.lp-nav-brand {
  font-weight: 800; color: var(--ink-900); font-size: 17px;
  display: inline-flex; align-items: center; gap: 8px;
}
.lp-nav-brand em { font-style: normal; color: var(--brand-600); }
.lp-nav-brand-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--brand-600); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lp-nav-brand-icon svg { width: 18px; height: 18px; }
.lp-nav-links {
  margin-left: auto; display: flex; gap: 18px; font-size: 14px;
  align-items: center;
}
.lp-nav-links a:not(.lp-nav-cta) { color: var(--ink-700); font-weight: 500; }
.lp-nav-links a[aria-current="page"] {
  color: var(--brand-700); font-weight: 700;
}
.lp-nav-ctas {
  display: flex; gap: 8px; align-items: center;
}
.lp-nav-cta {
  background: var(--brand-600); color: #fff !important;
  padding: 8px 14px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 14px;
  white-space: nowrap;
}
.lp-nav-cta:hover { background: var(--brand-700); text-decoration: none; }
.lp-nav-cta-ghost {
  background: transparent; color: var(--ink-700) !important;
  border: 1.5px solid var(--ink-200);
}
.lp-nav-cta-ghost:hover { background: var(--ink-50); border-color: var(--ink-300); }

/* Dropdown */
.lp-nav-dropdown { position: relative; }
.lp-nav-dd-btn {
  background: transparent; border: 0; cursor: pointer;
  color: var(--ink-700); font-weight: 500; font-size: 14px;
  font-family: inherit;
  display: inline-flex; align-items: center; gap: 4px;
  padding: 6px 4px;
}
.lp-nav-dd-btn:hover { color: var(--brand-700); }
.lp-nav-dd-caret {
  width: 12px; height: 12px;
  transition: transform 0.15s ease;
}
.lp-nav-dropdown.is-open .lp-nav-dd-caret { transform: rotate(180deg); }
.lp-nav-dd-menu {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: #fff; border: 1px solid var(--ink-200);
  border-radius: 12px; box-shadow: 0 8px 24px rgba(15,23,42,0.10);
  min-width: 200px; padding: 6px;
  display: none; flex-direction: column;
}
.lp-nav-dropdown.is-open .lp-nav-dd-menu { display: flex; }
.lp-nav-dd-menu a {
  padding: 8px 12px; border-radius: 8px;
  color: var(--ink-900); font-size: 14px; font-weight: 500;
}
.lp-nav-dd-menu a:hover { background: var(--brand-50); text-decoration: none; color: var(--brand-700); }
.lp-nav-dd-menu a[aria-current="page"] {
  background: var(--brand-50); color: var(--brand-700); font-weight: 700;
}

/* Mobile-Toggle */
.lp-nav-toggle {
  display: none;
  background: transparent; border: 0; cursor: pointer;
  width: 36px; height: 36px; padding: 0;
  align-items: center; justify-content: center;
  color: var(--ink-900); margin-left: auto;
}
.lp-nav-toggle svg { width: 24px; height: 24px; }

body.lp-nav-locked { overflow: hidden; }

@media (max-width: 879px) {
  .lp-nav-inner { padding: 12px 16px; gap: 12px; }
  .lp-nav-toggle { display: inline-flex; }
  .lp-nav-links {
    position: fixed; inset: 64px 0 0 0;
    background: #fff; flex-direction: column;
    align-items: stretch; gap: 0;
    padding: 8px 16px 24px; overflow-y: auto;
    border-top: 1px solid var(--ink-200);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
  }
  .lp-nav.is-mobile-open .lp-nav-links {
    transform: translateY(0); opacity: 1; pointer-events: auto;
  }
  .lp-nav-links > a,
  .lp-nav-dd-btn {
    padding: 14px 8px; font-size: 16px; width: 100%;
    text-align: left; justify-content: flex-start;
    border-bottom: 1px solid var(--ink-100);
  }
  .lp-nav-dropdown { width: 100%; }
  .lp-nav-dd-menu {
    position: static; box-shadow: none; border: 0; padding: 0 0 6px 12px;
    min-width: 0;
  }
  .lp-nav-ctas {
    margin-top: 16px; flex-direction: column; align-items: stretch; gap: 10px;
  }
  .lp-nav-cta, .lp-nav-cta-ghost { text-align: center; padding: 12px 16px; }
}

/* --- Top-Nav Ende --- */

/* --- Footer-Trust-Block (A1-LR02 T0-NACHTRAG) --- */
.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 28px;
}
.lp-footer-col h5 {
  font-size: 13px; font-weight: 700; color: #fff;
  margin: 0 0 12px; letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lp-footer-col ul { list-style: none; padding: 0; margin: 0; }
.lp-footer-col li { margin: 0 0 8px; }
.lp-footer-col a { color: #cbd5e1; font-size: 13px; }
.lp-footer-col a:hover { color: #fff; }
.lp-footer-brand-col .brand {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; color: #fff; font-size: 17px; margin-bottom: 10px;
}
.lp-footer-brand-col .brand em { font-style: normal; color: var(--brand-300, #93c5fd); }
.lp-footer-brand-col .brand-icon {
  width: 28px; height: 28px; border-radius: 8px; background: var(--brand-600);
  display: inline-flex; align-items: center; justify-content: center;
}
.lp-footer-brand-col .brand-icon svg { width: 18px; height: 18px; color: #fff; }
.lp-footer-blurb { font-size: 13px; color: #94a3b8; line-height: 1.55; max-width: 280px; }
.lp-footer-trust h5 { margin-bottom: 10px; }
.lp-footer-trust-item {
  display: flex; align-items: flex-start; gap: 8px; font-size: 12px;
  color: #cbd5e1; margin-bottom: 10px; line-height: 1.4;
}
.lp-footer-trust-item svg { width: 16px; height: 16px; color: var(--brand-300, #93c5fd); flex-shrink: 0; margin-top: 2px; }
.lp-footer-trust-item strong { color: #fff; font-weight: 700; }
.lp-footer-trust-item .lp-footer-trust-sub { color: #94a3b8; font-size: 11px; }
.lp-footer-cookie-link {
  display: inline-block; margin-top: 6px; font-size: 12px;
  color: #94a3b8; text-decoration: underline;
}
.lp-footer-bottom {
  margin-top: 28px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 12px; color: #94a3b8;
}
@media (max-width: 960px) {
  .lp-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-footer-brand-col { grid-column: span 2; }
}
@media (max-width: 520px) {
  .lp-footer-grid { grid-template-columns: 1fr; }
  .lp-footer-brand-col { grid-column: span 1; }
  .lp-footer-bottom { justify-content: flex-start; }
}

/* --- Hero --- */
.lp-hero {
  padding: 64px 24px 56px;
  background: linear-gradient(180deg, var(--brand-50) 0%, #fff 100%);
  text-align: center;
}
.lp-hero-inner { max-width: 880px; margin: 0 auto; }
.lp-hero-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.6px;
  text-transform: uppercase; color: var(--brand-700);
  background: var(--brand-100); padding: 6px 12px;
  border-radius: var(--radius-pill); margin-bottom: 16px;
}
.lp-hero h1 {
  font-size: clamp(28px, 4.8vw, 44px);
  line-height: 1.2; font-weight: 800;
  color: var(--ink-900); margin: 0 0 16px;
}
.lp-hero-sub {
  font-size: clamp(15px, 2vw, 18px); color: var(--ink-700);
  margin: 0 auto 28px; max-width: 640px;
}
.lp-cta-row {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-top: 24px;
}
.lp-btn-primary {
  background: var(--brand-600); color: #fff !important;
  padding: 14px 28px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; gap: 8px;
  border: none; cursor: pointer;
}
.lp-btn-primary:hover { background: var(--brand-700); text-decoration: none; }
.lp-btn-ghost {
  background: #fff; color: var(--ink-900) !important;
  border: 1.5px solid var(--ink-200);
  padding: 14px 28px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 15px;
}
.lp-btn-ghost:hover { border-color: var(--ink-300); text-decoration: none; }

/* --- Container-Sections --- */
.lp-section { padding: 64px 24px; }
.lp-section-light { background: var(--ink-50); }
.lp-section-inner { max-width: var(--max-w); margin: 0 auto; }
.lp-section h2 {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 800; color: var(--ink-900);
  text-align: center; margin: 0 0 12px;
}
.lp-section-sub {
  text-align: center; font-size: 16px; color: var(--ink-500);
  margin: 0 auto 40px; max-width: 640px;
}

/* --- Feature-Cards --- */
.lp-features {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.lp-feature {
  background: #fff; border: 1px solid var(--ink-200);
  border-radius: var(--radius-card); padding: 24px;
  box-shadow: var(--shadow-card);
}
.lp-feature-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--brand-50); color: var(--brand-600);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.lp-feature-icon svg { width: 22px; height: 22px; }
.lp-feature h3 { font-size: 17px; font-weight: 700; margin: 0 0 8px; color: var(--ink-900); }
.lp-feature p { font-size: 14px; color: var(--ink-700); margin: 0; }

/* --- Screenshot-Row --- */
.lp-screens {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 32px;
}
.lp-screen {
  border: 1px solid var(--ink-200); border-radius: 12px;
  overflow: hidden; background: #fff;
  box-shadow: var(--shadow-card);
}
.lp-screen img { width: 100%; height: auto; display: block; }
.lp-screen-caption {
  padding: 12px 16px; font-size: 13px; color: var(--ink-500);
  border-top: 1px solid var(--ink-200);
}

/* --- Security-Block --- */
.lp-security {
  background: var(--ink-900); color: #fff;
  padding: 56px 24px;
}
.lp-security h2 { color: #fff !important; text-align: center; }
.lp-security-grid {
  max-width: var(--max-w); margin: 32px auto 0;
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.lp-security-item {
  background: rgba(255,255,255,0.06); padding: 20px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
}
.lp-security-item h3 { color: #fff; font-size: 15px; margin: 0 0 8px; font-weight: 700; }
.lp-security-item p  { color: #cbd5e1; font-size: 13px; margin: 0; line-height: 1.55; }

/* --- FAQ --- */
.lp-faq { max-width: 760px; margin: 0 auto; }
.lp-faq-item {
  border: 1px solid var(--ink-200); border-radius: 10px;
  margin-bottom: 10px; background: #fff;
}
.lp-faq-item summary {
  padding: 16px 20px; font-weight: 600; color: var(--ink-900);
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary::after {
  content: '+'; font-size: 22px; color: var(--ink-500); font-weight: 300;
  transition: transform 0.15s ease;
}
.lp-faq-item[open] summary::after { content: '−'; }
.lp-faq-item-body {
  padding: 0 20px 20px; color: var(--ink-700); font-size: 14px; line-height: 1.6;
}

/* --- Support-Block (auf allen Seiten) --- */
.lp-support {
  background: var(--brand-50); padding: 48px 24px;
  border-top: 1px solid var(--brand-100);
}
.lp-support-inner {
  max-width: 720px; margin: 0 auto; text-align: center;
}
.lp-support h2 {
  font-size: 22px; font-weight: 800; color: var(--ink-900);
  margin: 0 0 8px;
}
.lp-support-sub { color: var(--ink-700); margin: 0 0 24px; font-size: 15px; }
.lp-support-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.lp-support-card {
  background: #fff; border: 1px solid var(--ink-200);
  border-radius: 12px; padding: 18px; text-align: left;
}
.lp-support-card svg { color: var(--brand-600); }
.lp-support-card h3 { font-size: 14px; font-weight: 700; margin: 8px 0 4px; color: var(--ink-900); }
.lp-support-card p,
.lp-support-card a {
  font-size: 14px; color: var(--ink-700); margin: 0; word-break: break-word;
}
.lp-support-card a { color: var(--brand-700); font-weight: 600; }

/* --- Footer (Basis) --- */
/* A1-LR03 T1 (2026-06-10): alte LR01-Definitionen für .lp-footer-inner
   (display:grid auto-fit) und .lp-footer-bottom (text-align:center)
   ERSETZT durch Block-Container. Vorher kollidierten sie mit den LR02-
   T0-NACHTRAG-Definitionen (lp-footer-grid + lp-footer-bottom flex), was
   bei mittleren Viewports (768–1024) die Bottom-Zeile in den Grid-Inhalt
   "hineinrenderte" — siehe docs/sprint/lr03-footer-shots/vorher/. */
.lp-footer {
  background: var(--ink-900); color: #cbd5e1; padding: 40px 24px 28px;
}
.lp-footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  /* NICHT display:grid — sonst werden .lp-footer-grid + .lp-footer-bottom
     als Grid-Cells nebeneinander gelegt. Block-Container, Children stacken. */
}

/* --- Mobile-First Adjustments (Defaults sind schon Mobile) --- */
@media (max-width: 640px) {
  .lp-hero { padding: 48px 20px 40px; }
  .lp-section { padding: 48px 20px; }
  .lp-features { grid-template-columns: 1fr; }
  .lp-nav-inner { padding: 12px 16px; gap: 12px; }
  .lp-nav-links { gap: 12px; font-size: 13px; }
  .lp-nav-cta { padding: 7px 12px; }
}

/* ============================================================
 * A1-L02: Video-Showcase Pattern (Token-treu zu index.html)
 * ============================================================
 * Hero-Video (.lp-hero-video) + Section-Showcase (.lp-showcase)
 * + Browser-/Phone-Frames (.lp-video-*). Gleiche Tokens wie
 * landing-pages-Top (--brand-*, --ink-*). Selbst-gehostet.
 * ============================================================ */

/* Browser-Frame (Desktop-Clips: schicht-planen, schicht-anlegen, kunde-anlegen) */
.lp-video-browser-frame {
  position: relative; max-width: 100%;
  border-radius: 16px; overflow: hidden;
  background: #fff;
  box-shadow:
    0 24px 60px -16px rgba(15,23,42,0.18),
    0 8px 16px -8px rgba(15,23,42,0.10);
  border: 1px solid var(--ink-200);
}
.lp-video-browser-chrome {
  display: flex; align-items: center; gap: 6px;
  height: 30px; padding: 0 14px;
  background: linear-gradient(180deg, #f8fafc, #f1f5f9);
  border-bottom: 1px solid var(--ink-200);
}
.lp-video-browser-dot {
  width: 11px; height: 11px; border-radius: 50%;
  flex-shrink: 0;
}
.lp-video-browser-dot.r { background: #ff5f57; }
.lp-video-browser-dot.y { background: #febc2e; }
.lp-video-browser-dot.g { background: #28c840; }
.lp-video-browser-addr {
  margin-left: 14px;
  flex: 1; max-width: 360px;
  height: 18px; border-radius: 6px;
  background: #fff; border: 1px solid var(--ink-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 10.5px; color: var(--ink-500); letter-spacing: 0.02em;
  font-family: 'Inter', sans-serif;
}
.lp-video-browser-frame video {
  display: block; width: 100%; height: auto;
  background: #f8fafc;
}

/* Phone-Frame (Mobile-Clips: mobile-stempeln, urlaub-beantragen, krank-melden) */
.lp-video-phone-frame {
  position: relative;
  width: 270px; height: 584px;
  margin: 0 auto;
  border-radius: 38px;
  background: linear-gradient(160deg, #1e293b, #0f172a);
  padding: 14px 12px;
  box-shadow:
    0 28px 70px -20px rgba(15,23,42,0.30),
    0 12px 24px -8px rgba(15,23,42,0.18),
    inset 0 0 0 2px rgba(255,255,255,0.04);
}
.lp-video-phone-frame::before {
  content: '';
  position: absolute; top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 22px;
  background: #0f172a;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.lp-video-phone-frame video {
  display: block; width: 100%; height: 100%;
  border-radius: 26px;
  object-fit: cover;
  background: #f0f6ff;
}

/* Hero-Video Wrap unter Headline/CTAs */
.lp-hero-video {
  max-width: 980px; margin: 40px auto 0;
}
.lp-hero-video-wrap {
  position: relative;
  filter: drop-shadow(0 30px 60px rgba(59,130,246,0.18));
}

/* Showcase-Section (alternierend Video links/rechts) */
.lp-showcase {
  padding: 72px 24px; background: #fff;
  border-top: 1px solid var(--ink-200);
}
.lp-showcase.is-bg-soft {
  background: var(--ink-50);
}
.lp-showcase-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 60px; align-items: center;
  max-width: var(--max-w); margin: 0 auto;
}
.lp-showcase-grid.is-reverse { grid-template-columns: 1fr 1.05fr; }
.lp-showcase-grid.is-reverse > .lp-showcase-side { order: 2; }
.lp-showcase-grid.is-reverse > .lp-showcase-text { order: 1; }
.lp-showcase-side { display: flex; align-items: center; justify-content: center; }
.lp-showcase-text h2 {
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.15; letter-spacing: -0.02em;
  margin: 0 0 14px; color: var(--ink-900);
  text-align: left;
}
.lp-showcase-text h2 .accent { color: var(--brand-600); }
.lp-showcase-text p {
  font-size: 16px; line-height: 1.6; color: var(--ink-700);
  margin: 0 0 12px;
}
.lp-showcase-eyebrow {
  font-size: 12px; font-weight: 700;
  color: var(--brand-600); letter-spacing: 0.10em;
  text-transform: uppercase; margin-bottom: 10px;
  display: inline-block;
}

@media (max-width: 900px) {
  .lp-showcase-grid,
  .lp-showcase-grid.is-reverse { grid-template-columns: 1fr; gap: 38px; }
  .lp-showcase-grid.is-reverse > .lp-showcase-side { order: 0; }
}
@media (max-width: 720px) {
  .lp-showcase { padding: 56px 20px; }
  .lp-hero-video { margin-top: 32px; }
  .lp-video-phone-frame { width: 240px; height: 520px; }
}

/* ============================================================
 * A1-L03: Full-Width Image-Showcase + CSS-only Lightbox
 * ============================================================
 * Pro Seite EINE grosse, lesbare App-View — Browser-Frame, volle
 * Spaltenbreite, dezenter Drop-Shadow. Click → CSS-Lightbox
 * (pures input+label, kein JS). Mobile: bricht auf 1 Spalte,
 * Bild bleibt zuerst sichtbar.
 * ============================================================ */

.lp-image-showcase {
  padding: 72px 24px;
  background: #fff;
  border-top: 1px solid var(--ink-200);
}
.lp-image-showcase.is-bg-soft { background: var(--ink-50); }
.lp-image-showcase-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.lp-image-showcase-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--brand-600);
  margin-bottom: 12px;
}
.lp-image-showcase h2 {
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.15; letter-spacing: -0.02em;
  margin: 0 0 14px; color: var(--ink-900);
}
.lp-image-showcase-sub {
  font-size: 16px; line-height: 1.55; color: var(--ink-500);
  max-width: 640px; margin: 0 auto 36px;
}

.lp-image-frame {
  position: relative; display: block;
  max-width: 1100px; margin: 0 auto;
  border-radius: 16px; overflow: hidden;
  background: #fff;
  border: 1px solid var(--ink-200);
  box-shadow:
    0 24px 60px -16px rgba(15,23,42,0.18),
    0 8px 16px -8px rgba(15,23,42,0.10);
  cursor: zoom-in;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.lp-image-frame:hover {
  transform: translateY(-2px);
  box-shadow:
    0 28px 70px -16px rgba(15,23,42,0.22),
    0 10px 18px -8px rgba(15,23,42,0.12);
}
.lp-image-frame-chrome {
  display: flex; align-items: center; gap: 6px;
  height: 30px; padding: 0 14px;
  background: linear-gradient(180deg, #f8fafc, #f1f5f9);
  border-bottom: 1px solid var(--ink-200);
}
.lp-image-frame-dot {
  width: 11px; height: 11px; border-radius: 50%;
  flex-shrink: 0;
}
.lp-image-frame-dot.r { background: #ff5f57; }
.lp-image-frame-dot.y { background: #febc2e; }
.lp-image-frame-dot.g { background: #28c840; }
.lp-image-frame-addr {
  margin-left: 14px;
  flex: 1; max-width: 360px;
  height: 18px; border-radius: 6px;
  background: #fff; border: 1px solid var(--ink-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 10.5px; color: var(--ink-500); letter-spacing: 0.02em;
  font-family: 'Inter', sans-serif;
}
.lp-image-frame img {
  display: block; width: 100%; height: auto;
  background: #f8fafc;
}
.lp-image-zoom-hint {
  margin-top: 10px;
  font-size: 12px; color: var(--ink-500);
}

/* ── CSS-only Lightbox (input[type=checkbox] + label) ── */
.lp-lightbox-toggle { position: absolute; opacity: 0; pointer-events: none; }
.lp-lightbox-backdrop {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(15,23,42,0.94);
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}
.lp-lightbox-toggle:checked ~ .lp-lightbox-backdrop {
  display: flex;
}
.lp-lightbox-backdrop img {
  max-width: 95vw; max-height: 95vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.lp-lightbox-close {
  position: absolute; top: 18px; right: 24px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--ink-900);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700;
  cursor: zoom-out;
  user-select: none;
}

@media (max-width: 720px) {
  .lp-image-showcase { padding: 56px 16px; }
  .lp-image-frame-addr { max-width: 200px; font-size: 10px; }
}
