/* ==========================================================================
   Landing page (public homepage) only. Scoped under .lp-* classes so it
   never touches dashboard/admin styling in style.css.
   ========================================================================== */

.lp-body {
    --lp-bg-deep: #060815;
    --lp-bg-navy: #0a0e27;
    --lp-bg-purple: #1a0f3d;
    --lp-cyan: #00d9ff;
    --lp-purple: #8b5cf6;
    --lp-blue: #2f80ed;
    --lp-pink: #ec4899;
    --lp-ink: #f5f7ff;
    --lp-muted: #a9b3d6;
    --lp-glass-bg: rgba(255, 255, 255, 0.06);
    --lp-glass-border: rgba(255, 255, 255, 0.14);
    --lp-gradient: linear-gradient(135deg, var(--lp-cyan) 0%, var(--lp-blue) 45%, var(--lp-purple) 100%);
    --lp-gradient-soft: linear-gradient(135deg, rgba(0, 217, 255, 0.15), rgba(139, 92, 246, 0.15));
    --lp-radius: 20px;
    background: var(--gray-50);
    overflow-x: hidden;
}
.lp-body * { box-sizing: border-box; }
.lp-body section { position: relative; }
.lp-container { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 2; }
.lp-eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--lp-cyan); background: rgba(0, 217, 255, 0.1); border: 1px solid rgba(0, 217, 255, 0.25);
    padding: 0.4rem 0.9rem; border-radius: 999px; margin-bottom: 1rem;
}
.lp-section-head { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.lp-section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); font-weight: 800; color: var(--primary); margin: 0 0 0.75rem; line-height: 1.2; }
.lp-section-head p { color: var(--gray-500); font-size: 1.05rem; margin: 0; }
.lp-section-head.lp-on-dark h2 { color: var(--lp-ink); }
.lp-section-head.lp-on-dark p { color: var(--lp-muted); }

/* Reveal-on-scroll */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].lp-visible { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }
[data-reveal-delay="5"] { transition-delay: 0.4s; }
[data-reveal-delay="6"] { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
    [data-reveal] { transition-duration: 0.01ms; }
    .lp-body *, .lp-body *::before, .lp-body *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* ---------------------------------------------------------------- */
/* Nav                                                                */
/* ---------------------------------------------------------------- */
.lp-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.1rem 1.5rem;
    background: transparent;
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.lp-nav.lp-scrolled { background: rgba(10, 14, 39, 0.85); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); padding: 0.8rem 1.5rem; box-shadow: 0 4px 24px rgba(0,0,0,0.25); }
.lp-nav-inner { max-width: 1240px; margin: 0 auto; width: 100%; display: flex; align-items: center; justify-content: space-between; }
.lp-brand { display: flex; align-items: center; gap: 0.6rem; font-weight: 800; font-size: 1.25rem; color: var(--lp-ink); }
.lp-brand-mark {
    width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0;
    background: var(--lp-gradient); display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.05rem; box-shadow: 0 0 20px rgba(0, 217, 255, 0.35);
}
.lp-nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.lp-nav-links a { color: var(--lp-muted); font-weight: 600; font-size: 0.92rem; transition: color 0.2s ease; }
.lp-nav-links a:hover { color: var(--lp-ink); }
.lp-nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.lp-nav-actions .lp-btn-ghost { color: var(--lp-ink); border-color: rgba(255,255,255,0.25); }
.lp-nav-toggle { display: none; background: none; border: none; color: var(--lp-ink); font-size: 1.4rem; cursor: pointer; }

.lp-mobile-menu {
    position: fixed; inset: 0; z-index: 199; background: rgba(6, 8, 21, 0.97); backdrop-filter: blur(10px);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.75rem;
    transform: translateY(-100%); opacity: 0; visibility: hidden;
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s;
}
.lp-mobile-menu.lp-open { transform: translateY(0); opacity: 1; visibility: visible; }
.lp-mobile-menu a { color: var(--lp-ink); font-size: 1.4rem; font-weight: 700; }
.lp-mobile-menu .lp-btn { font-size: 1.05rem; }
.lp-mobile-close { position: absolute; top: 1.4rem; right: 1.5rem; background: none; border: none; color: var(--lp-ink); font-size: 1.7rem; cursor: pointer; }

/* ---------------------------------------------------------------- */
/* Buttons                                                            */
/* ---------------------------------------------------------------- */
.lp-btn {
    position: relative; overflow: hidden; isolation: isolate;
    display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
    padding: 0.95rem 1.9rem; border-radius: 14px; font-weight: 700; font-size: 1rem;
    border: 1px solid transparent; cursor: pointer; text-decoration: none;
    transition: transform 0.25s cubic-bezier(.2,.8,.2,1), box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.lp-btn:active { transform: translateY(1px) scale(0.98); }
.lp-btn-primary { background: var(--lp-gradient); background-size: 200% 200%; color: #fff; box-shadow: 0 10px 30px rgba(47, 128, 237, 0.35); }
.lp-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0, 217, 255, 0.4); background-position: 100% 50%; }
.lp-btn-ghost { background: rgba(255,255,255,0.05); color: var(--gray-700); border-color: var(--gray-200); }
.lp-btn-ghost:hover { transform: translateY(-3px); background: rgba(255,255,255,0.12); box-shadow: 0 10px 26px rgba(0,0,0,0.12); }
.lp-btn-lg { padding: 1.15rem 2.3rem; font-size: 1.08rem; }
.lp-btn-sm { padding: 0.55rem 1.1rem; font-size: 0.85rem; border-radius: 10px; }
.lp-btn-white { background: #fff; color: var(--lp-bg-navy); }
.lp-btn-white:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(255,255,255,0.25); }
.lp-btn .lp-ripple {
    position: absolute; border-radius: 50%; transform: scale(0);
    background: rgba(255,255,255,0.45); pointer-events: none;
    animation: lp-ripple 0.65s ease-out; z-index: -1;
}
@keyframes lp-ripple { to { transform: scale(3.4); opacity: 0; } }

/* ---------------------------------------------------------------- */
/* Hero                                                               */
/* ---------------------------------------------------------------- */
.lp-hero {
    min-height: 100vh; display: flex; align-items: center;
    padding: 7rem 0 5rem;
    background:
        radial-gradient(ellipse 90% 60% at 20% 0%, rgba(139, 92, 246, 0.35), transparent 60%),
        radial-gradient(ellipse 80% 60% at 100% 20%, rgba(0, 217, 255, 0.25), transparent 55%),
        linear-gradient(160deg, var(--lp-bg-navy) 0%, var(--lp-bg-purple) 55%, var(--lp-bg-deep) 100%);
    overflow: hidden;
}
.lp-hero-bg-canvas { position: absolute; inset: 0; z-index: 0; opacity: 0.55; }
.lp-blob {
    position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5; z-index: 0;
    animation: lp-blob-move 16s ease-in-out infinite;
}
.lp-blob-1 { width: 420px; height: 420px; background: var(--lp-purple); top: -120px; left: -100px; animation-duration: 18s; }
.lp-blob-2 { width: 380px; height: 380px; background: var(--lp-cyan); bottom: -140px; right: -80px; animation-duration: 22s; animation-delay: -4s; }
.lp-blob-3 { width: 300px; height: 300px; background: var(--lp-pink); top: 40%; left: 55%; animation-duration: 20s; animation-delay: -8s; opacity: 0.3; }
@keyframes lp-blob-move {
    0%, 100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.08); }
    66% { transform: translate(-30px, 25px) scale(0.95); }
}

.lp-glow-circle { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.08); z-index: 0; animation: lp-spin-slow 40s linear infinite; }
.lp-glow-circle-1 { width: 620px; height: 620px; top: 8%; right: -180px; }
.lp-glow-circle-2 { width: 420px; height: 420px; top: 20%; right: -80px; animation-direction: reverse; animation-duration: 30s; }
@keyframes lp-spin-slow { to { transform: rotate(360deg); } }

.lp-float-card {
    position: absolute; z-index: 1; display: flex; align-items: center; gap: 0.55rem;
    background: var(--lp-glass-bg); border: 1px solid var(--lp-glass-border);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    padding: 0.6rem 0.95rem; border-radius: 12px; font-size: 0.78rem; font-weight: 700; color: var(--lp-ink);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    animation: lp-float 7s ease-in-out infinite;
    white-space: nowrap;
}
.lp-float-card i { color: var(--lp-cyan); font-size: 0.9rem; }
@keyframes lp-float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-16px) translateX(6px); }
}

.lp-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center; }
.lp-hero-copy { position: relative; z-index: 2; }
.lp-hero-title {
    font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 900; line-height: 1.14; color: var(--lp-ink);
    margin: 0 0 1.1rem; letter-spacing: -0.01em;
}
.lp-hero-title .lp-typed-wrap { display: block; min-height: 1.25em; }
.lp-hero-title .lp-typed {
    background: var(--lp-gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lp-caret { display: inline-block; width: 3px; margin-left: 3px; background: var(--lp-cyan); animation: lp-caret-blink 0.9s step-end infinite; }
@keyframes lp-caret-blink { 50% { opacity: 0; } }

.lp-hero-sub { font-size: 1.1rem; color: var(--lp-muted); max-width: 560px; margin: 0 0 2rem; line-height: 1.65; }
.lp-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.lp-hero-trust { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; color: var(--lp-muted); font-size: 0.85rem; font-weight: 600; }
.lp-hero-trust span { display: flex; align-items: center; gap: 0.4rem; }
.lp-hero-trust i { color: var(--lp-cyan); }

/* Right-side illustration */
.lp-hero-art { position: relative; z-index: 2; height: 480px; display: flex; align-items: center; justify-content: center; }
.lp-phone {
    position: relative; width: 230px; height: 460px; border-radius: 36px;
    background: linear-gradient(160deg, #111834, #060815);
    border: 3px solid rgba(255,255,255,0.14); box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 0 0 8px rgba(255,255,255,0.02);
    padding: 14px; z-index: 3;
}
.lp-phone-screen { width: 100%; height: 100%; border-radius: 24px; background: linear-gradient(160deg, #0d1230, #1a1140); overflow: hidden; position: relative; }
.lp-phone-notch { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 70px; height: 8px; border-radius: 6px; background: rgba(0,0,0,0.5); }
.lp-phone-content { padding: 2.2rem 0.9rem 0.9rem; display: flex; flex-direction: column; gap: 0.6rem; height: 100%; }
.lp-phone-shield {
    width: 64px; height: 64px; margin: 0.4rem auto 0.2rem; border-radius: 50%;
    background: var(--lp-gradient); display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: #fff; box-shadow: 0 0 30px rgba(0,217,255,0.5);
    animation: lp-pulse-glow 2.4s ease-in-out infinite;
}
@keyframes lp-pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0,217,255,0.4); }
    50% { box-shadow: 0 0 36px rgba(139,92,246,0.6); }
}
.lp-phone-line { height: 8px; border-radius: 5px; background: rgba(255,255,255,0.12); }
.lp-phone-line.w60 { width: 60%; margin: 0 auto; }
.lp-phone-line.w40 { width: 40%; margin: 0.2rem auto 0.6rem; background: rgba(0,217,255,0.35); }
.lp-phone-card {
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
    padding: 0.6rem 0.7rem; display: flex; align-items: center; gap: 0.55rem;
}
.lp-phone-card i { color: var(--lp-cyan); font-size: 0.95rem; }
.lp-phone-card .lp-check { margin-left: auto; color: #34d399; }
.lp-phone-btn { margin-top: auto; text-align: center; background: var(--lp-gradient); color: #fff; font-weight: 700; font-size: 0.78rem; padding: 0.6rem; border-radius: 10px; }

.lp-orbit-icon {
    position: absolute; z-index: 4; width: 54px; height: 54px; border-radius: 16px;
    background: var(--lp-glass-bg); border: 1px solid var(--lp-glass-border);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--lp-ink);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: lp-orbit-float 6s ease-in-out infinite;
}
.lp-orbit-1 { top: 4%;  left: -4%;  color: #34d399; animation-delay: 0s; }
.lp-orbit-2 { top: 14%; right: -6%; color: var(--lp-cyan); animation-delay: -1.2s; }
.lp-orbit-3 { top: 46%; left: -10%; color: var(--lp-pink); animation-delay: -2.4s; }
.lp-orbit-4 { bottom: 22%; right: -10%; color: #fbbf24; animation-delay: -3.6s; }
.lp-orbit-5 { bottom: 4%; left: 6%; color: var(--lp-purple); animation-delay: -4.8s; }
.lp-orbit-6 { bottom: -2%; right: 14%; color: var(--lp-cyan); animation-delay: -5.4s; }
@keyframes lp-orbit-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-14px) rotate(4deg); }
}
.lp-naira-float {
    position: absolute; z-index: 4; font-weight: 800; color: rgba(255,255,255,0.5); font-size: 1.4rem;
    animation: lp-naira-rise 5s linear infinite;
}
.lp-naira-1 { left: -8%; bottom: 10%; animation-delay: 0s; }
.lp-naira-2 { right: -4%; bottom: 40%; animation-delay: -1.8s; font-size: 1.1rem; }
.lp-naira-3 { left: 8%; bottom: -4%; animation-delay: -3.4s; font-size: 1rem; }
@keyframes lp-naira-rise {
    0% { transform: translateY(0); opacity: 0; }
    15% { opacity: 0.8; }
    85% { opacity: 0.5; }
    100% { transform: translateY(-160px); opacity: 0; }
}

.lp-scroll-cue {
    position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); z-index: 2;
    color: var(--lp-muted); font-size: 0.75rem; font-weight: 600; text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
}
.lp-scroll-cue i { animation: lp-bounce 1.8s ease-in-out infinite; }
@keyframes lp-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ---------------------------------------------------------------- */
/* Live tech ecosystem background (used behind stats/services)       */
/* ---------------------------------------------------------------- */
.lp-ecosystem { position: relative; background: var(--lp-bg-navy); padding: 4.5rem 0; overflow: hidden; }
.lp-ecosystem-track { position: absolute; inset: 0; overflow: hidden; opacity: 0.5; }
.lp-drift-card {
    position: absolute; background: var(--lp-glass-bg); border: 1px solid var(--lp-glass-border);
    border-radius: 10px; padding: 0.45rem 0.8rem; font-size: 0.72rem; font-weight: 700; color: var(--lp-muted);
    backdrop-filter: blur(8px); white-space: nowrap; animation: lp-drift linear infinite;
}
@keyframes lp-drift {
    from { transform: translateX(-10vw); }
    to { transform: translateX(110vw); }
}

/* ---------------------------------------------------------------- */
/* Stats                                                              */
/* ---------------------------------------------------------------- */
.lp-stats-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.25rem; }
.lp-stat {
    text-align: center; background: var(--lp-glass-bg); border: 1px solid var(--lp-glass-border);
    border-radius: 16px; padding: 1.6rem 1rem; backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.lp-stat:hover { transform: translateY(-6px); border-color: rgba(0,217,255,0.4); }
.lp-stat i { font-size: 1.4rem; color: var(--lp-cyan); margin-bottom: 0.6rem; display: block; }
.lp-stat .lp-stat-value { font-size: 1.55rem; font-weight: 800; color: var(--lp-ink); }
.lp-stat .lp-stat-label { font-size: 0.78rem; color: var(--lp-muted); font-weight: 600; margin-top: 0.3rem; }

/* ---------------------------------------------------------------- */
/* Services                                                           */
/* ---------------------------------------------------------------- */
.lp-services { padding: 6rem 0; background: var(--gray-50); }
.lp-service-groups { display: flex; flex-direction: column; gap: 3rem; }
.lp-service-group-title {
    display: flex; align-items: center; gap: 0.7rem; font-size: 1.15rem; font-weight: 800; color: var(--primary);
    margin: 0 0 1.4rem;
}
.lp-service-group-title i { color: var(--accent); }
.lp-service-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.1rem; }
.lp-service-card {
    position: relative; overflow: hidden; display: block;
    background: var(--white); border-radius: 18px; padding: 1.5rem 1.4rem;
    border: 1px solid var(--gray-100); box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.lp-service-card::before {
    content: ''; position: absolute; inset: 0; border-radius: 18px; padding: 1.5px;
    background: var(--lp-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    opacity: 0; transition: opacity 0.3s ease;
}
.lp-service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.lp-service-card:hover::before { opacity: 1; }
.lp-service-card-icon {
    width: 48px; height: 48px; border-radius: 13px; margin-bottom: 1rem;
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    transition: transform 0.3s ease;
}
.lp-service-card:hover .lp-service-card-icon { transform: scale(1.1) rotate(-6deg); }
.lp-service-card h4 { margin: 0 0 0.35rem; font-size: 1rem; font-weight: 700; color: var(--gray-700); }
.lp-service-card p { margin: 0; font-size: 0.82rem; color: var(--gray-500); }
.lp-service-card .lp-soon-badge {
    position: absolute; top: 0.9rem; right: 0.9rem; font-size: 0.65rem; font-weight: 700;
    background: #fdf3d9; color: var(--warning); padding: 0.2rem 0.55rem; border-radius: 999px;
}

/* ---------------------------------------------------------------- */
/* Why choose us                                                      */
/* ---------------------------------------------------------------- */
.lp-why { padding: 6rem 0; background: var(--white); }
.lp-why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; }
.lp-why-card {
    padding: 1.8rem; border-radius: 18px; background: var(--gray-50); border: 1px solid var(--gray-100);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.lp-why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); background: var(--white); }
.lp-why-card-icon {
    width: 52px; height: 52px; border-radius: 14px; margin-bottom: 1rem;
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: #fff;
    background: linear-gradient(135deg, var(--lp-cyan), var(--lp-blue));
}
.lp-why-card h4 { margin: 0 0 0.4rem; font-size: 1.02rem; font-weight: 700; color: var(--primary); }
.lp-why-card p { margin: 0; font-size: 0.88rem; color: var(--gray-500); }

/* ---------------------------------------------------------------- */
/* How it works                                                       */
/* ---------------------------------------------------------------- */
.lp-how { padding: 6rem 0; background: var(--gray-50); }
.lp-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; }
.lp-steps::before {
    content: ''; position: absolute; top: 34px; left: 12%; right: 12%; height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--lp-purple));
    opacity: 0.25;
}
.lp-step { text-align: center; position: relative; z-index: 1; }
.lp-step-num {
    width: 68px; height: 68px; margin: 0 auto 1.1rem; border-radius: 50%;
    background: var(--lp-gradient); color: #fff; font-size: 1.4rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 26px rgba(47,128,237,0.3); border: 4px solid var(--gray-50);
}
.lp-step h4 { margin: 0 0 0.4rem; font-size: 1.02rem; font-weight: 700; color: var(--primary); }
.lp-step p { margin: 0; font-size: 0.85rem; color: var(--gray-500); }

/* ---------------------------------------------------------------- */
/* Trust badges                                                       */
/* ---------------------------------------------------------------- */
.lp-trust { padding: 3rem 0; background: var(--white); border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
.lp-trust-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2.2rem; }
.lp-trust-item { display: flex; align-items: center; gap: 0.55rem; font-weight: 700; font-size: 0.9rem; color: var(--gray-700); }
.lp-trust-item i { color: var(--success); font-size: 1.05rem; }

/* ---------------------------------------------------------------- */
/* Testimonials                                                       */
/* ---------------------------------------------------------------- */
.lp-testimonials {
    padding: 6rem 0;
    background: linear-gradient(160deg, var(--lp-bg-navy) 0%, var(--lp-bg-purple) 100%);
    position: relative; overflow: hidden;
}
.lp-testimonial-track-wrap { max-width: 780px; margin: 0 auto; position: relative; min-height: 260px; }
.lp-testimonial-card {
    position: absolute; inset: 0; background: var(--lp-glass-bg); border: 1px solid var(--lp-glass-border);
    border-radius: 22px; padding: 2.2rem 2.4rem; backdrop-filter: blur(14px);
    opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}
.lp-testimonial-card.lp-active { opacity: 1; transform: translateX(0); pointer-events: auto; position: relative; }
.lp-testimonial-quote { color: var(--lp-cyan); font-size: 1.8rem; margin-bottom: 0.8rem; display: block; }
.lp-testimonial-card p { color: var(--lp-ink); font-size: 1.05rem; line-height: 1.7; margin: 0 0 1.4rem; }
.lp-testimonial-person { display: flex; align-items: center; gap: 0.85rem; }
.lp-testimonial-avatar {
    width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
    background: var(--lp-gradient); display: flex; align-items: center; justify-content: center;
    font-weight: 800; color: #fff; font-size: 1rem;
    animation: lp-pulse-glow 3s ease-in-out infinite;
}
.lp-testimonial-name { font-weight: 700; color: var(--lp-ink); font-size: 0.92rem; }
.lp-testimonial-role { font-size: 0.78rem; color: var(--lp-muted); }
.lp-testimonial-stars { color: #fbbf24; font-size: 0.78rem; margin-top: 0.2rem; }
.lp-testimonial-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.lp-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.25); border: none; cursor: pointer; padding: 0; transition: background 0.25s ease, transform 0.25s ease; }
.lp-dot.lp-active { background: var(--lp-cyan); transform: scale(1.3); }

/* ---------------------------------------------------------------- */
/* Developer team                                                      */
/* ---------------------------------------------------------------- */
.lp-developer { padding: 3.5rem 0; background: var(--lp-bg-navy); }
.lp-developer-card {
    display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
    background: var(--lp-glass-bg); border: 1px solid var(--lp-glass-border); border-radius: var(--lp-radius);
    padding: 2.2rem 2.6rem; backdrop-filter: blur(14px);
}
.lp-developer-info h3 { color: var(--lp-ink); font-size: 1.25rem; font-weight: 800; margin: 0.6rem 0 0.5rem; }
.lp-developer-info p { color: var(--lp-muted); font-size: 0.92rem; line-height: 1.6; margin: 0 0 0.8rem; max-width: 480px; }
.lp-developer-contact { display: flex; align-items: center; gap: 0.5rem; color: var(--lp-cyan); font-weight: 700; font-size: 0.95rem; }
.lp-developer-btn { white-space: nowrap; }
.lp-developer-btn i.fa-whatsapp { color: #25d366; margin-right: 0.35rem; }

/* ---------------------------------------------------------------- */
/* CTA                                                                 */
/* ---------------------------------------------------------------- */
.lp-cta {
    padding: 5.5rem 0; text-align: center;
    background:
        radial-gradient(ellipse 70% 100% at 50% 0%, rgba(0,217,255,0.25), transparent 60%),
        linear-gradient(135deg, var(--lp-purple), var(--lp-blue));
    position: relative; overflow: hidden;
}
.lp-cta h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 800; color: #fff; max-width: 640px; margin: 0 auto 1rem; }
.lp-cta p { color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 2.2rem; }
.lp-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------------- */
/* Footer                                                              */
/* ---------------------------------------------------------------- */
.lp-footer { background: var(--lp-bg-deep); color: var(--lp-muted); padding: 4.5rem 0 1.5rem; position: relative; overflow: hidden; }
.lp-footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr) 1.2fr; gap: 2rem; margin-bottom: 3rem; }
.lp-footer-brand { color: var(--lp-ink); }
.lp-footer-brand p { font-size: 0.88rem; line-height: 1.6; margin: 1rem 0 1.4rem; max-width: 260px; }
.lp-footer-social { display: flex; gap: 0.6rem; }
.lp-footer-social a {
    width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center; color: var(--lp-muted); transition: all 0.25s ease;
}
.lp-footer-social a:hover { background: var(--lp-gradient); color: #fff; transform: translateY(-3px); }
.lp-footer-col h5 { color: var(--lp-ink); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin: 0 0 1.1rem; }
.lp-footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.65rem; }
.lp-footer-col a { font-size: 0.88rem; color: var(--lp-muted); transition: color 0.2s ease; }
.lp-footer-col a:hover { color: var(--lp-cyan); }
.lp-newsletter-form { display: flex; gap: 0.5rem; margin-top: 0.5rem; }
.lp-newsletter-form input {
    flex: 1; min-width: 0; padding: 0.65rem 0.85rem; border-radius: 10px; border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.05); color: var(--lp-ink); font-size: 0.85rem; font-family: inherit;
}
.lp-newsletter-form input::placeholder { color: var(--lp-muted); }
.lp-newsletter-form input:focus { outline: none; border-color: var(--lp-cyan); }
.lp-newsletter-form button {
    flex-shrink: 0; width: 42px; border-radius: 10px; border: none; background: var(--lp-gradient); color: #fff; cursor: pointer;
    display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
}
.lp-newsletter-note { font-size: 0.75rem; margin-top: 0.5rem; color: var(--lp-muted); min-height: 1em; }
.lp-footer-bottom {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
    padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.8rem;
}
.lp-footer-bottom a { color: var(--lp-muted); }
.lp-footer-legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }

/* ---------------------------------------------------------------- */
/* Responsive                                                         */
/* ---------------------------------------------------------------- */
@media (max-width: 1080px) {
    .lp-stats-grid { grid-template-columns: repeat(3, 1fr); }
    .lp-footer-grid { grid-template-columns: 1fr 1fr; }
    .lp-steps { grid-template-columns: repeat(2, 1fr); row-gap: 2.5rem; }
    .lp-steps::before { display: none; }
}
/* ---------------------------------------------------------------- */
/* Auth pages (login / register)                                      */
/* ---------------------------------------------------------------- */
.lp-auth-page {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    padding: 3rem 1.25rem; position: relative; overflow: hidden;
    background:
        radial-gradient(ellipse 90% 60% at 20% 0%, rgba(139, 92, 246, 0.35), transparent 60%),
        radial-gradient(ellipse 80% 60% at 100% 20%, rgba(0, 217, 255, 0.25), transparent 55%),
        linear-gradient(160deg, var(--lp-bg-navy) 0%, var(--lp-bg-purple) 55%, var(--lp-bg-deep) 100%);
}
.lp-auth-card {
    position: relative; z-index: 2; width: 100%; max-width: 420px;
    background: var(--lp-glass-bg); border: 1px solid var(--lp-glass-border); border-radius: var(--lp-radius);
    padding: 2.6rem 2.4rem; backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.lp-auth-brand { justify-content: center; margin-bottom: 1.6rem; text-decoration: none; }
.lp-auth-title { color: var(--lp-ink); font-size: 1.5rem; font-weight: 800; text-align: center; margin: 0 0 0.4rem; }
.lp-auth-sub { color: var(--lp-muted); font-size: 0.92rem; text-align: center; margin: 0 0 1.8rem; }
.lp-auth-card .form-label { color: var(--lp-muted); }
.lp-auth-card .form-control {
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16); color: var(--lp-ink);
}
.lp-auth-card .form-control::placeholder { color: var(--lp-muted); }
.lp-auth-card .form-control:focus { border-color: var(--lp-cyan); box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.15); }
.lp-auth-footer { text-align: center; margin-top: 1.4rem; font-size: 0.9rem; color: var(--lp-muted); }
.lp-auth-footer a { color: var(--lp-cyan); font-weight: 600; }
.lp-auth-footer a:hover { text-decoration: underline; }

@media (max-width: 960px) {
    .lp-nav-links { display: none; }
    .lp-nav-actions .lp-btn-ghost { display: none; }
    .lp-nav-toggle { display: block; }
    .lp-hero-grid { grid-template-columns: 1fr; text-align: center; }
    .lp-hero-copy { order: 1; }
    .lp-hero-sub { margin-left: auto; margin-right: auto; }
    .lp-hero-actions { justify-content: center; }
    .lp-hero-trust { justify-content: center; }
    .lp-hero-art { order: 0; height: 380px; }
    .lp-phone { width: 190px; height: 380px; }
    .lp-orbit-icon { width: 44px; height: 44px; font-size: 1.05rem; }
}
@media (max-width: 640px) {
    .lp-hero { padding: 6.5rem 0 4rem; }
    .lp-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-service-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
    .lp-footer-grid { grid-template-columns: 1fr; }
    .lp-steps { grid-template-columns: 1fr; }
    .lp-hero-art { display: none; }
    .lp-float-card { display: none; }
    .lp-testimonial-card { padding: 1.6rem 1.4rem; }
}
