/* ════════════════════════════════════════════════════
   QR SUNAT — Landing Page Styles
   ════════════════════════════════════════════════════ */

/* ── Design tokens ── */
:root {
    --lp-primary:   #4f46e5;
    --lp-primary-d: #3730a3;
    --lp-purple:    #7c3aed;
    --lp-dark:      #0a0a1a;
    --lp-dark-2:    #0f0f23;
    --lp-text:      #1e293b;
    --lp-muted:     #64748b;
    --lp-border:    #e2e8f0;
    --lp-bg:        #f8fafc;
    --lp-white:     #ffffff;
    --lp-radius:    16px;
    --lp-font:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Reset / Base ── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--lp-font);
    color: var(--lp-text);
    background: var(--lp-bg);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════ */
.lp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: .9rem 0;
    transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}

.lp-nav.scrolled {
    background: rgba(10, 10, 26, .92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(255,255,255,.06);
    padding: .6rem 0;
}

.lp-nav-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Logo */
.lp-logo {
    display: flex;
    align-items: center;
    gap: .55rem;
    text-decoration: none;
    color: #fff;
    font-size: .975rem;
    font-weight: 600;
    letter-spacing: -.01em;
    flex-shrink: 0;
}

.lp-logo strong { font-weight: 800; }

.lp-logo-icon {
    width: 32px;
    height: 32px;
    background: var(--lp-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: #fff;
}

/* Nav links */
.lp-nav-links {
    display: flex;
    align-items: center;
    gap: .25rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.lp-nav-links a {
    color: rgba(255,255,255,.75);
    text-decoration: none;
    font-size: .875rem;
    font-weight: 500;
    padding: .4rem .75rem;
    border-radius: 8px;
    transition: color .2s, background .2s;
}

.lp-nav-links a:hover {
    color: #fff;
    background: rgba(255,255,255,.08);
}

/* Nav CTAs */
.lp-nav-ctas {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-left: auto;
}

.lp-btn-ghost {
    color: rgba(255,255,255,.8);
    text-decoration: none;
    font-size: .85rem;
    font-weight: 500;
    padding: .42rem .9rem;
    border-radius: 8px;
    transition: color .2s, background .2s;
    white-space: nowrap;
}

.lp-btn-ghost:hover {
    color: #fff;
    background: rgba(255,255,255,.08);
}

.lp-btn-primary-sm {
    background: var(--lp-primary);
    color: #fff;
    text-decoration: none;
    font-size: .85rem;
    font-weight: 600;
    padding: .42rem 1rem;
    border-radius: 8px;
    transition: background .2s, transform .15s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.lp-btn-primary-sm:hover {
    background: var(--lp-primary-d);
    color: #fff;
    transform: translateY(-1px);
}

/* Mobile toggle */
.lp-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .4rem;
    margin-left: auto;
}

.lp-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255,255,255,.85);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
}

.lp-nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-nav-toggle.open span:nth-child(2) { opacity: 0; }
.lp-nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.lp-mobile-menu {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    padding: 0;
}

.lp-mobile-menu.open {
    max-height: 400px;
    padding: .75rem 0;
}

.lp-mobile-link {
    color: rgba(255,255,255,.8);
    text-decoration: none;
    font-size: .925rem;
    font-weight: 500;
    padding: .6rem .5rem;
    border-radius: 8px;
    transition: color .2s, background .2s;
}

.lp-mobile-link:hover {
    color: #fff;
    background: rgba(255,255,255,.06);
}

.lp-mobile-ctas {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-top: .5rem;
    padding-top: .75rem;
    border-top: 1px solid rgba(255,255,255,.08);
}

/* ════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════ */
.lp-hero {
    position: relative;
    background: var(--lp-dark);
    overflow: hidden;
    padding-bottom: 0;
}

/* Blobs */
.lp-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.lp-blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79,70,229,.4), transparent 70%);
    top: -150px;
    left: -150px;
    animation: blobFloat 8s ease-in-out infinite;
}

.lp-blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124,58,237,.3), transparent 70%);
    top: 100px;
    right: -80px;
    animation: blobFloat 11s ease-in-out infinite reverse;
}

.lp-blob-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(5,150,105,.2), transparent 70%);
    bottom: 80px;
    left: 40%;
    animation: blobFloat 9s ease-in-out infinite 2s;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(30px, -40px) scale(1.05); }
    66%       { transform: translate(-20px, 20px) scale(.97); }
}

/* Hero text */
.lp-hero-text { position: relative; z-index: 2; padding: 2rem 0; }

.lp-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(79,70,229,.18);
    color: #a5b4fc;
    border: 1px solid rgba(79,70,229,.3);
    padding: .35rem .85rem;
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .01em;
}

.lp-hero-h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -.03em;
    color: #fff;
    margin: 1rem 0 1.25rem;
}

.lp-gradient-text {
    background: linear-gradient(135deg, #818cf8, #c084fc, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero-sub {
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(255,255,255,.65);
    line-height: 1.65;
    max-width: 500px;
    margin-bottom: 2rem;
}

.lp-hero-ctas {
    display: flex;
    gap: .85rem;
    flex-wrap: wrap;
}

.lp-btn-hero-primary {
    display: inline-flex;
    align-items: center;
    background: var(--lp-primary);
    color: #fff;
    text-decoration: none;
    font-size: .975rem;
    font-weight: 700;
    padding: .85rem 1.75rem;
    border-radius: 12px;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 24px rgba(79,70,229,.45);
}

.lp-btn-hero-primary:hover {
    background: var(--lp-primary-d);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(79,70,229,.55);
}

.lp-btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    color: rgba(255,255,255,.8);
    text-decoration: none;
    font-size: .975rem;
    font-weight: 600;
    padding: .85rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.15);
    transition: color .2s, border-color .2s, background .2s;
}

.lp-btn-hero-ghost:hover {
    color: #fff;
    border-color: rgba(255,255,255,.35);
    background: rgba(255,255,255,.05);
}

/* Trust row */
.lp-hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lp-trust-avatars {
    display: flex;
}

.lp-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    font-weight: 800;
    font-size: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--lp-dark);
    margin-left: -8px;
}

.lp-avatar:first-child { margin-left: 0; }

.lp-trust-text {
    font-size: .8rem;
    color: rgba(255,255,255,.6);
    line-height: 1.4;
}

.lp-trust-stars { color: #f59e0b; font-size: .85rem; letter-spacing: 1px; }

/* Hero visual */
.lp-hero-visual {
    position: relative;
    z-index: 2;
    justify-content: center;
    align-items: center;
    padding: 3rem 0 2rem;
}

.lp-mockup-wrap {
    position: relative;
    width: 100%;
    max-width: 440px;
}

/* Browser frame (hero) */
.lp-browser {
    background: #1e1e2e;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.06);
    animation: floatUp 6s ease-in-out infinite;
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

.lp-browser-bar {
    background: #2d2d3d;
    padding: .5rem .75rem;
    display: flex;
    align-items: center;
    gap: .75rem;
}

.lp-browser-dots {
    display: flex;
    gap: 5px;
}

.lp-browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}

.lp-browser-url {
    background: rgba(255,255,255,.06);
    border-radius: 6px;
    padding: .2rem .6rem;
    font-size: .68rem;
    color: rgba(255,255,255,.5);
    font-family: monospace;
    flex: 1;
    text-align: center;
}

.lp-browser-content {
    padding: 1rem;
    background: linear-gradient(160deg, #0f0e1a, #1a1933);
    min-height: 200px;
}

/* Mini stats in hero */
.lp-mini-stats {
    display: flex;
    gap: .5rem;
    margin-bottom: .75rem;
}

.lp-mini-stat {
    flex: 1;
    border-radius: 10px;
    padding: .6rem .5rem;
    color: #fff;
    text-align: center;
}

/* Mini modal in hero */
.lp-mini-modal {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,.35);
}

.lp-mini-modal-header {
    background: linear-gradient(135deg, #059669, #10b981);
    padding: .9rem;
    text-align: center;
    color: #fff;
}

.lp-mini-badge {
    display: inline-block;
    background: rgba(255,255,255,.2);
    color: #fff;
    font-size: .55rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: .2rem .5rem;
    border-radius: 100px;
    margin-top: .3rem;
}

.lp-mini-modal-body { padding: .6rem .75rem; }

.lp-mini-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .65rem;
    padding: .25rem 0;
    border-bottom: 1px solid #f1f5f9;
    color: #64748b;
}

.lp-mini-row:last-child { border-bottom: none; }

.lp-mini-row-total {
    margin-top: .15rem;
    border-top: 1px solid #e2e8f0;
    border-bottom: none;
    padding-top: .35rem;
}

.lp-mini-badge-blue {
    background: rgba(79,70,229,.1);
    color: #4f46e5;
    font-size: .6rem;
    font-weight: 600;
    padding: .1rem .35rem;
    border-radius: 4px;
}

/* Floating cards */
.lp-float-card {
    position: absolute;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 10px;
    padding: .55rem .9rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .78rem;
    font-weight: 600;
    color: #1e293b;
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
    white-space: nowrap;
    animation: floatCard 5s ease-in-out infinite;
}

.lp-float-top {
    top: 12%;
    right: -2%;
    animation-delay: .5s;
}

.lp-float-bottom {
    bottom: 10%;
    left: -4%;
    animation-delay: 1.5s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50%       { transform: translateY(-8px) rotate(1deg); }
}

/* Hero wave */
.lp-hero-wave {
    position: relative;
    margin-top: -2px;
    line-height: 0;
}

.lp-hero-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* ════════════════════════════════════════════════════
   TRUST BAR
   ════════════════════════════════════════════════════ */
.lp-trustbar {
    background: var(--lp-white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--lp-border);
}

.lp-trustbar-label {
    text-align: center;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.lp-trustbar-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    flex-wrap: wrap;
}

.lp-trustbar-item {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .85rem;
    font-weight: 600;
    color: #475569;
    padding: .3rem .5rem;
}

.lp-trustbar-sep {
    color: #cbd5e1;
    font-size: .9rem;
}

/* ════════════════════════════════════════════════════
   SECTIONS COMMON
   ════════════════════════════════════════════════════ */
.lp-section { padding: 5rem 0; }

.lp-section-header { max-width: 680px; margin: 0 auto; }

.lp-section-h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.025em;
    color: var(--lp-text);
    margin-bottom: .75rem;
}

.lp-section-sub {
    font-size: 1rem;
    color: var(--lp-muted);
    line-height: 1.65;
    margin: 0;
}

.lp-badge-pill-light {
    display: inline-flex;
    align-items: center;
    background: rgba(79,70,229,.08);
    color: var(--lp-primary);
    border: 1px solid rgba(79,70,229,.15);
    padding: .3rem .85rem;
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .02em;
}

.lp-badge-pill-purple {
    display: inline-flex;
    align-items: center;
    background: rgba(124,58,237,.18);
    color: #c4b5fd;
    border: 1px solid rgba(124,58,237,.3);
    padding: .3rem .85rem;
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .02em;
}

/* ════════════════════════════════════════════════════
   BENEFITS
   ════════════════════════════════════════════════════ */
.lp-benefits { background: var(--lp-bg); }

.lp-benefit-card {
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 1.75rem;
    height: 100%;
    transition: box-shadow .25s, transform .25s, border-color .25s;
}

.lp-benefit-card:hover {
    box-shadow: 0 16px 48px rgba(79,70,229,.12);
    transform: translateY(-4px);
    border-color: rgba(79,70,229,.2);
}

.lp-benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.lp-benefit-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--lp-text);
    margin-bottom: .5rem;
}

.lp-benefit-desc {
    font-size: .875rem;
    color: var(--lp-muted);
    line-height: 1.6;
    margin: 0;
}

/* ════════════════════════════════════════════════════
   STATS BAR
   ════════════════════════════════════════════════════ */
.lp-stats-bar {
    background: linear-gradient(135deg, #0f0e1a, #1a1a33);
    padding: 4rem 0;
}

.lp-stat-num {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -.02em;
    line-height: 1;
    margin-bottom: .5rem;
}

.lp-stat-label {
    font-size: .8rem;
    color: rgba(255,255,255,.55);
    font-weight: 500;
}

/* ════════════════════════════════════════════════════
   SCREENSHOTS
   ════════════════════════════════════════════════════ */
.lp-screenshots {
    background: linear-gradient(160deg, #0a0a1a 0%, #0f0e28 100%);
}

.lp-screenshots .lp-section-h2 { color: #fff; }

/* Tab switcher */
.lp-showcase { max-width: 900px; margin: 0 auto; }

.lp-showcase-tabs {
    display: flex;
    gap: .5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.lp-tab {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.65);
    font-size: .85rem;
    font-weight: 600;
    font-family: var(--lp-font);
    padding: .55rem 1.1rem;
    border-radius: 100px;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
}

.lp-tab:hover {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.9);
}

.lp-tab.active {
    background: var(--lp-primary);
    border-color: var(--lp-primary);
    color: #fff;
}

/* Showcase panels */
.lp-showcase-content { position: relative; }

.lp-showcase-panel {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.lp-showcase-panel.active { display: flex; }

.lp-showcase-caption {
    text-align: center;
    color: rgba(255,255,255,.85);
}

.lp-showcase-caption h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .4rem;
}

.lp-showcase-caption p {
    font-size: .88rem;
    color: rgba(255,255,255,.55);
    margin: 0;
    max-width: 480px;
}

/* Screen frame (showcase) */
.lp-screen-frame {
    background: #1e1e2e;
    border-radius: 14px;
    overflow: hidden;
    width: 100%;
    max-width: 780px;
    box-shadow: 0 32px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.06);
}

.lp-screen-bar {
    background: #2d2d3d;
    padding: .5rem .75rem;
    display: flex;
    align-items: center;
    gap: .75rem;
}

.lp-screen-dots {
    display: flex;
    gap: 5px;
}

.lp-screen-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    display: block;
}

.lp-screen-dots span:nth-child(1) { background: #ff5f57; }
.lp-screen-dots span:nth-child(2) { background: #febc2e; }
.lp-screen-dots span:nth-child(3) { background: #28c840; }

.lp-screen-url {
    background: rgba(255,255,255,.06);
    border-radius: 6px;
    padding: .2rem .6rem;
    font-size: .68rem;
    color: rgba(255,255,255,.5);
    font-family: monospace;
    flex: 1;
    text-align: center;
}

.lp-screen-body {
    display: flex;
    background: #f8fafc;
    min-height: 300px;
}

/* Mini sidebar in showcase */
.lp-mini-sidebar {
    width: 110px;
    min-width: 110px;
    background: linear-gradient(160deg, #0f0e1a, #1a1933);
    padding: .75rem .4rem;
    display: flex;
    flex-direction: column;
    gap: .15rem;
}

.lp-mini-sidebar-logo {
    color: #fff;
    font-size: .55rem;
    font-weight: 800;
    padding: .35rem .5rem .6rem;
    opacity: .85;
    letter-spacing: -.01em;
}

.lp-mini-nav-item {
    color: rgba(255,255,255,.5);
    font-size: .5rem;
    font-weight: 600;
    padding: .35rem .5rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: .35rem;
    cursor: default;
    transition: background .2s;
}

.lp-mini-nav-item.active {
    background: rgba(99,102,241,.25);
    color: rgba(255,255,255,.9);
}

/* Mini main area */
.lp-mini-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #f8fafc;
    overflow: hidden;
}

.lp-mini-header-bar {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: .5rem .75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .6rem;
    color: #374151;
}

.lp-mini-user-chip {
    background: #ede9fe;
    color: #4f46e5;
    font-size: .45rem;
    font-weight: 700;
    padding: .15rem .4rem;
    border-radius: 100px;
    cursor: default;
}

/* Scanner screen */
.lp-screen-scanner .lp-mini-main { position: relative; }

.lp-mini-scanner-area {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .75rem;
    background: #1a1a2e;
    flex: 1;
    position: relative;
}

.lp-mini-scanner-box {
    width: 110px;
    height: 90px;
    background: rgba(0,0,0,.3);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.lp-scanner-corner {
    position: absolute;
    width: 14px;
    height: 14px;
    border-color: #4f46e5;
    border-style: solid;
}

.lp-sc-tl { top: 4px; left: 4px; border-width: 2px 0 0 2px; border-radius: 2px 0 0 0; }
.lp-sc-tr { top: 4px; right: 4px; border-width: 2px 2px 0 0; border-radius: 0 2px 0 0; }
.lp-sc-bl { bottom: 4px; left: 4px; border-width: 0 0 2px 2px; border-radius: 0 0 0 2px; }
.lp-sc-br { bottom: 4px; right: 4px; border-width: 0 2px 2px 0; border-radius: 0 0 2px 0; }

.lp-scanner-line {
    position: absolute;
    left: 6px;
    right: 6px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, #4f46e5, transparent);
    top: 30%;
    animation: scanLine 2s ease-in-out infinite;
}

@keyframes scanLine {
    0%, 100% { top: 15%; opacity: .8; }
    50%       { top: 75%; opacity: 1; }
}

/* Mini modal overlay in scanner tab */
.lp-mini-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.5);
    display: flex;
    align-items: flex-end;
    padding: .5rem;
    z-index: 2;
}

.lp-mini-result-modal {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 4px 16px rgba(0,0,0,.3);
}

.lp-mini-result-header {
    background: linear-gradient(135deg, #059669, #10b981);
    padding: .55rem .6rem;
    text-align: center;
    color: #fff;
}

.lp-mini-result-icon { font-size: 1rem; }

.lp-mini-result-title {
    font-size: .42rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: .1rem;
}

.lp-mini-result-badge {
    display: inline-block;
    background: rgba(255,255,255,.2);
    font-size: .38rem;
    font-weight: 700;
    padding: .1rem .35rem;
    border-radius: 100px;
    margin-top: .2rem;
    letter-spacing: .5px;
}

.lp-mini-result-body { padding: .35rem .5rem; }

.lp-mini-drow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .45rem;
    padding: .18rem 0;
    border-bottom: 1px solid #f1f5f9;
    color: #64748b;
}

.lp-mini-drow:last-child { border-bottom: none; }

.lp-drow-total {
    border-top: 1px solid #e2e8f0;
    border-bottom: none;
    margin-top: .1rem;
    padding-top: .25rem;
}

.lp-mini-type {
    background: rgba(79,70,229,.1);
    color: #4f46e5;
    font-size: .42rem;
    font-weight: 700;
    padding: .08rem .3rem;
    border-radius: 4px;
}

/* Mini cards row (dashboard/admin tabs) */
.lp-mini-cards-row {
    display: flex;
    gap: .4rem;
    padding: .6rem .75rem;
}

.lp-mini-card {
    flex: 1;
    border-radius: 8px;
    padding: .5rem .4rem;
    color: #fff;
    text-align: center;
}

/* Mini quota */
.lp-mini-quota {
    padding: 0 .75rem .5rem;
}

/* Mini table */
.lp-mini-table {
    padding: 0 .75rem;
}

.lp-mini-table-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr 0.7fr 0.8fr;
    gap: .25rem;
    font-size: .42rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #94a3b8;
    padding: .25rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.lp-mini-table-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 0.7fr 0.8fr;
    gap: .25rem;
    font-size: .48rem;
    padding: .3rem 0;
    border-bottom: 1px solid #f1f5f9;
    color: #374151;
    align-items: center;
}

.lp-mini-table-row:last-child { border-bottom: none; }

/* ════════════════════════════════════════════════════
   HOW IT WORKS
   ════════════════════════════════════════════════════ */
.lp-howto { background: var(--lp-white); }

.lp-step {
    background: var(--lp-bg);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    position: relative;
    transition: box-shadow .25s, transform .25s;
}

.lp-step:hover {
    box-shadow: 0 12px 40px rgba(79,70,229,.1);
    transform: translateY(-3px);
}

.lp-step-featured {
    background: linear-gradient(135deg, rgba(79,70,229,.04), rgba(124,58,237,.04));
    border-color: rgba(79,70,229,.25);
}

.lp-step-num {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(79,70,229,.08);
    letter-spacing: -.05em;
    line-height: 1;
    margin-bottom: .5rem;
    font-variant-numeric: tabular-nums;
}

.lp-step-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-purple));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    margin: 0 auto .75rem;
}

.lp-step-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--lp-text);
    margin-bottom: .5rem;
}

.lp-step-desc {
    font-size: .875rem;
    color: var(--lp-muted);
    line-height: 1.6;
    margin: 0;
}

/* ════════════════════════════════════════════════════
   PRICING
   ════════════════════════════════════════════════════ */
.lp-pricing { background: var(--lp-bg); }

.lp-price-card {
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 2rem 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow .25s, transform .25s;
}

.lp-price-card:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,.08);
    transform: translateY(-4px);
}

.lp-price-featured {
    background: linear-gradient(160deg, #1e1b4b, #312e81);
    border-color: transparent;
    box-shadow: 0 16px 60px rgba(79,70,229,.4);
    transform: scale(1.03);
}

.lp-price-featured:hover {
    box-shadow: 0 24px 80px rgba(79,70,229,.5);
    transform: scale(1.03) translateY(-4px);
}

.lp-price-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    color: #000;
    font-size: .7rem;
    font-weight: 800;
    padding: .25rem .85rem;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(245,158,11,.4);
}

.lp-price-header { margin-bottom: 1.25rem; }

.lp-price-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: .9rem;
}

.lp-price-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--lp-text);
    margin-bottom: .3rem;
}

.lp-price-featured .lp-price-name { color: #fff; }

.lp-price-tagline {
    font-size: .82rem;
    color: var(--lp-muted);
    margin: 0;
}

.lp-price-featured .lp-price-tagline { color: rgba(255,255,255,.6); }

.lp-price-amount {
    display: flex;
    align-items: baseline;
    gap: .2rem;
    margin-bottom: 1.5rem;
}

.lp-price-currency {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--lp-primary);
}

.lp-price-featured .lp-price-currency { color: #a5b4fc; }

.lp-price-value {
    font-size: 2.6rem;
    font-weight: 900;
    letter-spacing: -.03em;
    color: var(--lp-text);
    line-height: 1;
}

.lp-price-featured .lp-price-value { color: #fff; }

.lp-price-period {
    font-size: .85rem;
    color: var(--lp-muted);
    font-weight: 500;
}

.lp-price-featured .lp-price-period { color: rgba(255,255,255,.5); }

.lp-price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.lp-price-features li {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .875rem;
    color: var(--lp-text);
}

.lp-price-featured .lp-price-features li { color: rgba(255,255,255,.85); }

.lp-price-features li i {
    font-size: .95rem;
    color: #059669;
    flex-shrink: 0;
}

.lp-feat-off { opacity: .45; }

.lp-feat-off i { color: #dc2626 !important; }

.lp-price-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(79,70,229,.08);
    color: var(--lp-primary);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 700;
    padding: .8rem;
    border-radius: 10px;
    transition: background .2s, transform .15s;
    border: 1px solid rgba(79,70,229,.15);
    margin-top: auto;
}

.lp-price-cta:hover {
    background: rgba(79,70,229,.14);
    color: var(--lp-primary);
    transform: translateY(-1px);
}

.lp-price-cta-featured {
    background: #fff;
    color: var(--lp-primary) !important;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

.lp-price-cta-featured:hover {
    background: #f0f0ff;
    color: var(--lp-primary) !important;
}

/* ════════════════════════════════════════════════════
   CTA FINAL
   ════════════════════════════════════════════════════ */
.lp-cta-final {
    background: linear-gradient(135deg, #0f0e1a, #1a1540);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.lp-cta-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
}

.lp-cta-b1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(79,70,229,.3), transparent 70%);
    top: -100px;
    left: -100px;
}

.lp-cta-b2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(124,58,237,.25), transparent 70%);
    bottom: -80px;
    right: -80px;
}

.lp-cta-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.lp-cta-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -.025em;
    margin-bottom: .9rem;
    line-height: 1.15;
}

.lp-cta-sub {
    font-size: 1rem;
    color: rgba(255,255,255,.6);
    margin: 0;
}

.lp-btn-cta-primary {
    display: inline-flex;
    align-items: center;
    background: var(--lp-primary);
    color: #fff;
    text-decoration: none;
    font-size: .975rem;
    font-weight: 700;
    padding: .9rem 2rem;
    border-radius: 12px;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 24px rgba(79,70,229,.5);
}

.lp-btn-cta-primary:hover {
    background: var(--lp-primary-d);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(79,70,229,.6);
}

.lp-btn-cta-ghost {
    display: inline-flex;
    align-items: center;
    color: rgba(255,255,255,.75);
    text-decoration: none;
    font-size: .975rem;
    font-weight: 600;
    padding: .9rem 1.75rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.15);
    transition: color .2s, border-color .2s, background .2s;
}

.lp-btn-cta-ghost:hover {
    color: #fff;
    border-color: rgba(255,255,255,.35);
    background: rgba(255,255,255,.05);
}

/* ════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════ */
.lp-footer {
    background: #0a0a0f;
    padding: 3.5rem 0 2rem;
}

.lp-logo-footer { display: inline-flex; margin-bottom: .75rem; }

.lp-footer-desc {
    font-size: .85rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 300px;
}

.lp-footer-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(5,150,105,.12);
    color: #34d399;
    font-size: .75rem;
    font-weight: 600;
    padding: .3rem .7rem;
    border-radius: 100px;
    border: 1px solid rgba(5,150,105,.2);
}

.lp-footer-heading {
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.lp-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.lp-footer-links a {
    color: #64748b;
    text-decoration: none;
    font-size: .875rem;
    transition: color .2s;
}

.lp-footer-links a:hover { color: #a5b4fc; }

.lp-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.05);
    font-size: .8rem;
    color: #475569;
}

/* ════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger siblings */
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }
.reveal:nth-child(5) { transition-delay: .32s; }
.reveal:nth-child(6) { transition-delay: .40s; }

/* ════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════ */
@media (max-width: 991px) {
    .lp-nav-links,
    .lp-nav-ctas { display: none; }

    .lp-nav-toggle { display: flex; }

    .lp-price-featured { transform: scale(1); }
    .lp-price-featured:hover { transform: translateY(-4px); }
}

@media (max-width: 767px) {
    .lp-section { padding: 3.5rem 0; }

    .lp-mini-sidebar { width: 75px; min-width: 75px; }

    .lp-trustbar-sep { display: none; }
    .lp-trustbar-logos { gap: 0; }
    .lp-trustbar-item { flex-direction: column; text-align: center; gap: .2rem; font-size: .72rem; }

    .lp-footer-bottom { flex-direction: column; text-align: center; }

    .lp-float-card { display: none; }
}

@media (max-width: 575px) {
    .lp-hero-ctas { flex-direction: column; }
    .lp-btn-hero-primary,
    .lp-btn-hero-ghost { text-align: center; justify-content: center; }

    .lp-mini-sidebar { display: none; }

    .lp-showcase-tabs { gap: .3rem; }
    .lp-tab { font-size: .75rem; padding: .45rem .8rem; }
}
