/* =====================================================================
   Trustbundle - Landing Page Stylesheet
   Loaded ONLY on the public homepage (views/home.php), on top of the
   shared style.css. Everything here is scoped under .lp-root so it can
   never bleed into the dashboard, admin panel or auth pages.
   Respects the site's light/dark theme (--bg/--surface/--text/...) for
   every section except the hero + testimonials, which are intentionally
   fixed-dark "premium" panels regardless of theme.
   ===================================================================== */

.lp-root {
  --lp-navy: #0a0f2c;
  --lp-navy-2: #0f1a3d;
  --lp-purple: #6d28d9;
  --lp-purple-2: #8b5cf6;
  --lp-cyan: #06b6d4;
  --lp-cyan-2: #22d3ee;
  --lp-naira: #22c55e;
  --lp-glass-bg: rgba(255, 255, 255, 0.06);
  --lp-glass-bg-strong: rgba(255, 255, 255, 0.1);
  --lp-glass-border: rgba(255, 255, 255, 0.14);
  --lp-gradient: linear-gradient(135deg, var(--lp-cyan) 0%, var(--lp-purple) 100%);
  --lp-gradient-text: linear-gradient(90deg, var(--lp-cyan-2), var(--lp-purple-2));
  overflow-x: clip;
}

.lp-root * { box-sizing: border-box; }
.lp-root section { position: relative; }
.lp-root .lp-container { max-width: 1240px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 2; }
.lp-root .lp-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--lp-cyan-2);
}
.lp-root .lp-section-head { max-width: 640px; margin: 0 auto 46px; text-align: center; }
.lp-root .lp-section-head h2 { font-size: clamp(26px, 3.4vw, 38px); margin: 10px 0 12px; letter-spacing: -0.01em; }
.lp-root .lp-section-head p { color: var(--text-muted); font-size: 16px; margin: 0; }
.lp-root .lp-gradient-text {
  background: var(--lp-gradient-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

@media (prefers-reduced-motion: reduce) {
  .lp-root * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* -------------------------------------------------------------------
   Header (glass, sticky, transparent-over-hero -> solid on scroll)
   ------------------------------------------------------------------- */
.lp-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(10, 15, 44, 0.35);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.lp-header .lp-container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.lp-header .brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; color: #fff; }
.lp-header .brand .lp-brand-badge {
  width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  background: var(--lp-gradient); color: #fff; font-size: 15px; box-shadow: 0 4px 14px rgba(109, 40, 217, 0.45);
}
.lp-header .nav-links { display: flex; gap: 28px; align-items: center; }
.lp-header .nav-links a { color: rgba(255, 255, 255, 0.85); font-size: 14.5px; font-weight: 600; transition: color 0.15s ease; }
.lp-header .nav-links a:hover { color: #fff; text-decoration: none; }
.lp-header nav { display: flex; align-items: center; gap: 26px; }
.lp-header .mobile-nav-toggle { display: none; background: none; border: none; font-size: 20px; color: #fff; cursor: pointer; }

.lp-header.lp-header--solid { background: var(--surface); border-bottom-color: var(--border); box-shadow: 0 2px 16px rgba(15, 23, 42, 0.08); }
.lp-header.lp-header--solid .brand,
.lp-header.lp-header--solid .nav-links a { color: var(--text); }
.lp-header.lp-header--solid .nav-links a:hover { color: var(--accent); }
.lp-header.lp-header--solid .mobile-nav-toggle { color: var(--text); }

/* -------------------------------------------------------------------
   Buttons - premium variants layered on top of the shared .btn
   ------------------------------------------------------------------- */
.lp-root .btn-gradient {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--lp-gradient); color: #fff; border: none;
  box-shadow: 0 10px 30px -8px rgba(109, 40, 217, 0.55);
}
.lp-root .btn-gradient::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, var(--lp-purple-2), var(--lp-cyan-2));
  opacity: 0; transition: opacity 0.25s ease;
}
.lp-root .btn-gradient:hover { transform: translateY(-3px); box-shadow: 0 16px 36px -8px rgba(34, 211, 238, 0.55); }
.lp-root .btn-gradient:hover::before { opacity: 1; }
.lp-root .btn-glass {
  position: relative; overflow: hidden;
  background: var(--lp-glass-bg); color: #fff; border: 1px solid var(--lp-glass-border);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.lp-root .btn-glass:hover { background: var(--lp-glass-bg-strong); transform: translateY(-3px); border-color: rgba(255, 255, 255, 0.3); }
.lp-root .btn-lg { padding: 15px 30px; font-size: 15.5px; border-radius: 12px; }
.lp-root .btn span.lp-ripple {
  position: absolute; border-radius: 50%; background: rgba(255, 255, 255, 0.55);
  transform: scale(0); animation: lp-ripple 0.6s ease-out; pointer-events: none;
}
@keyframes lp-ripple { to { transform: scale(2.6); opacity: 0; } }

/* -------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------- */
.lp-hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 60px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 15% 8%, rgba(109, 40, 217, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 55% at 90% 15%, rgba(6, 182, 212, 0.28), transparent 55%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(34, 197, 94, 0.12), transparent 60%),
    linear-gradient(160deg, var(--lp-navy) 0%, var(--lp-navy-2) 55%, #101339 100%);
  color: #fff;
}
.lp-hero canvas#lp-particles { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: 0.65; }

.lp-blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.35; z-index: 0; animation: lp-blob-float 16s ease-in-out infinite; }
.lp-blob-1 { width: 420px; height: 420px; top: -120px; left: -100px; background: var(--lp-purple); }
.lp-blob-2 { width: 380px; height: 380px; bottom: -140px; right: -80px; background: var(--lp-cyan); animation-duration: 20s; animation-delay: -4s; }
.lp-blob-3 { width: 280px; height: 280px; top: 40%; right: 8%; background: var(--lp-naira); opacity: 0.18; animation-duration: 24s; animation-delay: -9s; }
@keyframes lp-blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.08); }
  66% { transform: translate(-25px, 25px) scale(0.95); }
}

.lp-network-lines { position: absolute; inset: 0; z-index: 0; opacity: 0.35; pointer-events: none; }

/* Floating tech ecosystem chips */
.lp-float-cards { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.lp-float-card {
  position: absolute; display: flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 999px;
  background: var(--lp-glass-bg); border: 1px solid var(--lp-glass-border);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  font-size: 12.5px; font-weight: 600; color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
  animation: lp-drift 10s ease-in-out infinite;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}
.lp-float-card i { color: var(--lp-cyan-2); font-size: 13px; }
@keyframes lp-drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(14px, -18px); }
}

/* -------------------------------------------------------------------
   Hero content grid
   ------------------------------------------------------------------- */
.lp-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; position: relative; z-index: 2; }
.lp-hero-copy { max-width: 620px; }
.lp-hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px;
  background: var(--lp-glass-bg); border: 1px solid var(--lp-glass-border);
  font-size: 12.5px; font-weight: 700; color: var(--lp-cyan-2); margin-bottom: 22px;
  opacity: 0; animation: lp-fade-up 0.7s ease forwards;
}
.lp-hero-badge i { color: var(--lp-naira); }

.lp-hero h1 {
  color: #fff; font-size: clamp(32px, 4.6vw, 54px); line-height: 1.12; letter-spacing: -0.02em;
  margin: 0 0 8px; min-height: 2.3em;
  opacity: 0; animation: lp-fade-up 0.7s ease 0.1s forwards;
}
.lp-hero h1 .lp-static-line { display: block; color: rgba(255, 255, 255, 0.92); font-weight: 700; }
.lp-hero h1 .lp-typed-wrap { display: block; }
.lp-hero h1 #lp-typed { background: var(--lp-gradient-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lp-hero h1 .lp-cursor { display: inline-block; width: 3px; height: 0.85em; background: var(--lp-cyan-2); margin-left: 4px; vertical-align: -0.1em; animation: lp-blink 0.9s steps(1) infinite; }
@keyframes lp-blink { 50% { opacity: 0; } }

.lp-hero p.lp-lead {
  color: rgba(255, 255, 255, 0.75); font-size: 17px; max-width: 560px; margin: 18px 0 30px;
  opacity: 0; animation: lp-fade-up 0.7s ease 0.2s forwards;
}
.lp-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: lp-fade-up 0.7s ease 0.3s forwards; }
.lp-hero-trust { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 34px; opacity: 0; animation: lp-fade-up 0.7s ease 0.4s forwards; }
.lp-hero-trust div { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255, 255, 255, 0.65); font-weight: 600; }
.lp-hero-trust i { color: var(--lp-naira); }

@keyframes lp-fade-up { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

/* -------------------------------------------------------------------
   Right-side hero illustration
   ------------------------------------------------------------------- */
.lp-illustration { position: relative; height: 460px; z-index: 2; }
.lp-orbit-ring { position: absolute; inset: 8% 10%; border: 1px dashed rgba(255, 255, 255, 0.14); border-radius: 50%; animation: lp-spin-slow 40s linear infinite; }
.lp-orbit-ring.lp-orbit-2 { inset: 20% 22%; animation-duration: 30s; animation-direction: reverse; border-style: solid; border-color: rgba(255, 255, 255, 0.08); }
@keyframes lp-spin-slow { to { transform: rotate(360deg); } }

.lp-phone {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 210px; height: 420px; border-radius: 34px;
  background: linear-gradient(160deg, #131a3d, #0a0f2c);
  border: 6px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.04);
  padding: 18px 14px; animation: lp-float-y 6s ease-in-out infinite;
}
.lp-phone::before { content: ""; position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 46px; height: 5px; border-radius: 4px; background: rgba(255, 255, 255, 0.18); }
.lp-phone .lp-phone-row { display: flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 10px; padding: 9px 10px; margin-top: 14px; font-size: 10.5px; color: rgba(255, 255, 255, 0.8); font-weight: 600; }
.lp-phone .lp-phone-row i { color: var(--lp-cyan-2); font-size: 13px; }
.lp-phone .lp-phone-shield { width: 54px; height: 54px; margin: 18px auto 6px; border-radius: 50%; background: var(--lp-gradient); display: flex; align-items: center; justify-content: center; font-size: 22px; box-shadow: 0 10px 24px rgba(109, 40, 217, 0.5); }
.lp-phone .lp-phone-caption { text-align: center; font-size: 11px; color: rgba(255, 255, 255, 0.55); margin-top: 4px; }
.lp-phone .lp-phone-check { position: absolute; bottom: 16px; right: 16px; width: 30px; height: 30px; border-radius: 50%; background: var(--lp-naira); display: flex; align-items: center; justify-content: center; color: #04150a; font-size: 13px; box-shadow: 0 6px 16px rgba(34, 197, 94, 0.5); }

.lp-chip { position: absolute; display: flex; align-items: center; justify-content: center; border-radius: 16px; background: var(--lp-glass-bg); border: 1px solid var(--lp-glass-border); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3); animation: lp-float-y 5s ease-in-out infinite; }
.lp-chip i { font-size: 20px; }
.lp-chip-lg { width: 64px; height: 64px; border-radius: 18px; }
.lp-chip-sm { width: 46px; height: 46px; border-radius: 14px; font-size: 15px; }

.lp-chip-id { top: 4%; left: 2%; color: var(--lp-cyan-2); animation-delay: -1s; }
.lp-chip-finger { top: 12%; right: 0%; color: var(--lp-purple-2); animation-delay: -3s; }
.lp-chip-qr { bottom: 18%; left: -4%; color: #fff; animation-delay: -2s; }
.lp-chip-card { bottom: 6%; right: 4%; color: var(--lp-naira); animation-delay: -4s; }
.lp-chip-lock { top: 44%; left: -8%; color: var(--lp-cyan-2); animation-delay: -0.5s; }
.lp-chip-cloud { top: 2%; right: 26%; color: rgba(255, 255, 255, 0.85); animation-delay: -2.5s; }
.lp-chip-face { bottom: -2%; left: 30%; color: var(--lp-purple-2); animation-delay: -1.5s; }

.lp-naira-float { position: absolute; font-weight: 800; color: var(--lp-naira); opacity: 0.85; animation: lp-float-y 4.5s ease-in-out infinite; text-shadow: 0 4px 14px rgba(34, 197, 94, 0.4); }
.lp-naira-1 { top: 8%; left: 40%; font-size: 26px; animation-delay: -1s; }
.lp-naira-2 { bottom: 30%; right: 10%; font-size: 20px; animation-delay: -3s; }
.lp-naira-3 { top: 60%; left: 4%; font-size: 18px; animation-delay: -2s; }

@keyframes lp-float-y { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.lp-tx-line { position: absolute; height: 2px; background: linear-gradient(90deg, transparent, var(--lp-cyan-2), transparent); opacity: 0.5; animation: lp-tx-move 3s linear infinite; }
.lp-tx-line-1 { top: 30%; left: 8%; width: 90px; }
.lp-tx-line-2 { bottom: 40%; right: 12%; width: 70px; animation-delay: -1.2s; }
@keyframes lp-tx-move { 0% { opacity: 0; transform: scaleX(0.4); } 50% { opacity: 0.8; transform: scaleX(1); } 100% { opacity: 0; transform: scaleX(0.4); } }

/* -------------------------------------------------------------------
   Scroll cue
   ------------------------------------------------------------------- */
.lp-scroll-cue { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 2; color: rgba(255, 255, 255, 0.55); font-size: 20px; animation: lp-bounce 2s ease-in-out infinite; }
@keyframes lp-bounce { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* -------------------------------------------------------------------
   Live counters
   ------------------------------------------------------------------- */
.lp-counters { background: var(--surface-alt); border-bottom: 1px solid var(--border); padding: 44px 0; }
.lp-counters-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; text-align: center; }
.lp-counter-item .lp-counter-num { font-size: clamp(22px, 2.6vw, 30px); font-weight: 800; color: var(--primary); display: flex; align-items: baseline; justify-content: center; gap: 2px; }
[data-theme="dark"] .lp-counter-item .lp-counter-num { color: var(--lp-cyan-2); }
.lp-counter-item .lp-counter-label { font-size: 12.5px; color: var(--text-muted); font-weight: 600; margin-top: 4px; }

/* -------------------------------------------------------------------
   Services
   ------------------------------------------------------------------- */
.lp-services { padding: 90px 0; background: var(--bg); }
.lp-service-tabs { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 42px; }
.lp-tab-btn {
  padding: 10px 20px; border-radius: 999px; border: 1px solid var(--border); background: var(--surface);
  color: var(--text-muted); font-weight: 700; font-size: 13.5px; cursor: pointer; transition: all 0.2s ease;
}
.lp-tab-btn i { margin-right: 6px; }
.lp-tab-btn:hover { border-color: var(--lp-purple-2); color: var(--text); }
.lp-tab-btn.active { background: var(--lp-gradient); border-color: transparent; color: #fff; box-shadow: 0 8px 20px -6px rgba(109, 40, 217, 0.5); }

/* flex-wrap instead of grid auto-fill/minmax - see the matching note on
   .services-grid in style.css: some low-end/data-saving mobile browsers
   don't wrap CSS Grid auto-fill columns correctly. */
.lp-services-grid { display: flex; flex-wrap: wrap; gap: 20px; }
.lp-service-card {
  flex: 1 1 255px; max-width: 100%;
  position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  padding: 24px; overflow: hidden; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.lp-service-card::before {
  content: ""; position: absolute; inset: 0; border-radius: 16px; padding: 1px;
  background: var(--lp-gradient); opacity: 0; transition: opacity 0.25s ease;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.lp-service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -16px rgba(109, 40, 217, 0.28); }
.lp-service-card:hover::before { opacity: 1; }
.lp-service-icon {
  width: 50px; height: 50px; border-radius: 13px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.14), rgba(109, 40, 217, 0.14));
  color: var(--lp-purple-2); font-size: 20px; margin-bottom: 16px; transition: transform 0.3s ease;
}
[data-theme="dark"] .lp-service-icon { color: var(--lp-cyan-2); }
.lp-service-card:hover .lp-service-icon { transform: scale(1.1) rotate(-6deg); }
.lp-service-card h3 { font-size: 15.5px; margin: 0 0 6px; }
.lp-service-card p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.5; }
.lp-services-more { text-align: center; margin-top: 42px; }

/* -------------------------------------------------------------------
   Why choose us
   ------------------------------------------------------------------- */
.lp-why { padding: 90px 0; background: var(--surface-alt); }
.lp-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.lp-why-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 28px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lp-why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.lp-why-icon {
  width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: var(--lp-gradient); color: #fff; font-size: 21px; margin-bottom: 18px;
  box-shadow: 0 10px 22px -8px rgba(109, 40, 217, 0.5);
}
.lp-why-card h3 { font-size: 16px; margin: 0 0 8px; }
.lp-why-card p { font-size: 13.5px; color: var(--text-muted); margin: 0; }

/* -------------------------------------------------------------------
   How it works
   ------------------------------------------------------------------- */
.lp-how { padding: 90px 0; background: var(--bg); }
.lp-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.lp-steps::before {
  content: ""; position: absolute; top: 30px; left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(90deg, var(--lp-cyan) 0%, var(--lp-purple) 100%); opacity: 0.35;
}
.lp-step { text-align: center; padding: 0 14px; position: relative; }
.lp-step-num {
  width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center;
  background: var(--surface); border: 2px solid var(--lp-purple-2); color: var(--lp-purple-2); font-weight: 800; font-size: 20px;
  position: relative; z-index: 1; transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
[data-theme="dark"] .lp-step-num { color: var(--lp-cyan-2); border-color: var(--lp-cyan-2); }
.lp-step h3 { font-size: 15.5px; margin: 0 0 6px; }
.lp-step p { font-size: 13px; color: var(--text-muted); margin: 0; }
.lp-step.in-view .lp-step-num { background: var(--lp-gradient); color: #fff; border-color: transparent; transform: scale(1.08); }

/* -------------------------------------------------------------------
   Trust badges
   ------------------------------------------------------------------- */
.lp-trust { padding: 50px 0; background: var(--surface-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.lp-trust-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.lp-trust-badge {
  display: flex; align-items: center; gap: 9px; padding: 12px 18px; border-radius: 12px;
  background: var(--surface); border: 1px solid var(--border); font-size: 13px; font-weight: 700; color: var(--text);
}
.lp-trust-badge i { color: var(--lp-naira); font-size: 15px; }

/* -------------------------------------------------------------------
   Testimonials
   ------------------------------------------------------------------- */
.lp-testimonials { padding: 90px 0; background: linear-gradient(160deg, var(--lp-navy) 0%, #14184a 100%); color: #fff; }
.lp-testimonials .lp-section-head p { color: rgba(255, 255, 255, 0.65); }
.lp-testimonials .lp-eyebrow { color: var(--lp-cyan-2); }
.lp-testimonial-track-wrap { overflow: hidden; }
.lp-testimonial-track { display: flex; transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1); }
.lp-testimonial-slide { flex: 0 0 100%; padding: 4px; }
.lp-testimonial-card {
  max-width: 640px; margin: 0 auto; text-align: center; padding: 40px 36px; border-radius: 20px;
  background: var(--lp-glass-bg); border: 1px solid var(--lp-glass-border); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.lp-testimonial-stars { color: #fbbf24; font-size: 14px; margin-bottom: 16px; }
.lp-testimonial-card p.quote { font-size: 17px; line-height: 1.6; color: rgba(255, 255, 255, 0.92); margin: 0 0 22px; }
.lp-testimonial-avatar {
  width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 12px; display: flex; align-items: center; justify-content: center;
  background: var(--lp-gradient); font-weight: 800; color: #fff; font-size: 17px; border: 2px solid rgba(255, 255, 255, 0.25);
}
.lp-testimonial-name { font-weight: 700; font-size: 14.5px; }
.lp-testimonial-role { font-size: 12.5px; color: rgba(255, 255, 255, 0.55); }
.lp-testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 30px; }
.lp-testimonial-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: rgba(255, 255, 255, 0.25); cursor: pointer; padding: 0; transition: all 0.25s ease; }
.lp-testimonial-dots button.active { background: var(--lp-gradient); width: 24px; border-radius: 5px; }

/* -------------------------------------------------------------------
   CTA
   ------------------------------------------------------------------- */
.lp-cta { padding: 90px 0; background: var(--bg); }
.lp-cta-panel {
  position: relative; overflow: hidden; border-radius: 28px; padding: 64px 40px; text-align: center;
  background:
    radial-gradient(ellipse 70% 80% at 20% 0%, rgba(34, 211, 238, 0.35), transparent 60%),
    radial-gradient(ellipse 70% 80% at 80% 100%, rgba(139, 92, 246, 0.4), transparent 60%),
    linear-gradient(135deg, var(--lp-navy) 0%, var(--lp-navy-2) 100%);
  color: #fff;
}
.lp-cta-panel h2 { font-size: clamp(24px, 3.4vw, 36px); max-width: 640px; margin: 0 auto 14px; color: #fff; }
.lp-cta-panel p { color: rgba(255, 255, 255, 0.72); max-width: 520px; margin: 0 auto 32px; }
.lp-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.lp-cta-panel .lp-blob { opacity: 0.5; }

/* -------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------- */
.lp-footer {
  position: relative; overflow: hidden;
  background: var(--lp-navy); color: rgba(255, 255, 255, 0.68); padding: 64px 0 0; font-size: 13.5px;
}
.lp-footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--lp-gradient);
  background-size: 200% 100%; animation: lp-gradient-shift 6s linear infinite;
}
@keyframes lp-gradient-shift { to { background-position: 200% 0; } }
.lp-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 32px; padding-bottom: 44px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.lp-footer .brand { color: #fff; font-weight: 800; font-size: 18px; margin-bottom: 12px; }
.lp-footer-about p { color: rgba(255, 255, 255, 0.55); line-height: 1.7; }
.lp-footer h4 { color: #fff; font-size: 13.5px; text-transform: uppercase; letter-spacing: 0.05em; margin: 0 0 16px; }
.lp-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.lp-footer ul a { color: rgba(255, 255, 255, 0.62); transition: color 0.15s ease; }
.lp-footer ul a:hover { color: #fff; text-decoration: none; }
.lp-newsletter-form { display: flex; gap: 8px; margin-top: 12px; }
.lp-newsletter-form input {
  flex: 1; min-width: 0; padding: 10px 12px; border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06); color: #fff; font-size: 13px;
}
.lp-newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.4); }
.lp-newsletter-form button { border: none; border-radius: 8px; padding: 0 16px; background: var(--lp-gradient); color: #fff; font-weight: 700; cursor: pointer; }
.lp-newsletter-note { font-size: 11.5px; color: rgba(255, 255, 255, 0.4); margin-top: 8px; }
.lp-social-row { display: flex; gap: 10px; margin-top: 18px; }
.lp-social-row a {
  width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.75);
  transition: all 0.2s ease;
}
.lp-social-row a:hover { background: var(--lp-gradient); color: #fff; transform: translateY(-3px); border-color: transparent; }
.lp-footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 22px 0; color: rgba(255, 255, 255, 0.45); font-size: 12.5px; }
.lp-footer-bottom .lp-footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
.lp-footer-bottom a { color: rgba(255, 255, 255, 0.55); }
.lp-footer-bottom a:hover { color: #fff; }

/* -------------------------------------------------------------------
   Scroll reveal utility
   ------------------------------------------------------------------- */
.lp-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.lp-reveal.in-view { opacity: 1; transform: translateY(0); }
.lp-reveal-stagger.in-view > * { animation: lp-fade-up 0.6s ease both; }
.lp-reveal-stagger.in-view > *:nth-child(1) { animation-delay: 0.02s; }
.lp-reveal-stagger.in-view > *:nth-child(2) { animation-delay: 0.08s; }
.lp-reveal-stagger.in-view > *:nth-child(3) { animation-delay: 0.14s; }
.lp-reveal-stagger.in-view > *:nth-child(4) { animation-delay: 0.2s; }
.lp-reveal-stagger.in-view > *:nth-child(5) { animation-delay: 0.26s; }
.lp-reveal-stagger.in-view > *:nth-child(6) { animation-delay: 0.32s; }
.lp-reveal-stagger.in-view > *:nth-child(n+7) { animation-delay: 0.36s; }

/* -------------------------------------------------------------------
   Responsive
   ------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .lp-hero-grid { grid-template-columns: 1fr; }
  .lp-illustration { height: 380px; max-width: 420px; margin: 0 auto; }
  .lp-why-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .lp-header .nav-links { position: absolute; top: 100%; left: 0; right: 0; background: var(--lp-navy); flex-direction: column; align-items: flex-start; padding: 18px 20px; display: none; gap: 14px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .lp-header .nav-links.open { display: flex; }
  .lp-header .mobile-nav-toggle { display: block; }
  .lp-header nav { width: auto; }
  .lp-counters-grid { grid-template-columns: repeat(3, 1fr); }
  .lp-steps { grid-template-columns: repeat(2, 1fr); gap: 34px 0; }
  .lp-steps::before { display: none; }
  .lp-float-card { display: none; }
}
@media (max-width: 720px) {
  .lp-hero { padding-top: 40px; }
  .lp-hero-actions { flex-direction: column; align-items: stretch; }
  .lp-hero-actions .btn { width: 100%; }
  .lp-why-grid { grid-template-columns: 1fr; }
  .lp-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .lp-footer-about { grid-column: 1 / -1; }
  .lp-footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .lp-counters-grid { grid-template-columns: repeat(2, 1fr); gap: 22px 12px; }
  .lp-steps { grid-template-columns: 1fr; }
  .lp-service-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; -webkit-overflow-scrolling: touch; }
  .lp-tab-btn { flex: 0 0 auto; }
  .lp-testimonial-card { padding: 30px 22px; }
  .lp-footer-grid { grid-template-columns: 1fr; }
}
