/* ── BeeServe SEO landing pages ─────────────────────────────────────────────
   Self-contained styling for the standalone feature landing pages
   (/gastro-pos, /kassensystem, /kuechenmonitor, /reservierungen, /qr-bestellung).
   Deliberately independent of index.html's inline <style> and of app.js:
   nothing here starts hidden (no opacity:0/reveal), so the full page renders
   for crawlers and no-JS visitors. The brand font + reset come from
   onboarding-local.css, which each page also links. */

:root {
  --lp-bg: #2B2B2B;
  --lp-bg-2: #222;
  --lp-card: #1e1e1e;
  --lp-fg: #E0E0E0;
  --lp-muted: #9E9E9E;
  --lp-amber: #FFC66D;        /* brand primary (matches --c-primary) */
  --lp-amber-dark: #E5A84A;   /* brand primary-dark, button hover */
  --lp-amber-soft: #FFD89B;   /* brand amber-light */
  --lp-border: rgba(255, 198, 109, 0.22);
  --lp-maxw: 72rem;
}

.lp-body {
  margin: 0;
  background: var(--lp-bg);
  color: var(--lp-fg);
  font-family: 'Hanken Grotesk', 'Hanken Fallback Roboto', 'Hanken Fallback Arial', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.lp-wrap { max-width: var(--lp-maxw); margin: 0 auto; padding: 0 1.25rem; }

a { color: inherit; }

/* ── Top nav ── */
.lp-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(34, 34, 34, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.lp-nav-inner { display: flex; align-items: center; justify-content: space-between; height: 3.5rem; }
.lp-brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.lp-logo {
  width: 2rem; height: 2rem; border-radius: 0.55rem;
  background: linear-gradient(160deg, var(--lp-amber-soft), var(--lp-amber));
  color: #1a1a1a; font-weight: 800; font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
}
.lp-brand-name { font-weight: 700; font-size: 1rem; color: #fff; }
.lp-nav-links { display: flex; align-items: center; gap: 1.1rem; }
.lp-nav-links a { font-size: 0.8rem; color: var(--lp-muted); text-decoration: none; font-weight: 500; }
.lp-nav-links a:hover { color: #fff; }
.lp-nav-links a.active { color: var(--lp-amber-soft); font-weight: 600; }
@media (max-width: 640px) { .lp-nav-topics { display: none; } }

/* Matches the main page's nav CTA: flat #FFC66D fill + soft amber glow
   (.amber-glow) + hover shimmer sheen (.shimmer-btn). The glow blends the
   button edge into the dark background so the amber reads the same as the
   main page rather than as a harder, more saturated block. */
.lp-cta {
  display: inline-block; background: var(--lp-amber); color: #2B2B2B;
  font-weight: 700; text-decoration: none; padding: 0.55rem 1.1rem;
  border-radius: 0.55rem; font-size: 0.8rem; white-space: nowrap;
  position: relative; overflow: hidden;
  box-shadow: 0 0 28px rgba(255, 198, 109, 0.25);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.lp-cta::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,0.22) 50%, transparent 62%);
  transform: translateX(-100%);
  transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1);
}
.lp-cta:hover::after { transform: translateX(100%); }
.lp-cta:hover { transform: translateY(-2px); box-shadow: 0 0 36px rgba(255, 198, 109, 0.45); }
.lp-cta:active { transform: scale(0.97); }
.lp-cta-lg { font-size: 0.95rem; padding: 0.85rem 1.9rem; border-radius: 0.65rem; }

/* ── Hero ── */
.lp-hero { padding: 5rem 0 3.5rem; text-align: center; position: relative; overflow: hidden; }
.lp-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(900px 420px at 50% -10%, rgba(255, 198, 109, 0.16), transparent 60%);
}
.lp-hero > * { position: relative; z-index: 1; }
.lp-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--lp-amber); font-weight: 700; margin: 0 0 0.9rem;
}
.lp-hero h1 {
  font-size: clamp(2rem, 5.2vw, 3.4rem); line-height: 1.06; font-weight: 800;
  letter-spacing: -0.02em; margin: 0 auto; max-width: 22ch;
}
.lp-hero h1 .hl { color: var(--lp-amber); }
.lp-lead {
  color: var(--lp-muted); font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 44rem; margin: 1.25rem auto 2rem;
}
.lp-hero-actions { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }
.lp-ghost {
  display: inline-block; text-decoration: none; font-weight: 600; font-size: 0.95rem;
  padding: 0.85rem 1.6rem; border-radius: 0.65rem; color: var(--lp-fg);
  border: 1px solid var(--lp-border);
}
.lp-ghost:hover { border-color: var(--lp-amber-soft); }

/* ── Sections ── */
.lp-section { padding: 3.5rem 0; }
.lp-section.alt { background: linear-gradient(180deg, var(--lp-bg-2) 0%, var(--lp-bg) 100%); }
/* Base for .lp-sub wherever it sits outside the section > wrap chain — the
   noscript fallbacks inside the demo containers use it. */
.lp-sub { color: var(--lp-muted); font-size: 1rem; }
.lp-section > .lp-wrap > h2 {
  font-size: clamp(1.6rem, 3.6vw, 2.4rem); font-weight: 700; line-height: 1.12;
  text-align: center; margin: 0 0 0.75rem;
}
.lp-section > .lp-wrap > .lp-sub {
  color: var(--lp-muted); text-align: center; max-width: 42rem;
  margin: 0 auto 2.5rem; font-size: 1rem;
}
/* The 2.5rem head gap normally comes from .lp-sub. A section with a headline
   but no sub-headline would otherwise drop straight from h2's 0.75rem into
   its content. */
.lp-section > .lp-wrap > h2:not(:has(+ .lp-sub)) {
  margin-bottom: 2.5rem;
}
/* Trailing footnote after a section's content — carries its space above, not
   below, so it does not add to the section's own bottom padding. */
.lp-note {
  color: var(--lp-muted); text-align: center; max-width: 42rem;
  margin: 2rem auto 0; font-size: 1rem;
}

/* ── Feature cards ── */
.lp-grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(1, 1fr); }
@media (min-width: 640px) { .lp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .lp-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
.lp-card {
  background: var(--lp-card); border: 1px solid var(--lp-border);
  border-radius: 1rem; padding: 1.5rem;
}
.lp-card h3 { margin: 0 0 0.45rem; font-size: 1.05rem; font-weight: 700; color: #fff; }
.lp-card p { margin: 0; color: var(--lp-muted); font-size: 0.92rem; }

/* ── Dense SEO/explainer tables ── */
.lp-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--lp-border);
  border-radius: 1rem;
  background: var(--lp-card);
}
.lp-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  text-align: left;
}
.lp-table th,
.lp-table td {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  vertical-align: top;
  font-size: 0.9rem;
}
.lp-table tr:last-child th,
.lp-table tr:last-child td { border-bottom: 0; }
.lp-table th {
  color: #fff;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.03);
}
.lp-table td { color: var(--lp-muted); }
.lp-table strong { color: var(--lp-fg); font-weight: 700; }

/* ── Steps ── */
.lp-steps { display: grid; gap: 1.1rem; grid-template-columns: repeat(1, 1fr); counter-reset: step; }
@media (min-width: 720px) { .lp-steps { grid-template-columns: repeat(3, 1fr); } }
.lp-step { padding: 1.4rem 1.5rem 1.5rem; border: 1px solid rgba(255,255,255,0.07); border-radius: 1rem; }
.lp-step::before {
  counter-increment: step; content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; border-radius: 999px; margin-bottom: 0.8rem;
  background: var(--lp-amber); color: #1a1a1a; font-weight: 800; font-size: 0.9rem;
}
.lp-step h3 { margin: 0 0 0.35rem; font-size: 1rem; color: #fff; }
.lp-step p { margin: 0; color: var(--lp-muted); font-size: 0.9rem; }

/* ── Cross-links to sibling landing pages ── */
.lp-more { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; }
.lp-more a {
  text-decoration: none; font-size: 0.85rem; font-weight: 600; color: var(--lp-fg);
  border: 1px solid var(--lp-border); border-radius: 999px; padding: 0.55rem 1.1rem;
}
.lp-more a:hover { border-color: var(--lp-amber-soft); color: var(--lp-amber-soft); }

/* ── Final CTA band ── */
.lp-band { text-align: center; padding: 3.5rem 0; }
.lp-band > .lp-wrap > h2 { margin: 0 0 0.6rem; }
.lp-band > .lp-wrap > p:not(.lp-kicker) { color: var(--lp-muted); margin: 0 0 1.8rem; }

/* ── Footer (mirrors the main landing page's bottom bar) ── */
.lp-footer {
  background: #222; border-top: 1px solid #484848;
  padding: 2.5rem 1.25rem; text-align: center; color: var(--lp-muted);
}
.lp-foot-brand { display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.lp-foot-logo {
  width: 1.5rem; height: 1.5rem; border-radius: 0.375rem;
  background: var(--lp-amber); color: #2B2B2B;
  font-weight: 700; font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
}
.lp-foot-name { color: #fff; font-weight: 600; font-size: 0.85rem; }
.lp-foot-tag { color: var(--lp-muted); font-size: 0.75rem; margin: 0 0 1rem; }
.lp-foot-links { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0.9rem; }
.lp-foot-links a { color: var(--lp-muted); text-decoration: none; font-size: 0.75rem; transition: color 0.15s ease; }
.lp-foot-links a:hover { color: var(--lp-amber); }

/* ── /gastro-pos onboarding visual alignment ───────────────────────────────
   Scoped to keep the sibling SEO pages stable while matching the main
   onboarding page's fixed nav, subtle background texture, amber glow controls
   and compact dark app-surface cards. */
.lp-onboarding-page {
  min-height: 100%;
  background:
    radial-gradient(ellipse at 50% 7rem, rgba(255, 198, 109, 0.08) 0%, transparent 34rem),
    #2B2B2B;
}

/* Matches index.html's #anim-bg: fixed diagonal amber sheens across the whole
   page; the dot grid is applied per-section (hero + closing band) like the
   main page's .dot-grid sections. */
.lp-onboarding-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0%, transparent 18%, rgba(255, 198, 109, 0.05) 34%, transparent 50%, transparent 64%, rgba(255, 216, 154, 0.035) 82%, transparent 100%),
    linear-gradient(180deg, rgba(26, 26, 26, 0.2) 0%, rgba(43, 43, 43, 0) 28%, rgba(26, 26, 26, 0.32) 100%);
}

.lp-onboarding-page > * {
  position: relative;
  z-index: 1;
}

.lp-onboarding-page .lp-hero-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 198;
  background: linear-gradient(to right, #FFC66D, #FFD89A, #E8A050);
  box-shadow: 0 0 10px rgba(255, 198, 109, 0.35);
}

.lp-onboarding-page .lp-nav {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  /* .lp-onboarding-page > * flattens children to z-index 1 (same specificity
     as .lp-nav's base z-index 50, but declared later) — restore the nav above
     the scrolling sections here, where specificity wins. */
  z-index: 50;
  background: rgba(43, 43, 43, 0.85);
  border-bottom: 1px solid #484848;
}

.lp-onboarding-page .lp-nav-inner {
  height: 3.5rem;
}

.lp-onboarding-page .lp-logo {
  border-radius: 0.5rem;
  box-shadow: 0 0 28px rgba(255, 198, 109, 0.25);
  animation: lp-logo-bob 4s ease-in-out infinite;
}

@keyframes lp-logo-bob {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 0 18px rgba(255, 198, 109, 0.3);
  }
  50% {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 198, 109, 0.45);
  }
}

.lp-onboarding-page .lp-nav-links a {
  font-weight: 500;
  transition: color 0.15s ease;
}

.lp-onboarding-page .lp-hero {
  min-height: clamp(34rem, 72vh, 46rem);
  display: grid;
  place-items: center;
  /* Matches index.html's hero offset. Note place-items:center means this split
     only shows once content exceeds min-height; it is the floor, not the gap. */
  padding-block: var(--hero-top) var(--hero-bottom);
  background-color: transparent;
  background-image: radial-gradient(circle, #484848 1px, transparent 1px);
  background-size: 28px 28px;
}

.lp-onboarding-page .lp-hero::before {
  inset: auto 50% 2rem auto;
  width: clamp(20rem, 52vw, 42rem);
  height: clamp(15rem, 36vw, 28rem);
  transform: translateX(50%);
  background: radial-gradient(ellipse, rgba(255, 198, 109, 0.08) 0%, transparent 70%);
}

.lp-onboarding-page .lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  padding: 0.38rem 1rem;
  border: 1px solid #484848;
  border-radius: 999px;
  background: #3A3A3A;
  color: #9E9E9E;
  font-size: 0.72rem;
  letter-spacing: 0;
  text-transform: none;
}

.lp-onboarding-page .lp-eyebrow::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #FFC66D;
  animation: lp-badge-pulse 2.2s ease-in-out infinite;
}

@keyframes lp-badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.65); }
}

/* Mirrors the onboarding page's hero (sections/01-introduction.html).
   This override widens the base rule's clamp to ~35px-90px, so it must carry
   its own tracking: the base -0.02em is dropped here, and one fixed value
   cannot be right across a 2.5x size range anyway. The px clamp resolves to
   about -0.021em small and -0.030em large — tighter as the type grows.
   760 was not a loaded cut (Hanken Grotesk ships 300-900 in steps of 100) and
   silently rendered as 800. */
.lp-onboarding-page .lp-hero h1 {
  max-width: 17ch;
  font-size: clamp(2.2rem, 7vw, 5.6rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: clamp(-2.7px, -0.19vw, -0.5px);
}

/* Main section copy matches index.html's .section-copy … */
.lp-onboarding-page .lp-lead,
.lp-onboarding-page .lp-section > .lp-wrap > .lp-sub,
.lp-onboarding-page .lp-band > .lp-wrap > p:not(.lp-kicker) {
  color: #B8B1A6;
  /* 320 resolved to the 300 cut; written as what renders. */
  font-weight: 300;
}

/* … while card body text matches the feature cards (text-muted, light). */
.lp-onboarding-page .lp-card p,
.lp-onboarding-page .lp-step p,
.lp-onboarding-page .lp-table td {
  color: #9E9E9E;
  font-weight: 300;
  line-height: 1.7;
}

.lp-onboarding-page .lp-lead {
  max-width: 46rem;
  line-height: 1.75;
}

.lp-onboarding-page .lp-cta {
  border-radius: 0.5rem;
  box-shadow: 0 0 28px rgba(255, 198, 109, 0.25);
}

.lp-onboarding-page .lp-cta:hover {
  box-shadow: 0 0 36px rgba(255, 198, 109, 0.45);
}

.lp-onboarding-page .lp-ghost {
  min-height: 2.75rem;
  border-color: #484848;
  border-radius: 0.75rem;
  color: #9E9E9E;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.lp-onboarding-page .lp-ghost:hover {
  border-color: rgba(255, 198, 109, 0.55);
  color: #FFC66D;
}

/* Same --section-y token index.html's sections use (onboarding-local.css),
   so both surfaces finally share one rhythm and both step down on mobile. */
.lp-onboarding-page .lp-section {
  padding-block: var(--section-y);
  background: transparent;
}

/* Banded sections mirror index.html's #ersetzt / #gaeste / #startwege
   (bg-surface #333 + border-y #484848). This used to be `transparent`, which
   left every section boundary as undifferentiated empty space — the padding
   was uniform but nothing marked where one section ended.

   background-color, not the `background` shorthand: the CTA band is
   `lp-section alt lp-band` and outranked here (0,3,0 vs 0,2,0), so a shorthand
   would reset its dot-grid background-image. */
.lp-onboarding-page .lp-section.alt {
  background-color: #333;
  border-top: 1px solid #484848;
  border-bottom: 1px solid #484848;
}

/* Two banded sections in a row would draw a doubled rule and read as one
   block; collapse the seam. */
.lp-onboarding-page .lp-section.alt + .lp-section.alt {
  border-top: 0;
}

/* Section headlines match the onboarding sections: bold clamp(1.9–2.75rem)
   with an amber uppercase kicker above (index.html's
   "text-xs text-amber font-semibold uppercase tracking-widest"). */
.lp-onboarding-page .lp-section > .lp-wrap > h2,
.lp-onboarding-page .lp-band > .lp-wrap > h2 {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
}

.lp-onboarding-page .lp-kicker {
  margin: 0 0 0.75rem;
  color: #FFC66D;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.lp-onboarding-page .lp-section > .lp-wrap > .lp-sub {
  line-height: 1.75;
}

/* Cards match index.html's feature cards:
   bg-card #3A3A3A, border-border #484848, rounded-2xl. */
.lp-onboarding-page .lp-card,
.lp-onboarding-page .lp-step,
.lp-onboarding-page .lp-table-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid #484848;
  border-radius: 1rem;
  background: #3A3A3A;
  box-shadow: none;
}

.lp-onboarding-page .lp-card {
  transition:
    transform 0.25s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.25s cubic-bezier(0.23, 1, 0.32, 1),
    border-color 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}

.lp-onboarding-page .lp-card::before,
.lp-onboarding-page .lp-step::before {
  content: "";
  counter-increment: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, #FFC66D, #FFD89A, #E8A050);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.lp-onboarding-page .lp-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 198, 109, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.lp-onboarding-page .lp-card:hover::before,
.lp-onboarding-page .lp-step:hover::before {
  opacity: 1;
}

.lp-onboarding-page .lp-card h3,
.lp-onboarding-page .lp-step h3 {
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.lp-onboarding-page .lp-step {
  padding-top: 3.1rem;
}

.lp-onboarding-page .lp-step::after {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 1.35rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(255, 198, 109, 0.13);
  border: 1px solid rgba(255, 198, 109, 0.24);
  color: #FFC66D;
  font-weight: 800;
  font-size: 0.86rem;
}

.lp-onboarding-page .lp-table th,
.lp-onboarding-page .lp-table td {
  border-bottom-color: #484848;
}

.lp-onboarding-page .lp-table th {
  background: #333333;
}

.lp-onboarding-page .lp-table strong {
  color: #E0E0E0;
}

.lp-onboarding-page .lp-more a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  border-color: #484848;
  border-radius: 999px;
  background: #3A3A3A;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lp-onboarding-page .lp-more a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 198, 109, 0.55);
}

.lp-onboarding-page .lp-band {
  position: relative;
  background-image: radial-gradient(circle, #484848 1px, transparent 1px);
  background-size: 28px 28px;
}

.lp-onboarding-page .lp-band::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(20rem, 80vw, 44rem);
  height: clamp(12rem, 32vw, 18rem);
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(255, 198, 109, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.lp-onboarding-page .lp-footer {
  border-top-color: #484848;
}

@media (prefers-reduced-motion: reduce) {
  .lp-onboarding-page .lp-logo,
  .lp-onboarding-page .lp-eyebrow::before {
    animation: none;
  }

  .lp-onboarding-page .lp-card,
  .lp-onboarding-page .lp-more a,
  .lp-onboarding-page .lp-cta {
    transition: none;
  }
}

@media (max-width: 720px) {
  /* --hero-top/--hero-bottom already clamp down at this width; only the
     layout switch (no min-height, left-aligned) is breakpoint-specific. */
  .lp-onboarding-page .lp-hero {
    min-height: auto;
    text-align: left;
  }

  .lp-onboarding-page .lp-hero h1,
  .lp-onboarding-page .lp-lead {
    margin-left: 0;
    margin-right: 0;
  }

  .lp-onboarding-page .lp-hero-actions {
    justify-content: flex-start;
  }

  .lp-onboarding-page .lp-cta,
  .lp-onboarding-page .lp-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
.lp-foot-sep { color: #484848; font-size: 0.75rem; }

/* ── Consultation form (/beratung) ─────────────────────────────────────────
   The only interactive form outside the registration flow. Styling stays in
   this shared sheet rather than an inline <style> so the page keeps the same
   card/field vocabulary as the rest of the landing pages. */
.lp-form {
  max-width: 44rem;
  margin: 0 auto;
  background: #3A3A3A;
  border: 1px solid #484848;
  border-radius: 1rem;
  padding: 1.75rem;
}
.lp-form-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .lp-form-grid.cols-2 { grid-template-columns: 1fr 1fr; } }
.lp-field { display: flex; flex-direction: column; gap: 0.4rem; }
.lp-field label { font-size: 0.8rem; font-weight: 600; color: var(--lp-fg); }
.lp-field .lp-hint { font-size: 0.72rem; color: var(--lp-muted); }
.lp-field input,
.lp-field select,
.lp-field textarea {
  width: 100%;
  box-sizing: border-box;
  background: #2B2B2B;
  border: 1px solid #484848;
  border-radius: 0.6rem;
  color: var(--lp-fg);
  font: inherit;
  font-size: 0.92rem;
  padding: 0.7rem 0.85rem;
  min-height: 2.75rem;
}
.lp-field textarea { min-height: 7rem; resize: vertical; }
.lp-field input:focus,
.lp-field select:focus,
.lp-field textarea:focus {
  outline: none;
  border-color: rgba(255, 198, 109, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 198, 109, 0.12);
}
.lp-consent { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.8rem; color: var(--lp-muted); }
.lp-consent input { width: 1rem; height: 1rem; min-height: 0; margin-top: 0.15rem; accent-color: var(--lp-amber); flex: 0 0 auto; }
.lp-consent a { color: var(--lp-amber); }
/* Honeypot: kept in the accessibility tree's blind spot rather than
   display:none, which some bots skip. */
.lp-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.lp-form button[type="submit"] { width: 100%; border: 0; cursor: pointer; font: inherit; }
.lp-form button[type="submit"]:disabled { opacity: 0.6; cursor: progress; }
.lp-form-note { font-size: 0.78rem; color: var(--lp-muted); margin: 0.9rem 0 0; text-align: center; }
.lp-alert {
  border-radius: 0.6rem;
  padding: 0.8rem 1rem;
  font-size: 0.88rem;
  border: 1px solid;
}
.lp-alert[hidden] { display: none; }
.lp-alert--error { border-color: rgba(248, 113, 113, 0.5); background: rgba(127, 29, 29, 0.35); color: #FCA5A5; }
.lp-alert--ok { border-color: rgba(74, 222, 128, 0.45); background: rgba(20, 83, 45, 0.3); color: #BBF7D0; }
