/* =========================================================================
   LABLIONS Landingpages — Design 5a
   Durchgehend schwarz (#000), Koralle (#ff906c) nur als Akzent.
   Klassenbasierte, responsive Umsetzung des Handoff-Frames 5a.
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@400;500;600;700;800;900&display=swap');

.llp-page {
	--coral: #ff906c;
	--ink: #f9f8f4;
	--bg: #000;
	--card: #0d0d0e;
	--mono: ui-monospace, Menlo, Monaco, "Cascadia Code", monospace;
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
.llp-page *, .llp-page *::before, .llp-page *::after { box-sizing: border-box; }
.llp-page a { color: var(--coral); text-decoration: none; }
.llp-page a:hover { color: #ffa274; }
.llp-page img { max-width: 100%; }

.llp-wrap { max-width: 1180px; margin: 0 auto; }
.llp-sec { padding: 88px 44px; }
.llp-sec--tight { padding: 44px 44px; }
.llp-bt { border-top: 1px solid rgba(249, 248, 244, .08); }
.llp-bb { border-bottom: 1px solid rgba(249, 248, 244, .08); }

/* ---------------------------------------------------------------- Reveals */
.llp-page [data-reveal] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .7s cubic-bezier(.2, .6, .2, 1), transform .7s cubic-bezier(.2, .6, .2, 1);
}
.llp-page [data-reveal][data-inview] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	.llp-page [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
	.llp-page [data-marq] { animation: none !important; }
	.llp-page h2[data-reveal] { clip-path: none !important; }
}

/* WCAG 2.4.7 – sichtbarer Tastatur-Fokus (auf Schwarz gut erkennbar). */
.llp-page a:focus-visible,
.llp-page button:focus-visible,
.llp-page input:focus-visible,
.llp-page textarea:focus-visible,
.llp-page [tabindex]:focus-visible {
	outline: 3px solid var(--coral);
	outline-offset: 2px;
	border-radius: 4px;
}
/* Fallback für Browser ohne :focus-visible */
.llp-page a:focus,
.llp-page button:focus,
.llp-page input:focus,
.llp-page textarea:focus { outline: 3px solid var(--coral); outline-offset: 2px; }
.llp-page a:focus:not(:focus-visible),
.llp-page button:focus:not(:focus-visible),
.llp-page input:focus:not(:focus-visible),
.llp-page textarea:focus:not(:focus-visible) { outline: none; }

/* ------------------------------------------------------------------- Nav */
.llp-nav-shell {
	position: sticky; top: 0; z-index: 60;
	background: rgba(0, 0, 0, .74);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(249, 248, 244, .08);
}
.llp-progress-track { height: 3px; background: rgba(249, 248, 244, .06); }
.llp-progress { height: 100%; width: 0; background: var(--coral); transition: width .12s linear; }
.llp-nav {
	display: flex; align-items: center; justify-content: space-between;
	gap: 20px; padding: 14px 44px; max-width: 1180px; margin: 0 auto;
}
.llp-nav__logo { height: 26px; width: auto; display: block; }
.llp-nav__links { display: flex; align-items: center; gap: 30px; }
.llp-nav__links a { font-size: 14px; font-weight: 700; color: rgba(249, 248, 244, .72); transition: color .3s; }
.llp-nav__toggle { display: none; }

/* --------------------------------------------------------------- Buttons */
.llp-btn {
	display: inline-block; border: none; cursor: pointer;
	font-family: inherit; font-weight: 800; text-align: center;
	border-radius: 999px; transition: transform .2s, box-shadow .2s, border-color .2s, background .2s;
	will-change: transform;
}
.llp-btn--primary { background: var(--coral); color: #000; }
/* Hover wie in Frame 4a: nur dezentes Anheben, kein magnetischer Effekt. */
.llp-btn--primary:hover { color: #000; transform: translateY(-2px); }
.llp-btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid rgba(249, 248, 244, .28); }
.llp-btn--ghost:hover { color: var(--ink); border-color: var(--coral); background: rgba(255, 144, 108, .08); }
.llp-btn--nav { font-size: 14px; padding: 11px 22px; }
.llp-btn--lg { font-size: 15px; padding: 15px 28px; }
.llp-btn--xl { font-size: 16px; padding: 17px 38px; }

/* ------------------------------------------------------------------ Hero */
.llp-hero { position: relative; padding: 76px 44px 64px; text-align: center; overflow: hidden; }
.llp-hero__dots {
	position: absolute; inset: 0; opacity: .5; pointer-events: none;
	background-image: radial-gradient(rgba(249, 248, 244, .04) 1px, transparent 1px);
	background-size: 24px 24px;
}
.llp-hero__inner { position: relative; max-width: 1000px; margin: 0 auto; }
.llp-eyebrow { font-family: var(--mono); font-size: 12.5px; letter-spacing: 3px; color: var(--coral); font-weight: 600; }
.llp-hero h1 { margin: 18px auto 0; font-size: clamp(34px, 6vw, 60px); line-height: 1.04; font-weight: 900; letter-spacing: -1.5px; max-width: 940px; }
.llp-coral { color: var(--coral); }
.llp-hero__subline { margin: 24px auto 0; font-size: clamp(20px, 3.4vw, 26px); line-height: 1.35; font-weight: 800; color: var(--coral); max-width: 720px; }
.llp-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 34px; }
.llp-hero__intro { margin: 34px auto 0; font-size: 13.5px; line-height: 1.65; color: rgba(249, 248, 244, .6); max-width: 720px; } /* WCAG AA: .42 -> .6 (6,99:1) */
.llp-hero__shot {
	position: relative; margin: 52px auto 0; max-width: 1000px; border-radius: 16px; overflow: hidden;
	border: 1px solid rgba(249, 248, 244, .12); background: #0b0b0c; box-shadow: 0 30px 70px rgba(0, 0, 0, .6);
}
.llp-browserbar { display: flex; align-items: center; gap: 6px; padding: 10px 15px; background: #161617; border-bottom: 1px solid rgba(255, 255, 255, .06); }
.llp-browserbar span { width: 9px; height: 9px; border-radius: 50%; background: #3a3a3d; }
.llp-shot-ph {
	aspect-ratio: 16 / 8.4;
	background: repeating-linear-gradient(135deg, #111, #111 13px, #17181a 13px, #17181a 26px);
	display: flex; align-items: center; justify-content: center;
}
.llp-shot-ph span { font-family: var(--mono); font-size: 13px; color: rgba(249, 248, 244, .5); text-align: center; padding: 0 20px; }
.llp-shot-img { display: block; width: 100%; height: auto; }

/* ------------------------------------------------------------ Referenzen */
.llp-ref__title { text-align: center; font-size: 12.5px; letter-spacing: 2px; color: rgba(249, 248, 244, .5); font-weight: 700; text-transform: uppercase; margin: 0 0 24px; }
.llp-ref__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.llp-ref__logo {
	height: 52px; border-radius: 12px; border: 1px solid rgba(249, 248, 244, .1); background: #0d0d0e;
	display: flex; align-items: center; justify-content: center; overflow: hidden;
	font-family: var(--mono); font-size: 11px; color: rgba(249, 248, 244, .4);
}
.llp-ref__logo img { max-height: 70%; max-width: 80%; width: auto; object-fit: contain; }
.llp-ref__foot { text-align: center; margin: 24px 0 0; font-size: 14px; color: rgba(249, 248, 244, .55); }

/* --------------------------------------------------------------- Marquee */
.llp-marquee { padding: 24px 0; overflow: hidden; white-space: nowrap; }
.llp-marquee__track { display: inline-block; animation: llp-marq 32s linear infinite; font-weight: 900; font-size: 32px; letter-spacing: -.5px; color: rgba(249, 248, 244, .4); } /* WCAG AA Kontrast: .18 -> .4 (3,5:1, grosser Text) */
.llp-marquee__track span { padding: 0 20px; }
.llp-marquee__track .llp-marquee__dot { color: var(--coral); padding: 0; }
@keyframes llp-marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ------------------------------------------------------------ Kennzahlen */
.llp-h2 { font-size: clamp(30px, 5vw, 48px); font-weight: 900; letter-spacing: -1.2px; margin: 0 0 12px; }
.llp-h2--center { text-align: center; }
.llp-h2--kpi { font-size: clamp(28px, 4.4vw, 40px); letter-spacing: -1px; margin: 0 0 10px; }
.llp-lead { font-size: 15px; line-height: 1.65; color: rgba(249, 248, 244, .5); max-width: 820px; margin: 0 0 46px; }
.llp-lead--center { text-align: center; margin-left: auto; margin-right: auto; }
.llp-kpi__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.llp-kpi { text-align: center; }
.llp-kpi__num { font-size: clamp(48px, 8vw, 72px); font-weight: 900; color: var(--coral); letter-spacing: -2px; line-height: 1; }
.llp-kpi__label { margin-top: 12px; font-size: 14px; color: rgba(249, 248, 244, .68); line-height: 1.4; }

/* ------------------------------------------------------------- Card grids */
.llp-card {
	background: var(--card); border: 1px solid rgba(249, 248, 244, .1); border-radius: 20px;
	transition: transform .3s, border-color .3s; will-change: transform;
}
/* Hover wie in Frame 4a: anheben + koralle Rahmenfarbe (kein data-magnetic). */
.llp-card:hover { transform: translateY(-4px); border-color: rgba(255, 144, 108, .45); }
.llp-nutzen__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.llp-nutzen__card { padding: 34px; }
.llp-badge { width: 46px; height: 46px; border-radius: 13px; border: 2px solid var(--coral); color: var(--coral); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 16px; margin-bottom: 20px; }
.llp-nutzen__card h3 { margin: 0 0 10px; font-size: 23px; font-weight: 800; }
.llp-nutzen__card p { margin: 0; font-size: 15px; line-height: 1.6; color: rgba(249, 248, 244, .7); }

/* --------------------------------------------------- Ablauf / Prozess-Flow */
.llp-flow__grid { display: grid; grid-template-columns: 32px minmax(280px, 400px) 1fr; gap: 28px; align-items: start; }
.llp-flow__rail { position: relative; width: 32px; align-self: stretch; }
.llp-flow__rail-bg { position: absolute; left: 15px; top: 10px; bottom: 10px; width: 2px; background: rgba(249, 248, 244, .12); }
.llp-flow__rail-fill { position: absolute; left: 15px; top: 10px; width: 2px; height: 0; background: var(--coral); transition: height .15s linear; }
.llp-flow__node { position: absolute; left: 9px; width: 14px; height: 14px; border-radius: 50%; background: #000; border: 2px solid rgba(249, 248, 244, .25); transition: background .3s, border-color .3s; }
.llp-steps { display: flex; flex-direction: column; gap: 12px; }
.llp-step { text-align: left; cursor: pointer; background: transparent; border: 1px solid rgba(249, 248, 244, .12); border-radius: 16px; padding: 22px 24px; color: var(--ink); transition: border-color .3s, background .3s; font-family: inherit; }
.llp-step[data-active="1"] { background: rgba(255, 144, 108, .08); border-color: var(--coral); }
.llp-step__head { display: flex; align-items: center; gap: 12px; }
.llp-step__num { font-family: var(--mono); font-size: 40px; font-weight: 900; letter-spacing: -1px; line-height: 1; color: rgba(249, 248, 244, .45); } /* WCAG AA: .34 -> .45 (4,21:1, grosser Text) */
.llp-step[data-active="1"] .llp-step__num { color: var(--coral); }
.llp-step__title { font-size: 19px; font-weight: 800; }
.llp-step p { margin: 10px 0 0; font-size: 14px; line-height: 1.55; color: rgba(249, 248, 244, .65); }
.llp-shots { position: relative; aspect-ratio: 16 / 11; border-radius: 16px; overflow: hidden; border: 1px solid rgba(249, 248, 244, .12); background: #0b0b0c; box-shadow: 0 30px 70px rgba(0, 0, 0, .55); }
.llp-shot { position: absolute; inset: 0; opacity: 0; transform: scale(.985); pointer-events: none; transition: opacity .5s, transform .5s; background: repeating-linear-gradient(135deg, #111, #111 13px, #17181a 13px, #17181a 26px); display: flex; align-items: center; justify-content: center; }
.llp-shot[data-active="1"] { opacity: 1; transform: none; pointer-events: auto; }
.llp-shot span { font-family: var(--mono); font-size: 12px; color: rgba(249, 248, 244, .5); text-align: center; padding: 0 16px; }
.llp-shot img { width: 100%; height: 100%; object-fit: cover; }

/* ------------------------------------------------------------- Funktionen */
.llp-funk__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.llp-funk__card { padding: 26px; border-radius: 16px; }
.llp-funk__icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(255, 144, 108, .1); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.llp-funk__card h3 { margin: 0 0 7px; font-size: 16px; font-weight: 800; }
.llp-funk__card p { margin: 0; font-size: 13.5px; line-height: 1.5; color: rgba(249, 248, 244, .62); }

/* ------------------------------------------------------------ Testimonial
   EINE dunkle Karte (Frame 5a, Zeile 143): fast schwarzer Hintergrund, leicht
   vom Seitenhintergrund abgesetzt, dezenter Rand, große Radien. Orange
   Quote-Icon oben links, weißer GERADER fetter Zitattext. Kein heller Kasten,
   kein Kasten-im-Kasten, kein Balken links. */
.llp-testi { max-width: 1000px; margin: 0 auto; border: 1px solid rgba(249, 248, 244, .12); border-radius: 24px; background: var(--card); padding: 48px 52px; }
.llp-testi__mark { font-size: 80px; font-weight: 900; line-height: .5; color: var(--coral); height: 44px; }
/* Theme-blockquote-Styling neutralisieren (heller Kasten #ededed, linker
   Balken, Padding, eingebautes ::before-Anführungszeichen, 60%-Breite). */
.llp-testi__quote { margin: 0; width: auto; max-width: none; background: none; border: 0; padding: 0; box-shadow: none; font-size: clamp(24px, 3.6vw, 34px); line-height: 1.34; font-weight: 800; font-style: normal; letter-spacing: -.6px; color: var(--ink); }
.llp-testi__quote::before, .llp-testi__quote::after { content: none; display: none; }
.llp-testi__by { margin-top: 28px; display: flex; align-items: center; gap: 14px; }
.llp-testi__avatar { width: 48px; height: 48px; border-radius: 50%; background: repeating-linear-gradient(135deg, #1c1c1e, #1c1c1e 6px, #232326 6px, #232326 12px); border: 1px solid rgba(249, 248, 244, .16); overflow: hidden; flex: none; }
.llp-testi__avatar img { width: 100%; height: 100%; object-fit: cover; }
.llp-testi__meta { font-size: 15px; color: var(--ink); }
.llp-testi__lab { color: rgba(249, 248, 244, .6); }
.llp-testi__foot { margin-top: 16px; font-family: var(--mono); font-size: 11px; color: rgba(249, 248, 244, .55); } /* WCAG AA: .4 -> .55 (5,95:1) */
.llp-faq__answer p { margin: 0 0 12px; }
.llp-faq__answer p:last-child { margin-bottom: 0; }
.llp-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }

/* -------------------------------------------------------------------- FAQ */
.llp-faq__item { border-top: 1px solid rgba(249, 248, 244, .14); }
.llp-faq__item:last-child { border-bottom: 1px solid rgba(249, 248, 244, .14); }
.llp-faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 24px 4px; background: transparent; border: none; cursor: pointer; text-align: left; color: var(--ink); font-family: inherit; }
.llp-faq__q h3 { margin: 0; font-size: 19px; font-weight: 700; }
.llp-faq__chev { transition: transform .3s; color: var(--coral); font-size: 22px; line-height: 1; }
.llp-faq__panel { max-height: 0; overflow: hidden; transition: max-height .38s ease; }
.llp-faq__panel p { margin: 0; padding: 0 4px 26px; color: rgba(249, 248, 244, .72); font-size: 15px; line-height: 1.7; max-width: 880px; }

/* --------------------------------------------------------- Abschluss-CTA */
.llp-cta { text-align: center; position: relative; overflow: hidden; }
.llp-cta h2 { margin: 0 0 14px; font-size: clamp(40px, 8vw, 64px); font-weight: 900; letter-spacing: -2px; line-height: 1; }
.llp-cta__t1 { margin: 0 auto 8px; font-size: clamp(17px, 2.6vw, 20px); font-weight: 700; max-width: 640px; }
.llp-cta__t2 { margin: 0 auto 32px; font-size: 15px; color: rgba(249, 248, 244, .6); max-width: 560px; }
.llp-cta__claim { margin: 32px 0 0; font-family: var(--mono); font-size: 12px; letter-spacing: 1.5px; color: var(--coral); }

/* ----------------------------------------------------------------- Footer */
.llp-footer { padding: 56px 44px 0; background: #000; }
.llp-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr auto; gap: 34px; align-items: start; max-width: 1180px; margin: 0 auto; }
.llp-footer__logo { height: 28px; width: auto; display: block; margin-bottom: 18px; }
.llp-footer__addr { font-size: 14px; line-height: 1.7; color: rgba(249, 248, 244, .72); }
.llp-footer__contact { font-size: 15px; line-height: 1.7; }
.llp-footer__phone { font-weight: 800; }
.llp-footer__email { font-weight: 800; color: var(--coral); }
.llp-footer__social { display: flex; gap: 10px; }
.llp-footer__social div { width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(249, 248, 244, .16); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; }
.llp-footer__legal { display: flex; gap: 20px; margin-top: 24px; font-size: 12.5px; max-width: 1180px; margin-left: auto; margin-right: auto; }
.llp-footer__legal a { color: rgba(249, 248, 244, .5); }
.llp-footer__wordmark { text-align: center; font-size: clamp(64px, 16vw, 158px); font-weight: 900; letter-spacing: -4px; color: var(--ink); line-height: .8; margin-top: 26px; padding-top: 20px; user-select: none; }

/* ------------------------------------------------------------------ Modal */
/* z-index über Theme-Header (101) und höchste Theme-UI (select2 1051). */
.llp-modal { display: none; position: fixed; inset: 0; z-index: 10000; }
.llp-modal.is-open { display: block; }
.llp-modal__overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, .78); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); }
.llp-modal__box {
	position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
	display: flex; flex-direction: column;
	width: min(540px, calc(100vw - 32px)); /* responsiv statt fester 540px */
	max-height: 90vh; max-height: 90dvh;   /* dvh für Mobile-Adressleiste, vh als Fallback */
	overflow: hidden;                       /* Scroll übernimmt nur der Body-Bereich */
	background: #0d0d0e; border: 1px solid rgba(249, 248, 244, .14); border-radius: 22px; box-shadow: 0 30px 80px rgba(0, 0, 0, .7);
}
/* Kopf aus dem Scrollbereich herausgenommen -> bleibt immer sichtbar. */
.llp-modal__head { flex: 0 0 auto; position: sticky; top: 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 20px 22px; border-bottom: 1px solid rgba(249, 248, 244, .1); background: #0d0d0e; border-radius: 22px 22px 0 0; }
.llp-modal__head-title { font-weight: 800; font-size: 19px; }
.llp-modal__close { flex: none; width: 44px; height: 44px; margin: -6px -8px -6px 0; display: flex; align-items: center; justify-content: center; background: transparent; border: none; color: rgba(249, 248, 244, .6); font-size: 22px; cursor: pointer; line-height: 1; } /* Touch-Ziel >= 44x44 */
.llp-modal__close:hover { color: var(--ink); }
.llp-modal__body { flex: 1 1 auto; overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 24px; }
.llp-modal__body p { margin: 0 0 20px; font-size: 14.5px; line-height: 1.6; color: rgba(249, 248, 244, .7); }
.llp-modal__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.llp-modal label { display: flex; flex-direction: column; gap: 6px; font-size: 12.5px; font-weight: 700; color: rgba(249, 248, 244, .6); }
/* .llp-page-Präfix erhöht die Spezifität, damit Theme-Feldstyles (weisse Pillen,
   57px Höhe, textarea min-height:180px) nicht durchschlagen. Kein outline:none,
   damit die :focus-visible-Umrandung erhalten bleibt. */
.llp-page .llp-modal input, .llp-page .llp-modal textarea { width: 100%; box-sizing: border-box; height: auto; min-height: 0; background: #000; border: 1px solid rgba(249, 248, 244, .16); border-radius: 9px; padding: 11px 13px; color: var(--ink); font-size: 14px; font-family: inherit; line-height: 1.4; }
.llp-page .llp-modal textarea { min-height: 96px; resize: vertical; } /* Fehler 3: ~4-5 Zeilen statt geerbter 180px+ */
.llp-modal__submit { flex: none; margin-top: 20px; width: 100%; background: var(--coral); color: #000; font-weight: 800; font-size: 15px; padding: 14px; border-radius: 10px; border: none; cursor: pointer; }
.llp-modal__alt { margin-top: 16px; text-align: center; font-size: 13px; color: rgba(249, 248, 244, .55); }
.llp-modal__success { flex: 1 1 auto; overflow-y: auto; display: none; padding: 48px 26px; text-align: center; }
.llp-modal__success-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--coral); color: #000; display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 900; margin: 0 auto 20px; }
/* Body-Scroll-Lock bei geöffnetem Modal (JS setzt zusätzlich position:fixed). */
.llp-modal-open { overflow: hidden; }

/* ------------------------------------------------------------- Responsive */
@media (max-width: 1024px) {
	.llp-funk__grid { grid-template-columns: repeat(3, 1fr); }
	.llp-flow__grid { grid-template-columns: 28px 1fr; }
	.llp-shots { grid-column: 1 / -1; margin-top: 20px; }
}
@media (max-width: 860px) {
	.llp-sec { padding: 64px 24px; }
	.llp-sec--tight { padding: 36px 24px; }
	.llp-hero { padding: 56px 24px 48px; }
	.llp-footer { padding: 48px 24px 0; }
	.llp-nav { padding: 12px 24px; }
	.llp-nav__links { display: none; }
	.llp-nutzen__grid { grid-template-columns: 1fr; }
	.llp-kpi__grid { grid-template-columns: repeat(2, 1fr); }
	.llp-funk__grid { grid-template-columns: repeat(2, 1fr); }
	.llp-ref__grid { grid-template-columns: repeat(3, 1fr); }
	.llp-footer__grid { grid-template-columns: 1fr; }
	.llp-testi { padding: 34px 26px; }
	.llp-modal__row { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
	.llp-kpi__grid { grid-template-columns: 1fr 1fr; }
	.llp-funk__grid { grid-template-columns: 1fr; }
	.llp-ref__grid { grid-template-columns: repeat(2, 1fr); }
	.llp-flow__grid { grid-template-columns: 1fr; }
	.llp-flow__rail { display: none; }
}

/* Modal auf Mobile: nahezu vollbreite, zentrierte Karte mit kleinem Rand.
   (Bewusst kein Bottom-Sheet: die dunkle, mittige Karte ist das bestehende
   Design; eine fast-vollflächige Variante bleibt konsistent und robust.) */
@media (max-width: 640px) {
	.llp-modal__box { width: calc(100vw - 20px); max-height: 92vh; max-height: 92dvh; border-radius: 18px; }
	.llp-modal__head { padding: 16px 18px; border-radius: 18px 18px 0 0; }
	.llp-modal__body { padding: 20px; }
	.llp-modal__row { grid-template-columns: 1fr; }
}
