/* ============================================
   Intellimax Landing Pages – Shared Styles
   ============================================ */

/* Navbar z-index fix — .lp-hero { position:relative } would paint over navbar */
header .navbar {
  z-index: 1030 !important;
}

/* ============================================================
   BOOTSTRAP 5 → 3 POLYFILL  (all missing utilities)
   ============================================================ */

/* --- Display --- */
.d-none         { display: none !important; }
.d-block        { display: block !important; }
.d-inline-block { display: inline-block !important; }
.d-inline       { display: inline !important; }
.d-flex         { display: flex !important; }
.d-grid         { display: grid !important; }

@media (min-width: 576px) {
  .d-sm-none  { display: none !important; }
  .d-sm-block { display: block !important; }
  .d-sm-flex  { display: flex !important; }
}
@media (min-width: 768px) {
  .d-md-none  { display: none !important; }
  .d-md-block { display: block !important; }
  .d-md-flex  { display: flex !important; }
}
@media (min-width: 992px) {
  .d-lg-none  { display: none !important; }
  .d-lg-block { display: block !important; }
  .d-lg-flex  { display: flex !important; }
}
@media (min-width: 1200px) {
  .d-xl-none  { display: none !important; }
  .d-xl-block { display: block !important; }
  .d-xl-flex  { display: flex !important; }
}

/* --- Flex --- */
.align-items-start    { align-items: flex-start !important; }
.align-items-center   { align-items: center !important; }
.align-items-end      { align-items: flex-end !important; }
.align-items-stretch  { align-items: stretch !important; }
.justify-content-start   { justify-content: flex-start !important; }
.justify-content-center  { justify-content: center !important; }
.justify-content-end     { justify-content: flex-end !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-around  { justify-content: space-around !important; }
.flex-wrap     { flex-wrap: wrap !important; }
.flex-nowrap   { flex-wrap: nowrap !important; }
.flex-column   { flex-direction: column !important; }
.flex-row      { flex-direction: row !important; }
.flex-grow-1   { flex-grow: 1 !important; }
.flex-shrink-0 { flex-shrink: 0 !important; }
.flex-fill     { flex: 1 1 auto !important; }

/* --- Gap --- */
.gap-0 { gap: 0 !important; }
.gap-1 { gap: 0.25rem !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }
.gap-5 { gap: 3rem !important; }

/* --- Margin --- */
.m-0  { margin: 0 !important; }
.m-1  { margin: 0.25rem !important; }
.m-2  { margin: 0.5rem !important; }
.m-3  { margin: 1rem !important; }
.m-4  { margin: 1.5rem !important; }
.m-5  { margin: 3rem !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.ms-auto { margin-left: auto !important; }
.me-auto { margin-right: auto !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.ms-0 { margin-left: 0 !important; }
.ms-1 { margin-left: 0.25rem !important; }
.ms-2 { margin-left: 0.5rem !important; }
.ms-3 { margin-left: 1rem !important; }
.ms-4 { margin-left: 1.5rem !important; }
.ms-5 { margin-left: 3rem !important; }

.me-0 { margin-right: 0 !important; }
.me-1 { margin-right: 0.25rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.me-3 { margin-right: 1rem !important; }
.me-4 { margin-right: 1.5rem !important; }
.me-5 { margin-right: 3rem !important; }

/* Responsive margins */
@media (min-width: 768px) {
  .mt-md-0 { margin-top: 0 !important; }
  .mt-md-3 { margin-top: 1rem !important; }
  .mt-md-4 { margin-top: 1.5rem !important; }
  .mb-md-0 { margin-bottom: 0 !important; }
  .mb-md-3 { margin-bottom: 1rem !important; }
}
@media (min-width: 992px) {
  .mt-lg-0 { margin-top: 0 !important; }
  .mt-lg-3 { margin-top: 1rem !important; }
  .mt-lg-4 { margin-top: 1.5rem !important; }
  .mt-lg-5 { margin-top: 3rem !important; }
  .mb-lg-0 { margin-bottom: 0 !important; }
  .mb-lg-3 { margin-bottom: 1rem !important; }
  .ms-lg-0 { margin-left: 0 !important; }
  .me-lg-0 { margin-right: 0 !important; }
}

/* --- Padding --- */
.p-0  { padding: 0 !important; }
.p-1  { padding: 0.25rem !important; }
.p-2  { padding: 0.5rem !important; }
.p-3  { padding: 1rem !important; }
.p-4  { padding: 1.5rem !important; }
.p-5  { padding: 3rem !important; }

.px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.px-1 { padding-left: 0.25rem !important; padding-right: 0.25rem !important; }
.px-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
.px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-5 { padding-left: 3rem !important; padding-right: 3rem !important; }

.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }

.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: 0.25rem !important; }
.pt-2 { padding-top: 0.5rem !important; }
.pt-3 { padding-top: 1rem !important; }
.pt-4 { padding-top: 1.5rem !important; }
.pt-5 { padding-top: 3rem !important; }

.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: 0.25rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.pb-3 { padding-bottom: 1rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.pb-5 { padding-bottom: 3rem !important; }

.ps-0 { padding-left: 0 !important; }
.ps-1 { padding-left: 0.25rem !important; }
.ps-2 { padding-left: 0.5rem !important; }
.ps-3 { padding-left: 1rem !important; }
.ps-4 { padding-left: 1.5rem !important; }

.pe-0 { padding-right: 0 !important; }
.pe-1 { padding-right: 0.25rem !important; }
.pe-2 { padding-right: 0.5rem !important; }
.pe-3 { padding-right: 1rem !important; }
.pe-4 { padding-right: 1.5rem !important; }

/* --- Row gutters (g-*) --- */
.row.g-0 { margin-left: 0; margin-right: 0; }
.row.g-0 > [class*="col-"] { padding-left: 0; padding-right: 0; margin-bottom: 0; }

.row.g-1 { margin-left: -2px; margin-right: -2px; }
.row.g-1 > [class*="col-"] { padding-left: 2px; padding-right: 2px; margin-bottom: 4px; }

.row.g-2 { margin-left: -4px; margin-right: -4px; }
.row.g-2 > [class*="col-"] { padding-left: 4px; padding-right: 4px; margin-bottom: 8px; }

.row.g-3 { margin-left: -8px; margin-right: -8px; }
.row.g-3 > [class*="col-"] { padding-left: 8px; padding-right: 8px; margin-bottom: 16px; }

.row.g-4 { margin-left: -12px; margin-right: -12px; }
.row.g-4 > [class*="col-"] { padding-left: 12px; padding-right: 12px; margin-bottom: 24px; }

.row.g-5 { margin-left: -16px; margin-right: -16px; }
.row.g-5 > [class*="col-"] { padding-left: 16px; padding-right: 16px; margin-bottom: 32px; }

/* --- Typography --- */
.fw-light    { font-weight: 300 !important; }
.fw-normal   { font-weight: 400 !important; }
.fw-medium   { font-weight: 500 !important; }
.fw-semibold { font-weight: 600 !important; }
.fw-bold     { font-weight: 700 !important; }
.fw-bolder   { font-weight: 900 !important; }
.text-center  { text-align: center !important; }
.text-start   { text-align: left !important; }
.text-end     { text-align: right !important; }
.text-muted   { color: #64748b !important; }
.text-white   { color: #fff !important; }
.text-dark    { color: #0f172a !important; }
.text-primary { color: var(--lp-primary) !important; }
.text-success { color: #16a34a !important; }
.text-danger  { color: #dc2626 !important; }
.text-warning { color: #f59e0b !important; }
.lh-1  { line-height: 1 !important; }
.lh-sm { line-height: 1.25 !important; }
.lh-base { line-height: 1.6 !important; }
.lh-lg { line-height: 1.75 !important; }
.fst-italic { font-style: italic !important; }
.text-uppercase { text-transform: uppercase !important; }
.text-decoration-none { text-decoration: none !important; }

/* --- Sizing --- */
.w-25  { width: 25% !important; }
.w-50  { width: 50% !important; }
.w-75  { width: 75% !important; }
.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }
.mw-100 { max-width: 100% !important; }

/* --- Border & radius --- */
.rounded       { border-radius: 6px !important; }
.rounded-0     { border-radius: 0 !important; }
.rounded-1     { border-radius: 4px !important; }
.rounded-2     { border-radius: 8px !important; }
.rounded-3     { border-radius: 12px !important; }
.rounded-4     { border-radius: 16px !important; }
.rounded-circle { border-radius: 50% !important; }
.rounded-pill  { border-radius: 50px !important; }
.border        { border: 1px solid #e2e8f0 !important; }
.border-0      { border: 0 !important; }

/* --- Position --- */
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.position-fixed    { position: fixed !important; }

/* --- Overflow --- */
.overflow-hidden { overflow: hidden !important; }
.overflow-auto   { overflow: auto !important; }

/* --- Opacity --- */
.opacity-75 { opacity: 0.75 !important; }
.opacity-50 { opacity: 0.5 !important; }
.opacity-25 { opacity: 0.25 !important; }

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  --lp-primary:    #1a95ce;
  --lp-secondary:  #0d6efd;
  --lp-accent:     #22bce0;
  --lp-grad:       linear-gradient(135deg, #1a95ce 0%, #0d6efd 100%);
  --lp-grad-soft:  linear-gradient(135deg, rgba(26,149,206,0.08) 0%, rgba(13,110,253,0.05) 100%);
  --lp-dark:       #0f172a;
  --lp-dark2:      #1e293b;
  --lp-text:       #334155;
  --lp-muted:      #64748b;
  --lp-light:      #f8fafc;
  --lp-border:     #e2e8f0;
  --lp-white:      #ffffff;
  --section-pad:   72px 0;
  --card-radius:   18px;
  --shadow-sm:     0 2px 8px rgba(15,23,42,0.06);
  --shadow-md:     0 8px 28px rgba(15,23,42,0.09);
  --shadow-lg:     0 20px 50px rgba(15,23,42,0.12);
  --shadow-color:  0 16px 40px rgba(26,149,206,0.14);
}

/* ============================================
   BASE
   ============================================ */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--lp-text);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

html { scroll-behavior: smooth; }

/* row gutter override for cards */
.row.g-4 { margin-left: -12px; margin-right: -12px; }
.row.g-4 > [class*="col-"] { padding-left: 12px; padding-right: 12px; margin-bottom: 24px; }

/* ============================================
   HERO
   ============================================ */
.lp-hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--lp-grad);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 110px 0 70px;
}

/* Subtle dot-grid pattern */
.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Large soft glow orbs */
.lp-hero::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.lp-hero-orb {
  position: absolute;
  bottom: -20%;
  left: -8%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Trust pills */
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1;
}

.trust-pill i { font-size: 12px; }

/* Also support old .lead-pill class */
.lead-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1;
  margin-bottom: 8px;
  margin-right: 6px;
}

.lp-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
  color: #fff;
}

.lp-hero .hero-subtitle {
  font-size: 1.5rem;
  opacity: 0.88;
  margin-bottom: 36px;
  line-height: 1.75;
  max-width: 580px;
  font-weight: 400;
}

.lp-hero .hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}

.lp-hero .hero-img-wrap {
  text-align: center;
  position: relative;
  z-index: 2;
}

.lp-hero .hero-img-wrap img {
  max-width: 100%;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.22));
  animation: heroFloat 5s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-16px) rotate(0.5deg); }
}

/* Buttons */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--lp-primary);
  border: 2px solid #fff;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.28s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.14);
  white-space: nowrap;
}

.btn-hero-primary:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  text-decoration: none;
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.28s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
}

.btn-hero-outline:hover {
  background: rgba(255,255,255,0.22);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}

/* Badge pill in hero (generic) */
.lp-hero .badge-pill {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.4px;
}

/* ============================================
   STATS BAR
   ============================================ */
.lp-stats {
  background: #fff;
  padding: 0;
  box-shadow: 0 6px 30px rgba(15,23,42,0.07);
  position: relative;
  z-index: 5;
  border-bottom: 1px solid var(--lp-border);
}

.lp-stats .container { padding-top: 0; padding-bottom: 0; }
.lp-stats .row { margin: 0; }

.stat-item {
  text-align: center;
  padding: 28px 20px;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: var(--lp-border);
}

.stat-item .stat-number {
  font-size: 3rem;
  font-weight: 900;
  background: var(--lp-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.stat-item .stat-label {
  font-size: 1rem;
  color: var(--lp-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   SHARED SECTION
   ============================================ */
.lp-section {
  padding: var(--section-pad);
}

.lp-section.bg-light-blue {
  background: var(--lp-light);
}

.lp-section.bg-dark-grad {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #0f172a 100%);
  color: #fff;
}

/* Section header */
.section-badge {
  display: inline-block;
  background: var(--lp-grad-soft);
  color: var(--lp-primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 18px;
  border: 1px solid rgba(26,149,206,0.18);
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--lp-dark);
  margin-bottom: 14px;
  line-height: 1.22;
  letter-spacing: -0.3px;
}

.section-title.light { color: #fff; }

.section-subtitle {
  color: var(--lp-muted);
  font-size: 1.5rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 0px;
}

.section-subtitle.light { color: rgba(255,255,255,0.72); }

.section-divider {
  width: 52px;
  height: 4px;
  background: var(--lp-grad);
  border-radius: 4px;
  margin: 16px auto 0;
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.feature-card-lp {
  background: #fff;
  border-radius: var(--card-radius);
  padding: 34px 30px;
  height: 100%;
  border: 1px solid var(--lp-border);
  transition: all 0.32s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(15,23,42,0.05);
}

.feature-card-lp::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--lp-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s ease;
}

.feature-card-lp::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--lp-grad-soft);
  opacity: 0;
  transition: opacity 0.32s ease;
  border-radius: var(--card-radius);
}

.feature-card-lp:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-color);
  border-color: rgba(26,149,206,0.2);
}

.feature-card-lp:hover::before { transform: scaleX(1); }
.feature-card-lp:hover::after  { opacity: 1; }

.feature-card-lp > * { position: relative; z-index: 1; }

.feature-card-lp .f-icon {
  width: 56px;
  height: 56px;
  background: var(--lp-grad-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  color: var(--lp-primary);
  border: 1px solid rgba(26,149,206,0.12);
  transition: all 0.32s ease;
}

.feature-card-lp:hover .f-icon {
  background: var(--lp-grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(26,149,206,0.3);
}

.feature-card-lp h4 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--lp-dark);
  letter-spacing: -0.1px;
}

.feature-card-lp p {
  font-size: 1.5rem;
  color: var(--lp-muted);
  line-height: 1.72;
  margin: 0;
}

.feature-card-lp ul {
  font-size: 1.5rem;
  color: var(--lp-muted);
  line-height: 1.88;
  padding-left: 18px;
  margin: 0;
}

/* ============================================
   PROCESS / HOW IT WORKS
   ============================================ */
.step-card {
  text-align: center;
  padding: 36px 18px 32px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--lp-border);
  box-shadow: 0 2px 12px rgba(15,23,42,0.05);
  transition: all 0.28s ease;
  height: 100%;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-color);
  border-color: rgba(26,149,206,0.22);
}

.step-number {
  width: 58px;
  height: 58px;
  background: var(--lp-grad);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 20px rgba(26,149,206,0.38);
}

.step-connector {
  position: absolute;
  top: 62px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(26,149,206,0.4) 0%, rgba(26,149,206,0.08) 100%);
  z-index: 0;
}

.step-card h4 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--lp-dark);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 1.6rem;
  color: var(--lp-muted);
  margin: 0;
  line-height: 1.65;
}

/* ============================================
   BENEFIT LIST
   ============================================ */
.benefit-item-lp {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--lp-border);
}

.benefit-item-lp:last-child { border-bottom: none; }

.benefit-icon-box {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: var(--lp-grad-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--lp-primary);
  border: 1px solid rgba(26,149,206,0.12);
}

.benefit-item-lp h5 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--lp-dark);
}

.benefit-item-lp p {
  font-size: 1.5rem;
  color: var(--lp-muted);
  margin: 0;
  line-height: 1.65;
}

/* ============================================
   FAQ
   ============================================ */
.lp-faq .accordion-item {
  border: 1px solid var(--lp-border) !important;
  border-radius: 14px !important;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(15,23,42,0.05);
  transition: box-shadow 0.2s ease;
}

.lp-faq .accordion-item:hover {
  box-shadow: var(--shadow-md);
}

.lp-faq .accordion-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 2rem;
  color: var(--lp-dark);
  background: #fff;
  padding: 22px 26px;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.lp-faq .accordion-button:not(.collapsed) {
  background: var(--lp-grad-soft);
  color: var(--lp-primary);
}

.lp-faq .accordion-button::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--lp-primary);
  font-size: 1.5rem;
}

.lp-faq .accordion-button.collapsed::after {
  transform: rotate(0deg);
}

.lp-faq .accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
}

.lp-faq .accordion-body {
  font-size: 1.5rem;
  color: var(--lp-muted);
  line-height: 1.82;
  padding: 4px 26px 26px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.lp-cta {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0d6efd 100%);
  padding: 40px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.lp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.lp-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -15%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,149,206,0.3) 0%, transparent 70%);
  pointer-events: none;
}

.lp-cta > .container { position: relative; z-index: 2; }

.lp-cta h2 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: #fff;
  letter-spacing: -0.4px;
}

.lp-cta p {
  opacity: 0.85;
  font-size: 1.8rem;
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: var(--lp-primary);
  border: none;
  padding: 15px 38px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.28s ease;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  margin: 6px;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.24);
  color: var(--lp-primary);
  text-decoration: none;
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  padding: 15px 38px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.28s ease;
  margin: 6px;
}

.btn-cta-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
  transform: translateY(-3px);
  text-decoration: none;
}

/* ============================================
   HIGHLIGHT CARDS (dark bg)
   ============================================ */
.highlight-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.highlight-card:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.25);
  border-color: rgba(255,255,255,0.22);
}

.highlight-card .h-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.highlight-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.highlight-card p {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.72);
  margin: 0;
  line-height: 1.7;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison-table {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--lp-border);
}

.comparison-table th {
  background: var(--lp-grad);
  color: #fff;
  padding: 18px 24px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.comparison-table td {
  padding: 15px 24px;
  font-size: 1.5rem;
  color: var(--lp-muted);
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
  background: #fff;
  line-height: 1.5;
}

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: #f8fbff; }

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--lp-dark);
}

.comparison-table .check { color: #16a34a; font-size: 1rem; }
.comparison-table .cross { color: #dc2626; font-size: 1rem; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px 28px;
  border: 1px solid var(--lp-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-color);
  border-color: rgba(26,149,206,0.2);
}

.testimonial-card .stars {
  color: #f59e0b;
  font-size: 1.05rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 1rem;
  color: var(--lp-text);
  line-height: 1.78;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-card p::before {
  content: '\201C';
  font-size: 3rem;
  line-height: 0;
  vertical-align: -1rem;
  color: var(--lp-primary);
  opacity: 0.25;
  margin-right: 4px;
}

.testimonial-card .author {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lp-dark);
}

.testimonial-card .role {
  font-size: 0.9rem;
  color: var(--lp-muted);
  margin-top: 2px;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(37,211,102,0.45);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 30px rgba(37,211,102,0.55);
  color: #fff;
  text-decoration: none;
}

/* ============================================
   PROBLEM / SOLUTION PANEL
   ============================================ */
.problem-panel {
  background: #fff;
  border-radius: 18px;
  padding: 38px 34px;
  border: 1px solid var(--lp-border);
  box-shadow: var(--shadow-md);
  height: 100%;
}

/* Better visual section header spacing */
.section-header-block {
  margin-bottom: 52px;
}
.text-center .section-badge + .section-title {
  margin-top: 4px;
}
.text-center .section-title + .section-divider {
  margin-bottom: 18px;
}

/* .problem-panel h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--lp-dark);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--lp-light);
} */

.check-item, .cross-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f8fafc;
}

.check-item:last-child, .cross-item:last-child { border-bottom: none; }

.check-item .ci-icon { color: #16a34a; font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.cross-item .ci-icon { color: #dc2626; font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

.check-item p, .cross-item p {
  margin: 0;
  font-size: 1rem;
  color: var(--lp-text);
  line-height: 1.65;
}

/* ============================================
   INLINE PROBLEM/SOLUTION (old markup compat)
   ============================================ */
.lp-section .d-flex.align-items-start p {
  font-size: 1.3rem !important;
}

/* ============================================
   HERO FINANCE VISUAL
   ============================================ */
.hero-finance-visual {
  position: relative;
  width: 100%;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

/* Floating ₹ particles */
.rupee-particle {
  position: absolute;
  font-weight: 900;
  color: rgba(255,255,255,0.22);
  animation: rupeeRise 5s ease-in-out infinite;
  user-select: none;
  pointer-events: none;
  font-family: 'Inter', sans-serif;
}
.rp1 { font-size: 2.6rem; top: 8%;  left: 4%;  animation-delay: 0s;   }
.rp2 { font-size: 1.6rem; top: 55%; right: 6%; animation-delay: 1.8s; }
.rp3 { font-size: 3rem;   bottom: 10%; left: 22%; animation-delay: 3.2s; }
.rp4 { font-size: 1.2rem; top: 30%; left: 14%; animation-delay: 2.5s; }

@keyframes rupeeRise {
  0%   { transform: translateY(0)    rotate(0deg);   opacity: 0.22; }
  50%  { transform: translateY(-22px) rotate(12deg); opacity: 0.45; }
  100% { transform: translateY(0)    rotate(0deg);   opacity: 0.22; }
}

/* Main glassy card */
.hfv-card {
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 22px;
  padding: 26px 28px 22px;
  width: 270px;
  position: relative;
  z-index: 2;
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}

.hfv-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.hfv-card-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hfv-card-label i { font-size: 0.85rem; }

.hfv-live-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.5);
  animation: livePulse 1.8s ease-in-out infinite;
  display: inline-block;
}

@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0   rgba(74,222,128,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(74,222,128,0);    }
  100% { box-shadow: 0 0 0 0   rgba(74,222,128,0);    }
}

.hfv-amount {
  font-size: 2.1rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}

.hfv-gain {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(74,222,128,0.18);
  color: #4ade80;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 18px;
}

/* Animated bar chart */
.hfv-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 0;
}

.hfv-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: rgba(255,255,255,0.25);
  animation: barGrow 1.2s cubic-bezier(.22,.61,.36,1) forwards;
  transform: scaleY(0);
  transform-origin: bottom;
}

.hfv-bar:nth-child(1) { animation-delay: 0.1s; }
.hfv-bar:nth-child(2) { animation-delay: 0.2s; }
.hfv-bar:nth-child(3) { animation-delay: 0.3s; }
.hfv-bar:nth-child(4) { animation-delay: 0.4s; }
.hfv-bar:nth-child(5) { animation-delay: 0.5s; }
.hfv-bar:nth-child(6) { background: rgba(255,255,255,0.75); animation-delay: 0.6s; }

@keyframes barGrow {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

.hfv-bar-labels {
  display: flex;
  justify-content: space-between;
  padding-top: 5px;
}

.hfv-bar-labels span {
  flex: 1;
  text-align: center;
  font-size: 0.77rem;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}

/* Floating metric badges */
.hfv-badge {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 11px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  z-index: 3;
  min-width: 140px;
}

.hfv-badge i {
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--lp-primary);
}

.hfv-badge-num {
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}

.hfv-badge-lbl {
  font-size: 0.88rem;
  color: #64748b;
  margin-top: 2px;
  white-space: nowrap;
}

.hfv-b1 {
  top: 2%;
  right: -2%;
  animation: floatBadge 3.5s ease-in-out infinite;
  animation-delay: 0s;
}

.hfv-b2 {
  bottom: 8%;
  left: -4%;
  animation: floatBadge 3.5s ease-in-out infinite;
  animation-delay: 1.2s;
}

.hfv-b3 {
  top: 42%;
  right: -6%;
  animation: floatBadge 3.5s ease-in-out infinite;
  animation-delay: 2.4s;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* GPS/Tracking visual (Field Front page) */
.hero-tracking-visual {
  position: relative;
  width: 100%;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.htv-map-card {
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 22px;
  padding: 22px 24px;
  width: 280px;
  position: relative;
  z-index: 2;
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}

.htv-map-header {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.htv-map-area {
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  height: 130px;
  position: relative;
  margin-bottom: 14px;
  overflow: hidden;
}

/* CSS map grid lines */
.htv-map-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}

.htv-pin {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.htv-pin::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  top: 4px;
  left: 4px;
}

.htv-pin.p1 { background: #4ade80; top: 20%; left: 25%; animation: pinPulse 2s ease-in-out infinite; }
.htv-pin.p2 { background: #60a5fa; top: 55%; left: 55%; animation: pinPulse 2s ease-in-out infinite 0.7s; }
.htv-pin.p3 { background: #fb923c; top: 30%; left: 70%; animation: pinPulse 2s ease-in-out infinite 1.4s; }
.htv-pin.p4 { background: #f472b6; top: 65%; left: 20%; animation: pinPulse 2s ease-in-out infinite 0.3s; }

@keyframes pinPulse {
  0%, 100% { transform: rotate(-45deg) scale(1); }
  50%       { transform: rotate(-45deg) scale(1.3); }
}

.htv-pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(74,222,128,0.5);
  animation: ringExpand 2s ease-out infinite;
  top: calc(20% - 10px);
  left: calc(25% - 10px);
  width: 34px;
  height: 34px;
}

@keyframes ringExpand {
  0%   { transform: scale(0.8); opacity: 0.7; }
  100% { transform: scale(1.8); opacity: 0; }
}

.htv-emp-list { display: flex; flex-direction: column; gap: 8px; }

.htv-emp-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 7px 10px;
}

.htv-emp-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.htv-emp-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  flex: 1;
}

.htv-emp-loc {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 3px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
  .lp-hero {
    min-height: auto;
    padding: 120px 0 64px;
  }
  .lp-hero h1 { font-size: 2.1rem; }
  .lp-hero .hero-img-wrap { margin-top: 44px; }
  :root { --section-pad: 56px 0; }
  .stat-item + .stat-item::before { display: none; }
}

@media (max-width: 767px) {
  .lp-hero { padding: 100px 0 56px; }
  .lp-hero h1 { font-size: 1.95rem; letter-spacing: -0.2px; }
  .lp-hero .hero-subtitle { font-size: 1.05rem; }
  .btn-hero-primary,
  .btn-hero-outline { padding: 13px 28px; font-size: 15px; }
  .stat-item { padding: 28px 14px; }
  .stat-item .stat-number { font-size: 2.2rem; }
  :root { --section-pad: 48px 0; --card-radius: 14px; }
  .lp-cta { padding: 60px 0; }
  .lp-cta h2 { font-size: 2rem; }
  .section-title { font-size: 2rem; }
  .section-subtitle { font-size: 1.3rem; }
}

@media (max-width: 575px) {
  .lp-hero h1 { font-size: 1.75rem; }
  .stat-item .stat-number { font-size: 2rem; }
  .hero-trust-row { gap: 8px; }
  .trust-pill, .lead-pill { font-size: 13px; padding: 7px 14px; }
  .section-title { font-size: 1.8rem; }
  .section-subtitle { font-size: 1.2rem; }
}
