/* =====================================================================
   OTPSUITE — Public Landing (v2)
   Matches design refs landing-1 (desktop) / landing-2 (mobile).
   Standalone page; loaded after Bootstrap + RemixIcon.
   ===================================================================== */

:root {
    --lp-brand: #FF6D00;
    --lp-brand-2: #FF8A1E;
    --lp-brand-strong: #F25200;
    --lp-grad: linear-gradient(135deg, #FF8A1E 0%, #FF5400 100%);
    --lp-ink: #161A23;
    --lp-ink-2: #3C4453;
    --lp-muted: #717784;
    --lp-bg: #FFFFFF;
    --lp-soft: #FFF4EA;
    --lp-soft-2: #FFEAD6;
    --lp-line: #EEEFF3;
    --lp-line-2: #E3E5EC;
    --lp-radius: 18px;
    --lp-radius-lg: 26px;
    --lp-pill: 999px;
    --lp-shadow-sm: 0 2px 8px rgba(20, 24, 40, .05);
    --lp-shadow: 0 14px 34px rgba(20, 24, 40, .09);
    --lp-shadow-brand: 0 16px 34px rgba(255, 95, 0, .30);
    --lp-font: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--lp-font);
    color: var(--lp-ink);
    background: var(--lp-bg);
    margin: 0;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
.lp-container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.lp-section { padding: 76px 0; }
/* offset in-page anchor jumps so sections clear the sticky navbar (~70px) */
section[id], footer[id] { scroll-margin-top: 84px; }
.lp-eyebrow {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--lp-soft); color: var(--lp-brand-strong);
    border: 1px solid var(--lp-soft-2);
    font-size: 12.5px; font-weight: 600;
    padding: 7px 14px; border-radius: var(--lp-pill);
}
.lp-h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; letter-spacing: -.5px; margin: 0; }
.lp-sub { color: var(--lp-muted); font-size: 15px; margin: 10px 0 0; }
.lp-center { text-align: center; }
.text-grad { color: var(--lp-brand); }

/* ------------------------------------------------------------- buttons */
.lp-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-weight: 700; font-size: 14.5px; line-height: 1;
    padding: 15px 24px; border-radius: var(--lp-pill);
    border: 1.6px solid transparent; cursor: pointer; transition: transform .12s ease, filter .12s ease, box-shadow .12s ease;
}
.lp-btn-primary { background: var(--lp-grad); color: #fff; box-shadow: var(--lp-shadow-brand); }
.lp-btn-primary:hover { filter: brightness(1.03); color: #fff; }
.lp-btn-primary:active { transform: translateY(1px); }
.lp-btn-ghost { background: #fff; color: var(--lp-ink); border-color: var(--lp-line-2); }
.lp-btn-ghost:hover { border-color: var(--lp-brand); color: var(--lp-brand-strong); }
.lp-btn-white { background: #fff; color: var(--lp-brand-strong); }

/* --------------------------------------------------------- announcement */
.lp-topbar {
    background: var(--lp-soft);
    border-bottom: 1px solid var(--lp-soft-2);
    color: var(--lp-brand-strong);
    font-size: 12.5px; font-weight: 600;
    text-align: center; padding: 8px 12px;
    display: flex; align-items: center; justify-content: center; gap: 7px;
}
.lp-topbar i { font-size: 15px; }

/* --------------------------------------------------------------- navbar */
.lp-nav { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.88); backdrop-filter: saturate(160%) blur(12px); border-bottom: 1px solid transparent; transition: box-shadow .2s ease, border-color .2s ease; }
.lp-nav.is-stuck { box-shadow: var(--lp-shadow-sm); border-color: var(--lp-line); }
.lp-nav-in { display: flex; align-items: center; gap: 22px; height: 70px; }
.lp-logo img { height: 34px; width: auto; display: block; }
.lp-nav-links { display: flex; align-items: center; gap: 26px; margin: 0 auto; list-style: none; padding: 0; }
.lp-nav-links a { font-size: 14.5px; font-weight: 500; color: var(--lp-ink-2); display: inline-flex; align-items: center; gap: 5px; }
.lp-nav-links a:hover { color: var(--lp-brand-strong); }
.lp-nav-links a.is-active { color: var(--lp-brand-strong); font-weight: 600; }
.lp-nav-cta { display: flex; align-items: center; gap: 12px; }
.lp-nav-cta .lp-login { font-weight: 600; font-size: 14.5px; color: var(--lp-ink); }
.lp-nav-cta .lp-login:hover { color: var(--lp-brand-strong); }
.lp-nav-cta .lp-btn { padding: 11px 22px; }
.lp-burger { display: none; background: none; border: 0; font-size: 26px; color: var(--lp-ink); cursor: pointer; margin-left: auto; }

/* mobile drawer */
/* toggled via opacity/visibility (not display) so the panel animates in & out */
.lp-drawer { position: fixed; inset: 0; z-index: 1200; visibility: hidden; opacity: 0; transition: opacity .28s ease, visibility 0s linear .28s; }
.lp-drawer.open { visibility: visible; opacity: 1; transition: opacity .28s ease, visibility 0s linear 0s; }
.lp-drawer-bg { position: absolute; inset: 0; background: rgba(10,12,20,.45); opacity: 0; transition: opacity .28s ease; }
.lp-drawer.open .lp-drawer-bg { opacity: 1; }
.lp-drawer-panel { position: absolute; top: 0; right: 0; height: 100%; width: 78%; max-width: 320px; background: #fff; padding: 22px; box-shadow: -10px 0 30px rgba(0,0,0,.15); display: flex; flex-direction: column; gap: 6px; transform: translateX(100%); transition: transform .32s cubic-bezier(.4, 0, .2, 1); }
.lp-drawer.open .lp-drawer-panel { transform: translateX(0); }
.lp-drawer-panel a { padding: 13px 8px; font-weight: 600; color: var(--lp-ink-2); border-bottom: 1px solid var(--lp-line); }
.lp-drawer-panel .lp-btn { margin-top: 12px; }
/* the .lp-drawer-panel a rule above out-specifies .lp-btn-*; restore button look */
.lp-drawer-panel a.lp-btn { border-bottom: 0; padding: 15px 24px; }
.lp-drawer-panel a.lp-btn-primary, .lp-drawer-panel a.lp-btn-primary:hover { color: #fff; }
.lp-drawer-close { align-self: flex-end; background: none; border: 0; font-size: 26px; color: var(--lp-muted); cursor: pointer; }

/* ----------------------------------------------------------------- hero */
.lp-hero { position: relative; padding: 56px 0 70px; overflow: hidden; }
.lp-hero::before { content: ""; position: absolute; top: -120px; right: -120px; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(255,138,30,.16), transparent 65%); pointer-events: none; }
.lp-hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center; }
.lp-hero h1 { font-size: clamp(34px, 5vw, 56px); line-height: 1.06; font-weight: 800; letter-spacing: -1.4px; margin: 18px 0 0; }
.lp-hero h1 .text-grad { display: block; }
.lp-hero-p { color: var(--lp-ink-2); font-size: 16px; line-height: 1.6; margin: 16px 0 0; max-width: 520px; }
.lp-hero-chips { display: flex; flex-wrap: wrap; gap: 18px; margin: 20px 0 0; }
.lp-hero-chips span { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 600; color: var(--lp-ink-2); }
.lp-hero-chips i { color: var(--lp-brand); font-size: 17px; }
.lp-hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 0; }
.lp-social-proof { display: flex; align-items: center; gap: 14px; margin: 26px 0 0; }
.lp-avatars { display: flex; }
.lp-avatars img { width: 38px; height: 38px; border-radius: 50%; border: 2px solid #fff; object-fit: cover; margin-left: -10px; box-shadow: var(--lp-shadow-sm); }
.lp-avatars img:first-child { margin-left: 0; }
.lp-proof-text { font-size: 13px; color: var(--lp-muted); }
.lp-proof-text .lp-stars { color: #FFB020; font-size: 13px; letter-spacing: 1px; }
.lp-proof-text b { color: var(--lp-ink); }

/* hero phone + orange panel */
.lp-hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.lp-hero-panel { position: absolute; inset: 8% 0 8% 8%; background: var(--lp-grad); border-radius: 40px; box-shadow: var(--lp-shadow-brand); }
.lp-hero-panel::after { content: ""; position: absolute; inset: 0; border-radius: 40px; background: radial-gradient(120% 80% at 80% 10%, rgba(255,255,255,.22), transparent 55%); }

.lp-phone { position: relative; z-index: 3; width: 250px; height: 510px; background: #0e1320; border-radius: 42px; padding: 11px; box-shadow: 0 30px 60px rgba(0,0,0,.32); }
.lp-phone-screen { position: relative; width: 100%; height: 100%; background: #F6F7F9; border-radius: 32px; overflow: hidden; font-size: 11px; }
.lp-phone-notch { position: absolute; top: 9px; left: 50%; transform: translateX(-50%); width: 92px; height: 19px; background: #0e1320; border-radius: 12px; z-index: 5; }
.lp-ps-head { padding: 26px 14px 10px; display: flex; align-items: center; justify-content: space-between; }
.lp-ps-head .lp-ps-hi { font-size: 9px; color: #8A8F9C; }
.lp-ps-head .lp-ps-name { font-size: 12px; font-weight: 800; color: #1F2330; }
.lp-ps-bell { width: 26px; height: 26px; border-radius: 9px; background: #fff; border: 1px solid #E2E4EA; display: grid; place-items: center; color: #1F2330; }
.lp-ps-wallet { margin: 6px 12px; background: linear-gradient(135deg, #FF8A1E, #FF5400); border-radius: 16px; padding: 13px; color: #fff; }
.lp-ps-wallet small { font-size: 9px; opacity: .9; }
.lp-ps-wallet .lp-ps-amt { font-size: 19px; font-weight: 800; margin-top: 2px; }
.lp-ps-grid { margin: 12px; background: #fff; border: 1px solid #EEEFF3; border-radius: 16px; padding: 12px; }
.lp-ps-grid .lp-ps-title { font-size: 9.5px; font-weight: 800; color: #1F2330; margin-bottom: 10px; display:flex; justify-content:space-between; }
.lp-ps-grid .lp-ps-title span:last-child { color: var(--lp-brand); }
.lp-ps-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px 6px; }
.lp-ps-tile { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.lp-ps-tile i { width: 30px; height: 30px; border-radius: 10px; display: grid; place-items: center; background: #FFF3E9; color: var(--lp-brand); font-size: 15px; }
.lp-ps-tile span { font-size: 7px; color: #3C4453; }
.lp-ps-nav { position: absolute; bottom: 0; left: 0; right: 0; height: 46px; background: #fff; border-top: 1px solid #EEEFF3; display: flex; align-items: center; justify-content: space-around; color: #B9BDC7; font-size: 17px; }
.lp-ps-nav i.on { color: var(--lp-brand); }

/* floating feature cards */
.lp-float { position: absolute; z-index: 4; background: #fff; border-radius: 14px; box-shadow: var(--lp-shadow); padding: 10px 13px; display: flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 700; color: var(--lp-ink); animation: lpFloat 4.5s ease-in-out infinite; }
.lp-float i { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; font-size: 16px; }
.lp-float.f1 { top: 6%; left: -2%; }
.lp-float.f2 { top: 20%; right: -4%; animation-delay: .6s; }
.lp-float.f3 { top: 50%; left: -6%; animation-delay: 1.1s; }
.lp-float.f4 { bottom: 16%; right: -5%; animation-delay: 1.6s; }
.lp-float.f5 { bottom: 4%; left: 4%; animation-delay: 2.1s; }
@keyframes lpFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* tinted icon palette (shared by floats + offer cards) */
.ic-orange { background: #FFF3E9; color: #FF6D00; }
.ic-green  { background: #E9F8EF; color: #16A34A; }
.ic-blue   { background: #EAF1FE; color: #2563EB; }
.ic-sky    { background: #E0F2FE; color: #0EA5E9; }
.ic-pink   { background: #FCE7F3; color: #EC4899; }
.ic-purple { background: #F3E8FF; color: #7C3AED; }

/* --------------------------------------------------------- what we offer */
.lp-offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 42px; }
.lp-offer-card { background: #fff; border: 1px solid var(--lp-line); border-radius: var(--lp-radius); padding: 24px; box-shadow: var(--lp-shadow-sm); transition: transform .14s ease, box-shadow .14s ease; }
.lp-offer-card:hover { transform: translateY(-4px); box-shadow: var(--lp-shadow); }
.lp-offer-card .lp-offer-ic { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; font-size: 25px; margin-bottom: 16px; }
.lp-offer-card h3 { font-size: 17px; font-weight: 700; margin: 0 0 7px; }
.lp-offer-card p { font-size: 13.5px; color: var(--lp-muted); margin: 0; line-height: 1.55; }

/* --------------------------------------------------------- value props */
.lp-values { background: var(--lp-soft); }
.lp-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.lp-value { background: #fff; border: 1px solid var(--lp-line); border-radius: var(--lp-radius); padding: 22px; }
.lp-value .lp-value-ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; font-size: 22px; background: #FFF3E9; color: var(--lp-brand); margin-bottom: 14px; }
.lp-value h4 { font-size: 15.5px; font-weight: 700; margin: 0 0 6px; }
.lp-value p { font-size: 13px; color: var(--lp-muted); margin: 0; line-height: 1.5; }

/* --------------------------------------------------------- how it works */
.lp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 42px; }
.lp-step { position: relative; background: #fff; border: 1px solid var(--lp-line); border-radius: var(--lp-radius); padding: 26px 22px; overflow: hidden; }
.lp-step .lp-step-num { position: absolute; right: 16px; top: 6px; font-size: 64px; font-weight: 800; color: var(--lp-soft-2); line-height: 1; }
.lp-step .lp-step-ic { width: 50px; height: 50px; border-radius: 15px; background: var(--lp-grad); color: #fff; display: grid; place-items: center; font-size: 23px; margin-bottom: 16px; box-shadow: var(--lp-shadow-brand); }
.lp-step h4 { font-size: 17px; font-weight: 700; margin: 0 0 7px; position: relative; }
.lp-step p { font-size: 13.5px; color: var(--lp-muted); margin: 0; line-height: 1.55; position: relative; }

/* --------------------------------------------------------------- faq */
.lp-faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; align-items: start; }
.lp-acc-item { border: 1px solid var(--lp-line-2); border-radius: 14px; margin-bottom: 12px; overflow: hidden; background: #fff; }
.lp-acc-q { width: 100%; text-align: left; background: none; border: 0; padding: 18px 18px; font-size: 14.5px; font-weight: 600; color: var(--lp-ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.lp-acc-q i { color: var(--lp-brand); transition: transform .2s ease; flex: 0 0 auto; }
.lp-acc-item.open .lp-acc-q i { transform: rotate(45deg); }
.lp-acc-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.lp-acc-item.open .lp-acc-a { max-height: 320px; }
.lp-acc-a p { margin: 0; padding: 0 18px 18px; font-size: 13.5px; color: var(--lp-muted); line-height: 1.6; }

/* --------------------------------------------------------------- cta band */
.lp-cta { position: relative; background: var(--lp-grad); border-radius: var(--lp-radius-lg); padding: 48px; text-align: center; color: #fff; overflow: hidden; box-shadow: var(--lp-shadow-brand); }
.lp-cta::after { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 120% at 100% 0%, rgba(255,255,255,.18), transparent 50%); }
.lp-cta h2 { position: relative; font-size: clamp(24px, 3vw, 34px); font-weight: 800; margin: 0 0 10px; }
.lp-cta p { position: relative; opacity: .95; margin: 0 0 24px; font-size: 15px; }
.lp-cta .lp-btn { position: relative; }

/* --------------------------------------------------------------- footer */
.lp-footer { background: #11151F; color: rgba(255,255,255,.62); padding: 56px 0 26px; }
.lp-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; }
.lp-footer img { height: 32px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.lp-footer .lp-foot-about { font-size: 13.5px; line-height: 1.6; max-width: 300px; }
.lp-footer h5 { color: #fff; font-size: 15px; font-weight: 700; margin: 0 0 16px; }
.lp-footer ul { list-style: none; padding: 0; margin: 0; }
.lp-footer ul li { margin-bottom: 11px; }
.lp-footer ul a { font-size: 13.5px; color: rgba(255,255,255,.62); }
.lp-footer ul a:hover { color: var(--lp-brand-2); }
.lp-foot-bottom { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; }
.lp-foot-social a { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,.08); color: #fff; margin-left: 8px; font-size: 17px; }
.lp-foot-social a:hover { background: var(--lp-brand); }

/* ============================================================ RESPONSIVE */
@media (max-width: 991px) {
    .lp-nav-links, .lp-nav-cta { display: none; }
    .lp-burger { display: block; }
    .lp-hero-grid { grid-template-columns: 1fr; gap: 10px; }
    .lp-hero-visual { min-height: 440px; margin-top: 20px; }
    .lp-hero-p, .lp-hero { text-align: left; }
    .lp-offer-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-values-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-steps { grid-template-columns: 1fr; }
    .lp-faq-grid { grid-template-columns: 1fr; gap: 18px; }
    .lp-footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 575px) {
    .lp-section { padding: 54px 0; }
    .lp-offer-grid { grid-template-columns: 1fr; }
    .lp-values-grid { grid-template-columns: 1fr; }
    .lp-footer-grid { grid-template-columns: 1fr; }
    .lp-foot-bottom { flex-direction: column; }
    .lp-float.f3, .lp-float.f4 { display: none; }
    .lp-cta { padding: 34px 22px; }
}
