/* ============================================================
   LeadsListPro — Premium Landing Styles
   Palette: #0A66FF (primary) · #0D1B2A (secondary) · #00D4FF (accent)
   ============================================================ */

:root {
  --primary: #0A66FF;
  --primary-700: #084fd1;
  --secondary: #0D1B2A;
  --accent: #00D4FF;
  --bg: #FFFFFF;
  --bg-soft: #F8FAFC;
  --ink: #0D1B2A;
  --ink-soft: #475569;
  --muted: #64748B;
  --line: #E6EBF2;
  --white: #FFFFFF;
  --grad: linear-gradient(135deg, #0A66FF 0%, #00D4FF 100%);
  --grad-soft: linear-gradient(135deg, rgba(10,102,255,.10), rgba(0,212,255,.10));
  --shadow-sm: 0 2px 8px rgba(13,27,42,.06);
  --shadow-md: 0 12px 30px rgba(13,27,42,.10);
  --shadow-lg: 0 24px 60px rgba(13,27,42,.16);
  --shadow-primary: 0 14px 34px rgba(10,102,255,.35);
  --radius: 16px;
  --radius-lg: 24px;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-head: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --container: 1200px;
  scroll-behavior: smooth;
}

* { box-sizing: border-box; }

html { scroll-padding-top: 88px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.18; letter-spacing: -.02em; color: var(--ink); }
a { color: var(--primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--primary-700); }
img { max-width: 100%; height: auto; }
.container { max-width: var(--container); }

/* ---- Accessibility ---- */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 2000;
  background: var(--primary); color: #fff; padding: 10px 18px; border-radius: 0 0 10px 0; font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 6px; }

/* ============ BUTTONS ============ */
.btn { font-weight: 700; border-radius: 12px; padding: .7rem 1.4rem; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; border: 0; }
.btn:active { transform: translateY(1px); }
.btn-lg { padding: .95rem 1.8rem; font-size: 1.02rem; border-radius: 14px; }

.btn-primary-grad { background: var(--grad); color: #fff; box-shadow: var(--shadow-primary); }
.btn-primary-grad:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 18px 40px rgba(10,102,255,.45); }

.btn-ghost { color: var(--ink); background: transparent; border: 1px solid var(--line); }
.btn-ghost:hover { color: var(--primary); border-color: var(--primary); background: var(--grad-soft); }

.btn-outline-light-2 { color: var(--ink); background: #fff; border: 1.5px solid var(--line); box-shadow: var(--shadow-sm); }
.btn-outline-light-2:hover { color: var(--primary); border-color: var(--primary); transform: translateY(-2px); }

.btn-light { background: #fff; color: var(--primary); }
.btn-light:hover { background: #fff; color: var(--primary-700); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn i { margin-right: .45rem; }

/* ============ NAVBAR ============ */
.site-nav {
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  padding: .8rem 0;
}
.site-nav.scrolled { background: rgba(255,255,255,.92); box-shadow: var(--shadow-sm); border-color: var(--line); }
.brand-text { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: var(--ink); letter-spacing: -.02em; }
.brand-accent { color: var(--primary); }
.brand-mark { display: inline-flex; }
.site-nav .nav-link { color: var(--ink-soft); font-weight: 600; padding: .5rem .9rem; border-radius: 10px; }
.site-nav .nav-link:hover, .site-nav .nav-link:focus { color: var(--primary); background: var(--grad-soft); }
.nav-cta .btn { padding: .55rem 1.1rem; }
@media (max-width: 991px){
  .nav-cta { padding-top: .6rem; gap: .5rem; }
  .nav-cta .btn { flex: 1; }
}

/* ============ HERO ============ */
.hero { position: relative; padding: 150px 0 90px; background: linear-gradient(180deg, #F4F8FF 0%, #FFFFFF 70%); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero .container { position: relative; z-index: 1; }
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; }
.orb-1 { width: 460px; height: 460px; background: radial-gradient(circle, rgba(10,102,255,.45), transparent 70%); top: -120px; right: -80px; }
.orb-2 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(0,212,255,.40), transparent 70%); bottom: -120px; left: -100px; }
.grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(10,102,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(10,102,255,.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 60% 30%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 60% 30%, #000 0%, transparent 70%);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--grad-soft); color: var(--primary); font-weight: 700; font-size: .85rem;
  padding: .45rem 1rem; border-radius: 999px; border: 1px solid rgba(10,102,255,.18); margin-bottom: 1.1rem;
}
.hero-title { font-size: clamp(2.3rem, 5vw, 3.7rem); margin-bottom: 1.1rem; }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--ink-soft); max-width: 560px; margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 1.6rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.3rem; color: var(--muted); font-weight: 600; font-size: .92rem; margin: 0; }
.hero-trust i { color: #16a34a; margin-right: .35rem; }

/* ---- Dashboard mockup ---- */
.dashboard-mockup { position: relative; }
.mock-window { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--line); overflow: hidden; transform: perspective(1400px) rotateY(-7deg) rotateX(3deg); transition: transform .5s ease; }
.dashboard-mockup:hover .mock-window { transform: perspective(1400px) rotateY(-2deg) rotateX(1deg); }
.mock-bar { display: flex; align-items: center; gap: 6px; padding: 12px 16px; background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.mock-bar .dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.dot.r{background:#ff5f57}.dot.y{background:#febc2e}.dot.g{background:#28c840}
.mock-url { margin-left: 12px; font-size: .8rem; color: var(--muted); background: #fff; padding: 4px 12px; border-radius: 8px; border: 1px solid var(--line); }
.mock-body { padding: 20px; }
.mock-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.chip { font-size: .78rem; font-weight: 600; padding: 5px 12px; border-radius: 999px; background: var(--bg-soft); color: var(--ink-soft); border: 1px solid var(--line); }
.chip.active { background: var(--grad); color: #fff; border-color: transparent; }
.mock-stat-row { display: flex; align-items: center; gap: 18px; padding: 14px 16px; background: var(--bg-soft); border-radius: 14px; margin-bottom: 16px; }
.mock-stat { display: flex; flex-direction: column; }
.ms-num { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: var(--primary); }
.ms-label { font-size: .75rem; color: var(--muted); }
.mock-bars { display: flex; align-items: flex-end; gap: 6px; height: 44px; margin-left: auto; }
.mock-bars span { width: 9px; height: var(--h); background: var(--grad); border-radius: 4px; animation: barGrow 1.2s ease both; }
@keyframes barGrow { from { height: 0; } }
.mock-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.mock-list li { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 12px; }
.mock-list li strong { display: block; font-size: .9rem; }
.mock-list li small { color: var(--muted); font-size: .78rem; }
.avatar { width: 36px; height: 36px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: .8rem; color: #fff; flex-shrink: 0; }
.avatar.a1{background:#0A66FF}.avatar.a2{background:#00D4FF}.avatar.a3{background:#6366f1}
.badge-ok { margin-left: auto; font-size: .72rem; font-weight: 700; color: #16a34a; background: #dcfce7; padding: 4px 9px; border-radius: 999px; white-space: nowrap; }
.badge-ok i { margin-right: 3px; }
.floating-card { position: absolute; background: #fff; box-shadow: var(--shadow-md); border: 1px solid var(--line); border-radius: 12px; padding: 10px 14px; font-weight: 700; font-size: .85rem; }
.floating-card i { color: var(--primary); margin-right: 6px; }
.fc-1 { top: 14%; left: -28px; animation: float 4s ease-in-out infinite; }
.fc-2 { bottom: 12%; right: -22px; animation: float 4s ease-in-out infinite 1.5s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* ============ STATS BAND ============ */
.stats-band { background: var(--secondary); padding: 48px 0; color: #fff; position: relative; }
.stats-band .stat-num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 4vw, 2.9rem); background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stats-band .stat-label { color: #aebfd4; font-weight: 600; font-size: .95rem; letter-spacing: .02em; }

/* ============ LOGOS ============ */
.logos-band { padding: 44px 0; background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.logos-title { text-align: center; color: var(--muted); font-weight: 600; font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.6rem; }
.logos-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2.4rem; }
.logo-item { color: #94a3b8; font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; opacity: .75; transition: opacity .25s, color .25s; }
.logo-item i { margin-right: .4rem; }
.logo-item:hover { opacity: 1; color: var(--secondary); }

/* ============ SECTIONS ============ */
.section { padding: 92px 0; }
.section-alt { background: var(--bg-soft); }
.section-dark { background: linear-gradient(160deg, #0D1B2A 0%, #102a43 100%); }
.section-head { max-width: 760px; margin: 0 auto 56px; }
.kicker { display: inline-block; color: var(--primary); font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .8rem; }
.kicker-light { color: var(--accent); }
.section-title { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 1rem; }
.section-lead { color: var(--ink-soft); font-size: 1.1rem; margin: 0; }
.lead-light { color: #aebfd4; }
.text-white { color: #fff !important; }

/* ============ BENEFIT CARDS ============ */
.benefit-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; height: 100%; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(10,102,255,.3); }
.benefit-ico { width: 56px; height: 56px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; font-size: 1.4rem; color: #fff; margin-bottom: 1.1rem; }
.ico-blue { background: var(--grad); box-shadow: var(--shadow-primary); }
.ico-cyan { background: linear-gradient(135deg, #00D4FF, #0A66FF); }
.benefit-card h3 { font-size: 1.12rem; margin-bottom: .5rem; }
.benefit-card p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ============ STEPS ============ */
.steps { counter-reset: step; }
.step-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px 28px 30px; height: 100%; text-align: center; transition: transform .25s, box-shadow .25s; }
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-num { position: absolute; top: -22px; left: 50%; transform: translateX(-50%); width: 44px; height: 44px; border-radius: 50%; background: var(--grad); color: #fff; font-family: var(--font-head); font-weight: 800; display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow-primary); }
.step-ico { display: inline-flex; align-items: center; justify-content: center; width: 70px; height: 70px; border-radius: 18px; background: var(--grad-soft); color: var(--primary); font-size: 1.7rem; margin: 14px 0 18px; }
.step-card h3 { font-size: 1.18rem; margin-bottom: .6rem; }
.step-card p { color: var(--muted); margin: 0; }

/* ============ FEATURES ============ */
.feature-row { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 20px; height: 100%; transition: transform .2s, box-shadow .2s, border-color .2s; }
.feature-row:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: rgba(10,102,255,.3); }
.feature-row > i { font-size: 1.3rem; color: var(--primary); background: var(--grad-soft); width: 46px; height: 46px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-row h3 { font-size: 1.04rem; margin-bottom: .25rem; }
.feature-row p { color: var(--muted); font-size: .9rem; margin: 0; }

/* ============ TRUST ============ */
.trust-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 30px 26px; height: 100%; backdrop-filter: blur(8px); transition: transform .25s, background .25s, border-color .25s; }
.trust-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.09); border-color: rgba(0,212,255,.4); }
.trust-card i { font-size: 1.8rem; color: var(--accent); margin-bottom: 1rem; }
.trust-card h3 { color: #fff; font-size: 1.12rem; margin-bottom: .5rem; }
.trust-card p { color: #aebfd4; font-size: .95rem; margin: 0; }

/* ============ TESTIMONIALS ============ */
.rating-row { margin-top: 1rem; color: var(--ink-soft); font-weight: 600; }
.stars { color: #f59e0b; }
.stars.sm { font-size: .9rem; margin-bottom: .8rem; display: block; }
.rating-row .stars { margin-right: .4rem; }
.testimonial-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px; height: 100%; margin: 0; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testimonial-card blockquote { font-size: 1.04rem; color: var(--ink); margin: 0 0 1.2rem; line-height: 1.6; }
.testimonial-card figcaption { display: flex; align-items: center; gap: 12px; }
.testimonial-card figcaption strong { display: block; font-size: .95rem; }
.testimonial-card figcaption small { color: var(--muted); }

/* ============ SEO CONTENT ============ */
.seo-content article { max-width: 860px; margin: 0 auto; }
.seo-content h2 { font-size: clamp(1.4rem, 2.6vw, 1.85rem); margin: 2.4rem 0 1rem; }
.seo-content p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 1.1rem; }
.seo-content strong { color: var(--ink); }
.seo-cta-line { font-size: 1.15rem !important; font-weight: 600; text-align: center; margin-top: 2.2rem !important; padding: 1.4rem; background: var(--grad-soft); border-radius: var(--radius); }

/* ============ FAQ ============ */
.faq-accordion .accordion-item { border: 1px solid var(--line); border-radius: 14px !important; margin-bottom: 14px; overflow: hidden; background: #fff; }
.faq-accordion .accordion-button { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--ink); padding: 1.1rem 1.3rem; background: #fff; box-shadow: none; }
.faq-accordion .accordion-button:not(.collapsed) { color: var(--primary); background: var(--grad-soft); }
.faq-accordion .accordion-button:focus { box-shadow: none; border-color: transparent; }
.faq-accordion .accordion-button::after { background-size: 1.1rem; }
.faq-accordion .accordion-body { color: var(--ink-soft); padding: 0 1.3rem 1.2rem; }

/* ============ FINAL CTA ============ */
.final-cta { padding: 90px 0; }
.cta-panel { position: relative; overflow: hidden; background: linear-gradient(135deg, #0A66FF, #00D4FF); border-radius: 32px; text-align: center; padding: 70px 30px; color: #fff; box-shadow: var(--shadow-lg); }
.cta-panel h2 { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin-bottom: 1rem; }
.cta-panel p { color: rgba(255,255,255,.92); font-size: 1.15rem; max-width: 620px; margin: 0 auto 1.8rem; }
.cta-btn { font-size: 1.1rem; padding: 1rem 2.2rem; }
.cta-fine { font-size: .9rem !important; opacity: .9; margin-top: 1.2rem !important; }
.orb-3 { width: 360px; height: 360px; background: radial-gradient(circle, rgba(255,255,255,.35), transparent 70%); top: -120px; right: -60px; filter: blur(40px); opacity: .6; }

/* ============ FOOTER ============ */
.site-footer { background: var(--secondary); color: #aebfd4; padding: 70px 0 30px; }
.footer-about { color: #8da3bd; font-size: .95rem; margin: 0 0 1.2rem; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1.1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { color: #aebfd4; font-size: .94rem; }
.footer-links a:hover { color: var(--accent); }
.social-row { display: flex; gap: 10px; }
.social-row a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); color: #fff; display: inline-flex; align-items: center; justify-content: center; transition: background .2s, transform .2s; }
.social-row a:hover { background: var(--grad); transform: translateY(-3px); }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; font-size: .88rem; }
.footer-bottom p { margin: 0; }
.footer-badges i { color: var(--accent); margin: 0 4px; }

/* ============ BACK TO TOP ============ */
.back-to-top { position: fixed; right: 24px; bottom: 24px; width: 48px; height: 48px; border-radius: 50%; border: 0; background: var(--grad); color: #fff; font-size: 1.1rem; box-shadow: var(--shadow-primary); opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .3s, transform .3s, visibility .3s; z-index: 999; cursor: pointer; }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); }

/* ============ RESPONSIVE ============ */
@media (max-width: 991px){
  .hero { padding: 120px 0 60px; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .dashboard-mockup { margin-top: 40px; }
  .mock-window { transform: none; }
  .floating-card { display: none; }
  .section { padding: 64px 0; }
}
@media (max-width: 575px){
  .section-head { margin-bottom: 38px; }
  .cta-panel { padding: 48px 20px; }
  .hero-trust { gap: .8rem; font-size: .85rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .logos-row { gap: 1.4rem; }
}

/* ============ MOTION PREFERENCE ============ */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .mock-window { transform: none; }
}
