﻿/* ============================================================= */
/* RestaurantHub POS â€” Landing / Presell Page Styles              */
/* Uses the same design tokens as setup.css                       */
/* ============================================================= */

:root {
    --bg:         #0f1117;
    --surface:    #1a1d27;
    --surface2:   #242836;
    --border:     #2e3347;
    --text:       #e4e6f0;
    --muted:      #8b8fa3;
    --accent:     #6366f1;
    --accent-hover:#818cf8;
    --success:    #22c55e;
    --warning:    #f59e0b;
    --danger:     #ef4444;
    --info:       #3b82f6;
    --radius:     10px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

/* ---------- Container ---------- */
.lp-container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ---------- Navigation ---------- */
.lp-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(15,17,23,.55); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(46,51,71,.35); }
.lp-nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.lp-brand { font-size: 18px; font-weight: 800; color: var(--text); }
.lp-brand span { color: var(--accent); }
.lp-nav-links { display: flex; align-items: center; gap: 28px; }
.lp-nav-links a { font-size: 14px; font-weight: 500; color: var(--muted); transition: color .15s; }
.lp-nav-links a:hover { color: var(--text); }

/* ---------- Hamburger ---------- */
.lp-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; }
.lp-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .2s; }

/* ---------- Mobile Nav Popup ---------- */
.lp-mnav-overlay { display: none; position: fixed; inset: 0; z-index: 300; background: rgba(0,0,0,.6); backdrop-filter: blur(6px); }
.lp-mnav-overlay.open { display: block; }
.lp-mnav-panel { position: absolute; top: 0; right: 0; width: 300px; max-width: 85vw; height: 100%; background: var(--surface); border-left: 1px solid var(--border); padding: 24px; display: flex; flex-direction: column; animation: mnavSlideIn .25s ease; }
.lp-mnav-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.lp-mnav-close { background: none; border: none; color: var(--muted); font-size: 28px; cursor: pointer; padding: 4px 8px; border-radius: 6px; transition: all .15s; }
.lp-mnav-close:hover { color: var(--text); background: var(--surface2); }
.lp-mnav-links { display: flex; flex-direction: column; gap: 4px; margin-bottom: 28px; }
.lp-mnav-links a { display: block; padding: 12px 16px; border-radius: 10px; font-size: 15px; font-weight: 500; color: var(--text); transition: background .15s; animation: mnavLinkIn .3s ease backwards; }
.lp-mnav-links a:nth-child(1) { animation-delay: .05s; }
.lp-mnav-links a:nth-child(2) { animation-delay: .1s; }
.lp-mnav-links a:nth-child(3) { animation-delay: .15s; }
.lp-mnav-links a:hover { background: var(--surface2); }
.lp-mnav-actions { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.lp-mnav-actions .lp-btn { animation: mnavBtnIn .3s ease backwards; }
.lp-mnav-actions .lp-btn:nth-child(1) { animation-delay: .2s; }
.lp-mnav-actions .lp-btn:nth-child(2) { animation-delay: .25s; }
@keyframes mnavSlideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
@keyframes mnavLinkIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes mnavBtnIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Buttons ---------- */
.lp-btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 10px 24px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; border: 1px solid transparent; transition: all .2s; text-decoration: none; }
.lp-btn-primary { position: relative; background: #000; color: #fff; border: none; z-index: 0; }
.lp-btn-primary::before { content: ''; position: absolute; inset: -2px; border-radius: 10px; padding: 2px; background: conic-gradient(from var(--border-angle,0deg), #6366f1, #a855f7, #ec4899, #f59e0b, #22c55e, #3b82f6, #6366f1); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; animation: lpBorderSpin 3s linear infinite; z-index: -1; }
.lp-btn-primary:hover { background: #111; color: #fff; }
.lp-btn-primary:hover::before { animation-duration: 1.5s; }
@property --border-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes lpBorderSpin { to { --border-angle: 360deg; } }
.lp-btn-outline { background: transparent; border-color: var(--border); color: var(--text); }
.lp-btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.lp-btn-ghost { background: transparent; color: var(--muted); }
.lp-btn-ghost:hover { color: var(--text); }
.lp-btn-sm { padding: 7px 16px; font-size: 13px; }
.lp-btn-lg { padding: 14px 32px; font-size: 15px; }
.lp-btn-block { display: flex; width: 100%; }

/* ---------- Hero ---------- */
.lp-hero { position: relative; overflow: visible; padding: 160px 0 100px; text-align: center; }
.lp-hero-bg { position: absolute; top: -64px; left: 0; right: 0; bottom: -180px; pointer-events: none; -webkit-mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 80%, transparent); mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 80%, transparent); }
.lp-blob { will-change: transform; }
.lp-b1 { animation: blobA 22s ease-in-out infinite alternate; }
.lp-b2 { animation: blobB 26s ease-in-out infinite alternate; }
.lp-b3 { animation: blobC 24s ease-in-out infinite alternate; }
.lp-b4 { animation: blobD 28s ease-in-out infinite alternate; }
.lp-b5 { animation: blobE 20s ease-in-out infinite alternate; }
.lp-b6 { animation: blobF 30s ease-in-out infinite alternate; }
.lp-b7 { animation: blobG 32s ease-in-out infinite alternate; }
.lp-hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.lp-hero-badge { display: inline-block; padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; color: var(--warning); background: rgba(245,158,11,.1); border: 1px solid rgba(245,158,11,.2); margin-bottom: 24px; }
.lp-hero h1 { font-size: 52px; font-weight: 800; line-height: 1.15; margin-bottom: 20px; letter-spacing: -1px; }
.lp-hero-sub { font-size: 18px; color: var(--muted); max-width: 600px; margin: 0 auto 36px; line-height: 1.7; }
.lp-hero-cta { display: flex; gap: 12px; justify-content: center; margin-bottom: 60px; }
.lp-hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 560px; margin: 0 auto; padding-top: 40px; border-top: 1px solid var(--border); }
.lp-hero-stat { text-align: center; }
.lp-hero-stat-val { font-size: 24px; font-weight: 800; color: var(--accent); }
.lp-hero-stat-lbl { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; margin-top: 4px; }

@keyframes blobA { 0%{transform:translate(0,0) scale(1)} 50%{transform:translate(60px,40px) scale(1.15)} 100%{transform:translate(-40px,60px) scale(.9)} }
@keyframes blobB { 0%{transform:translate(0,0) scale(1) rotate(0deg)} 50%{transform:translate(-50px,30px) scale(1.1) rotate(15deg)} 100%{transform:translate(40px,-40px) scale(.95) rotate(-10deg)} }
@keyframes blobC { 0%{transform:translate(0,0) scale(1)} 50%{transform:translate(30px,-50px) scale(1.2)} 100%{transform:translate(-60px,20px) scale(.85)} }
@keyframes blobD { 0%{transform:translate(0,0) scale(1) rotate(0deg)} 50%{transform:translate(50px,50px) scale(1.05) rotate(-12deg)} 100%{transform:translate(-30px,-30px) scale(1.1) rotate(8deg)} }
@keyframes blobE { 0%{transform:translate(0,0) scale(1)} 50%{transform:translate(-40px,50px) scale(1.18)} 100%{transform:translate(50px,-20px) scale(.92)} }
@keyframes blobF { 0%{transform:translate(0,0) scale(1) rotate(0deg)} 50%{transform:translate(40px,-30px) scale(.9) rotate(10deg)} 100%{transform:translate(-50px,40px) scale(1.12) rotate(-8deg)} }
@keyframes blobG { 0%{transform:translate(0,0) scale(1)} 50%{transform:translate(-30px,-40px) scale(1.15)} 100%{transform:translate(60px,30px) scale(.88)} }

/* ---------- Sections ---------- */
.lp-section { padding: 100px 0; position: relative; z-index: 1; }
.lp-section-alt { background: var(--surface); }
.lp-section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.lp-section-header h2 { font-size: 36px; font-weight: 800; margin-bottom: 12px; letter-spacing: -.5px; }
.lp-section-header p { font-size: 16px; color: var(--muted); line-height: 1.7; }

/* ---------- Why Subscribe ---------- */
.lp-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lp-why-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 32px 28px; transition: border-color .2s, transform .2s; }
.lp-why-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.lp-section-alt .lp-why-card { background: var(--bg); }
.lp-why-icon { font-size: 32px; margin-bottom: 16px; }
.lp-why-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.lp-why-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ---------- Features Grid ---------- */
.lp-feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.lp-feat-item { display: flex; align-items: center; gap: 10px; padding: 16px 20px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); font-size: 14px; font-weight: 500; transition: border-color .15s; }
.lp-section-alt .lp-feat-item { background: var(--surface2); }
.lp-feat-item:hover { border-color: var(--accent); }
.lp-feat-check { font-size: 16px; flex-shrink: 0; }

/* ---------- Pricing ---------- */
.lp-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lp-price-card { background: var(--surface); border: 2px solid var(--border); border-radius: 16px; padding: 36px 32px; display: flex; flex-direction: column; position: relative; transition: border-color .2s, transform .2s; }
.lp-price-card:hover { transform: translateY(-4px); }
.lp-price-card-featured { border-color: var(--accent); background: linear-gradient(180deg, rgba(99,102,241,.06) 0%, var(--surface) 40%); }
.lp-price-popular { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 16px; border-radius: 12px; text-transform: uppercase; letter-spacing: .5px; white-space: nowrap; }
.lp-price-name { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.lp-price-desc { font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 20px; min-height: 40px; }
.lp-price-amount { display: flex; align-items: baseline; gap: 2px; margin-bottom: 4px; }
.lp-dollar { font-size: 20px; font-weight: 600; color: var(--muted); }
.lp-val { font-size: 48px; font-weight: 800; color: var(--accent); line-height: 1; }
.lp-period { font-size: 16px; color: var(--muted); margin-left: 4px; }
.lp-price-annual { font-size: 13px; color: var(--success); margin-bottom: 20px; }
.lp-price-limits { display: flex; gap: 16px; font-size: 12px; color: var(--muted); padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--border); }
.lp-price-features { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.lp-price-features li { font-size: 14px; padding: 6px 0; color: var(--text); }

/* ---------- Comparison Table ---------- */
.lp-compare-table-wrap { overflow-x: auto; }
.lp-compare-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 600px; }
.lp-compare-table th, .lp-compare-table td { padding: 14px 20px; text-align: center; border-bottom: 1px solid var(--border); }
.lp-compare-table th { font-size: 13px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }
.lp-compare-table td:first-child, .lp-compare-table th:first-child { text-align: left; color: var(--text); font-weight: 600; }
.lp-compare-table td { color: var(--muted); }
.lp-compare-highlight { background: rgba(99,102,241,.06) !important; color: var(--accent) !important; font-weight: 600; }

/* ---------- FAQ ---------- */
.lp-faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.lp-faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 28px; transition: border-color .2s; }
.lp-faq-item:hover { border-color: var(--accent); }
.lp-faq-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.lp-faq-item p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ---------- CTA Section ---------- */
.lp-cta-section { padding: 100px 0; background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%); border-top: 1px solid var(--border); }
.lp-cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.lp-cta-inner h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; letter-spacing: -.5px; }
.lp-cta-inner p { font-size: 16px; color: var(--muted); margin-bottom: 32px; line-height: 1.7; }

/* ---------- Footer ---------- */
.lp-footer { padding: 40px 0; border-top: 1px solid var(--border); }
.lp-footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.lp-footer-brand { font-size: 15px; font-weight: 700; }
.lp-footer-links { display: flex; gap: 24px; }
.lp-footer-links a { font-size: 13px; color: var(--muted); transition: color .15s; }
.lp-footer-links a:hover { color: var(--text); }
.lp-footer-copy { font-size: 12px; color: var(--muted); }

/* ---------- Signup Form ---------- */
.lp-signup-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 48px 44px; max-width: 720px; margin: 0 auto; }

/* Step progress bar */
.lp-steps-bar { display: flex; align-items: center; justify-content: center; gap: 0; max-width: 420px; margin: 0 auto 16px; }
.lp-step-ind { display: flex; flex-direction: column; align-items: center; gap: 6px; flex-shrink: 0; }
.lp-step-circle { width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--border); color: var(--muted); font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; transition: all .25s; background: var(--surface); }
.lp-step-label { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .4px; transition: color .25s; }
.lp-step-ind.active .lp-step-circle { border-color: var(--accent); background: var(--accent); color: #fff; box-shadow: 0 0 0 4px rgba(99,102,241,.18); }
.lp-step-ind.active .lp-step-label { color: var(--accent); }
.lp-step-ind.done .lp-step-circle { border-color: var(--success); background: var(--success); color: #fff; }
.lp-step-ind.done .lp-step-label { color: var(--success); }
.lp-step-line { flex: 1; height: 2px; background: var(--border); margin: 0 8px; margin-bottom: 22px; transition: background .25s; }
.lp-step-line.done { background: var(--success); }

/* Tab panels */
.lp-tab-panels { position: relative; }
.lp-tab-panel { display: none; animation: lpTabIn .3s ease; }
.lp-tab-panel.active { display: block; }
@keyframes lpTabIn { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: translateX(0); } }
.lp-tab-panel-head { text-align: center; margin-bottom: 20px; }
.lp-tab-icon { font-size: 28px; margin-bottom: 4px; }
.lp-tab-panel-head h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.lp-tab-panel-head p { font-size: 14px; color: var(--muted); }
.lp-tab-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--border); }

/* Shake animation for validation */
@keyframes lpShake { 0%,100%{transform:translateX(0)} 20%{transform:translateX(-6px)} 40%{transform:translateX(6px)} 60%{transform:translateX(-4px)} 80%{transform:translateX(4px)} }
.lp-shake { animation: lpShake .4s ease; }

.lp-signup-hint { font-size: 13px; color: var(--muted); margin-bottom: 16px; }

.lp-form-group { margin-bottom: 12px; flex: 1; }
.lp-form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px; }
.lp-form-control { width: 100%; padding: 11px 14px; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; color: var(--text); font-size: 14px; outline: none; transition: border .15s; }
.lp-form-control:focus { border-color: var(--accent); }
.lp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lp-req { color: var(--danger); }

.lp-plan-select-row { margin-top: 12px; max-width: 340px; }
.lp-plan-select-row label { display: block; font-size: 12px; font-weight: 600; color: var(--muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px; }

/* Plan radio cards */
.lp-plan-radio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.lp-plan-radio-card { display: flex; flex-direction: column; align-items: center; padding: 16px 14px; background: var(--bg); border: 2px solid var(--border); border-radius: 12px; cursor: pointer; transition: all .2s; text-align: center; }
.lp-plan-radio-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.lp-plan-radio-card:has(input:checked) { border-color: var(--accent); background: rgba(99,102,241,.06); }
.lp-plan-radio-card input[type="radio"] { accent-color: var(--accent); width: 18px; height: 18px; margin-bottom: 10px; }
.lp-plan-radio-name { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.lp-plan-radio-price { font-size: 24px; font-weight: 800; color: var(--accent); margin-bottom: 4px; }
.lp-plan-radio-price span { font-size: 14px; font-weight: 500; color: var(--muted); }
.lp-plan-radio-meta { font-size: 12px; color: var(--muted); }

.lp-signup-submit { margin-top: 32px; text-align: center; }
.lp-signup-terms { font-size: 12px; color: var(--muted); margin-top: 16px; text-align: center; }

/* Signup alerts */
.lp-alert { padding: 14px 18px; border-radius: 10px; font-size: 14px; margin-bottom: 20px; max-width: 720px; margin-left: auto; margin-right: auto; }
.lp-alert-danger { background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.3); color: var(--danger); }

/* ---------- Signup Success ---------- */
.lp-signup-success { text-align: center; max-width: 640px; margin: 0 auto; }
.lp-success-icon { font-size: 64px; margin-bottom: 16px; }
.lp-signup-success h2 { font-size: 36px; font-weight: 800; margin-bottom: 8px; }
.lp-success-sub { font-size: 16px; color: var(--muted); margin-bottom: 36px; }
.lp-success-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 28px; margin-bottom: 36px; }
.lp-success-item { text-align: center; }
.lp-success-label { display: block; font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px; }
.lp-success-value { display: block; font-size: 16px; font-weight: 700; color: var(--accent); }
.lp-success-next { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 28px; margin-bottom: 16px; text-align: left; }
.lp-success-next h3 { font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.lp-success-steps { display: flex; flex-direction: column; gap: 12px; }
.lp-success-step { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text); }
.lp-success-step span { width: 28px; height: 28px; border-radius: 50%; background: var(--accent); color: #fff; font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ---------- Signup Modal ---------- */
.lp-modal-overlay { display: none; position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,.65); backdrop-filter: blur(6px); align-items: center; justify-content: center; padding: 24px; }
.lp-modal-overlay.open { display: flex; }
.lp-modal { position: relative; background: var(--bg); border: 1px solid var(--border); border-radius: 18px; width: 100%; max-width: 780px; max-height: 90vh; overflow-y: auto; padding: 36px 44px; animation: lpModalIn .25s ease; }
.lp-modal-close { position: absolute; top: 16px; right: 18px; background: transparent; border: none; color: var(--muted); font-size: 28px; cursor: pointer; line-height: 1; padding: 4px 8px; border-radius: 6px; transition: all .15s; z-index: 1; }
.lp-modal-close:hover { color: var(--text); background: var(--surface2); }
.lp-modal-header { text-align: center; margin-bottom: 16px; }
.lp-modal-header h2 { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.lp-modal-header p { font-size: 15px; color: var(--muted); }
.lp-modal .lp-signup-card { max-width: none; padding: 24px 28px; }
@keyframes lpModalIn { from { opacity: 0; transform: translateY(20px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* ---------- Payment Section ---------- */
.lp-pay-section { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }
.lp-pay-section-label { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 14px; text-transform: uppercase; letter-spacing: .4px; }
.lp-wallet-row { display: flex; gap: 12px; margin-bottom: 16px; }
.lp-wallet-btn { flex: 1; padding: 14px 16px; background: var(--surface2); border: 2px solid var(--border); border-radius: 10px; color: var(--text); font-size: 14px; font-weight: 600; cursor: pointer; transition: all .2s; text-align: center; }
.lp-wallet-btn:hover { border-color: var(--accent); background: rgba(99,102,241,.06); }
.lp-wallet-btn.selected { border-color: var(--accent); background: rgba(99,102,241,.1); color: var(--accent); }
.lp-pay-divider { display: flex; align-items: center; gap: 16px; margin: 16px 0; font-size: 13px; color: var(--muted); }
.lp-pay-divider::before, .lp-pay-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.lp-use-card-link { font-size: 13px; color: var(--accent); cursor: pointer; }
.lp-use-card-link:hover { color: var(--accent-hover); }
.lp-card-input-wrap { position: relative; }
.lp-card-input-wrap .lp-form-control { padding-right: 60px; }
.lp-card-brand { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); font-size: 11px; font-weight: 700; color: var(--accent); letter-spacing: .5px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .lp-nav-links { display: none; }
    .lp-hamburger { display: flex; }
    .lp-modal { padding: 28px 20px; max-height: 90vh; overflow-y: auto; }
    .lp-hero h1 { font-size: 36px; }
    .lp-hero-sub { font-size: 16px; }
    .lp-hero-stats { grid-template-columns: repeat(2, 1fr); }
    .lp-why-grid { grid-template-columns: 1fr; }
    .lp-feat-grid { grid-template-columns: 1fr 1fr; }
    .lp-pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .lp-faq-grid { grid-template-columns: 1fr; }
    .lp-section-header h2 { font-size: 28px; }
    .lp-footer-inner { flex-direction: column; text-align: center; }
    .lp-signup-card { padding: 32px 24px; }
    .lp-plan-radio-grid { grid-template-columns: 1fr; }
    .lp-form-row { grid-template-columns: 1fr; }
    .lp-success-details { grid-template-columns: 1fr; }
    .lp-steps-bar { max-width: 100%; }
    .lp-step-label { font-size: 10px; }
}
@media (max-width: 768px) {
    .lp-modal { max-height: none; min-height: 100vh; border-radius: 0; overflow-y: auto; padding: 20px 16px; }
    .lp-modal .lp-signup-card { padding: 18px 14px; }
    .lp-modal-header h2 { font-size: 22px; }
    .lp-modal-header p { font-size: 13px; }
    .lp-step-circle { width: 30px; height: 30px; font-size: 12px; }
    .lp-step-label { font-size: 9px; }
    .lp-step-line { margin: 0 4px; margin-bottom: 18px; }
    .lp-tab-panel-head h3 { font-size: 17px; }
    .lp-tab-panel-head p { font-size: 13px; }
    .lp-tab-icon { font-size: 22px; }
    .lp-wallet-row { flex-direction: column; }
    .lp-wallet-btn { font-size: 15px; padding: 16px; }
    .lp-plan-radio-card { padding: 14px 12px; }
    .lp-plan-radio-price { font-size: 20px; }
    .lp-plan-radio-name { font-size: 14px; }
    .lp-plan-radio-meta { font-size: 11px; }
    .lp-pay-section-label { font-size: 13px; }
}
@media (max-width: 600px) {
    .lp-hero { padding: 120px 0 60px; }
    .lp-hero h1 { font-size: 28px; }
    .lp-hero-cta { flex-direction: column; align-items: center; }
    .lp-feat-grid { grid-template-columns: 1fr; }
    .lp-section { padding: 60px 0; }
}
