/* =====================================================
   Landing Page — Dark Neon Theme (RecorraJá 2026)
   Self-contained: includes reset + base
   ===================================================== */

/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; line-height: 1.5; -webkit-font-smoothing: antialiased; }
ul, ol { list-style: none; }
a { text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Container ──────────────────────────────────────── */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ── Dark palette ──────────────────────────────────── */
:root {
    --lp-bg:         #060c06;
    --lp-surface:    #0d180d;
    --lp-surface-2:  #122012;
    --lp-surface-3:  #172a17;
    --lp-border:     rgba(74, 222, 128, 0.13);
    --lp-border-hover: rgba(74, 222, 128, 0.32);
    --lp-neon:       #4ade80;
    --lp-neon-dark:  #22c55e;
    --lp-neon-dim:   rgba(74, 222, 128, 0.07);
    --lp-neon-glow:  rgba(74, 222, 128, 0.22);
    --lp-text:       #ddeedd;
    --lp-muted:      #587858;
    --lp-muted-2:    #8aab8a;
    --lp-red:        #f87171;
    --lp-amber:      #fbbf24;
    --lp-white:      #ffffff;
}

body {
    background: var(--lp-bg);
    color: var(--lp-text);
}

/* ── Section helpers ────────────────────────────────── */
.lp-section     { padding: 100px 0; }
.lp-section-alt { padding: 100px 0; background: var(--lp-surface); }
.lp-center      { text-align: center; }

.lp-label {
    display: inline-block;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--lp-neon);
    margin-bottom: 14px;
}

.lp-heading {
    font-size: clamp(1.85rem, 4.5vw, 2.9rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--lp-white);
    margin-bottom: 16px;
}
.lp-heading em { font-style: normal; color: var(--lp-neon); }

.lp-sub {
    font-size: 1rem;
    color: var(--lp-muted-2);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

/* ── NAVBAR ─────────────────────────────────────────── */
.lp-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1020;
    background: rgba(6, 12, 6, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--lp-border);
    transition: border-color 300ms, box-shadow 300ms;
}
.lp-header.scrolled {
    border-color: rgba(74, 222, 128, 0.28);
    box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}

.lp-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.lp-logo {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--lp-neon) !important;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}
.lp-nav-links a {
    font-size: 0.865rem;
    color: var(--lp-muted-2);
    font-weight: 500;
    transition: color 150ms;
}
.lp-nav-links a:hover { color: var(--lp-neon); }

.lp-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-ghost-lp {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--lp-muted-2);
    padding: 7px 16px;
    border-radius: 8px;
    border: 1px solid var(--lp-border);
    transition: all 150ms;
}
.btn-ghost-lp:hover { color: var(--lp-neon); border-color: rgba(74,222,128,0.35); }

.btn-neon {
    font-size: 0.82rem;
    font-weight: 700;
    color: #000 !important;
    background: var(--lp-neon);
    padding: 8px 20px;
    border-radius: 8px;
    transition: all 160ms;
    box-shadow: 0 0 14px var(--lp-neon-glow);
    display: inline-block;
    text-align: center;
}
.btn-neon:hover { background: #6ee89a; box-shadow: 0 0 28px rgba(74,222,128,0.5); transform: translateY(-1px); }

/* Hamburger */
.lp-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 34px; height: 34px;
    padding: 4px;
}
.lp-hamburger span {
    display: block; width: 100%; height: 2px;
    background: var(--lp-text); border-radius: 2px; transition: all 150ms;
}
.lp-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.lp-hamburger.active span:nth-child(2) { opacity: 0; }
.lp-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.lp-mobile-nav {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(6,12,6,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--lp-border);
    padding: 16px 24px 24px;
    flex-direction: column;
    gap: 2px;
    z-index: 1019;
}
.lp-mobile-nav.active { display: flex; }
.lp-mobile-nav a {
    padding: 13px 0;
    color: var(--lp-muted-2);
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid var(--lp-border);
}
.lp-mobile-nav a:last-of-type { border-bottom: none; }
.lp-mobile-nav a:hover { color: var(--lp-neon); }
.lp-mobile-nav .btn-neon,
.lp-mobile-nav .btn-ghost-lp { text-align: center; margin-top: 10px; padding: 12px 20px; font-size: 0.95rem; }

/* ── HERO ──────────────────────────────────────────── */
.lp-hero {
    padding-top: 130px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* Dot grid background */
.lp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(74,222,128,0.09) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 80%);
    pointer-events: none;
}
/* Radial glow */
.lp-hero::after {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74,222,128,0.05) 0%, transparent 65%);
    top: 50%; right: -100px;
    transform: translateY(-50%);
    pointer-events: none;
}

.lp-hero-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.lp-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(74,222,128,0.06);
    border: 1px solid var(--lp-border);
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 0.71rem;
    font-weight: 600;
    color: var(--lp-neon);
    margin-bottom: 24px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}
.lp-eyebrow-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--lp-neon);
    animation: pulsedot 2s ease infinite;
}
@keyframes pulsedot {
    0%,100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.25; transform: scale(0.55); }
}

.lp-hero h1 {
    font-size: clamp(2.3rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--lp-white);
    margin-bottom: 20px;
}
.lp-hero h1 em { font-style: normal; color: var(--lp-neon); }

.lp-hero-sub {
    font-size: 1.05rem;
    color: var(--lp-muted-2);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.lp-hero-price-text {
    font-size: 1rem;
    color: var(--lp-muted-2);
    margin-bottom: 32px;
    line-height: 1.5;
}
.lp-hero-price-text strong {
    color: var(--lp-neon);
    font-size: 1.55rem;
    font-weight: 800;
    display: inline-block;
    animation: neon-breathe 3s ease-in-out infinite;
}
@keyframes neon-breathe {
    0%,100% { text-shadow: 0 0 8px rgba(74,222,128,0.4); }
    50%      { text-shadow: 0 0 24px rgba(74,222,128,0.85), 0 0 48px rgba(74,222,128,0.3); }
}

.lp-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-hero-primary {
    background: var(--lp-neon);
    color: #000 !important;
    font-weight: 800;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 10px;
    box-shadow: 0 0 28px var(--lp-neon-glow);
    transition: all 200ms;
    display: inline-block;
    text-align: center;
}
.btn-hero-primary:hover {
    background: #6ee89a;
    box-shadow: 0 0 48px rgba(74,222,128,0.55);
    transform: translateY(-2px);
}

.btn-hero-outline {
    background: transparent;
    color: var(--lp-muted-2) !important;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 10px;
    border: 1px solid var(--lp-border);
    transition: all 200ms;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-hero-outline:hover { border-color: rgba(74,222,128,0.4); color: var(--lp-neon) !important; }

.lp-hero-trust {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.lp-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.77rem;
    color: var(--lp-muted);
}
.lp-hero-trust-item svg { color: var(--lp-neon); flex-shrink: 0; }

/* Hero right — shield visual */
.lp-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.lp-shield-wrap {
    position: relative;
    width: 340px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-shield-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle, rgba(74,222,128,0.12) 0%, transparent 65%);
    border-radius: 50%;
    animation: glow-pulse 3s ease-in-out infinite;
}
@keyframes glow-pulse {
    0%,100% { opacity: 0.7; transform: scale(1); }
    50%      { opacity: 1; transform: scale(1.06); }
}

/* Floating stat cards on hero visual */
.lp-hero-float {
    position: absolute;
    background: rgba(13,24,13,0.9);
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    padding: 10px 16px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.lp-hero-float-icon {
    width: 34px; height: 34px;
    border-radius: 8px;
    background: var(--lp-neon-dim);
    display: flex; align-items: center; justify-content: center;
    color: var(--lp-neon); flex-shrink: 0;
}
.lp-hero-float-val {
    font-size: 1rem;
    font-weight: 800;
    color: var(--lp-white);
    line-height: 1;
}
.lp-hero-float-lbl {
    font-size: 0.7rem;
    color: var(--lp-muted-2);
    margin-top: 2px;
}

.lp-hero-float.f1 { top: 20px; left: -20px; animation: float1 4s ease-in-out infinite; }
.lp-hero-float.f2 { bottom: 40px; left: -10px; animation: float2 4.5s ease-in-out infinite; }
.lp-hero-float.f3 { top: 80px; right: -10px; animation: float1 5s ease-in-out infinite; }

@keyframes float1 {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}
@keyframes float2 {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(8px); }
}

/* ── TRUST BAR ──────────────────────────────────────── */
.lp-trust-bar {
    background: var(--lp-surface);
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
    padding: 20px 0;
}
.lp-trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.lp-trust-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.83rem;
    color: var(--lp-muted-2);
    font-weight: 500;
}
.lp-trust-pill svg { color: var(--lp-neon); }

/* ── PROBLEM SECTION ────────────────────────────────── */
.lp-problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 52px;
}

.lp-problem-card {
    background: var(--lp-surface);
    border: 1px solid rgba(248,113,113,0.15);
    border-radius: 16px;
    padding: 26px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: border-color 200ms, transform 200ms;
}
.lp-problem-card:hover { border-color: rgba(248,113,113,0.35); transform: translateY(-3px); }
.lp-problem-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--lp-red), transparent);
}

.lp-problem-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}
.lp-problem-val {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--lp-red);
    margin-bottom: 6px;
    line-height: 1;
}
.lp-problem-lbl { font-size: 0.79rem; color: var(--lp-muted-2); line-height: 1.45; }

.lp-problem-cta {
    text-align: center;
    margin-top: 52px;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--lp-white);
    line-height: 1.3;
}
.lp-problem-cta em { font-style: normal; color: var(--lp-neon); }

/* ── HOW IT WORKS ───────────────────────────────────── */
.lp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 52px;
    position: relative;
}
.lp-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(16.67% + 40px);
    right: calc(16.67% + 40px);
    height: 1px;
    background: linear-gradient(90deg, var(--lp-neon-glow), rgba(74,222,128,0.05), var(--lp-neon-glow));
}

.lp-step {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 18px;
    padding: 36px 26px;
    text-align: center;
    transition: border-color 200ms, transform 200ms, box-shadow 200ms;
}
.lp-step:hover {
    border-color: var(--lp-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.lp-step-num {
    width: 54px; height: 54px;
    border-radius: 50%;
    background: var(--lp-neon-dim);
    border: 2px solid rgba(74,222,128,0.4);
    color: var(--lp-neon);
    font-size: 1.35rem;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px var(--lp-neon-glow);
}
.lp-step-icon-wrap {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: var(--lp-neon-dim);
    border: 1px solid rgba(74,222,128,0.2);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    color: var(--lp-neon);
}
.lp-step h3 { font-size: 1.05rem; font-weight: 700; color: var(--lp-white); margin-bottom: 10px; }
.lp-step p  { font-size: 0.84rem; color: var(--lp-muted-2); line-height: 1.6; }

.lp-digital-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--lp-neon-dim);
    border: 1px solid var(--lp-border);
    border-radius: 999px;
    padding: 7px 16px;
    font-size: 0.73rem;
    font-weight: 600;
    color: var(--lp-neon);
    margin-top: 40px;
}

/* ── PRICING ────────────────────────────────────────── */
.lp-pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 860px;
    margin: 52px auto 0;
}

.lp-pricing-card {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    transition: border-color 250ms, transform 250ms, box-shadow 250ms;
}
.lp-pricing-card:hover {
    border-color: var(--lp-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.lp-pricing-card.featured {
    border-color: rgba(74,222,128,0.4);
    background: linear-gradient(145deg, rgba(74,222,128,0.04) 0%, var(--lp-surface) 100%);
}
.lp-pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--lp-neon), transparent);
    border-radius: 20px 20px 0 0;
}
.lp-pricing-card.featured:hover { box-shadow: 0 16px 48px rgba(74,222,128,0.12); }

.lp-pricing-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lp-neon);
    color: #000;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 999px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.lp-pricing-type {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lp-neon);
    margin-bottom: 10px;
}

.lp-pricing-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--lp-white);
    margin-bottom: 8px;
}

.lp-pricing-desc {
    font-size: 0.83rem;
    color: var(--lp-muted-2);
    margin-bottom: 24px;
    line-height: 1.55;
}

.lp-pricing-price {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--lp-border);
}
.lp-pricing-price .price-big {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--lp-white);
    line-height: 1;
}
.lp-pricing-price .price-big.neon { color: var(--lp-neon); }
.lp-pricing-price .price-period {
    font-size: 0.85rem;
    color: var(--lp-muted-2);
    margin-top: 4px;
}
.lp-pricing-price .price-note {
    font-size: 0.75rem;
    color: var(--lp-muted);
    margin-top: 6px;
}

.lp-pricing-features {
    margin-bottom: 28px;
}
.lp-pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.87rem;
    color: var(--lp-text);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.lp-pricing-features li:last-child { border-bottom: none; }
.lp-pf-check {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: rgba(74,222,128,0.12);
    color: var(--lp-neon);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 1px;
    font-size: 0.6rem; font-weight: 700;
}

.btn-pricing-primary {
    display: block;
    width: 100%;
    background: var(--lp-neon);
    color: #000 !important;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 14px 24px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 22px var(--lp-neon-glow);
    transition: all 200ms;
}
.btn-pricing-primary:hover { background: #6ee89a; box-shadow: 0 0 36px rgba(74,222,128,0.5); transform: translateY(-1px); }

.btn-pricing-secondary {
    display: block;
    width: 100%;
    background: transparent;
    color: var(--lp-muted-2) !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 13px 24px;
    border-radius: 10px;
    border: 1px solid var(--lp-border);
    text-align: center;
    transition: all 200ms;
}
.btn-pricing-secondary:hover { border-color: var(--lp-border-hover); color: var(--lp-neon) !important; }

/* ── SOCIAL PROOF ───────────────────────────────────── */
.lp-numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 52px;
    margin-bottom: 52px;
}
.lp-num-card {
    background: var(--lp-surface-2);
    border: 1px solid var(--lp-border);
    border-radius: 16px;
    padding: 34px 24px;
    text-align: center;
    transition: border-color 200ms;
}
.lp-num-card:hover { border-color: var(--lp-border-hover); }
.lp-num-card-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--lp-neon-dim);
    display: flex; align-items: center; justify-content: center;
    color: var(--lp-neon);
    margin: 0 auto 14px;
}
.lp-num-val { font-size: 2.5rem; font-weight: 900; color: var(--lp-neon); line-height: 1; margin-bottom: 6px; }
.lp-num-lbl { font-size: 0.83rem; color: var(--lp-muted-2); }

.lp-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.lp-testimonial {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 16px;
    padding: 24px;
    transition: border-color 200ms;
}
.lp-testimonial:hover { border-color: var(--lp-border-hover); }
.lp-testimonial-stars { color: var(--lp-amber); font-size: 0.85rem; margin-bottom: 12px; }
.lp-testimonial-text { font-size: 0.875rem; color: var(--lp-text); line-height: 1.65; margin-bottom: 18px; font-style: italic; }
.lp-testimonial-author { display: flex; align-items: center; gap: 10px; }
.lp-testimonial-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--lp-neon-dim); border: 1px solid var(--lp-border);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.78rem; color: var(--lp-neon); flex-shrink: 0;
}
.lp-testimonial-name { font-size: 0.82rem; font-weight: 600; color: var(--lp-white); }
.lp-testimonial-role { font-size: 0.72rem; color: var(--lp-muted); }

/* ── BENEFITS ───────────────────────────────────────── */
.lp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 52px;
}
.lp-benefit {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    padding: 22px 20px;
    transition: border-color 200ms, transform 200ms;
}
.lp-benefit:hover { border-color: var(--lp-border-hover); transform: translateY(-2px); }
.lp-benefit-icon {
    width: 42px; height: 42px;
    border-radius: 11px;
    background: var(--lp-neon-dim);
    border: 1px solid rgba(74,222,128,0.18);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: var(--lp-neon);
}
.lp-benefit-title { font-size: 0.92rem; font-weight: 700; color: var(--lp-white); margin-bottom: 5px; }
.lp-benefit-desc  { font-size: 0.79rem; color: var(--lp-muted-2); line-height: 1.55; }

/* ── COMPARISON ─────────────────────────────────────── */
.lp-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 52px;
    max-width: 840px;
    margin-left: auto; margin-right: auto;
}
.lp-compare-card { border-radius: 18px; padding: 30px; }
.lp-compare-card.bad {
    background: rgba(248,113,113,0.04);
    border: 1px solid rgba(248,113,113,0.2);
}
.lp-compare-card.good {
    background: rgba(74,222,128,0.05);
    border: 1px solid rgba(74,222,128,0.28);
    position: relative; overflow: hidden;
}
.lp-compare-card.good::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--lp-neon), transparent);
}
.lp-compare-title {
    font-size: 0.92rem; font-weight: 800; margin-bottom: 20px;
    display: flex; align-items: center; gap: 8px;
}
.lp-compare-card.bad  .lp-compare-title { color: var(--lp-red); }
.lp-compare-card.good .lp-compare-title { color: var(--lp-neon); }
.lp-compare-list li {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 9px 0;
    font-size: 0.86rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    color: var(--lp-muted-2);
}
.lp-compare-list li:last-child { border-bottom: none; }
.lp-ci {
    width: 18px; height: 18px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 0.58rem; font-weight: 700; margin-top: 1px;
}
.lp-compare-card.bad  .lp-ci { background: rgba(248,113,113,0.15); color: var(--lp-red); }
.lp-compare-card.good .lp-ci { background: rgba(74,222,128,0.14); color: var(--lp-neon); }

/* ── OBJECTIONS ─────────────────────────────────────── */
.lp-obj-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 52px;
}
.lp-obj {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    padding: 24px;
    transition: border-color 200ms;
}
.lp-obj:hover { border-color: var(--lp-border-hover); }
.lp-obj-q {
    font-size: 0.91rem; font-weight: 700; color: var(--lp-neon);
    margin-bottom: 10px;
    display: flex; align-items: flex-start; gap: 8px; line-height: 1.4;
}
.lp-obj-a { font-size: 0.83rem; color: var(--lp-muted-2); line-height: 1.65; }

/* ── FAQ ────────────────────────────────────────────── */
.lp-faq-list { max-width: 720px; margin: 52px auto 0; }
.lp-faq-item { border-bottom: 1px solid var(--lp-border); }
.lp-faq-q {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 0; cursor: pointer;
    font-weight: 600; color: var(--lp-text); font-size: 0.92rem;
    gap: 12px; user-select: none; transition: color 150ms;
}
.lp-faq-q:hover { color: var(--lp-neon); }
.lp-faq-arrow {
    width: 20px; height: 20px; flex-shrink: 0;
    color: var(--lp-muted); transition: transform 200ms, color 200ms;
}
.lp-faq-item.active .lp-faq-arrow { transform: rotate(180deg); color: var(--lp-neon); }
.lp-faq-a {
    display: none;
    padding: 0 0 20px;
    font-size: 0.875rem; color: var(--lp-muted-2); line-height: 1.7;
}
.lp-faq-item.active .lp-faq-a { display: block; }

/* ── CTA FINAL ──────────────────────────────────────── */
.lp-cta {
    padding: 100px 0;
    text-align: center;
    background: var(--lp-surface);
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
    position: relative;
    overflow: hidden;
}
.lp-cta::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(74,222,128,0.055) 0%, transparent 65%);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
}
.lp-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(74,222,128,0.07) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent);
    pointer-events: none;
}
.lp-cta-inner { position: relative; z-index: 1; }

.lp-cta h2 {
    font-size: clamp(1.9rem, 4.5vw, 3.2rem);
    font-weight: 900; color: var(--lp-white);
    line-height: 1.15; margin-bottom: 16px;
}
.lp-cta h2 em { font-style: normal; color: var(--lp-neon); }
.lp-cta p {
    font-size: 1rem; color: var(--lp-muted-2);
    max-width: 460px; margin: 0 auto 36px; line-height: 1.7;
}
.lp-cta-price-note { font-size: 0.86rem; color: var(--lp-muted); margin-top: 18px; }
.lp-cta-price-note strong { color: var(--lp-neon); }

.lp-cta-trust {
    display: flex; align-items: center; justify-content: center;
    gap: 24px; margin-top: 28px; flex-wrap: wrap;
}
.lp-trust-item {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.77rem; color: var(--lp-muted);
}
.lp-trust-item svg { color: var(--lp-neon); }

/* ── FOOTER ─────────────────────────────────────────── */
.lp-footer {
    background: #050a05;
    padding: 56px 0 24px;
    border-top: 1px solid var(--lp-border);
}
.lp-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.lp-footer-brand-name { font-size: 1.1rem; font-weight: 800; color: var(--lp-neon); margin-bottom: 12px; }
.lp-footer-brand-desc { font-size: 0.81rem; color: var(--lp-muted); line-height: 1.65; max-width: 280px; }
.lp-footer-col h4 {
    font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--lp-muted); margin-bottom: 16px;
}
.lp-footer-col a {
    display: block; font-size: 0.83rem;
    color: rgba(221,238,221,0.35);
    padding: 5px 0; transition: color 150ms;
}
.lp-footer-col a:hover { color: var(--lp-neon); }
.lp-footer-bottom {
    border-top: 1px solid var(--lp-border);
    padding-top: 20px;
    text-align: center;
    font-size: 0.72rem;
    color: var(--lp-muted);
    opacity: 0.45;
}

/* ── Scroll reveal ──────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Scale-in variant */
.reveal-scale { opacity: 0; transform: scale(0.93) translateY(16px); transition: opacity 0.55s cubic-bezier(0.16,1,0.3,1), transform 0.55s cubic-bezier(0.16,1,0.3,1); }
.reveal-scale.visible { opacity: 1; transform: scale(1) translateY(0); }

/* ── Hero headline word reveal ──────────────────────── */
.lp-hero-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px) skewY(2deg);
    transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.lp-hero-word.visible {
    opacity: 1;
    transform: translateY(0) skewY(0deg);
}
.lp-hero-word:nth-child(1) { transition-delay: 0.05s; }
.lp-hero-word:nth-child(2) { transition-delay: 0.12s; }
.lp-hero-word:nth-child(3) { transition-delay: 0.19s; }
.lp-hero-word:nth-child(4) { transition-delay: 0.26s; }
.lp-hero-word:nth-child(5) { transition-delay: 0.33s; }

/* ── Shimmer on primary CTA button ─────────────────── */
.btn-hero-primary {
    overflow: hidden;
    position: relative;
}
.btn-hero-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: btn-shimmer 3s ease-in-out infinite;
    pointer-events: none;
}
@keyframes btn-shimmer {
    0%   { left: -80%; }
    60%  { left: 120%; }
    100% { left: 120%; }
}

/* ── Rotating gradient border on featured pricing ───── */
.lp-pricing-card.featured {
    position: relative;
}
.lp-pricing-card.featured::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    background: conic-gradient(from var(--angle, 0deg), transparent 30%, rgba(74,222,128,0.6) 50%, transparent 70%);
    animation: spin-border 4s linear infinite;
    z-index: -1;
    opacity: 0.7;
}
@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}
@keyframes spin-border {
    to { --angle: 360deg; }
}

/* ── Counter animation number targets ──────────────── */
.lp-num-val[data-target] { transition: none; }

/* ── Floating particles (hero bg) ──────────────────── */
.lp-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.lp-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--lp-neon);
    opacity: 0;
    animation: particle-float var(--dur, 8s) ease-in-out var(--delay, 0s) infinite;
}
@keyframes particle-float {
    0%   { opacity: 0; transform: translateY(0) scale(1); }
    15%  { opacity: 0.25; }
    85%  { opacity: 0.15; }
    100% { opacity: 0; transform: translateY(-120px) scale(0.5); }
}

/* ── Magnetic hover on stat cards ──────────────────── */
.lp-hero-float {
    transition: box-shadow 200ms ease;
}
.lp-hero-float:hover {
    box-shadow: 0 12px 36px rgba(0,0,0,0.6), 0 0 20px var(--lp-neon-glow);
    border-color: rgba(74,222,128,0.35);
}

/* ── Neon underline on nav links ────────────────────── */
.lp-nav-links a {
    position: relative;
}
.lp-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1.5px;
    background: var(--lp-neon);
    transition: width 200ms ease;
    box-shadow: 0 0 8px var(--lp-neon);
}
.lp-nav-links a:hover::after { width: 100%; }

/* ── Scroll progress bar ────────────────────────────── */
.lp-scroll-bar {
    position: fixed;
    top: 0; left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--lp-neon-dark), var(--lp-neon));
    z-index: 2000;
    transition: none;
    box-shadow: 0 0 8px var(--lp-neon-glow);
}

/* ── Active stat numbers glow ───────────────────────── */
.lp-num-val {
    transition: text-shadow 300ms;
}
.lp-num-card:hover .lp-num-val {
    text-shadow: 0 0 24px rgba(74,222,128,0.6);
}

/* ── Trust bar scroll marquee (mobile) ──────────────── */
@media (max-width: 600px) {
    .lp-trust-bar-inner {
        animation: marquee 20s linear infinite;
        flex-wrap: nowrap;
        width: max-content;
    }
}
@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 960px) {
    .lp-hero-grid { grid-template-columns: 1fr; text-align: center; }
    .lp-hero-visual { display: none; }
    .lp-hero-btns { justify-content: center; }
    .lp-hero-trust { justify-content: center; }
    .lp-problem-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-testimonials { grid-template-columns: 1fr; gap: 14px; }
    .lp-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .lp-section, .lp-section-alt { padding: 64px 0; }
    .lp-nav-links, .lp-nav-actions { display: none; }
    .lp-hamburger { display: flex; }
    .lp-steps { grid-template-columns: 1fr; }
    .lp-steps::before { display: none; }
    .lp-pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
    .lp-compare { grid-template-columns: 1fr; max-width: 480px; }
    .lp-obj-grid { grid-template-columns: 1fr; }
    .lp-numbers-grid { grid-template-columns: 1fr; }
    .lp-trust-bar-inner { gap: 20px; }
    .lp-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .container { padding: 0 18px; }
    .lp-hero { padding-top: 100px; padding-bottom: 56px; min-height: auto; }
    .lp-hero h1 { font-size: 2.1rem; }
    .lp-hero-sub { font-size: 0.95rem; }
    .lp-hero-btns { flex-direction: column; align-items: stretch; }
    .btn-hero-primary, .btn-hero-outline { width: 100%; justify-content: center; }
    .lp-problem-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .lp-benefits-grid { grid-template-columns: 1fr; }
    .lp-footer-grid { grid-template-columns: 1fr; }
    .lp-cta { padding: 64px 0; }
    .lp-trust-bar-inner { gap: 14px; }
    .lp-trust-pill { font-size: 0.76rem; }
}
