/* FirmLift.ai — Shared Design System */
:root {
  --navy: #0D1F3C;
  --dark: #080F1E;
  --blue: #2E7DD1;
  --light: #F4F6FA;
  --white: #FFFFFF;
  --gray: #CCCCCC;
  --text: #333333;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, .stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

h1 { font-size: clamp(32px, 5vw, 60px); line-height: 1.1; }
h2 { font-size: clamp(28px, 3.5vw, 40px); line-height: 1.2; }
h3 { font-size: clamp(20px, 2.5vw, 26px); line-height: 1.3; }
p  { line-height: 1.7; }

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 16px;
}

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
section { padding: 80px 0; }
section.slim { padding: 48px 0; }

/* ── COLORS ── */
.bg-dark  { background: var(--dark);  color: var(--white); }
.bg-dark p, .bg-dark li { color: var(--gray); }
.bg-navy  { background: var(--navy);  color: var(--white); }
.bg-navy p { color: var(--gray); }
.bg-light { background: var(--light); color: var(--text); }
.bg-white { background: var(--white); color: var(--text); }
.bg-blue  { background: var(--blue);  color: var(--white); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity .2s, transform .1s;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn-primary { background: var(--blue); color: var(--white); border: 2px solid var(--blue); }
.btn-outline  { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-lg { padding: 20px 44px; font-size: 17px; }
.btn-full { display: block; width: 100%; text-align: center; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark);
  border-bottom: 1px solid rgba(46,125,209,.25);
  padding: 0 32px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo img { height: 42px; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta a {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 6px;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(8,15,30,.62);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 80px 32px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}
.hero-content h1 { margin-bottom: 24px; }
.hero-content p { font-size: 19px; color: rgba(255,255,255,.85); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── PROOF STRIP ── */
.proof-strip {
  background: var(--navy);
  padding: 20px 32px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  letter-spacing: .5px;
}
.proof-strip span { margin: 0 20px; }
.proof-strip .sep { color: var(--blue); }

/* ── PILLAR CARDS ── */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.pillar-card {
  background: var(--white);
  border: 1px solid #dde3ef;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, transform .2s;
}
.pillar-card:hover { box-shadow: 0 8px 32px rgba(46,125,209,.18); transform: translateY(-4px); }
.pillar-card img { width: 72px; height: 72px; object-fit: contain; margin-bottom: 20px; }
.pillar-card h3 { color: var(--blue); font-size: 16px; margin-bottom: 10px; }
.pillar-card p { font-size: 14px; color: #555; }

/* ── 3-STEP ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
}
.step-card { text-align: center; }
.step-card img { width: 80px; height: 80px; margin-bottom: 24px; }
.step-card h3 { color: var(--blue); margin-bottom: 12px; }
.step-card p { color: var(--gray); font-size: 15px; }
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 16px;
}

/* ── STATS ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
  text-align: center;
}
.stat-box { padding: 32px 16px; }
.stat-number { font-size: clamp(36px, 4vw, 52px); color: var(--blue); margin-bottom: 8px; }
.stat-label { font-size: 15px; color: var(--gray); }
.bg-light .stat-label { color: #555; }

/* ── PRICING ── */
.pricing-banner {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 18px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  margin-bottom: 56px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pricing-card {
  position: relative;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  padding: 40px 32px;
  color: var(--white);
}
.pricing-card.featured { border-color: var(--blue); border-width: 2px; }
.badge-popular, .badge-value {
  position: absolute;
  top: -14px; right: 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 12px;
}
.badge-popular { background: var(--navy); color: var(--white); }
.badge-value   { background: var(--blue); color: var(--white); }
.pricing-card h3 { font-size: 20px; margin-bottom: 8px; }
.pricing-price { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 44px; color: var(--blue); margin: 16px 0 8px; }
.pricing-price span { font-size: 18px; color: rgba(255,255,255,.6); }
.pricing-card p { color: rgba(255,255,255,.75); font-size: 15px; margin-bottom: 32px; }
.pricing-note { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 16px; text-align: center; }

/* ── FAQ ACCORDION ── */
.faq-list { max-width: 800px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,.1); }
.bg-dark .faq-item { border-bottom-color: rgba(255,255,255,.1); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
}
.faq-q .icon { color: var(--blue); font-size: 22px; transition: transform .3s; }
.faq-item.open .icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 22px; font-size: 15px; line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ── CTA BANNER ── */
.cta-banner { text-align: center; }
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p  { margin-bottom: 36px; font-size: 17px; }

/* ── PILLAR PAGE ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.stat-bullets { list-style: none; }
.stat-bullets li {
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  font-size: 15px;
  position: relative;
}
.bg-dark .stat-bullets li { border-bottom-color: rgba(255,255,255,.08); color: var(--gray); }
.stat-bullets li::before { content: "→"; color: var(--blue); position: absolute; left: 0; font-weight: 700; }
.feature-bullets { list-style: none; }
.feature-bullets li { padding: 12px 0 12px 28px; font-size: 15px; position: relative; }
.feature-bullets li::before { content: "✓"; color: var(--blue); position: absolute; left: 0; font-weight: 700; font-size: 16px; }
.pillar-photo { width: 100%; border-radius: 12px; object-fit: cover; height: 380px; }

/* ── RESULTS CARDS ── */
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.result-card {
  background: rgba(46,125,209,.1);
  border: 1px solid rgba(46,125,209,.25);
  border-radius: 12px;
  padding: 32px 28px;
}
.result-card h3 { color: var(--blue); margin-bottom: 20px; font-size: 18px; }
.result-card ul { list-style: none; }
.result-card li { padding: 8px 0 8px 20px; font-size: 14px; color: var(--gray); position: relative; }
.result-card li::before { content: "•"; color: var(--blue); position: absolute; left: 0; }

/* ── MYTH/REALITY ── */
.myth-grid { display: grid; grid-template-columns: 1fr; gap: 28px; max-width: 800px; margin: 48px auto 0; }
.myth-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
}
.myth-side, .reality-side { padding: 28px 32px; }
.myth-side { background: rgba(255,255,255,.06); }
.reality-side { background: rgba(46,125,209,.18); }
.myth-label, .reality-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.myth-label { color: rgba(255,255,255,.5); }
.reality-label { color: var(--blue); }

/* ── TESTIMONIALS ── */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 32px 28px;
}
.testimonial-card .stars { color: #FFD700; font-size: 18px; margin-bottom: 16px; }
.testimonial-card p { color: rgba(255,255,255,.8); font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.testimonial-card .author { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; color: var(--white); }
.testimonial-card .firm { font-size: 13px; color: rgba(255,255,255,.5); }

/* ── FORM ── */
.form-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(46,125,209,.3);
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 640px;
  margin: 0 auto;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 13px; color: rgba(255,255,255,.8); margin-bottom: 8px; }
.form-group input, .form-group select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
  color: var(--white);
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
}
.form-group input::placeholder { color: rgba(255,255,255,.4); }
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--blue); }
.form-note { font-size: 13px; color: rgba(255,255,255,.4); text-align: center; margin-top: 16px; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(46,125,209,.2);
  padding: 48px 32px 28px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-logo img { height: 36px; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: rgba(255,255,255,.6); text-decoration: none; font-size: 14px; }
.footer-links a:hover { color: var(--white); }
.footer-copy { color: rgba(255,255,255,.35); font-size: 13px; }

/* ── INCLUDE BADGE ── */
.include-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 40px; }
.include-item { display: flex; align-items: flex-start; gap: 14px; }
.include-item .check { color: var(--blue); font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.include-item p { font-size: 15px; }

/* ── PILL BADGE ── */
.pill-badge {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

/* ── MOBILE ── */
@media (max-width: 1024px) { .pillar-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) {
  .pillar-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .myth-card { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero-content { padding: 60px 20px; }
  .container { padding: 0 20px; }
  section { padding: 56px 0; }
}


/* ── HAMBURGER NAV (MOBILE) ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1100;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all .3s;
  border-radius: 2px;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0; right: 0;
  background: var(--dark);
  border-top: 1px solid rgba(46,125,209,.25);
  z-index: 999;
  padding: 24px 24px 32px;
  flex-direction: column;
  gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a.nav-cta-mobile {
  background: var(--blue);
  color: var(--white) !important;
  text-align: center;
  border-radius: 6px;
  padding: 16px 24px;
  margin-top: 16px;
  border-bottom: none;
}

/* ── ADDITIONAL MOBILE FIXES ── */
@media (max-width: 768px) {
  /* Show hamburger, hide nav links */
  .nav-hamburger { display: flex; }
  
  /* Include grid stack */
  .include-grid { grid-template-columns: 1fr; }
  
  /* Myth card stack */
  .myth-card { grid-template-columns: 1fr; }
  
  /* Reduce form-card padding */
  .form-card { padding: 28px 20px; }

  /* Proof strip wrap */
  .proof-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; padding: 16px 16px; }
  .proof-strip span { margin: 4px 8px; font-size: 12px; }
  
  /* Hero adjustments */
  .hero { min-height: 480px; }
  
  /* Pricing banner text size */
  .pricing-banner { font-size: 13px; }

  /* Results & pillar page two-col image */
  .pillar-photo { height: 240px; }

  /* Stat number smaller on mobile */
  .stat-number { font-size: 36px; }

  /* Buttons on mobile */
  .btn-lg { padding: 16px 28px; font-size: 15px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 320px; text-align: center; }

  /* Container */
  section { padding: 48px 0; }
  
  /* Footer links */
  .footer-links { gap: 16px; }
}

/* ── GHL CHAT WIDGET Z-INDEX SAFETY ── */
/* Ensure chat widget doesn't block sticky nav */
.ghl-chat-widget-container, [data-chat-widget] { z-index: 500 !important; }

/* ── HERO SPLIT (two-column with VSL) ── */
.hero-split { align-items: stretch; min-height: 680px; }
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-text { color: var(--white); }
.hero-text h1 { margin-bottom: 28px; }
.hero-text p  { font-size: 19px; color: rgba(255,255,255,.85); margin-bottom: 44px; }

.vsl-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.7), 0 0 0 1px rgba(46,125,209,.45), inset 0 0 0 1px rgba(255,255,255,.05);
}
.vsl-caption {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  text-align: center;
  letter-spacing: .3px;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 64px 20px 48px;
    gap: 40px;
  }
  .hero-text { text-align: center; }
  .hero-btns { justify-content: center; }
}

/* ── FA ICON STYLES ── */
.pillar-icon {
  font-size: 44px;
  color: var(--blue);
  margin-bottom: 20px;
  display: block;
}
.step-icon {
  font-size: 48px;
  color: var(--blue);
  margin-bottom: 20px;
  display: block;
}

/* ── GLOBAL BREATHING ROOM ── */
section { padding: 96px 0; }
section.slim { padding: 56px 0; }
.pillar-grid  { margin-top: 64px; }
.steps-grid   { margin-top: 64px; }
.stats-grid   { margin-top: 64px; }
.pricing-grid { margin-top: 0; }
.testimonial-grid { margin-top: 56px; }

h2 { margin-bottom: 8px; }
.container > div[style*="text-align:center"] { margin-bottom: 56px; }

@media (max-width: 768px) {
  section { padding: 64px 0; }
}

/* ════════════════════════════════════════════
   PREMIUM UI UPGRADE — Plus Jakarta Sans, Glows, Bento, AOS
   ════════════════════════════════════════════ */

/* ── FONT OVERRIDE ── */
body, input, select, textarea, button {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
}
h1, h2, h3, h4, .stat-number, .btn, .eyebrow, nav, .nav-links a, .step-number {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
}
h1 { letter-spacing: -1.5px; line-height: 1.06; }
h2 { letter-spacing: -0.8px; line-height: 1.18; }
h3 { letter-spacing: -0.3px; }
p  { letter-spacing: 0.1px; }

/* ── CTA BUTTON GLOW ── */
.btn-primary {
  box-shadow: 0 0 24px rgba(46,125,209,.45), 0 4px 16px rgba(46,125,209,.3);
  transition: opacity .2s, transform .15s, box-shadow .2s;
}
.btn-primary:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(46,125,209,.65), 0 8px 28px rgba(46,125,209,.45);
}

/* ── HERO VSL AMBIENT GLOW ── */
.hero-vsl {
  position: relative;
}
.hero-vsl::before {
  content: '';
  position: absolute;
  inset: -30% -20%;
  background: radial-gradient(ellipse at center, rgba(46,125,209,.28) 0%, transparent 65%);
  pointer-events: none;
  z-index: -1;
  border-radius: 50%;
}

/* ── BENTO BOX GRID ── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 60px;
  grid-auto-flow: dense;
}
.bento-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 36px 32px;
  border-radius: 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-decoration: none;
  color: inherit;
  transition: background .25s, border-color .25s, transform .25s, box-shadow .25s;
  cursor: pointer;
}
.bento-card:hover {
  background: rgba(46,125,209,.09);
  border-color: rgba(46,125,209,.45);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.35), 0 0 0 1px rgba(46,125,209,.2);
}
.bento-wide   { grid-column: span 2; }
.bento-square { grid-column: span 1; }

.bento-icon {
  font-size: 32px;
  color: var(--blue);
}
.bento-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
}
.bento-card p {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
  flex: 1;
}
.bento-arrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--blue);
  letter-spacing: .3px;
  margin-top: auto;
}

@media (max-width: 768px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-wide, .bento-square { grid-column: span 1; }
  .bento-card { padding: 28px 24px; }
}

/* ── SECTION BACKGROUND OVERRIDE (dark for bento contrast) ── */
#pillars.bg-light { background: #0a1628; }
#pillars.bg-light h2, #pillars.bg-light p { color: #fff; }
#pillars.bg-light > .container > div p { color: rgba(255,255,255,.65); }

/* ── AOS OVERRIDE (ensure no flash) ── */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ── HERO — PURE CSS GRADIENT (no background images) ── */
.hero {
  background: radial-gradient(circle at 50% 0%, #0d274d 0%, #0a0f1e 100%) !important;
}
.hero-bg { display: none !important; }   /* kill all raster hero-bg */
.hero-overlay { background: rgba(8,15,30,.3) !important; }

.hero-centered {
  min-height: unset;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-centered .hero-content {
  max-width: 820px;
  padding: 48px 32px 48px;
  text-align: center;
  margin: 0 auto;
}
.hero-centered .hero-content p {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255,255,255,.82);
  margin-bottom: 40px;
}
.hero-centered h1 { margin-bottom: 20px; }

/* ── VSL SECTION ── */
.vsl-section { padding: 48px 0 80px !important; }
.vsl-section .container { max-width: 780px !important; }
.vsl-section .vsl-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.6), 0 0 0 1px rgba(46,125,209,.35);
}
@media (max-width: 768px) {
  .vsl-section { padding: 32px 0 56px !important; }
  .vsl-section .container { padding: 0 16px !important; }
}

/* ── STEP ICON BOX (how-it-works large icons) ── */
.step-visual {
  display: flex;
  align-items: center;
  justify-content: stretch;
}
.step-icon-box {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(46,125,209,.15) 0%, rgba(13,39,77,.25) 100%);
  border: 1px solid rgba(46,125,209,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 96px;
  color: var(--blue);
  box-shadow: 0 8px 40px rgba(46,125,209,.12), inset 0 1px 0 rgba(255,255,255,.06);
}
/* Light bg override — more visible border */
.bg-light .step-icon-box {
  background: linear-gradient(135deg, rgba(46,125,209,.1) 0%, rgba(46,125,209,.04) 100%);
  border-color: rgba(46,125,209,.35);
  box-shadow: 0 8px 32px rgba(46,125,209,.1);
}
@media (max-width: 768px) {
  .step-icon-box { font-size: 56px; aspect-ratio: 3 / 2; }
}

/* ── GLOBAL LINE-HEIGHT & TEXT FIX ── */
p { line-height: 1.75; margin-bottom: 0; }
.hero-content p, section p { line-height: 1.75; }
.hero-content h1 + p { margin-top: 0; }

/* ── PILLAR PAGE two-col gap ── */
.two-col { gap: 56px; }
@media (max-width: 768px) {
  .step-icon-box { width: 120px; height: 120px; font-size: 48px; }
  .hero-centered { min-height: 400px; }
  .hero-centered .hero-content { padding: 72px 20px 56px; }
}

/* ── LOGO — FirmLift.ai transparent PNG, colors preserved ── */
.nav-logo img, .footer-logo img {
  height: 38px;
  filter: brightness(1.6) saturate(1.1) drop-shadow(0 0 8px rgba(46,125,209,.25));
}

/* ── LOGO — transparent PNG, white on dark nav ── */
.nav-logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);  /* renders white on dark bg */
}
.footer-logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}
/* ════════════════════════════════════════════
   VSL SECTION — Premium Design Pattern
   (best practice: max 640px, centered, framed)
   ════════════════════════════════════════════ */
.vsl-section {
  padding: 40px 0 64px !important;
}
.vsl-wrapper {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.vsl-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.vsl-heading {
  font-size: clamp(24px, 3vw, 34px);
  color: #fff;
  letter-spacing: -0.8px;
  line-height: 1.2;
  margin-bottom: 12px;
}
.vsl-sub {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin-bottom: 32px !important;
}

/* The player container — 16:9 locked, max 640px */
.vsl-player-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 2px 4px rgba(0,0,0,.3),
    0 8px 24px rgba(0,0,0,.4),
    0 24px 64px rgba(0,0,0,.5),
    0 0 0 1px rgba(46,125,209,.3);
  background: #000;
  /* Lock to max 480px tall — prevents portrait video from dominating the page */
  max-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vsl-player {
  width: 100%;
  height: 100%;
  max-height: 480px;
  display: block;
  border-radius: 14px;
  object-fit: contain;   /* letterbox portrait video, no crop */
  background: #000;
}
@media (max-width: 768px) {
  .vsl-player-wrap { max-height: 340px; }
  .vsl-player { max-height: 340px; }
}

.vsl-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  font-weight: 500;
  flex-wrap: wrap;
}
.vsl-trust span:first-child {
  color: #f5a623;
  font-size: 14px;
}

@media (max-width: 768px) {
  .vsl-section { padding: 56px 0 72px !important; }
  .vsl-wrapper { padding: 0 16px; }
  .vsl-heading { font-size: 22px; }
}

/* ════════════════════════════════════════════
   STATS SECTION — Dark Cards w/ Glassmorphism
   ════════════════════════════════════════════ */
.stats-section {
  position: relative;
  background: #070d1a;
  padding: 96px 0;
  overflow: hidden;
  text-align: center;
}
.stats-bg-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(46,125,209,.18) 0%, transparent 70%);
  pointer-events: none;
}
.stats-header { margin-bottom: 56px; }

.stat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .25s, background .25s, transform .25s;
}
.stat-card:hover {
  border-color: rgba(46,125,209,.4);
  background: rgba(46,125,209,.07);
  transform: translateY(-4px);
}
.stat-card-featured {
  border-color: rgba(46,125,209,.4);
  background: rgba(46,125,209,.1);
  box-shadow: 0 0 40px rgba(46,125,209,.12);
}
.stat-card-icon {
  font-size: 28px;
  color: var(--blue);
  margin-bottom: 4px;
}
.stat-card-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 3.5vw, 46px);
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1;
}
.stat-card-featured .stat-card-number { color: #fff; }
.stat-card-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  line-height: 1.4;
}
.stat-card-note {
  font-size: 12px;
  color: rgba(255,255,255,.38);
  line-height: 1.4;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stat-cards { grid-template-columns: 1fr; }
}

/* ── VSL PLAY BUTTON OVERLAY ── */
.vsl-player-wrap {
  position: relative;
  cursor: pointer;
}
.vsl-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(0,0,0,.15);
  border-radius: 14px;
  transition: opacity .35s ease;
}
.vsl-play-btn {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 8px 24px rgba(46,125,209,.6));
  transition: transform .2s, filter .2s;
}
.vsl-play-overlay:hover .vsl-play-btn {
  transform: scale(1.1);
  filter: drop-shadow(0 12px 32px rgba(46,125,209,.85));
}
.vsl-overlay-label {
  display: none;
}

/* ── STEP CARD V2 — Icon + number integrated, no overlap ── */
.step-card-v2 {
  text-align: center;
  padding: 40px 28px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  transition: border-color .25s, background .25s;
}
.step-card-v2:hover {
  background: rgba(46,125,209,.07);
  border-color: rgba(46,125,209,.35);
}
.step-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(46,125,209,.15);
  border: 1px solid rgba(46,125,209,.3);
  border-radius: 50px;
  padding: 10px 20px;
  margin-bottom: 24px;
}
.step-badge i {
  font-size: 18px;
  color: var(--blue);
}
.step-badge span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: rgba(255,255,255,.55);
  letter-spacing: 1px;
}
.step-card-v2 h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 12px;
}
.step-card-v2 p {
  color: rgba(255,255,255,.6);
  font-size: 15px;
  line-height: 1.65;
}

/* ── WORDMARK LOGO (crisp CSS text, no image artefacts) ── */
.logo-wordmark {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.5px;
  text-decoration: none;
  line-height: 1;
}
.logo-accent { color: var(--blue); }
.logo-dot    { color: rgba(255,255,255,.45); font-weight: 600; }
.logo-wordmark-footer { font-size: 20px; }

/* Remove old img logo CSS */
.nav-logo img, .footer-logo img { display: none; }

/* ── HOW IT WORKS — MOBILE FIX ── */
@media (max-width: 768px) {
  /* Stack two-col cleanly */
  .two-col {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  /* Content always first, visual always last (or hidden) */
  .step-visual {
    display: none !important;  /* hide icon boxes on mobile — step numbers are enough */
  }
  /* Step number circle inline with heading */
  .two-col > div:not(.step-visual) {
    order: 1;
  }
  /* Tighten section padding on mobile */
  .bg-light .container,
  .bg-dark .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  /* Step sections less padding */
  .bg-light, .bg-dark {
    padding: 48px 0 !important;
  }
  /* Step number badge sizing on mobile */
  .step-number {
    width: 36px !important;
    height: 36px !important;
    font-size: 16px !important;
    margin-bottom: 16px !important;
  }
}

/* ── Demo Cards ──────────────────────────────────────── */
.demos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 480px;
  margin: 0 auto;
}

.demo-card {
  background: #0d1520;
  border: 1px solid #1e2d45;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.demo-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid #1e2d45;
}

.demo-badge {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.3px;
}

.demo-badge-voice {
  background: rgba(30,136,229,0.15);
  color: #64b5f6;
  border: 1px solid rgba(30,136,229,0.3);
}

.demo-badge-sms {
  background: rgba(48,209,88,0.12);
  color: #4ade80;
  border: 1px solid rgba(48,209,88,0.25);
}

.demo-tag {
  font-size: 11px;
  color: #4a5a78;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.demo-gif-wrap {
  background: #060608;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.demo-gif {
  width: 100%;
  max-width: 380px;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}

.demo-frame-wrap {
  flex: 1;
  position: relative;
  height: 900px;
  overflow: hidden;
}

.demo-frame {
  width: 100%;
  height: 100%;
  border: none;
  background: #060608;
}

.demo-expand {
  display: block;
  text-align: center;
  padding: 12px;
  font-size: 12px;
  color: #2e7dd1;
  text-decoration: none;
  border-top: 1px solid #1e2d45;
  transition: background 0.2s;
  letter-spacing: 0.3px;
}

.demo-expand:hover {
  background: rgba(46,125,209,0.08);
}

@media (max-width: 768px) {
  .demos-grid {
    grid-template-columns: 1fr;
  }
  .demo-frame-wrap {
    height: 560px;
  }
}
