/*
 * Shared UI styles for admin & user panels and landing.
 * Externalized for CodeCanyon compliance (no inline CSS / JS in Blade).
 */

/* Typography ------------------------------------------------------- */
body { font-family: 'Inter', system-ui, sans-serif; }
.font-display { font-family: 'Inter Tight', 'Inter', sans-serif; }

/* Alpine cloak ----------------------------------------------------- */
[x-cloak] { display: none !important; }

/* Sidebar active nav ---------------------------------------------- */
.nav-active { background: linear-gradient(to right, rgba(99, 102, 241, .12), rgba(139, 92, 246, .06)); }

/* Thin scrollbar --------------------------------------------------- */
.scroll-thin::-webkit-scrollbar { width: 6px; }
.scroll-thin::-webkit-scrollbar-thumb { background: rgba(100, 116, 139, .3); border-radius: 9999px; }

/* Dot grid patterns (landing / auth) ------------------------------ */
.lp-dots        { background-image: radial-gradient(circle at 1px 1px, rgb(99 102 241 / 0.15) 1px, transparent 0); background-size: 32px 32px; }
.lp-dots-soft   { background-image: radial-gradient(circle at 1px 1px, rgb(99 102 241 / 0.12) 1px, transparent 0); background-size: 32px 32px; }
.lp-dots-white  { background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0); background-size: 24px 24px; }
.lp-dots-white-lg { background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0); background-size: 28px 28px; }
.lp-dots-auth   { background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0); background-size: 22px 22px; }

/* Gradient text (404 / 500) --------------------------------------- */
.lp-gradient-text {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Mockup mini bar-chart (hero) ------------------------------------ */
.lp-chart { height: 80px; }
.lp-bar-45 { height: 45%; }
.lp-bar-55 { height: 55%; }
.lp-bar-60 { height: 60%; }
.lp-bar-70 { height: 70%; }
.lp-bar-75 { height: 75%; }
.lp-bar-85 { height: 85%; }
.lp-bar-95 { height: 95%; }

/* Progress bar width (data-driven via --pct) ---------------------- */
.ui-progress { width: var(--pct, 0%); }

/* Flash toast container ------------------------------------------- */
.sf-toasts {
    position: fixed; top: 18px; right: 18px; z-index: 99999;
    display: flex; flex-direction: column; gap: 10px;
}
.sf-toast {
    position: relative; overflow: hidden;
    background: #fff; color: #0f172a;
    padding: 14px 16px 14px 18px; border-radius: 14px;
    box-shadow: 0 10px 30px rgba(2, 6, 23, .18);
    min-width: 300px; max-width: 400px; font-size: 14px;
    display: flex; align-items: center; gap: 12px;
    border: 1px solid rgba(148, 163, 184, .16);
}
.sf-toast .sf-accent { position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--accent, #6366f1); }
.sf-toast .sf-dot-wrap { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 8px; background: var(--accent-soft, rgba(99, 102, 241, .12)); flex-shrink: 0; }
.sf-toast .sf-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent, #6366f1); }
.sf-toast .sf-msg { flex: 1; font-weight: 500; line-height: 1.35; }
.sf-toast .sf-close { cursor: pointer; color: #94a3b8; font-size: 18px; line-height: 1; flex-shrink: 0; }

/* Flash toast animation ------------------------------------------- */
@keyframes sfIn  { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes sfOut { to { opacity: 0; transform: translateX(20px); } }
.sf-toast { animation: sfIn .35s cubic-bezier(.21, 1.02, .73, 1) both, sfOut .4s ease-in 4.5s forwards; }
.sf-toast:hover { animation-play-state: paused; }
@media (prefers-color-scheme: dark) {
    .sf-toast { background: #141a29; color: #e2e8f0; }
    .sf-toast .sf-close { color: #94a3b8; }
}

/* =================================================================
   PREMIUM LANDING PAGE  —  escrow / deal platform identity
   Namespace: .lp-*   (self-contained; independent of Tailwind build)
   Palette: indigo/violet (trust) + emerald (secure/money)
================================================================= */
:root {
    --lp-ink: #0b1220;
    --lp-body: #475569;
    --lp-muted: #94a3b8;
    --lp-line: #e6e8ef;
    --lp-bg: #ffffff;
    --lp-bg-soft: #f7f8fc;
    --lp-indigo: #6366f1;
    --lp-indigo-d: #4f46e5;
    --lp-violet: #7c3aed;
    --lp-emerald: #10b981;
    --lp-emerald-d: #059669;
    --lp-grad: linear-gradient(135deg, #6366f1 0%, #7c3aed 55%, #4f46e5 100%);
    --lp-grad-em: linear-gradient(135deg, #10b981, #059669);
    --lp-shadow: 0 22px 60px -20px rgba(79, 70, 229, .28);
    --lp-shadow-sm: 0 8px 24px -12px rgba(15, 23, 42, .18);
    --lp-radius: 22px;
}

.lp { color: var(--lp-body); background: var(--lp-bg); overflow-x: hidden; }
.lp ::selection { background: rgba(99, 102, 241, .18); }

/* Layout ----------------------------------------------------------- */
.lp-wrap { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.lp-section { position: relative; padding: 96px 0; }
.lp-section--tight { padding: 64px 0; }
.lp-section--soft { background: var(--lp-bg-soft); }
.lp-center { text-align: center; }

.lp-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px; border-radius: 999px;
    font-size: 12.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
    color: var(--lp-indigo-d); background: rgba(99, 102, 241, .08);
    border: 1px solid rgba(99, 102, 241, .16);
}
.lp-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lp-emerald); box-shadow: 0 0 0 4px rgba(16,185,129,.15); }

.lp-h1 { font-family: 'Inter Tight','Inter',sans-serif; font-weight: 800; font-size: clamp(2.3rem, 5.2vw, 4rem); line-height: 1.04; letter-spacing: -.025em; color: var(--lp-ink); }
.lp-h2 { font-family: 'Inter Tight','Inter',sans-serif; font-weight: 800; font-size: clamp(1.8rem, 3.6vw, 2.7rem); line-height: 1.1; letter-spacing: -.02em; color: var(--lp-ink); }
.lp-h3 { font-family: 'Inter Tight','Inter',sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--lp-ink); letter-spacing: -.01em; }
.lp-lead { font-size: clamp(1.02rem, 1.5vw, 1.22rem); line-height: 1.65; color: var(--lp-body); }
.lp-grad-text { background: var(--lp-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lp-grad-em-text { background: var(--lp-grad-em); -webkit-background-clip: text; background-clip: text; color: transparent; }

.lp-head { max-width: 660px; margin: 0 auto 56px; }
.lp-head .lp-lead { margin-top: 16px; }

/* Buttons ---------------------------------------------------------- */
.lp-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 24px; border-radius: 14px; font-weight: 600; font-size: 15px;
    cursor: pointer; border: 1px solid transparent; transition: transform .2s, box-shadow .2s, background .2s, color .2s;
    text-decoration: none; white-space: nowrap;
}
.lp-btn-primary { color: #fff; background: var(--lp-grad); box-shadow: 0 12px 30px -10px rgba(79,70,229,.55); }
.lp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(79,70,229,.65); }
.lp-btn-ghost { color: var(--lp-ink); background: #fff; border-color: var(--lp-line); box-shadow: var(--lp-shadow-sm); }
.lp-btn-ghost:hover { transform: translateY(-2px); border-color: #cfd3e2; }
.lp-btn-light { color: var(--lp-indigo-d); background: #fff; }
.lp-btn-light:hover { transform: translateY(-2px); }
.lp-btn-outline-light { color: #fff; border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.06); }
.lp-btn-outline-light:hover { background: rgba(255,255,255,.14); }
.lp-btn-lg { padding: 15px 28px; font-size: 16px; }

/* Aurora / mesh background ---------------------------------------- */
.lp-aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.lp-blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; }
.lp-blob-1 { width: 520px; height: 520px; top: -160px; left: -120px; background: radial-gradient(circle, rgba(124,58,237,.5), transparent 70%); }
.lp-blob-2 { width: 460px; height: 460px; top: -80px; right: -120px; background: radial-gradient(circle, rgba(99,102,241,.45), transparent 70%); }
.lp-blob-3 { width: 400px; height: 400px; bottom: -160px; left: 30%; background: radial-gradient(circle, rgba(16,185,129,.32), transparent 70%); }
.lp-grid-bg { position: absolute; inset: 0; z-index: 0; background-image: linear-gradient(rgba(99,102,241,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(99,102,241,.06) 1px, transparent 1px); background-size: 46px 46px; mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 75%); }

/* Header ----------------------------------------------------------- */
.lp-nav { position: sticky; top: 0; z-index: 50; transition: background .3s, box-shadow .3s, border-color .3s; border-bottom: 1px solid transparent; }
.lp-nav.is-scrolled { background: rgba(255,255,255,.82); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-color: var(--lp-line); box-shadow: 0 6px 30px -18px rgba(15,23,42,.25); }
.lp-nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.lp-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.lp-brand-mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; background: var(--lp-grad); box-shadow: 0 10px 22px -8px rgba(79,70,229,.6); color: #fff; }
.lp-brand-name { font-family: 'Inter Tight','Inter',sans-serif; font-weight: 800; font-size: 1.18rem; color: var(--lp-ink); letter-spacing: -.02em; }
.lp-nav-links { display: none; align-items: center; gap: 34px; }
.lp-nav-links a { color: var(--lp-body); font-size: 14.5px; font-weight: 500; text-decoration: none; transition: color .2s; }
.lp-nav-links a:hover { color: var(--lp-indigo-d); }
.lp-nav-cta { display: flex; align-items: center; gap: 12px; }
.lp-nav-signin { display: none; color: var(--lp-ink); font-weight: 600; font-size: 14.5px; text-decoration: none; }
.lp-burger { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--lp-line); background: #fff; color: var(--lp-ink); cursor: pointer; }
.lp-mobile { border-top: 1px solid var(--lp-line); background: #fff; padding: 16px 0 22px; }
.lp-mobile a { display: block; padding: 11px 0; color: var(--lp-ink); font-weight: 500; text-decoration: none; border-bottom: 1px solid var(--lp-bg-soft); }
@media (min-width: 900px) { .lp-nav-links { display: flex; } .lp-nav-signin { display: inline; } .lp-burger { display: none; } }

/* Hero ------------------------------------------------------------- */
.lp-hero { position: relative; padding: 74px 0 90px; }
.lp-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 56px; align-items: center; }
.lp-hero-copy .lp-h1 { margin: 20px 0 22px; }
.lp-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.lp-hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 26px; margin-top: 30px; }
.lp-hero-trust span { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--lp-body); font-weight: 500; }
.lp-hero-trust svg { color: var(--lp-emerald); }
@media (min-width: 980px) { .lp-hero-grid { grid-template-columns: 1.05fr .95fr; } }

/* Hero animated escrow flow --------------------------------------- */
.lp-flow { position: relative; padding: 26px; border-radius: 26px; background: linear-gradient(180deg, #ffffff, #fbfbff); border: 1px solid var(--lp-line); box-shadow: var(--lp-shadow); }
.lp-flow-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.lp-flow-title { font-weight: 700; color: var(--lp-ink); font-size: 14.5px; }
.lp-flow-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 700; color: var(--lp-emerald-d); background: rgba(16,185,129,.1); padding: 5px 10px; border-radius: 999px; }
.lp-flow-badge .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--lp-emerald); animation: lpPulse 1.6s infinite; }
.lp-flow-steps { display: flex; flex-direction: column; gap: 12px; }
.lp-step { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: 16px; background: #fff; border: 1px solid var(--lp-line); opacity: .45; transform: translateY(4px); animation: lpStep 6s infinite; }
.lp-step .ic { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0; color: #fff; background: var(--lp-grad); }
.lp-step .ic.em { background: var(--lp-grad-em); }
.lp-step .tx b { display: block; color: var(--lp-ink); font-size: 14px; font-weight: 700; }
.lp-step .tx small { color: var(--lp-muted); font-size: 12px; }
.lp-step .chk { margin-left: auto; color: var(--lp-emerald); opacity: 0; transition: opacity .3s; }
.lp-step:nth-child(1) { animation-delay: 0s; } .lp-step:nth-child(1) .chk { animation: lpChk 6s infinite 0s; }
.lp-step:nth-child(2) { animation-delay: 1.2s; } .lp-step:nth-child(2) .chk { animation: lpChk 6s infinite 1.2s; }
.lp-step:nth-child(3) { animation-delay: 2.4s; } .lp-step:nth-child(3) .chk { animation: lpChk 6s infinite 2.4s; }
.lp-step:nth-child(4) { animation-delay: 3.6s; } .lp-step:nth-child(4) .chk { animation: lpChk 6s infinite 3.6s; }
.lp-flow-foot { margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--lp-line); display: flex; align-items: center; justify-content: space-between; }
.lp-flow-foot .amt { font-family: 'Inter Tight'; font-weight: 800; color: var(--lp-ink); font-size: 1.15rem; }
.lp-flow-foot .lbl { font-size: 11.5px; color: var(--lp-muted); }
.lp-flow-chip { position: absolute; padding: 10px 14px; border-radius: 14px; background: #fff; box-shadow: var(--lp-shadow-sm); border: 1px solid var(--lp-line); font-size: 12.5px; font-weight: 600; color: var(--lp-ink); display: flex; align-items: center; gap: 8px; }
.lp-flow-chip.a { top: -18px; right: 24px; animation: lpFloat 4s ease-in-out infinite; }
.lp-flow-chip.b { bottom: -18px; left: 18px; animation: lpFloat 4.6s ease-in-out infinite .5s; }
.lp-flow-chip svg { color: var(--lp-emerald); }

@keyframes lpPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,.5); } 70% { box-shadow: 0 0 0 7px rgba(16,185,129,0); } }
@keyframes lpFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes lpStep { 0%,12% { opacity: .45; transform: translateY(4px); } 18%,42% { opacity: 1; transform: translateY(0); box-shadow: 0 12px 28px -14px rgba(79,70,229,.5); } 55%,100% { opacity: .55; transform: translateY(0); box-shadow: none; } }
@keyframes lpChk { 0%,15% { opacity: 0; } 25%,100% { opacity: 1; } }

/* Logos / trust strip --------------------------------------------- */
.lp-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 20px; }
.lp-logo-pill { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 12px; background: #fff; border: 1px solid var(--lp-line); font-weight: 600; font-size: 13.5px; color: var(--lp-body); box-shadow: var(--lp-shadow-sm); }
.lp-logo-pill img { height: 22px; width: auto; }

/* Stats ------------------------------------------------------------ */
.lp-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.lp-stat { text-align: center; padding: 26px 18px; border-radius: 20px; background: #fff; border: 1px solid var(--lp-line); box-shadow: var(--lp-shadow-sm); }
.lp-stat .num { font-family: 'Inter Tight'; font-weight: 800; font-size: clamp(1.9rem, 3.4vw, 2.6rem); line-height: 1; letter-spacing: -.02em; }
.lp-stat .lbl { margin-top: 8px; font-size: 13.5px; color: var(--lp-muted); font-weight: 500; }
@media (min-width: 800px) { .lp-stats { grid-template-columns: repeat(4, 1fr); } }

/* How it works (timeline) ----------------------------------------- */
.lp-steps { display: grid; grid-template-columns: 1fr; gap: 22px; }
.lp-hstep { position: relative; padding: 28px 24px; border-radius: var(--lp-radius); background: #fff; border: 1px solid var(--lp-line); box-shadow: var(--lp-shadow-sm); transition: transform .25s, box-shadow .25s; }
.lp-hstep:hover { transform: translateY(-4px); box-shadow: var(--lp-shadow); }
.lp-hstep .n { position: absolute; top: 20px; right: 22px; font-family: 'Inter Tight'; font-weight: 800; font-size: 2.4rem; color: rgba(99,102,241,.12); line-height: 1; }
.lp-hstep .ic { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 15px; background: linear-gradient(135deg, rgba(99,102,241,.12), rgba(124,58,237,.12)); color: var(--lp-indigo-d); margin-bottom: 18px; }
.lp-hstep h3 { margin-bottom: 8px; }
.lp-hstep p { font-size: 14.5px; line-height: 1.6; }
@media (min-width: 720px) { .lp-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .lp-steps.cols-5 { grid-template-columns: repeat(5, 1fr); } .lp-steps.cols-4 { grid-template-columns: repeat(4, 1fr); } }

/* Features (bento) ------------------------------------------------- */
.lp-bento { display: grid; grid-template-columns: 1fr; gap: 20px; }
.lp-feat { padding: 28px 24px; border-radius: var(--lp-radius); background: #fff; border: 1px solid var(--lp-line); box-shadow: var(--lp-shadow-sm); transition: transform .25s, box-shadow .25s, border-color .25s; }
.lp-feat:hover { transform: translateY(-5px); box-shadow: var(--lp-shadow); border-color: rgba(99,102,241,.3); }
.lp-feat .ic { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 14px; color: #fff; background: var(--lp-grad); margin-bottom: 18px; box-shadow: 0 12px 24px -10px rgba(79,70,229,.55); }
.lp-feat .ic.em { background: var(--lp-grad-em); box-shadow: 0 12px 24px -10px rgba(16,185,129,.5); }
.lp-feat h3 { margin-bottom: 9px; }
.lp-feat p { font-size: 14.5px; line-height: 1.6; }
@media (min-width: 700px) { .lp-bento { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .lp-bento.cols-3 { grid-template-columns: repeat(3, 1fr); } .lp-bento.cols-4 { grid-template-columns: repeat(4, 1fr); } }

/* Security split --------------------------------------------------- */
.lp-split { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center; }
.lp-check-list { display: flex; flex-direction: column; gap: 16px; margin-top: 26px; }
.lp-check { display: flex; gap: 14px; align-items: flex-start; }
.lp-check .ic { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 9px; background: rgba(16,185,129,.12); color: var(--lp-emerald-d); flex-shrink: 0; margin-top: 2px; }
.lp-check b { color: var(--lp-ink); display: block; font-size: 15px; }
.lp-check span { font-size: 14px; }
.lp-shield { position: relative; display: grid; place-items: center; padding: 50px; border-radius: 28px; background: var(--lp-grad); box-shadow: var(--lp-shadow); overflow: hidden; }
.lp-shield::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.18) 1px, transparent 0); background-size: 22px 22px; }
.lp-shield svg { position: relative; color: #fff; width: 120px; height: 120px; filter: drop-shadow(0 12px 30px rgba(0,0,0,.3)); }
@media (min-width: 900px) { .lp-split { grid-template-columns: 1fr 1fr; } }

/* Pricing ---------------------------------------------------------- */
.lp-price-wrap { display: grid; grid-template-columns: 1fr; gap: 22px; max-width: 860px; margin: 0 auto; }
.lp-price { padding: 32px 28px; border-radius: var(--lp-radius); background: #fff; border: 1px solid var(--lp-line); box-shadow: var(--lp-shadow-sm); }
.lp-price.featured { border: 1.5px solid transparent; background: linear-gradient(#fff,#fff) padding-box, var(--lp-grad) border-box; box-shadow: var(--lp-shadow); }
.lp-price h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: .05em; color: var(--lp-muted); }
.lp-price .amt { font-family: 'Inter Tight'; font-weight: 800; font-size: 2.6rem; color: var(--lp-ink); margin: 10px 0 4px; letter-spacing: -.02em; }
.lp-price .amt small { font-size: 1rem; font-weight: 600; color: var(--lp-muted); }
.lp-price ul { list-style: none; padding: 0; margin: 22px 0; display: flex; flex-direction: column; gap: 12px; }
.lp-price li { display: flex; gap: 10px; align-items: center; font-size: 14.5px; }
.lp-price li svg { color: var(--lp-emerald); flex-shrink: 0; }
@media (min-width: 760px) { .lp-price-wrap { grid-template-columns: 1fr 1fr; } }

/* Testimonials ----------------------------------------------------- */
.lp-quotes { display: grid; grid-template-columns: 1fr; gap: 20px; }
.lp-quote { padding: 26px 24px; border-radius: var(--lp-radius); background: #fff; border: 1px solid var(--lp-line); box-shadow: var(--lp-shadow-sm); }
.lp-quote .stars { color: #f59e0b; letter-spacing: 2px; margin-bottom: 12px; }
.lp-quote p { color: var(--lp-ink); font-size: 15px; line-height: 1.65; }
.lp-quote .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.lp-quote .av { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; color: #fff; font-weight: 700; background: var(--lp-grad); object-fit: cover; }
.lp-quote .who b { display: block; color: var(--lp-ink); font-size: 14px; }
.lp-quote .who small { color: var(--lp-muted); font-size: 12.5px; }
@media (min-width: 720px) { .lp-quotes { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .lp-quotes { grid-template-columns: repeat(3, 1fr); } }

/* FAQ -------------------------------------------------------------- */
.lp-faq { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.lp-faq-item { border: 1px solid var(--lp-line); border-radius: 16px; background: #fff; overflow: hidden; }
.lp-faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; background: none; border: 0; cursor: pointer; text-align: left; font-weight: 600; color: var(--lp-ink); font-size: 15.5px; }
.lp-faq-q .pm { flex-shrink: 0; transition: transform .3s; color: var(--lp-indigo); }
.lp-faq-item.open .pm { transform: rotate(45deg); }
.lp-faq-a { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.lp-faq-item.open .lp-faq-a { padding: 0 22px 22px; max-height: 400px; }
.lp-faq-a p { font-size: 14.5px; line-height: 1.65; }

/* CTA band --------------------------------------------------------- */
.lp-cta { position: relative; overflow: hidden; border-radius: 30px; padding: 66px 34px; text-align: center; background: var(--lp-grad); box-shadow: var(--lp-shadow); }
.lp-cta::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.14) 1px, transparent 0); background-size: 26px 26px; }
.lp-cta > * { position: relative; z-index: 1; }
.lp-cta h2 { color: #fff; font-family: 'Inter Tight'; font-weight: 800; font-size: clamp(1.8rem, 3.4vw, 2.6rem); letter-spacing: -.02em; }
.lp-cta p { color: rgba(255,255,255,.9); margin: 14px auto 0; max-width: 540px; font-size: 1.05rem; }
.lp-cta-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 30px; }

/* Footer ----------------------------------------------------------- */
.lp-footer { background: #0b1220; color: #94a3b8; padding: 66px 0 30px; }
.lp-footer .lp-brand-name { color: #fff; }
.lp-foot-grid { display: grid; grid-template-columns: 1fr; gap: 34px; }
.lp-foot-about { max-width: 320px; font-size: 14px; line-height: 1.7; margin-top: 16px; }
.lp-foot-col h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.lp-foot-col a { display: block; color: #94a3b8; text-decoration: none; padding: 6px 0; font-size: 14px; transition: color .2s; }
.lp-foot-col a:hover { color: #fff; }
.lp-foot-bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; font-size: 13px; }
@media (min-width: 780px) { .lp-foot-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

/* Scroll reveal ---------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); transition-delay: var(--d, 0ms); will-change: opacity, transform; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .lp-step, .lp-step .chk, .lp-flow-chip, .lp-flow-badge .pulse { animation: none !important; }
    .lp-step { opacity: 1; }
}

/* Helpers (avoid inline styles in Blade) --------------------------- */
.lp-mt-2 { margin-top: 16px; }
.lp-mt-4 { margin-top: 28px; }
.lp-w-full { width: 100%; }
.lp-btn-sm { padding: 10px 18px; }
.lp-logo-img { height: 38px; width: auto; max-width: 170px; object-fit: contain; }
.lp-logo-img--foot { height: 34px; max-width: 160px; filter: brightness(0) invert(1); }
.lp-media { width: 100%; border-radius: 24px; box-shadow: var(--lp-shadow); }
.lp-mobile-cta { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.lp-logos-label { color: var(--lp-muted); font-size: 13px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 24px; }
.lp-ic-em { color: var(--lp-emerald); }
.lp-price-note { font-size: 14px; color: var(--lp-body); }
.lp-price-hl { color: var(--lp-indigo-d); }
.lp-secure-note { display: inline-flex; align-items: center; gap: 8px; }
.lp-head .lp-h2 { margin-top: 16px; }
.lp-title-mt { margin-top: 16px; }

/* Header responsive fix (no horizontal overflow on mobile) --------- */
@media (max-width: 899px) {
    .lp-nav-cta .lp-btn-primary { display: none; }
    .lp-nav-inner { height: 64px; }
}
html { overflow-x: hidden; }

/* Gallery ---------------------------------------------------------- */
.lp-gallery { display: grid; grid-template-columns: 1fr; gap: 16px; }
.lp-gallery-item { position: relative; border-radius: 18px; overflow: hidden; border: 1px solid var(--lp-line); background: var(--lp-bg-soft); aspect-ratio: 4/3; box-shadow: var(--lp-shadow-sm); }
.lp-gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.lp-gallery-item:hover img { transform: scale(1.05); }
.lp-gallery-ph { display: grid; place-items: center; width: 100%; height: 100%; color: #c7cbe0; background: linear-gradient(135deg, rgba(99,102,241,.08), rgba(124,58,237,.08)); }
.lp-gallery-item img { cursor: zoom-in; }

/* Lightbox (gallery) ----------------------------------------------- */
.lp-lightbox { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 24px; background: rgba(11,18,32,.85); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.lp-lightbox[hidden] { display: none; }
.lp-lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 14px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lp-lightbox-close { position: absolute; top: 20px; right: 24px; width: 44px; height: 44px; border-radius: 12px; border: 0; background: rgba(255,255,255,.14); color: #fff; font-size: 24px; line-height: 1; cursor: pointer; transition: background .2s; }
.lp-lightbox-close:hover { background: rgba(255,255,255,.26); }
@media (min-width: 640px) { .lp-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .lp-gallery.cols-3 { grid-template-columns: repeat(3, 1fr); } .lp-gallery.cols-4 { grid-template-columns: repeat(4, 1fr); } }

/* Blog ------------------------------------------------------------- */
.lp-blog { display: grid; grid-template-columns: 1fr; gap: 24px; }
.lp-blog-card { display: flex; flex-direction: column; border-radius: var(--lp-radius); overflow: hidden; background: #fff; border: 1px solid var(--lp-line); box-shadow: var(--lp-shadow-sm); transition: transform .25s, box-shadow .25s; text-decoration: none; }
.lp-blog-card:hover { transform: translateY(-5px); box-shadow: var(--lp-shadow); }
.lp-blog-thumb { aspect-ratio: 16/9; overflow: hidden; background: linear-gradient(135deg, rgba(99,102,241,.12), rgba(124,58,237,.12)); }
.lp-blog-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.lp-blog-thumb-ph { display: grid; place-items: center; width: 100%; height: 100%; color: #c7cbe0; }
.lp-blog-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.lp-blog-date { font-size: 12px; color: var(--lp-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.lp-blog-body h3 { font-family: 'Inter Tight'; font-weight: 700; color: var(--lp-ink); font-size: 1.15rem; margin: 10px 0; line-height: 1.3; }
.lp-blog-body p { font-size: 14.5px; line-height: 1.6; flex: 1; }
.lp-blog-more { margin-top: 16px; font-weight: 600; color: var(--lp-indigo-d); font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
@media (min-width: 680px) { .lp-blog { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .lp-blog { grid-template-columns: repeat(3, 1fr); } }

/* Blog detail article --------------------------------------------- */
.lp-article { max-width: 760px; margin: 0 auto; }
.lp-article-hero { aspect-ratio: 16/8; border-radius: 22px; overflow: hidden; margin: 24px 0 34px; box-shadow: var(--lp-shadow); background: linear-gradient(135deg, rgba(99,102,241,.12), rgba(124,58,237,.12)); }
.lp-article-hero img { width: 100%; height: 100%; object-fit: cover; }
.lp-article-body { font-size: 1.05rem; line-height: 1.8; color: var(--lp-body); }
.lp-article-body p { margin: 0 0 18px; }
.lp-back { display: inline-flex; align-items: center; gap: 8px; color: var(--lp-indigo-d); font-weight: 600; text-decoration: none; font-size: 14.5px; }

/* Contact ---------------------------------------------------------- */
.lp-contact { display: grid; grid-template-columns: 1fr; gap: 18px; max-width: 820px; margin: 0 auto; }
.lp-contact-card { display: flex; align-items: center; gap: 16px; padding: 22px 24px; border-radius: var(--lp-radius); background: #fff; border: 1px solid var(--lp-line); box-shadow: var(--lp-shadow-sm); text-decoration: none; transition: transform .2s, box-shadow .2s; }
.lp-contact-card:hover { transform: translateY(-3px); box-shadow: var(--lp-shadow); }
.lp-contact-card .ic { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; color: #fff; background: var(--lp-grad); flex-shrink: 0; }
.lp-contact-card b { color: var(--lp-ink); display: block; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; }
.lp-contact-card span { color: var(--lp-body); font-size: 15px; }
@media (min-width: 700px) { .lp-contact { grid-template-columns: repeat(3, 1fr); } }

/* Policy pages ----------------------------------------------------- */
.lp-doc { max-width: 800px; margin: 0 auto; }
.lp-doc h2 { font-family: 'Inter Tight'; font-weight: 700; color: var(--lp-ink); font-size: 1.3rem; margin: 34px 0 12px; }
.lp-doc p { line-height: 1.75; margin: 0 0 14px; }
