/**
 * shared/css/landing.css — v1.0.7
 * ============================================================================
 * Public landing page styles. Premium SaaS aesthetic (Stripe / Linear / Vercel
 * tier). Self-contained: only consumes Bootstrap 5 + Bootstrap Icons + Bunny
 * Fonts (DM Sans + Plus Jakarta Sans), and tokens from design-tokens.css if
 * loaded — falls back gracefully when not.
 *
 * Loaded ONLY by the public landing (index.html). NOT cached as part of the
 * authenticated app shell — visitors load this once and convert to /signup.
 *
 * Sections covered:
 *   - .lp-nav            Sticky navbar with glass-morph
 *   - .lp-hero           Headline + dual CTA + dashboard mockup
 *   - .lp-trust          Social proof strip
 *   - .lp-features       Grid of features with tinted icon
 *   - .lp-how            3-step "how it works"
 *   - .lp-modules        Module showcase (reservas, POS, portal, etc.)
 *   - .lp-pricing        4-tier pricing table with popular highlight
 *   - .lp-testimonial    Customer quote card
 *   - .lp-faq            Accordion FAQ
 *   - .lp-cta            Final conversion banner
 *   - .lp-footer         Footer with legal links
 *
 * ARQ:
 *   - Mobile-first. All values in rem/em. clamp() para fluid typography.
 *   - Respeta prefers-reduced-motion.
 *   - Soporta theming light/dark (data-bs-theme), pero la landing es light por
 *     defecto (mejor SEO, mejor conversión en B2B).
 * ============================================================================
 */

:root {
    --lp-primary:        #4f46e5;
    --lp-primary-soft:   #818cf8;
    --lp-accent:         #7c3aed;
    --lp-cta:            #1e3a5f;
    --lp-bg:             #fcfcff;
    --lp-bg-soft:        #f5f6ff;
    --lp-text:           #0f172a;
    --lp-text-soft:      #475569;
    --lp-muted:          #94a3b8;
    --lp-border:         #e2e8f0;
    --lp-border-strong:  #cbd5e1;
    --lp-success:        #10b981;
    --lp-warning:        #f59e0b;
    --lp-gradient:       linear-gradient(135deg, #1e3a5f 0%, #4f46e5 50%, #7c3aed 100%);
    --lp-gradient-soft:  linear-gradient(135deg, #eef2ff 0%, #ede9fe 50%, #fdf4ff 100%);
    --lp-radius:         14px;
    --lp-radius-lg:      22px;
    --lp-shadow-sm:      0 1px 2px rgba(15,23,42,.04), 0 1px 1px rgba(15,23,42,.03);
    --lp-shadow:         0 8px 24px -8px rgba(15,23,42,.10), 0 4px 8px -2px rgba(15,23,42,.05);
    --lp-shadow-lg:      0 32px 60px -20px rgba(15,23,42,.18), 0 12px 24px -8px rgba(15,23,42,.08);
}

/* ====================================================================
   BASE
   ==================================================================== */
html.lp-html, body.lp-body {
    margin: 0;
    padding: 0;
    background: var(--lp-bg);
    color: var(--lp-text);
    font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'ss01', 'ss02', 'cv01';
}
.lp-body { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
    .lp-body { scroll-behavior: auto; }
    .lp-body *, .lp-body *::before, .lp-body *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}
.lp-body a { color: var(--lp-primary); text-decoration: none; }
.lp-body a:hover { text-decoration: underline; }
.lp-body h1, .lp-body h2, .lp-body h3, .lp-body h4 {
    letter-spacing: -0.025em;
    color: var(--lp-text);
    font-weight: 800;
    margin: 0 0 .5rem;
}

/* ====================================================================
   NAVBAR (sticky, glass)
   ==================================================================== */
.lp-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(252, 252, 255, .82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--lp-border);
}
.lp-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    gap: 16px;
}
.lp-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--lp-text);
    letter-spacing: -.02em;
}
.lp-brand:hover { text-decoration: none; }
.lp-brand-icon {
    width: 32px; height: 32px;
    border-radius: 9px;
    background: var(--lp-gradient);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 4px 10px -2px rgba(124, 58, 237, .35);
}
.lp-nav-links {
    display: none;
    gap: 28px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.lp-nav-links a {
    color: var(--lp-text-soft);
    font-size: .9rem;
    font-weight: 500;
    transition: color .15s;
}
.lp-nav-links a:hover { color: var(--lp-text); text-decoration: none; }
.lp-nav-cta { display: flex; gap: 10px; align-items: center; }
@media (min-width: 900px) { .lp-nav-links { display: flex; } }

/* ====================================================================
   BUTTONS
   ==================================================================== */
.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 20px;
    border-radius: 11px;
    font-weight: 600;
    font-size: .92rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s, background .15s, border-color .15s;
    text-decoration: none !important;
    white-space: nowrap;
    line-height: 1.2;
}
.lp-btn:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--lp-primary) 40%, transparent);
    outline-offset: 2px;
}
.lp-btn-primary {
    background: var(--lp-gradient);
    color: #fff !important;
    box-shadow: 0 6px 16px -4px rgba(79, 70, 229, .45);
}
.lp-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px -6px rgba(79, 70, 229, .55);
}
.lp-btn-ghost {
    background: transparent;
    color: var(--lp-text);
    border-color: var(--lp-border);
}
.lp-btn-ghost:hover { background: var(--lp-bg-soft); border-color: var(--lp-border-strong); }
.lp-btn-outline {
    background: rgba(255,255,255,.05);
    color: var(--lp-text);
    border-color: var(--lp-border);
}
.lp-btn-outline:hover { background: var(--lp-bg-soft); }
.lp-btn-lg { padding: 14px 26px; font-size: 1rem; border-radius: 13px; }
.lp-btn-sm { padding: 8px 14px; font-size: .82rem; border-radius: 9px; }

/* ====================================================================
   SECTIONS
   ==================================================================== */
.lp-section { padding: clamp(56px, 8vw, 96px) 0; }
.lp-section-tight { padding: clamp(40px, 6vw, 72px) 0; }
.lp-section .container { padding-inline: 16px; }
.lp-eyebrow {
    display: inline-block;
    padding: 6px 12px;
    background: var(--lp-gradient-soft);
    color: var(--lp-primary);
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 18px;
    border: 1px solid color-mix(in srgb, var(--lp-primary) 18%, transparent);
}
.lp-section-title {
    font-size: clamp(1.7rem, 2.4vw + .8rem, 2.6rem);
    line-height: 1.1;
    margin-bottom: 12px;
}
.lp-section-sub {
    font-size: clamp(1rem, .6vw + .8rem, 1.15rem);
    color: var(--lp-text-soft);
    line-height: 1.55;
    max-width: 680px;
}
.lp-section-head-center { text-align: center; }
.lp-section-head-center .lp-section-sub { margin-inline: auto; }

/* ====================================================================
   HERO
   ==================================================================== */
.lp-hero {
    position: relative;
    padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
    background:
        radial-gradient(ellipse at 15% 25%, rgba(79, 70, 229, .08) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 10%, rgba(124, 58, 237, .10) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(30, 58, 95, .04) 0%, transparent 50%);
    overflow: hidden;
}
.lp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, .03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at 50% 30%, #000 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.lp-hero > .container { position: relative; z-index: 1; }

.lp-hero-grid {
    display: grid;
    gap: 56px;
    align-items: center;
    grid-template-columns: 1fr;
}
@media (min-width: 1080px) {
    .lp-hero-grid { grid-template-columns: 1.05fr 1fr; }
}

.lp-hero-title {
    font-size: clamp(2rem, 3.2vw + 1.2rem, 3.6rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
    margin-bottom: 18px;
}
.lp-hero-title .lp-gradient-text {
    background: var(--lp-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.lp-hero-sub {
    font-size: clamp(1.05rem, .7vw + .9rem, 1.25rem);
    color: var(--lp-text-soft);
    line-height: 1.55;
    margin-bottom: 28px;
    max-width: 580px;
}
.lp-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}
.lp-hero-trust {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    color: var(--lp-text-soft);
    font-size: .85rem;
    margin-bottom: 8px;
}
.lp-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.lp-hero-trust i { color: var(--lp-success); font-size: 1rem; }

.lp-hero-mockup {
    position: relative;
    border-radius: var(--lp-radius-lg);
    background: linear-gradient(180deg, rgba(255,255,255,.6) 0%, rgba(255,255,255,.95) 100%);
    border: 1px solid var(--lp-border);
    box-shadow: var(--lp-shadow-lg);
    overflow: hidden;
    transform: perspective(2000px) rotateX(2deg) rotateY(-2deg);
    transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.lp-hero-mockup:hover { transform: perspective(2000px) rotateX(0) rotateY(0); }
.lp-hero-mockup-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #f5f6fa;
    border-bottom: 1px solid var(--lp-border);
}
.lp-hero-mockup-bar i { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.lp-hero-mockup-bar i:nth-child(1) { background: #fb7185; }
.lp-hero-mockup-bar i:nth-child(2) { background: #fbbf24; }
.lp-hero-mockup-bar i:nth-child(3) { background: #34d399; }
.lp-hero-mockup-bar .lp-url {
    margin-left: 8px;
    flex: 1;
    background: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-family: ui-monospace, 'SF Mono', Menlo, monospace;
    font-size: .72rem;
    color: var(--lp-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border: 1px solid var(--lp-border);
}
.lp-hero-mockup-body { padding: 18px; }

/* Mockup KPI cards */
.lp-mk-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}
.lp-mk-kpi {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 10px;
    padding: 10px;
}
.lp-mk-kpi .label { font-size: .65rem; color: var(--lp-muted); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.lp-mk-kpi .value { font-size: 1.15rem; font-weight: 800; color: var(--lp-text); font-variant-numeric: tabular-nums; line-height: 1.1; margin-top: 2px; }
.lp-mk-kpi .delta { font-size: .68rem; color: var(--lp-success); font-weight: 600; }
.lp-mk-kpi .delta.down { color: #ef4444; }
.lp-mk-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10px;
}
.lp-mk-chart {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 10px;
    padding: 12px;
}
.lp-mk-chart h6 {
    font-size: .72rem;
    color: var(--lp-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin: 0 0 6px;
    font-weight: 700;
}
.lp-mk-chart svg { width: 100%; height: 90px; display: block; }
.lp-mk-list { background: #fff; border: 1px solid var(--lp-border); border-radius: 10px; padding: 12px; }
.lp-mk-list .li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .72rem;
    padding: 5px 0;
    border-bottom: 1px dashed var(--lp-border);
}
.lp-mk-list .li:last-child { border-bottom: 0; }
.lp-mk-list .li b { font-weight: 700; }
.lp-mk-list .li .pill {
    background: #d1fae5;
    color: #065f46;
    padding: 1px 7px;
    border-radius: 999px;
    font-size: .64rem;
    font-weight: 700;
}

/* Floating badges around mockup */
.lp-hero-float {
    position: absolute;
    z-index: 2;
    background: #fff;
    padding: 10px 14px;
    border-radius: 12px;
    box-shadow: var(--lp-shadow);
    border: 1px solid var(--lp-border);
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--lp-text);
    animation: lpFloat 4s ease-in-out infinite;
}
.lp-hero-float i {
    width: 28px; height: 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}
.lp-hero-float-1 { top: 10%; left: -12px; }
.lp-hero-float-1 i { background: linear-gradient(135deg, #10b981, #059669); }
.lp-hero-float-2 { bottom: 18%; right: -8px; animation-delay: -2s; }
.lp-hero-float-2 i { background: linear-gradient(135deg, #f59e0b, #d97706); }
@keyframes lpFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}
@media (max-width: 1079.98px) {
    .lp-hero-float-1 { left: 6px; }
    .lp-hero-float-2 { right: 6px; }
}

/* ====================================================================
   TRUST STRIP
   ==================================================================== */
.lp-trust {
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
    background: var(--lp-bg-soft);
    padding: 20px 0;
}
.lp-trust-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 28px 56px;
}
.lp-trust-label {
    font-size: .72rem;
    color: var(--lp-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700;
    width: 100%;
    text-align: center;
}
.lp-trust-item {
    color: var(--lp-text-soft);
    font-weight: 700;
    font-size: 1rem;
    opacity: .65;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ====================================================================
   FEATURES GRID
   ==================================================================== */
.lp-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 48px;
}
@media (min-width: 640px) { .lp-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .lp-features-grid { grid-template-columns: repeat(3, 1fr); } }

.lp-feature {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 24px;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    position: relative;
}
.lp-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--lp-shadow);
    border-color: color-mix(in srgb, var(--lp-primary) 35%, var(--lp-border));
}
.lp-feature-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    margin-bottom: 14px;
}
.lp-feature h3 {
    font-size: 1.08rem;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--lp-text);
}
.lp-feature p {
    font-size: .92rem;
    color: var(--lp-text-soft);
    line-height: 1.5;
    margin: 0;
}

/* ====================================================================
   HOW IT WORKS
   ==================================================================== */
.lp-how-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
    counter-reset: lp-step;
}
@media (min-width: 768px) { .lp-how-grid { grid-template-columns: repeat(3, 1fr); } }
.lp-how-step {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 28px 22px;
    position: relative;
    counter-increment: lp-step;
}
.lp-how-step::before {
    content: counter(lp-step, decimal-leading-zero);
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 2.5rem;
    font-weight: 800;
    color: color-mix(in srgb, var(--lp-primary) 12%, transparent);
    line-height: 1;
}
.lp-how-step h3 {
    font-size: 1.08rem;
    margin: 0 0 8px;
    color: var(--lp-text);
    font-weight: 700;
}
.lp-how-step p { font-size: .92rem; color: var(--lp-text-soft); line-height: 1.55; margin: 0; }
.lp-how-step-icon {
    width: 40px; height: 40px;
    background: var(--lp-gradient-soft);
    color: var(--lp-primary);
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    margin-bottom: 14px;
}

/* ====================================================================
   MODULES (showcase)
   ==================================================================== */
.lp-modules {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
}
.lp-modules-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 48px;
}
@media (min-width: 640px) { .lp-modules-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .lp-modules-grid { grid-template-columns: repeat(4, 1fr); } }
.lp-module {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 22px;
    text-align: left;
    transition: border-color .2s, transform .2s;
}
.lp-module:hover {
    border-color: var(--lp-primary-soft);
    transform: translateY(-3px);
}
.lp-module-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 19px;
    color: #fff;
}
.lp-module h4 {
    font-size: 1rem;
    margin: 0 0 6px;
    font-weight: 700;
    color: var(--lp-text);
}
.lp-module p {
    font-size: .85rem;
    color: var(--lp-text-soft);
    line-height: 1.5;
    margin: 0;
}

/* ====================================================================
   PRICING
   ==================================================================== */
.lp-pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 48px;
}
@media (min-width: 640px) { .lp-pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .lp-pricing-grid { grid-template-columns: repeat(4, 1fr); } }

.lp-plan {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    padding: 26px 22px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.lp-plan:hover {
    transform: translateY(-4px);
    box-shadow: var(--lp-shadow);
    border-color: var(--lp-border-strong);
}
.lp-plan-popular {
    border-color: var(--lp-primary);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--lp-primary) 12%, transparent), var(--lp-shadow);
}
.lp-plan-popular::before {
    content: 'Más popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lp-gradient);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
    box-shadow: 0 4px 10px -2px rgba(124, 58, 237, .4);
}
.lp-plan-name {
    font-size: .86rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--lp-primary);
    margin-bottom: 8px;
}
.lp-plan-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 4px;
    color: var(--lp-text);
}
.lp-plan-price .amount {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.lp-plan-price .per { font-size: .85rem; color: var(--lp-text-soft); font-weight: 500; }
.lp-plan-desc {
    font-size: .88rem;
    color: var(--lp-text-soft);
    margin-bottom: 18px;
    min-height: 38px;
}
.lp-plan ul {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    flex: 1;
}
.lp-plan ul li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 6px 0;
    font-size: .89rem;
    color: var(--lp-text);
    line-height: 1.45;
}
.lp-plan ul li i {
    color: var(--lp-success);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.lp-plan ul li.is-disabled { color: var(--lp-muted); }
.lp-plan ul li.is-disabled i { color: var(--lp-muted); }

.lp-plan .lp-btn { width: 100%; justify-content: center; }

/* ====================================================================
   TESTIMONIALS
   ==================================================================== */
.lp-testimonial {
    background: var(--lp-gradient);
    color: #fff;
    border-radius: var(--lp-radius-lg);
    padding: clamp(32px, 5vw, 56px);
    margin-top: 48px;
    position: relative;
    overflow: hidden;
}
.lp-testimonial::before {
    content: '\201C';
    position: absolute;
    top: -28px;
    left: 18px;
    font-size: 14rem;
    font-family: 'Georgia', serif;
    color: rgba(255, 255, 255, .12);
    line-height: 1;
    pointer-events: none;
}
.lp-testimonial blockquote {
    margin: 0 0 20px;
    font-size: clamp(1.1rem, 1.3vw + .8rem, 1.5rem);
    font-weight: 500;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}
.lp-testimonial-cite {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}
.lp-testimonial-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
}
.lp-testimonial-name { font-weight: 700; font-size: 1rem; }
.lp-testimonial-role { font-size: .85rem; opacity: .85; }

/* ====================================================================
   FAQ
   ==================================================================== */
.lp-faq-grid {
    max-width: 760px;
    margin: 48px auto 0;
}
.lp-faq-item {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color .2s;
}
.lp-faq-item:hover { border-color: var(--lp-border-strong); }
.lp-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    font-weight: 600;
    color: var(--lp-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    font-size: .98rem;
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary::after {
    content: '\f282';
    font-family: 'bootstrap-icons';
    font-weight: normal;
    color: var(--lp-primary);
    transition: transform .25s;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.lp-faq-item[open] summary::after { transform: rotate(180deg); }
.lp-faq-answer {
    padding: 0 22px 18px;
    color: var(--lp-text-soft);
    line-height: 1.65;
    font-size: .92rem;
}
.lp-faq-answer a { color: var(--lp-primary); text-decoration: underline; }

/* ====================================================================
   FINAL CTA
   ==================================================================== */
.lp-cta {
    background: var(--lp-gradient);
    color: #fff;
    text-align: center;
    padding: clamp(56px, 8vw, 96px) 16px;
    border-radius: var(--lp-radius-lg);
    margin: 48px auto;
    max-width: 1080px;
    position: relative;
    overflow: hidden;
}
.lp-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,.08) 0%, transparent 40%);
    pointer-events: none;
}
.lp-cta > * { position: relative; z-index: 1; }
.lp-cta h2 {
    font-size: clamp(1.5rem, 2.2vw + .8rem, 2.4rem);
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -.03em;
}
.lp-cta p {
    font-size: clamp(1rem, .6vw + .8rem, 1.15rem);
    opacity: .9;
    max-width: 580px;
    margin: 0 auto 28px;
    line-height: 1.5;
}
.lp-cta .lp-btn { box-shadow: 0 12px 30px -8px rgba(0, 0, 0, .35); }
.lp-cta .lp-btn-primary { background: #fff; color: var(--lp-primary) !important; }
.lp-cta .lp-btn-primary:hover { background: #f5f6ff; color: var(--lp-accent) !important; }
.lp-cta-trust {
    display: flex;
    gap: 22px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 22px;
    font-size: .85rem;
    opacity: .85;
}
.lp-cta-trust span { display: inline-flex; align-items: center; gap: 6px; }

/* ====================================================================
   FOOTER
   ==================================================================== */
.lp-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 56px 16px 28px;
    margin-top: 0;
}
.lp-footer .container { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 768px) {
    .lp-footer .container {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}
.lp-footer h5 {
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 0 0 14px;
}
.lp-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.lp-footer ul li { margin-bottom: 8px; font-size: .9rem; }
.lp-footer a { color: #94a3b8; transition: color .15s; }
.lp-footer a:hover { color: #fff; text-decoration: none; }
.lp-footer-brand { display: flex; flex-direction: column; gap: 14px; max-width: 360px; }
.lp-footer-brand .lp-brand { color: #fff; }
.lp-footer-brand p { font-size: .9rem; line-height: 1.55; margin: 0; color: #94a3b8; }
.lp-footer-bottom {
    border-top: 1px solid #1e293b;
    margin-top: 32px;
    padding-top: 22px;
    font-size: .82rem;
    text-align: center;
    color: #64748b;
}
.lp-footer-social { display: flex; gap: 10px; margin-top: 4px; }
.lp-footer-social a {
    width: 36px; height: 36px;
    border-radius: 9px;
    background: #1e293b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: background .2s, color .2s;
}
.lp-footer-social a:hover { background: var(--lp-primary); color: #fff; }

/* ====================================================================
   SCROLL REVEAL — pure CSS via :where(.lp-reveal) IntersectionObserver
   target. JS in index.html toggles `.is-visible`.
   ==================================================================== */
.lp-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s cubic-bezier(.2,.8,.2,1), transform .55s cubic-bezier(.2,.8,.2,1);
    will-change: opacity, transform;
}
.lp-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .lp-reveal { opacity: 1; transform: none; transition: none; }
}

/* ====================================================================
   UTILITY
   ==================================================================== */
.lp-container { max-width: 1180px; margin-inline: auto; padding-inline: 16px; }
@media (min-width: 1280px) { .lp-container { max-width: 1240px; } }

.lp-skip-link {
    position: absolute;
    top: -50px;
    left: 16px;
    background: var(--lp-primary);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    z-index: 100;
    font-weight: 600;
}
.lp-skip-link:focus { top: 12px; }
