/* ════════════════════════════════════════════════════════════
   landing.css  v3  —  POSMini  (Loyverse-inspired, light-first)
   ════════════════════════════════════════════════════════════ */

/* ── CSS VARIABLES ──────────────────────────────────────── */
:root {
    --lv-bg:        #ffffff;
    --lv-bg2:       #F7F8FC;
    --lv-bg3:       #EFF1F8;
    --lv-text:      #111827;
    --lv-muted:     #6B7280;
    --lv-muted2:    #9CA3AF;
    --lv-border:    #E5E7EB;
    --lv-orange:    #FF6B00;
    --lv-orange-lt: #FFF4ED;
    --lv-shadow:    rgba(17,24,39,0.08);
    --lv-shadow2:   rgba(17,24,39,0.14);
}
[data-bs-theme="dark"] {
    --lv-bg:        #0d0d0d;
    --lv-bg2:       #111111;
    --lv-bg3:       #181818;
    --lv-text:      #f3f4f6;
    --lv-muted:     rgba(243,244,246,0.55);
    --lv-muted2:    rgba(243,244,246,0.32);
    --lv-border:    #262626;
    --lv-orange:    #FF6B00;
    --lv-orange-lt: rgba(255,107,0,0.1);
    --lv-shadow:    rgba(0,0,0,0.35);
    --lv-shadow2:   rgba(0,0,0,0.55);
}

/* ── HERO ───────────────────────────────────────────────── */
.lv-hero {
    background: var(--lv-bg);
    padding: 100px 0 60px;
    overflow: hidden;
    position: relative;
}
.lv-hero-bg-shape {
    position: absolute;
    top: -200px; right: -200px;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,0,0.07) 0%, transparent 65%);
    pointer-events: none;
}
.lv-hero-bg-shape2 {
    position: absolute;
    bottom: -100px; left: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,0,0.05) 0%, transparent 65%);
    pointer-events: none;
}

/* Hero badge */
.lv-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 5px 14px; border-radius: 100px;
    background: var(--lv-orange-lt);
    border: 1px solid rgba(255,107,0,0.25);
    font-size: 12px; font-weight: 700; color: var(--lv-orange);
    letter-spacing: 0.02em; margin-bottom: 1.4rem;
}
.lv-badge-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--lv-orange);
    animation: lvDotPulse 1.8s ease-in-out infinite;
}
@keyframes lvDotPulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(255,107,0,.6); }
    50%      { box-shadow: 0 0 0 6px rgba(255,107,0,0); }
}

/* Hero headline */
.lv-h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--lv-text);
    margin-bottom: 1.2rem;
}
.lv-h1 span {
    color: var(--lv-orange);
}
.lv-hero-sub {
    font-size: 1.05rem; line-height: 1.75;
    color: var(--lv-muted); max-width: 500px;
    margin-bottom: 2rem;
}

/* Buttons */
.lv-btn-pri {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px; border-radius: 10px;
    font-weight: 700; font-size: 15px;
    background: var(--lv-orange); color: #fff !important;
    border: none; cursor: pointer;
    transition: all .25s ease;
    box-shadow: 0 4px 20px rgba(255,107,0,.35);
    position: relative; overflow: hidden;
}
.lv-btn-pri::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
    pointer-events: none;
}
.lv-btn-pri:hover {
    background: #e55f00;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255,107,0,.45);
}
.lv-btn-sec {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: 10px;
    font-weight: 600; font-size: 15px;
    background: transparent; color: var(--lv-text) !important;
    border: 1.5px solid var(--lv-border);
    cursor: pointer; transition: all .25s ease;
}
.lv-btn-sec:hover {
    border-color: var(--lv-orange);
    color: var(--lv-orange) !important;
    background: var(--lv-orange-lt);
    transform: translateY(-2px);
}

/* Slot strip */
.lv-slot {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 16px; border-radius: 10px;
    background: var(--lv-bg2); border: 1px solid var(--lv-border);
    font-size: 12px; color: var(--lv-muted);
    width: fit-content; margin-top: 1.5rem;
}
.lv-slot-track {
    width: 100px; height: 5px; border-radius: 3px;
    background: var(--lv-border); overflow: hidden;
}
.lv-slot-fill {
    height: 100%; border-radius: 3px;
    background: linear-gradient(90deg, var(--lv-orange), #FFB347);
    transition: width 1.6s cubic-bezier(.4,0,.2,1);
}

/* Trust row */
.lv-trust-row { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 1.5rem; }
.lv-trust-item {
    display: flex; align-items: center; gap: 7px;
    font-size: 12px; font-weight: 600; color: var(--lv-muted);
}
.lv-trust-item i { color: var(--lv-orange); font-size: 14px; }

/* ── DEVICE FRAME ───────────────────────────────────────── */
.lv-device {
    background: #1c1c1e;
    border-radius: 30px;
    padding: 10px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.06),
        0 30px 80px var(--lv-shadow2),
        0 10px 30px var(--lv-shadow);
    position: relative;
    display: inline-block;
    width: 100%;
}
.lv-device::before {
    content: '';
    display: block; width: 56px; height: 5px;
    border-radius: 3px; background: rgba(255,255,255,.15);
    margin: 0 auto 8px;
}
.lv-device-screen {
    border-radius: 22px;
    overflow: hidden;
    background: #000;
    display: block;
}
.lv-device-screen img {
    width: 100%; display: block;
    object-fit: cover;
}

/* Hero device: floating + shadow glow */
.lv-hero-device-wrap {
    position: relative;
    animation: lvFloat 5s ease-in-out infinite;
}
@keyframes lvFloat {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-14px); }
}
.lv-hero-device-wrap::after {
    content: '';
    position: absolute;
    bottom: -30px; left: 10%; right: 10%;
    height: 40px;
    background: radial-gradient(ellipse at center, rgba(255,107,0,0.25) 0%, transparent 70%);
    filter: blur(12px);
    animation: lvFloat 5s ease-in-out infinite;
}

/* ── STATS STRIP ────────────────────────────────────────── */
.lv-stats-strip {
    background: var(--lv-orange);
    padding: 28px 0;
}
.lv-stats-strip .container { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 12px; }
.lv-stat-item { text-align: center; }
.lv-stat-num  { font-size: clamp(1.8rem,3vw,2.5rem); font-weight: 900; color: #fff; line-height: 1; letter-spacing: -.03em; }
.lv-stat-sfx  { display: inline; font-size: 1.2rem; font-weight: 700; color: rgba(255,255,255,.8); }
.lv-stat-lbl  { font-size: 12px; color: rgba(255,255,255,.75); margin-top: 3px; font-weight: 500; }

/* ── SECTIONS ───────────────────────────────────────────── */
.lv-section { padding: 88px 0; background: var(--lv-bg); }
.lv-section-alt { background: var(--lv-bg2); }

.lv-eyebrow {
    font-size: 11px; font-weight: 800;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--lv-orange); margin-bottom: .75rem;
    display: block;
}
.lv-section-h2 {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 800; letter-spacing: -.03em;
    line-height: 1.15; color: var(--lv-text);
    margin-bottom: 1rem;
}
.lv-section-p {
    font-size: 1rem; line-height: 1.75;
    color: var(--lv-muted); max-width: 480px;
    margin-bottom: 1.5rem;
}

/* Feature bullet list */
.lv-feat-list { list-style: none; padding: 0; margin: 0 0 1.8rem; }
.lv-feat-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: .9rem; color: var(--lv-muted);
    padding: 7px 0; line-height: 1.55;
}
.lv-feat-list li::before {
    content: '';
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--lv-orange-lt);
    border: 1.5px solid rgba(255,107,0,.3);
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FF6B00'%3E%3Cpath d='M6.5 11.5L3 8l1.4-1.4L6.5 8.7l5.1-5.1L13 5l-6.5 6.5z'/%3E%3C/svg%3E");
    background-size: 14px; background-position: center; background-repeat: no-repeat;
    margin-top: 1px;
}

/* "Learn more" link */
.lv-link {
    color: var(--lv-orange); font-weight: 700; font-size: .9rem;
    text-decoration: none; display: inline-flex; align-items: center; gap: 5px;
    transition: gap .2s ease;
}
.lv-link:hover { color: #e55f00; gap: 9px; }

/* ── SCREENSHOTS SWIPER ─────────────────────────────────── */
.lv-swiper-section { overflow: hidden; }
.lv-swiper-wrap    { padding-bottom: 56px; }

.lv-swiper .swiper-slide {
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 8px 32px var(--lv-shadow);
    border: 1px solid var(--lv-border);
    transition: transform .5s ease, opacity .5s ease;
    transform: scale(0.9); opacity: 0.55;
}
.lv-swiper .swiper-slide-active { transform: scale(1); opacity: 1; box-shadow: 0 20px 60px var(--lv-shadow2); }
.lv-swiper .swiper-slide img { width: 100%; height: auto; display: block; object-fit: contain; }

.lv-swiper .swiper-pagination-bullet { background: var(--lv-muted2); opacity: 1; }
.lv-swiper .swiper-pagination-bullet-active { background: var(--lv-orange); width: 22px; border-radius: 3px; }
.lv-swiper .swiper-button-next, .lv-swiper .swiper-button-prev {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--lv-bg); border: 1.5px solid var(--lv-border);
    color: var(--lv-text); box-shadow: 0 2px 8px var(--lv-shadow);
}
.lv-swiper .swiper-button-next::after, .lv-swiper .swiper-button-prev::after { font-size: 14px; font-weight: 800; }
.lv-swiper .swiper-button-next:hover, .lv-swiper .swiper-button-prev:hover {
    border-color: var(--lv-orange); color: var(--lv-orange);
}

/* ── VIDEO ──────────────────────────────────────────────── */
.lv-laptop {
    max-width: 860px; margin: 0 auto;
    box-shadow: 0 40px 100px var(--lv-shadow2);
    border-radius: 16px; overflow: hidden;
}
.lv-laptop-top {
    background: #1c1c1e; padding: 12px 12px 0;
}
.lv-laptop-top-bar { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.lv-laptop-screen  { aspect-ratio: 16/9; background: #000; position: relative; border-radius: 6px 6px 0 0; overflow: hidden; }
.lv-laptop-base    { height: 18px; background: #141414; }
.lv-laptop-base::after { content:''; display:block; width:60px; height:4px; border-radius:0 0 4px 4px; background:#1e1e1e; margin: 0 auto; margin-top:7px; }
.lv-laptop-foot    { height: 12px; background: #0f0f0f; border-radius: 0 0 12px 12px; margin: 0 14px; }

.lv-dot { width: 11px; height: 11px; border-radius: 50%; }
.lv-dot-r { background: #FF5F57; } .lv-dot-y { background: #FFBD2E; } .lv-dot-g { background: #28C840; }
.lv-url-bar {
    flex: 1; background: #2a2a2a; border-radius: 6px;
    padding: 4px 12px; font-size: 11px; color: rgba(255,255,255,.38); font-family: monospace;
}

.lv-video-overlay {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: rgba(0,0,0,.65); cursor: pointer; transition: background .3s; z-index: 2;
}
.lv-video-overlay:hover { background: rgba(0,0,0,.5); }
.lv-video-overlay.lv-gone { display: none; }
.lv-play-btn {
    width: 68px; height: 68px; border-radius: 50%;
    background: var(--lv-orange); color: #fff; font-size: 26px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 12px; transition: transform .25s;
    animation: lvPlayPulse 2.5s ease-in-out infinite;
}
.lv-video-overlay:hover .lv-play-btn { transform: scale(1.1); }
@keyframes lvPlayPulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(255,107,0,.5); }
    50%      { box-shadow: 0 0 0 18px rgba(255,107,0,0); }
}
.lv-video-bg {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #111 0%, #080808 60%, #1a0800 100%);
    display: flex; align-items: center; justify-content: center;
}

/* ── HOW IT WORKS ───────────────────────────────────────── */
.lv-step-card {
    background: var(--lv-bg); border: 1.5px solid var(--lv-border);
    border-radius: 20px; padding: 32px;
    text-align: center; height: 100%;
    transition: all .3s ease; position: relative;
    overflow: hidden;
}
.lv-step-card::before {
    content: '';
    position: absolute; inset: 0; border-radius: 20px;
    background: linear-gradient(135deg, var(--lv-orange-lt), transparent 60%);
    opacity: 0; transition: opacity .3s;
}
.lv-step-card:hover { border-color: rgba(255,107,0,.35); transform: translateY(-6px); box-shadow: 0 16px 48px var(--lv-shadow2); }
.lv-step-card:hover::before { opacity: 1; }
.lv-step-card > * { position: relative; z-index: 1; }
.lv-step-num {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--lv-orange); color: #fff;
    font-size: 1.3rem; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 6px 20px rgba(255,107,0,.35);
}
.lv-step-icon  { font-size: 2.2rem; margin-bottom: 10px; }
.lv-step-title { font-size: 1rem; font-weight: 700; color: var(--lv-text); margin-bottom: 8px; }
.lv-step-desc  { font-size: .85rem; color: var(--lv-muted); line-height: 1.65; }

/* ── REGISTER SECTION ───────────────────────────────────── */
.lv-cta-section {
    background: var(--lv-bg);
    border-top: 3px solid var(--lv-orange);
    padding: 80px 0; position: relative; overflow: hidden;
}
.lv-cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(255,107,0,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(255,107,0,0.04) 0%, transparent 50%);
    pointer-events: none;
}
.lv-cta-grid-bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(var(--lv-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--lv-border) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.4;
}

/* Form card on white bg */
.lv-form-card {
    background: var(--lv-bg);
    border: 1.5px solid var(--lv-orange);
    border-radius: 22px; padding: 38px;
    box-shadow: 0 8px 40px rgba(255,107,0,0.1), 0 2px 8px var(--lv-shadow);
}
[data-bs-theme="dark"] .lv-form-card {
    background: var(--lv-bg2);
    border-color: rgba(255,107,0,0.4);
}

.lv-form-input {
    background: var(--lv-bg2) !important;
    border: 1.5px solid var(--lv-border) !important;
    color: var(--lv-text) !important;
    border-radius: 10px !important;
    padding: 11px 16px !important;
    font-size: 14px !important;
    transition: all .25s !important;
}
.lv-form-input::placeholder { color: var(--lv-muted2) !important; }
.lv-form-input:focus {
    background: var(--lv-bg) !important;
    border-color: var(--lv-orange) !important;
    box-shadow: 0 0 0 3px rgba(255,107,0,0.1) !important;
    outline: none !important;
}
.lv-form-input option { background: var(--lv-bg2); color: var(--lv-text); }
.lv-form-label { font-size: 12px; font-weight: 700; color: var(--lv-muted); margin-bottom: 5px; }

.lv-submit-btn {
    background: var(--lv-orange) !important;
    color: #fff !important;
    font-weight: 800 !important;
    padding: 14px !important;
    font-size: 15px !important;
    border-radius: 10px !important;
    border: none !important;
    width: 100% !important;
    cursor: pointer;
    transition: all .25s;
    box-shadow: 0 4px 20px rgba(255,107,0,0.35);
}
.lv-submit-btn:hover { background: #e55f00 !important; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,107,0,0.45); }

/* Left col on CTA */
.lv-cta-perk {
    display: flex; align-items: center; gap: 10px;
    font-size: .9rem; color: var(--lv-muted);
    padding: 6px 0;
}
.lv-cta-perk i { color: var(--lv-orange); font-size: 15px; flex-shrink: 0; }

/* ── FAQ ────────────────────────────────────────────────── */
.lv-faq-item {
    border-bottom: 1px solid var(--lv-border);
    padding: 20px 0;
}
.lv-faq-q {
    font-size: 1rem; font-weight: 700; color: var(--lv-text);
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    gap: 12px; background: none; border: none; width: 100%; text-align: left;
    padding: 0;
}
.lv-faq-q i { color: var(--lv-orange); font-size: 14px; transition: transform .3s; flex-shrink: 0; }
.lv-faq-q[aria-expanded="true"] i { transform: rotate(45deg); }
.lv-faq-a { font-size: .9rem; color: var(--lv-muted); line-height: 1.7; padding-top: 12px; }

/* ── MARQUEE ────────────────────────────────────────────── */
.lv-marquee-wrap {
    background: var(--lv-bg3);
    border-top: 1px solid var(--lv-border);
    border-bottom: 1px solid var(--lv-border);
    overflow: hidden; padding: 14px 0;
}
.lv-marquee-track {
    display: flex; width: max-content;
    animation: lvMarquee 38s linear infinite;
}
.lv-marquee-track:hover { animation-play-state: paused; }
@keyframes lvMarquee { to { transform: translateX(-50%); } }
.lv-marquee-item {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 0 28px; font-size: 12px; font-weight: 700;
    color: var(--lv-muted); white-space: nowrap;
    text-transform: uppercase; letter-spacing: .05em;
}
.lv-marquee-sep {
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--lv-orange); opacity: .5; align-self: center;
}

/* ── ANIMATIONS ─────────────────────────────────────────── */
[data-aos="lv-slide-up"] {
    transform: translateY(30px); opacity: 0; transition-property: transform, opacity;
}
[data-aos="lv-slide-up"].aos-animate { transform: translateY(0); opacity: 1; }
