/* Brand logo: dark "park" text is swapped for a light one in dark mode */
.dark .logo-light, .light .logo-dark { display: none !important; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

/* ── Theme ── */
.light body { background: #f5f3ef; color: #1a1a1a; }
.dark body { background: #111111; color: #f0f0f0; }

/* ── Nav ── */
.lp-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 60;
    padding: 16px 24px;
    display: flex; align-items: center; justify-content: space-between;
    transition: background 0.3s, box-shadow 0.3s;
}
.lp-nav.scrolled { backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.light .lp-nav.scrolled { background: rgba(245,243,239,0.85); box-shadow: 0 1px 0 rgba(0,0,0,0.06); }
.dark .lp-nav.scrolled { background: rgba(17,17,17,0.85); box-shadow: 0 1px 0 rgba(255,255,255,0.06); }

.lp-nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
/* Logo left, links centred, actions right. Below 1024px the links and
   language move into the menu, and only the CTA and menu button stay. */
.lp-nav { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; padding: 14px clamp(20px, 3vw, 40px); }
.lp-nav-main { display: flex; align-items: center; gap: 4px; }
.lp-nav-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.lp-nav .lang-toggle { background: transparent !important; padding: 0; gap: 0; margin-right: 4px; }
.lp-nav .lang-toggle button { padding: 6px 7px; font-size: 12px; letter-spacing: 1px; background: transparent !important; box-shadow: none !important; opacity: 0.5; color: inherit !important; }
.lp-nav .lang-toggle button.active { opacity: 1; }
.lp-nav .lang-toggle button + button { border-left: 1px solid currentColor; border-radius: 0; padding-left: 8px; }
.lp-nav:not(.scrolled) .lang-toggle { color: #fff; }
.lp-mobile-menu-btn { display: none !important; }
.lp-nav.menu-open .lp-nav-cta { visibility: hidden; }
@media (max-width: 1023px) {
    .lp-nav { grid-template-columns: 1fr auto; }
    .lp-nav-main, .lp-lang-desktop, .lp-nav-login { display: none !important; }
    .lp-mobile-menu-btn { display: flex !important; }
}
.lp-nav-link {
    font-size: 14px; font-weight: 500; text-decoration: none; padding: 8px 16px;
    border-radius: 10px; transition: all 0.2s;
}
.light .lp-nav-link { color: #1a1a1a; }
.light .lp-nav-link:hover { background: rgba(0,0,0,0.04); }
.dark .lp-nav-link { color: #f0f0f0; }
.dark .lp-nav-link:hover { background: rgba(255,255,255,0.06); }
.lp-nav-cta {
    font-size: 14px; font-weight: 600; text-decoration: none; padding: 8px 20px;
    border-radius: 10px; transition: all 0.2s;
}
.light .lp-nav-cta { background: #1a1a1a; color: #fff; }
.light .lp-nav-cta:hover { background: #333; }
.dark .lp-nav-cta { background: #3b82f6; color: #fff; }
.dark .lp-nav-cta:hover { background: #2563eb; }

.lp-theme-btn {
    font-size: 16px; width: 32px; height: 32px; border-radius: 8px; cursor: pointer;
    display: flex; align-items: center; justify-content: center; background: transparent; border: none; transition: all 0.15s;
}
.light .lp-theme-btn { color: #1a1a1a; }
.light .lp-theme-btn:hover { background: rgba(0,0,0,0.05); }
.dark .lp-theme-btn { color: #f0f0f0; }
.dark .lp-theme-btn:hover { background: rgba(255,255,255,0.08); }

/* ── Nav over the hero photo (until scrolled): light text ── */
.lp-nav:not(.scrolled) .lp-nav-link, .lp-nav:not(.scrolled) .lp-theme-btn { color: #fff; }
.lp-nav:not(.scrolled) .lp-nav-link:hover { background: rgba(255,255,255,0.12); }
.lp-nav:not(.scrolled) .lp-nav-cta { background: #fff; color: #1a1a1a; }
.lp-nav:not(.scrolled) .lp-mobile-menu-btn:not(.active) { color: #fff; }
.lp-nav:not(.scrolled) .logo-light { display: none !important; }
.lp-nav:not(.scrolled) .logo-dark { display: block !important; }
/* Menu open: the light overlay covers the hero, so use the normal logo */
.lp-nav.menu-open .logo-light { display: block !important; }
.lp-nav.menu-open .logo-dark { display: none !important; }
.lp-nav:not(.scrolled) .lang-toggle { background: rgba(255,255,255,0.15); }
.lp-nav:not(.scrolled) .lang-toggle button { color: rgba(255,255,255,0.75); }
.lp-nav:not(.scrolled) .lang-toggle button.active { background: #fff; color: #1a1a1a; }

/* ── Sections ── */
/* Every section gets the same gap below it; the first one also gets it above (after the hero) */
:root { --lp-gap: 128px; }
@media (max-width: 768px) { :root { --lp-gap: 88px; } }
.lp-section { max-width: 1080px; margin: 0 auto; padding: 0 24px var(--lp-gap) !important; }
.lp-hero + .lp-section { padding-top: var(--lp-gap) !important; }

/* ── Hero ── */
.lp-hero {
    min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center;
    padding: 120px 24px 140px; position: relative; color: #fff;
    background: #1a1a1a url('/static/home/hero.webp') 42% center / cover no-repeat;
}
@media (max-width: 768px) { .lp-hero { background-image: url('/static/home/hero-mobile.webp'); background-position: 50% center; } }
/* Darken the photo enough for white text, lighter in the middle so it still shows */
.lp-hero::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(180deg, rgba(10,12,14,0.55) 0%, rgba(10,12,14,0.35) 40%, rgba(10,12,14,0.45) 70%, rgba(10,12,14,0.75) 100%);
}
.lp-hero > * { position: relative; }
.lp-hero .lp-hero-badge { background: rgba(255,255,255,0.16) !important; color: #fff !important; backdrop-filter: blur(6px); }
.lp-hero h1 { color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,0.35); }
.lp-hero p { color: rgba(255,255,255,0.88) !important; text-shadow: 0 1px 12px rgba(0,0,0,0.4); }
.lp-hero .lp-btn-primary { background: #589e7a !important; color: #fff !important; box-shadow: 0 6px 24px rgba(0,0,0,0.25) !important; }
.lp-hero .lp-btn-primary:hover { background: #4a8b6a !important; }
.lp-hero-callback { text-wrap: balance; margin: 22px 0 0 !important; font-size: 14px !important; line-height: 1.7; color: rgba(255,255,255,0.85) !important; text-shadow: 0 1px 8px rgba(0,0,0,0.4); }
.lp-hero-callback a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.lp-hero .lp-btn-secondary { border: 1.5px solid rgba(255,255,255,0.7) !important; color: #fff !important; background: rgba(255,255,255,0.08) !important; backdrop-filter: blur(6px); }
.lp-hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600; padding: 6px 16px; border-radius: 100px;
    margin-bottom: 32px; animation: fadeUp 0.6s ease-out;
}
.light .lp-hero-badge { background: rgba(0,0,0,0.05); color: #6b7280; }
.dark .lp-hero-badge { background: rgba(255,255,255,0.06); color: #8e8e93; }
.lp-hero h1 {
    font-size: clamp(44px, 8vw, 88px); font-weight: 900; letter-spacing: -3px;
    line-height: 1.02; max-width: 900px; margin-bottom: 24px; text-wrap: balance;
    animation: fadeUp 0.6s ease-out 0.1s both;
}
.lp-hero p {
    font-size: clamp(16px, 2.2vw, 20px); line-height: 1.6; max-width: 540px;
    margin-bottom: 48px; animation: fadeUp 0.6s ease-out 0.2s both;
}
.light .lp-hero p { color: #6b7280; }
.dark .lp-hero p { color: #8e8e93; }

.lp-hero-actions {
    display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
    animation: fadeUp 0.6s ease-out 0.3s both;
}
.lp-btn-primary {
    font-size: 16px; font-weight: 700; padding: 16px 32px; border-radius: 14px;
    border: none; cursor: pointer; transition: all 0.2s; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
}
.lp-btn-primary:hover { transform: translateY(-2px); }
.lp-btn-primary:active { transform: translateY(0); }
.light .lp-btn-primary { background: #1a1a1a; color: #fff; box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.light .lp-btn-primary:hover { background: #333; box-shadow: 0 6px 24px rgba(0,0,0,0.16); }
.dark .lp-btn-primary { background: #3b82f6; color: #fff; box-shadow: 0 4px 16px rgba(59,130,246,0.25); }
.dark .lp-btn-primary:hover { background: #2563eb; box-shadow: 0 6px 24px rgba(59,130,246,0.35); }

.lp-btn-secondary {
    font-size: 16px; font-weight: 600; padding: 16px 32px; border-radius: 14px;
    cursor: pointer; transition: all 0.2s; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px; background: transparent;
}
.lp-btn-secondary:hover { transform: translateY(-1px); }
.light .lp-btn-secondary { border: 1.5px solid rgba(0,0,0,0.12); color: #1a1a1a; }
.light .lp-btn-secondary:hover { border-color: rgba(0,0,0,0.25); background: rgba(0,0,0,0.02); }
.dark .lp-btn-secondary { border: 1.5px solid rgba(255,255,255,0.12); color: #f0f0f0; }
.dark .lp-btn-secondary:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.04); }


/* ── Pain points / before-after ── */
.lp-painpoints {
    padding: 0 24px 120px;
}
.lp-compare {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
@media (max-width: 768px) { .lp-compare { grid-template-columns: 1fr; } }
.lp-compare-card {
    border-radius: 24px; overflow: hidden; background: #fff; border: 1.5px solid rgba(0,0,0,0.06);
    box-shadow: 0 1px 3px rgba(0,0,0,0.03); transition: transform 0.3s;
}
.lp-compare-photo { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.lp-compare-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lp-compare-chip {
    position: absolute; left: 16px; bottom: 16px; display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 12px; border-radius: 100px; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    background: rgba(255,255,255,0.92); backdrop-filter: blur(6px); box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}
.lp-compare-card.before .lp-compare-chip { color: #dc2626; }
.lp-compare-card.after .lp-compare-chip { color: #16a34a; }
.lp-compare-list { list-style: none; display: flex; flex-direction: column; gap: 14px; padding: 26px 28px 30px; margin: 0; }
.lp-compare-list li {
    font-size: 15px; font-weight: 500; display: flex; align-items: flex-start; gap: 10px; line-height: 1.5;
}
.lp-compare-icon {
    width: 22px; height: 22px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.lp-compare-card.before .lp-compare-icon { background: rgba(220,38,38,0.1); color: #dc2626; }
.lp-compare-card.after .lp-compare-icon { background: rgba(22,163,74,0.12); color: #16a34a; }
.lp-cost {
    margin-top: 24px; display: flex; align-items: center; gap: 18px; padding: 22px 26px; border-radius: 24px;
    background: #1a1a1a; color: #fff;
}
.lp-cost-icon { width: 48px; height: 48px; border-radius: 14px; background: rgba(88,158,122,0.22); color: #7fd1a6; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lp-cost-text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.lp-cost-text strong { font-size: 17px; font-weight: 700; }
.lp-cost-text span { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.5; }
.lp-cost-price { flex-shrink: 0; text-decoration: none; color: #fff; background: #589e7a; padding: 12px 18px; border-radius: 14px; font-size: 14px; white-space: nowrap; }
.lp-cost-price b { font-size: 18px; font-weight: 800; }
@media (max-width: 640px) {
    .lp-cost { flex-direction: column; align-items: flex-start; }
    .lp-cost-price { align-self: stretch; text-align: center; }
}

/* ── How it works ── */
.lp-how {
    padding: 120px 24px;
}
.lp-section-label {
    font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 16px;
}
.light .lp-section-label { color: #9a958e; }
.dark .lp-section-label { color: #8e8e93; }
.lp-section-title {
    font-size: clamp(32px, 4.5vw, 48px); font-weight: 800; letter-spacing: -2px;
    line-height: 1.08; margin-bottom: 64px; max-width: 600px;
}
.lp-section-subtitle {
    font-size: 17px; font-weight: 500; margin-top: -48px; margin-bottom: 48px; max-width: 500px;
}
.light .lp-section-subtitle { color: #6b7280; }
.dark .lp-section-subtitle { color: #8e8e93; }
.lp-steps {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
@media (max-width: 768px) { .lp-steps { grid-template-columns: 1fr; gap: 24px; } }
.lp-step {
    padding: 32px 28px; border-radius: 24px; transition: all 0.3s;
}
.light .lp-step { background: #fff; border: 1.5px solid rgba(0,0,0,0.06); }
.light .lp-step:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.06); transform: translateY(-2px); }
.dark .lp-step { background: #1c1c1e; border: 1px solid rgba(255,255,255,0.06); }
.dark .lp-step:hover { border-color: rgba(255,255,255,0.12); transform: translateY(-2px); }
.lp-step-number {
    width: 44px; height: 44px; border-radius: 12px; display: flex;
    align-items: center; justify-content: center;
    font-size: 18px; font-weight: 800; margin-bottom: 20px;
}
.light .lp-step-number { background: #f5f3ef; color: #1a1a1a; }
.dark .lp-step-number { background: rgba(59,130,246,0.12); color: #60a5fa; }
.lp-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.3px; }
.lp-step p { font-size: 14px; line-height: 1.6; }
.light .lp-step p { color: #6b7280; }
.dark .lp-step p { color: #8e8e93; }

/* ── Features ── */
.lp-features {
    padding: 0 24px 120px;
}
.lp-feature-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.lp-feature-card { grid-column: span 2; border-radius: 24px; overflow: hidden; background: #fff; border: 1.5px solid rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column; }
.lp-feature-card.wide { grid-column: span 3; }
.lp-feature-card:hover { box-shadow: 0 10px 36px rgba(0,0,0,0.07); transform: translateY(-2px); }
@media (max-width: 768px) { .lp-feature-grid { grid-template-columns: 1fr; } .lp-feature-card, .lp-feature-card.wide { grid-column: auto; } }
.lp-fv { height: 210px; display: flex; align-items: center; justify-content: center; padding: 20px; position: relative; overflow: hidden; }
.lp-feature-body { padding: 22px 26px 26px; }
.lp-feature-head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.lp-feature-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lp-feature-card h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.3px; margin: 0; }
.lp-feature-card p { font-size: 14px; line-height: 1.6; color: #6b7280; }
/* Mini previews of the real screens */
.fv-dash { width: 100%; max-width: 380px; background: #fff; border-radius: 16px; padding: 14px; box-shadow: 0 10px 30px rgba(37,99,235,0.12); }
.fv-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 12px; }
.fv-stats > div { background: #f5f3ef; border-radius: 10px; padding: 8px 6px; text-align: center; display: flex; flex-direction: column; }
.fv-stats b { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; color: #1a1a1a; }
.fv-stats span { font-size: 9px; color: #9a958e; }
.fv-chart { display: flex; align-items: flex-end; gap: 8px; height: 56px; padding: 0 4px; }
.fv-chart i { flex: 1; border-radius: 5px 5px 2px 2px; background: #d7e3fb; }
.fv-chart i.on { background: #2563eb; }
.fv-qr { display: flex; align-items: center; gap: 18px; }
.fv-sign { background: #fff; border-radius: 12px; padding: 12px 12px 8px; box-shadow: 0 10px 28px rgba(22,163,74,0.14); display: flex; flex-direction: column; align-items: center; gap: 6px; transform: rotate(-3deg); }
.fv-sign img { width: 84px; height: 84px; }
.fv-sign span { font-size: 9px; font-weight: 700; color: #1a1a1a; }
.fv-phone { width: 108px; background: #16181a; border-radius: 18px; padding: 16px 8px 10px; box-shadow: 0 10px 28px rgba(0,0,0,0.18); display: flex; flex-direction: column; gap: 6px; transform: rotate(4deg); }
.fv-plate { background: #fff; border-radius: 7px; text-align: center; font-family: 'Courier New', monospace; font-weight: 800; font-size: 12px; letter-spacing: 1px; padding: 6px 0; color: #1a1a1a; }
.fv-go { background: #589e7a; color: #fff; border-radius: 7px; text-align: center; font-size: 9px; font-weight: 700; padding: 6px 0; }
.lp-fv.fv-dark { background: #2a2d31 url('/static/home/hero-mobile.webp') 20% 75% / 240% auto; }
.lp-fv.fv-dark::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.45); }
.fv-cam { position: relative; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.fv-frame { padding: 12px; border: 2px solid rgba(255,255,255,0.9); border-radius: 14px; }
.fv-ok { display: inline-flex; align-items: center; gap: 6px; background: #16a34a; color: #fff; font-size: 11px; font-weight: 700; padding: 6px 12px; border-radius: 100px; box-shadow: 0 6px 18px rgba(0,0,0,0.25); }
.fv-case { width: 100%; max-width: 300px; background: #fff; border-radius: 16px; padding: 14px 16px; box-shadow: 0 10px 30px rgba(217,119,6,0.14); display: flex; flex-direction: column; gap: 4px; }
.fv-case-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2px; }
.fv-case-tag { font-size: 9px; font-weight: 700; color: #dc2626; background: #fef2f2; padding: 3px 8px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.5px; }
.fv-muted { font-size: 10px; color: #9a958e; }
.fv-case-plate { font-family: 'Courier New', monospace; font-size: 18px; font-weight: 800; letter-spacing: 1.5px; color: #1a1a1a; }
.fv-send { margin-top: 8px; display: flex; align-items: center; justify-content: center; gap: 6px; background: #1a1a1a; color: #fff; border-radius: 10px; padding: 9px; font-size: 11px; font-weight: 700; }

/* ── Roles / audience ── */
.lp-audience {
    padding: 0 24px 120px;
}
.lp-audience-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
@media (max-width: 768px) { .lp-audience-grid { grid-template-columns: 1fr; } }
.lp-audience-card { border-radius: 24px; overflow: hidden; background: #fff; border: 1.5px solid rgba(0,0,0,0.06); display: flex; flex-direction: column; transition: transform 0.3s, box-shadow 0.3s; }
.lp-audience-card:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(0,0,0,0.07); }
.lp-aud-photo { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.lp-aud-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.lp-audience-card:hover .lp-aud-photo img { transform: scale(1.03); }
.lp-aud-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.65)); }
.lp-aud-over { position: absolute; left: 24px; right: 24px; bottom: 20px; z-index: 1; display: flex; align-items: center; gap: 12px; color: #fff; }
.lp-aud-icon { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,0.18); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lp-aud-over h3 { font-size: 24px; font-weight: 800; letter-spacing: -0.6px; margin: 0; text-shadow: 0 1px 12px rgba(0,0,0,0.3); }
.lp-aud-body { padding: 22px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.lp-aud-body p { font-size: 15px; line-height: 1.6; color: #4b5563; margin-bottom: 18px; }
.lp-aud-foot { margin-top: auto; padding-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid rgba(0,0,0,0.06); }
.lp-aud-price { display: flex; flex-direction: column; gap: 2px; color: #1a1a1a; }
.lp-aud-price b { font-size: 26px; font-weight: 800; letter-spacing: -0.8px; line-height: 1.1; }
.lp-aud-price small { font-size: 12px; font-weight: 500; color: #6b7280; }
.lp-aud-cta { display: inline-flex; align-items: center; gap: 6px; padding: 10px 16px; border-radius: 12px; background: #1a1a1a; color: #fff; font-size: 14px; font-weight: 700; text-decoration: none; transition: background 0.2s; }
.lp-aud-cta:hover { background: #589e7a; }
.lp-audience-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 0 0 24px; padding: 0; }
.lp-audience-features li {
    font-size: 13px; display: flex; align-items: center; gap: 8px;
}
.light .lp-audience-features li { color: #4b5563; }
.dark .lp-audience-features li { color: #a1a1a6; }
.lp-check {
    width: 18px; height: 18px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; font-size: 10px; font-weight: 700; flex-shrink: 0;
}
.light .lp-check { background: #f0fdf4; color: #16a34a; }
.dark .lp-check { background: rgba(74,222,128,0.1); color: #4ade80; }

/* ── Pricing teaser ── */
.lp-pricing {
    padding: 0 24px 120px;
}
.lp-pricing-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 720px;
}
@media (max-width: 768px) { .lp-pricing-grid { grid-template-columns: 1fr; } }
.lp-pricing-card {
    padding: 36px 28px; border-radius: 24px; transition: all 0.3s; position: relative;
}
.light .lp-pricing-card { background: #fff; border: 1.5px solid rgba(0,0,0,0.06); }
.dark .lp-pricing-card { background: #1c1c1e; border: 1px solid rgba(255,255,255,0.06); }
.lp-pricing-card:hover { transform: translateY(-2px); }
.light .lp-pricing-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.lp-pricing-card.featured { }
.light .lp-pricing-card.featured { border-color: #1a1a1a; }
.dark .lp-pricing-card.featured { border-color: #3b82f6; }
.lp-pricing-badge {
    position: absolute; top: -10px; right: 20px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.3px;
    padding: 4px 14px; border-radius: 20px;
}
.light .lp-pricing-badge { background: #1a1a1a; color: #fff; }
.dark .lp-pricing-badge { background: #3b82f6; color: #fff; }
.lp-pricing-name { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.lp-pricing-desc { font-size: 13px; margin-bottom: 20px; }
.light .lp-pricing-desc { color: #9a958e; }
.dark .lp-pricing-desc { color: #8e8e93; }
.lp-pricing-amount { font-size: 40px; font-weight: 800; letter-spacing: -2px; line-height: 1; }
.lp-pricing-unit { font-size: 14px; font-weight: 500; margin-top: 4px; margin-bottom: 24px; }
.light .lp-pricing-unit { color: #9a958e; }
.dark .lp-pricing-unit { color: #8e8e93; }
.lp-audience .lp-pricing-nobind { margin-top: 28px; }
.lp-pricing-nobind {
    font-size: 13px; font-weight: 600; text-align: center; margin-top: 24px;
    display: flex; align-items: center; justify-content: center; gap: 6px;
}
.light .lp-pricing-nobind { color: #16a34a; }
.dark .lp-pricing-nobind { color: #4ade80; }
.lp-pricing-cta {
    display: block; text-align: center; font-size: 15px; font-weight: 700; padding: 14px;
    border-radius: 12px; text-decoration: none; transition: all 0.2s;
}
.lp-pricing-cta:hover { transform: translateY(-1px); }
.light .lp-pricing-card.featured .lp-pricing-cta { background: #1a1a1a; color: #fff; }
.light .lp-pricing-card.featured .lp-pricing-cta:hover { background: #333; }
.dark .lp-pricing-card.featured .lp-pricing-cta { background: #3b82f6; color: #fff; }
.dark .lp-pricing-card.featured .lp-pricing-cta:hover { background: #2563eb; }
.light .lp-pricing-cta { background: #f5f3ef; color: #1a1a1a; }
.light .lp-pricing-cta:hover { background: #eae8e3; }
.dark .lp-pricing-cta { background: #2c2c2e; color: #f0f0f0; }
.dark .lp-pricing-cta:hover { background: #353537; }


/* ── CTA banner ── */
.lp-cta-section {
    padding: 0 24px 120px;
}
.lp-cta-box {
    border-radius: 28px; padding: 72px 48px; text-align: center;
    position: relative; overflow: hidden;
}
.light .lp-cta-box { background: #1a1a1a; }
.dark .lp-cta-box { background: #1c1c1e; border: 1px solid rgba(255,255,255,0.06); }
.lp-cta-box h2 {
    font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -1.5px;
    line-height: 1.1; margin-bottom: 16px; color: #fff;
}
.lp-cta-box p { font-size: 16px; line-height: 1.6; margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }
.light .lp-cta-box p { color: rgba(255,255,255,0.6); }
.dark .lp-cta-box p { color: #8e8e93; }
.lp-cta-box .lp-btn-primary {
    background: #fff; color: #1a1a1a;
}
.lp-cta-box .lp-btn-primary:hover { background: #f0f0f0; }
.dark .lp-cta-box .lp-btn-primary { background: #3b82f6; color: #fff; }
.dark .lp-cta-box .lp-btn-primary:hover { background: #2563eb; }

.lp-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.lp-cta-box .lp-btn-secondary { border-color: rgba(255,255,255,0.2); color: #fff; }
.lp-cta-box .lp-btn-secondary:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.06); }

/* ── Device mockups ── */
.lp-showcase {
    padding: 0 24px 120px;
}
.lp-devices {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
    align-items: start;
}
@media (max-width: 900px) { .lp-devices { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; gap: 48px; } }
.lp-device-wrapper { text-align: center; }
/* Phone mockups that mirror the real app screens */
.lp-device {
    width: 100%; max-width: 270px; margin: 0 auto; position: relative;
    aspect-ratio: 9 / 17.6; padding: 9px; border-radius: 44px; background: #16181a;
    box-shadow: 0 24px 60px rgba(0,0,0,0.18), 0 2px 6px rgba(0,0,0,0.08), inset 0 0 0 1.5px #2c2f33;
}
.lp-island { position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 76px; height: 22px; border-radius: 12px; background: #000; z-index: 2; }
.lp-screen { height: 100%; border-radius: 35px; overflow: hidden; background: #f5f3ef; text-align: left; padding: 44px 14px 14px; color: #1a1a1a; display: flex; flex-direction: column; }
.ms-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.ms-logo { height: 15px; width: auto; }
.ms-menu { display: flex; flex-direction: column; gap: 3px; }
.ms-menu i { display: block; width: 14px; height: 1.8px; border-radius: 2px; background: #1a1a1a; }
.ms-title { font-size: 19px; font-weight: 800; letter-spacing: -0.6px; }
.ms-sub { font-size: 10px; color: #9a958e; margin: 2px 0 10px; }
.ms-card { background: #fff; border-radius: 16px; padding: 12px; margin-bottom: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.ms-card-title { font-size: 12px; font-weight: 700; margin-bottom: 8px; }
.ms-qr { display: block; width: 92px; height: 92px; margin: 2px auto 10px; }
.ms-btns { display: flex; gap: 6px; margin-bottom: 10px; }
.ms-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 5px; height: 28px; border-radius: 9px; font-size: 10px; font-weight: 700; border: 1px solid rgba(0,0,0,0.1); background: #fff; }
.ms-btn.dark { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
.ms-label { font-size: 9px; color: #9a958e; margin-bottom: 4px; }
.ms-row { display: flex; align-items: center; justify-content: space-between; background: #f5f3ef; border-radius: 9px; padding: 7px 9px; }
.ms-plate { font-family: 'Courier New', monospace; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; }
.ms-muted { font-size: 9px; color: #9a958e; font-weight: 500; }
.ms-warn { font-size: 9px; font-weight: 700; color: #d97706; }

.lp-screen.mg { position: relative; justify-content: space-between; background: #1a1a1a url('/static/guest/bg-1.webp') 50% 35% / cover; padding: 46px 12px 12px; color: #fff; }
.lp-screen.mg::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.55)); }
.lp-screen.mg > * { position: relative; }
.mg-head { text-align: center; }
.mg-name { font-size: 17px; font-weight: 800; letter-spacing: -0.4px; text-shadow: 0 1px 8px rgba(0,0,0,0.4); }
.mg-addr { font-size: 9px; opacity: 0.85; }
.mg-card { background: rgba(20,20,20,0.45); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,0.14); border-radius: 18px; padding: 12px; }
.mg-title { font-size: 13px; font-weight: 700; margin-bottom: 8px; }
.mg-label { font-size: 8px; font-weight: 700; letter-spacing: 1px; opacity: 0.75; margin-bottom: 5px; }
.mg-input { height: 32px; border-radius: 10px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-family: 'Courier New', monospace; font-weight: 700; font-size: 14px; letter-spacing: 2px; margin-bottom: 10px; }
.mg-chips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; margin-bottom: 10px; }
.mg-chips > span { height: 24px; border-radius: 8px; display: flex; align-items: center; justify-content: center; gap: 3px; font-size: 9px; font-weight: 600; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); }
.mg-chips > span.on { background: #fff; color: #1a1a1a; border-color: #fff; }
.mg-btn { height: 32px; border-radius: 10px; background: #589e7a; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; }
.mg-foot { display: flex; align-items: center; justify-content: center; gap: 4px; font-size: 8px; opacity: 0.8; }
.mg-foot img { height: 10px; width: auto; }

.lp-screen.mk { padding: 0; background: #fff; }
.mk-cam { position: relative; flex: 0 0 40%; }
.mk-cam > * { position: relative; }
.mk-frame { padding: 10px; border: 2px solid rgba(255,255,255,0.9); border-radius: 12px; }
.mk-plate { display: flex; align-items: center; height: 26px; background: #fff; border-radius: 4px; overflow: hidden; border: 1.5px solid #1a1a1a; font-family: 'Courier New', monospace; font-weight: 800; font-size: 14px; letter-spacing: 1.5px; padding-right: 8px; color: #1a1a1a; }
.mk-eu { width: 12px; height: 100%; background: #1d4ed8; color: #fde047; font-size: 7px; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 3px; margin-right: 7px; letter-spacing: 0; font-family: inherit; }
.mk-hint { font-size: 9px; color: #fff; background: rgba(0,0,0,0.45); padding: 4px 9px; border-radius: 20px; }
.mk-list { flex: 1; padding: 12px; border-radius: 18px 18px 0 0; margin-top: -14px; background: #fff; position: relative; }
.mk-list-title { font-size: 12px; font-weight: 700; margin-bottom: 8px; }
.mk-row { display: flex; align-items: center; gap: 8px; padding: 7px 8px; border-radius: 10px; background: #f0fdf4; margin-bottom: 6px; }
.mk-row.bad { background: #fef2f2; }
.mk-dot { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #16a34a; color: #fff; }
.mk-row.bad .mk-dot { background: #dc2626; }
.mk-info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.mk-status { font-size: 9px; color: #6b7280; }
.mk-list { display: flex; flex-direction: column; }
.mk-summary { margin-top: auto; text-align: center; font-size: 9px; color: #9a958e; padding-top: 4px; }
.mk-case { font-size: 8px; font-weight: 700; color: #fff; background: #dc2626; border-radius: 6px; padding: 4px 6px; white-space: nowrap; }
.lp-device-caption {
    font-size: 14px; font-weight: 600; margin-top: 16px;
}
.lp-device-caption-sub {
    font-size: 13px; margin-top: 4px; line-height: 1.5; text-wrap: balance; hyphens: manual;
}
.light .lp-device-caption-sub { color: #6b7280; }
.dark .lp-device-caption-sub { color: #8e8e93; }

/* ── Footer ── */
.lp-footer {
    text-align: center; padding: 32px 24px 24px;
    font-size: 10px; font-weight: 500; letter-spacing: 3px; opacity: 0.25;
}
.light .lp-footer { color: #1a1a1a; }
.dark .lp-footer { color: #f0f0f0; }

/* ── FAQ ── */
.lp-faq { }
.lp-faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.lp-faq-item {
    border-radius: 16px; overflow: hidden; transition: all 0.2s;
}
.light .lp-faq-item { background: #fff; border: 1.5px solid rgba(0,0,0,0.06); }
.dark .lp-faq-item { background: #1a1a1c; border: 1px solid rgba(255,255,255,0.06); }
.lp-faq-item summary {
    padding: 20px 24px; font-size: 16px; font-weight: 600; cursor: pointer;
    list-style: none; display: flex; align-items: center; justify-content: space-between;
    transition: color 0.2s;
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary::after { content: '+'; font-size: 22px; font-weight: 400; flex-shrink: 0; margin-left: 16px; transition: transform 0.2s; }
.lp-faq-item[open] summary::after { content: '−'; }
.light .lp-faq-item summary { color: #1a1a1a; }
.dark .lp-faq-item summary { color: #f0f0f0; }
.lp-faq-item p {
    padding: 0 24px 20px; font-size: 15px; line-height: 1.7;
}
.light .lp-faq-item p { color: #6b7280; }
.dark .lp-faq-item p { color: #8e8e93; }

/* ── Animations ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.lp-animate { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.lp-animate.visible { opacity: 1; transform: translateY(0); }

/* ── Mobile menu ── */
.lp-mobile-menu-btn {
    display: flex; background: none; border: none; cursor: pointer; padding: 4px; z-index: 60;
}
.light .lp-mobile-menu-btn { color: #1a1a1a; }
.dark .lp-mobile-menu-btn { color: #f0f0f0; }

.lp-mobile-overlay {
    position: fixed; inset: 0; z-index: 59;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.lp-mobile-overlay.open { opacity: 1; visibility: visible; }
.light .lp-mobile-overlay { background: #f5f3ef; }
.dark .lp-mobile-overlay { background: #111111; }

.lp-mobile-overlay-links {
    display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.lp-mobile-overlay-links a {
    font-size: 28px; font-weight: 700; letter-spacing: -0.5px;
    text-decoration: none; padding: 10px 24px; border-radius: 16px;
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.35s ease, transform 0.35s ease, background 0.2s;
}
.lp-mobile-overlay.open .lp-mobile-overlay-links a {
    opacity: 1; transform: translateY(0);
}
.lp-mobile-overlay.open .lp-mobile-overlay-links a:nth-child(1) { transition-delay: 0.06s; }
.lp-mobile-overlay.open .lp-mobile-overlay-links a:nth-child(2) { transition-delay: 0.12s; }
.lp-mobile-overlay.open .lp-mobile-overlay-links a:nth-child(3) { transition-delay: 0.18s; }
.lp-mobile-overlay.open .lp-mobile-overlay-links a:nth-child(4) { transition-delay: 0.24s; }
.lp-mobile-overlay.open .lp-mobile-overlay-links a:nth-child(5) { transition-delay: 0.30s; }
.light .lp-mobile-overlay-links a { color: #1a1a1a; }
.light .lp-mobile-overlay-links a:hover { background: rgba(0,0,0,0.05); }
.dark .lp-mobile-overlay-links a { color: #f0f0f0; }
.dark .lp-mobile-overlay-links a:hover { background: rgba(255,255,255,0.06); }

.lp-mobile-overlay-cta {
    margin-top: 32px; opacity: 0; transform: translateY(20px);
    transition: opacity 0.35s ease 0.36s, transform 0.35s ease 0.36s;
}
.lp-mobile-overlay.open .lp-mobile-overlay-cta {
    opacity: 1; transform: translateY(0);
}
.lp-mobile-overlay-cta a {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 18px; font-weight: 700; padding: 16px 36px; border-radius: 14px;
    text-decoration: none; color: #fff;
}
.light .lp-mobile-overlay-cta a { background: #1a1a1a; }
.dark .lp-mobile-overlay-cta a { background: #3b82f6; }

.lp-mobile-overlay-bottom {
    position: absolute; bottom: 48px; display: flex; align-items: center; gap: 16px;
    opacity: 0; transition: opacity 0.35s ease 0.4s;
}
.lp-mobile-overlay-bottom .lp-theme-btn {
    width: 44px; height: 44px; font-size: 22px; border-radius: 12px;
}
.lp-mobile-overlay.open .lp-mobile-overlay-bottom { opacity: 1; }

/* Hamburger → X animation */
.lp-mobile-menu-btn svg .line1,
.lp-mobile-menu-btn svg .line2,
.lp-mobile-menu-btn svg .line3 {
    transition: transform 0.3s ease, opacity 0.2s ease;
    transform-origin: center;
}
.lp-mobile-menu-btn.active svg .line1 { transform: translateY(6px) rotate(45deg); }
.lp-mobile-menu-btn.active svg .line2 { opacity: 0; }
.lp-mobile-menu-btn.active svg .line3 { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 640px) {
    .lp-hero h1 { letter-spacing: -2px; }
    .lp-cta-box { padding: 48px 24px; }
}

/* Hero with the product beside the text */
.lp-hero-grid { width: 100%; max-width: 1200px; display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; text-align: left; }
.lp-hero-grid .lp-hero-copy { display: flex; flex-direction: column; align-items: flex-start; }
.lp-hero-grid h1 { font-size: clamp(44px, 5.6vw, 80px); max-width: 11em; }
.lp-hero-grid .lp-hero-actions { justify-content: flex-start; }
.lp-hero::before { background: linear-gradient(100deg, rgba(10,12,14,0.8) 0%, rgba(10,12,14,0.55) 45%, rgba(10,12,14,0.35) 100%), linear-gradient(180deg, rgba(10,12,14,0.3) 0%, rgba(10,12,14,0) 30%, rgba(10,12,14,0.5) 100%); }
.hv { position: relative; padding: 0 110px 90px 0; animation: fadeUp 0.8s ease-out 0.35s both; }
.hv-browser { border-radius: 14px; overflow: hidden; background: #f5f3ef; color: #1a1a1a; box-shadow: 0 40px 90px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.12); }
.hv-bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: #e9e6e0; }
.hv-bar i { width: 10px; height: 10px; border-radius: 50%; background: #d1ccc4; }
.hv-url { margin-left: 12px; flex: 1; max-width: 260px; height: 22px; border-radius: 6px; background: #fff; font-size: 11px; color: #9a958e; display: flex; align-items: center; padding: 0 10px; }
.hv-body { padding: 18px 90px 20px 20px; }
.hv-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.hv-top img { height: 16px; width: auto; }
.hv-org { font-size: 12px; font-weight: 600; color: #6b7280; }
.hv-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 12px; }
.hv-stats div { background: #fff; border-radius: 12px; padding: 12px 14px; }
.hv-stats b { display: block; font-size: 24px; font-weight: 800; letter-spacing: -0.8px; line-height: 1.1; }
.hv-stats span { font-size: 11px; color: #9a958e; font-weight: 500; }
.hv-table { background: #fff; border-radius: 12px; padding: 12px 14px 6px; }
.hv-table h4 { font-size: 12px; font-weight: 700; margin-bottom: 8px; display: flex; justify-content: space-between; }
.hv-table h4 span { color: #16a34a; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.hv-table h4 span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #16a34a; }
.hv-row { display: grid; grid-template-columns: 82px 1fr auto; gap: 10px; align-items: center; padding: 8px 0; border-top: 1px solid #f0ede8; font-size: 11px; }
.hv-row .ms-plate { font-size: 11px; }
.hv-row em { font-style: normal; color: #6b7280; }
.hv-row .ok { color: #16a34a; font-weight: 600; }
.hv-row .warn { color: #d97706; font-weight: 600; }
.hv .lp-device { position: absolute; right: 0; bottom: 0; width: 200px; max-width: 200px; padding: 7px; border-radius: 34px; box-shadow: 0 30px 70px rgba(0,0,0,0.5), inset 0 0 0 1.5px #2c2f33; }
.hv .lp-island { top: 14px; width: 58px; height: 17px; }
.hv .lp-screen { border-radius: 28px; padding: 38px 10px 10px; }
.hv .mg-name { font-size: 14px; }
.hv .mg-card { padding: 10px; border-radius: 14px; }
.hv .mg-chips > span { height: 21px; font-size: 8px; }
.hv .mg-input, .hv .mg-btn { height: 28px; font-size: 12px; }
.hv .mg-btn { font-size: 10px; }
@media (max-width: 1023px) {
    .lp-hero-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; max-width: 640px; }
    .lp-hero-grid .lp-hero-copy { align-items: center; }
    .lp-hero-grid .lp-hero-actions { justify-content: center; }
    .lp-hero::before { background: linear-gradient(180deg, rgba(10,12,14,0.6) 0%, rgba(10,12,14,0.45) 40%, rgba(10,12,14,0.75) 100%); }
    .hv { padding: 0 90px 80px 0; }
    .hv-body { padding-right: 124px; }
}
@media (max-width: 560px) {
    .hv { padding: 0 60px 70px 0; }
    .hv-body { padding-right: 100px !important; }
    .hv-org { display: none; }
    .hv .lp-device { width: 150px; max-width: 150px; border-radius: 26px; padding: 5px; }
    .hv .lp-screen { border-radius: 22px; padding: 30px 7px 7px; }
    .hv .lp-island { top: 10px; width: 44px; height: 13px; }
    .hv .mg-addr, .hv .mg-chips, .hv .mg-label, .hv .mg-foot { display: none; }
    .hv .mg-name { font-size: 11px; }
    .hv .mg-title { font-size: 10px; }
    .hv .mg-input, .hv .mg-btn { height: 22px; font-size: 9px; }
    .hv-body { padding: 12px; }
    .hv-stats { grid-template-columns: 1fr 1fr; }
    .hv-stats div:nth-child(3) { display: none; }
    .hv-stats b { font-size: 18px; }
    .hv-stats div { padding: 8px 10px; }
    .hv-row { grid-template-columns: 70px 1fr; }
    .hv-row em { display: none; }
}

/* Figures strip under the hero */
/* Figures strip overlapping the bottom of the hero (BRF page) */
.lp-hero + .lp-section.lp-figures-sec { padding-top: 0 !important; margin-top: -64px; position: relative; z-index: 2; }
/* Two doors overlapping the bottom of the hero */
.lp-hero + .lp-section.lp-doors-sec { padding-top: 0 !important; padding-bottom: 32px !important; margin-top: -64px; position: relative; z-index: 2; }
.lp-doors { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lp-door { display: flex; align-items: center; gap: 18px; padding: 14px 22px 14px 14px; border-radius: 20px; background: #fff; border: 1.5px solid rgba(0,0,0,0.06); box-shadow: 0 20px 50px rgba(0,0,0,0.1); text-decoration: none; color: #1a1a1a; transition: transform .2s, box-shadow .2s; }
.lp-door:hover { transform: translateY(-3px); box-shadow: 0 26px 60px rgba(0,0,0,0.14); }
.lp-door img { width: 92px; height: 92px; border-radius: 14px; object-fit: cover; flex-shrink: 0; }
.lp-door-text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.lp-door-text small { font-size: 13px; font-weight: 600; color: #589e7a; }
.lp-door-text strong { font-size: 19px; font-weight: 800; letter-spacing: -0.4px; line-height: 1.25; }
.lp-door-go { width: 44px; height: 44px; border-radius: 50%; background: #1a1a1a; color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s; }
.lp-door:hover .lp-door-go { background: #589e7a; }
@media (max-width: 760px) {
    .lp-doors { grid-template-columns: 1fr; gap: 12px; }
    .lp-door { gap: 14px; padding: 12px 16px 12px 12px; }
    .lp-door img { width: 72px; height: 72px; }
    .lp-door-text strong { font-size: 17px; }
    .lp-door-go { width: 38px; height: 38px; }
}
.lp-figures { box-shadow: 0 20px 50px rgba(0,0,0,0.08); display: grid; grid-template-columns: repeat(4, 1fr); border-radius: 20px; background: #fff; border: 1.5px solid rgba(0,0,0,0.06); }
.lp-figures > div { padding: 28px 26px; }
.lp-figures > div + div { border-left: 1px solid rgba(0,0,0,0.07); }
.lp-figures b { display: block; font-size: clamp(30px, 3.4vw, 42px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.05; color: #1a1a1a; }
.lp-figures b small { font-size: 0.5em; font-weight: 700; letter-spacing: -0.3px; margin-left: 6px; }
.lp-figures span { display: block; margin-top: 6px; font-size: 14px; line-height: 1.45; color: #6b7280; }
@media (max-width: 860px) {
    .lp-figures { grid-template-columns: 1fr 1fr; }
    .lp-figures > div:nth-child(3) { border-left: none; }
    .lp-figures > div:nth-child(n+3) { border-top: 1px solid rgba(0,0,0,0.07); }
    .lp-figures > div { padding: 22px 20px; }
}

/* ── Scroll ── */
html { scroll-behavior: smooth; }
/* Lucide icons keep their size inside flex rows */
svg.lucide { flex-shrink: 0; }
/* Never let anything make the page scroll sideways on phones */
html, body { overflow-x: hidden; }
@supports (overflow: clip) { html, body { overflow-x: clip; } }

/* A real plate photo with the scan frame drawn around it. The .scan box
   keeps the photo's 4:3 ratio and covers its container, so the frame's
   percentages always line up with the plate. */
.fv-plate { position: relative; overflow: hidden; container-type: size; padding: 0 !important; background: #2a2d31; }
.fv-plate .scan { position: absolute; left: 50%; top: 50%; width: max(100cqw, 133.334cqh); height: max(100cqh, 75cqw); transform: translate(-50%, -50%); background: url('/static/home/plate.webp') center / 100% 100% no-repeat; }
.scan-frame { position: absolute; left: 13%; top: 33%; width: 74%; height: 34%; border: 2px solid rgba(255,255,255,0.95); border-radius: 10px; box-shadow: 0 0 0 9999px rgba(0,0,0,0.38); }
.scan-ok { font-family: 'Inter', sans-serif; letter-spacing: 0; position: absolute; left: 50%; top: 67%; transform: translate(-50%, -50%); display: inline-flex; align-items: center; gap: 6px; background: #16a34a; color: #fff; font-size: 11px; font-weight: 700; padding: 6px 12px; border-radius: 100px; box-shadow: 0 6px 18px rgba(0,0,0,0.3); white-space: nowrap; }
.mk-cam .scan-ok { font-size: 9px; padding: 4px 9px; gap: 4px; }
.mk-cam .scan-frame { border-radius: 8px; }
