/* ═══════════════════════════════════════════════════
   LSO 360 — Virgo-Exact Design System
   Fonts: Open Sans (body) + Raleway (headings)
   Animations: Animate.css + WOW.js (scroll reveal)
   Layout: Bootstrap 4 grid + full-width sections
═══════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #3b5bdb;
  --purple: #7048e8;
  --grad: linear-gradient(135deg, #3b5bdb 0%, #7048e8 100%);
  --grad-text: linear-gradient(135deg, #3b5bdb, #7048e8);
  --dark: #1a1a2e;
  --dark2: #16213e;
  --dark3: #0f3460;
  --light-bg: #f8f9fc;
  --white: #ffffff;
  --text: #444444;
  --text-light: #777777;
  --border: #e9ecef;
  --nav-h: 100px;
  --grad-soft: linear-gradient(135deg, rgba(59, 91, 219, 0.08) 0%, rgba(112, 72, 232, 0.08) 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

p {
  line-height: 1.8;
  color: var(--text-light);
}

a {
  text-decoration: none;
  transition: all .3s;
}

img {
  max-width: 100%;
  border-radius: 16px;
}

/* ── UTILITIES ── */
.container-fluid {
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col {
  padding: 0 15px;
  flex: 1;
}

[class*="col-"] {
  padding: 0 15px;
}

.col-md-6 {
  width: 50%;
}

.col-md-4 {
  width: 33.333%;
}

.col-md-3 {
  width: 25%;
}

.col-md-8 {
  width: 66.666%;
}

.col-md-12 {
  width: 100%;
}

.text-center {
  text-align: center;
}

/* ── GRADIENT TEXT ── */
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════
   TOP BAR  (Virgo signature)
══════════════════════════════════════ */
.topbar {
  background: var(--dark);
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

.topbar-contact {
  display: flex;
  gap: 28px;
}

.topbar-contact a {
  color: rgba(255, 255, 255, .7);
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-contact a:hover {
  color: var(--white);
}

.topbar-contact span {
  font-size: 12px;
}

.topbar-social {
  display: flex;
  gap: 14px;
}

.topbar-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all .3s;
}

.topbar-social a:hover {
  background: var(--grad);
  color: var(--white);
}

/* ══════════════════════════════════════
   NAVBAR  (Virgo: transparent → solid on scroll, white bg)
══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 40px;
  justify-content: space-between;
  transition: all .4s;
}

.navbar.at-top {
  background: transparent;
  box-shadow: none;
}

.navbar.at-top .nav-links a {
  color: rgba(255, 255, 255, .85);
}

.navbar.at-top .nav-links a:hover {
  color: var(--white);
}

.navbar.at-top .nav-brand-text {
  -webkit-text-fill-color: var(--white);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo {
  height: 72px;
  width: 72px;
  border-radius: 8px;
  object-fit: cover;
}

.nav-brand-wrap {
  display: flex;
  flex-direction: column;
}

.nav-brand-text {
  font-family: 'Raleway', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.nav-brand-sub {
  font-size: .6rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-family: 'Raleway', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: #444;
  padding: 8px 16px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: all .3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
}

.nav-cta-btn {
  background: var(--grad) !important;
  color: var(--white) !important;
  border-radius: 30px !important;
  padding: 9px 24px !important;
}

.nav-cta-btn:hover {
  opacity: .88 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(112, 72, 232, .4) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #444;
  margin: 5px 0;
  transition: .3s;
}

.navbar.at-top .nav-toggle span {
  background: var(--white);
}

/* Mobile overlay nav */

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--dark);
  z-index: 999;
  padding: 120px 5% 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: right 0.3s ease;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:hover {
  color: var(--white)
}

.mobile-nav .btn-primary {
  margin-top: 16px;
  text-align: center;
  justify-content: center
}

.mobile-close {
  position: absolute;
  top: 18px;
  right: 5%;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--white);
}

/* ══════════════════════════════════════
   HERO — Virgo style: full-height dark, centered, particles feel
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: 120px 80px 80px;
  position: relative;
  overflow: hidden;
}

/* Animated background blobs */
.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 91, 219, .25) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: blobFloat 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(112, 72, 232, .2) 0%, transparent 70%);
  bottom: -50px;
  left: -50px;
  animation: blobFloat 10s ease-in-out infinite reverse;
}

@keyframes blobFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -30px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 20px) scale(.95);
  }
}

/* Grid dots */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('img/banner_right.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .8);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 28px;
  margin-left: 100px;
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.6);
    opacity: .6;
  }
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--white);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -.01em;
  margin-left: 100px;
}

.hero h1 .line2 {
  display: block;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero .line3 {
  display: block;
  background: var(--grad);
  -webkit-background-clip: text;
  /* -webkit-text-fill-color: transparent; */
}

.hero p.lead {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: 100px;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-left: 100px;
}

/* Hero scroll-down indicator */
.scroll-down {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .4);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 1;
}

.scroll-down-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }

  50% {
    transform: scaleY(.5);
    opacity: .3;
  }
}

/* Hero stats bar */
.hero-stats-bar {
  display: flex;
  justify-content: flex-start;
  align-self: flex-start;
  width: 100%;
  gap: 60px;
  margin-top: 60px;
  padding-top: 48px;
  border-top: 1px solid white;
  position: relative;
  z-index: 1;
}

.hstat {
  text-align: center;
}

.hstat-num {
  font-family: 'Raleway', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  /* background: var(--grad); */
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  /* counter animation */
  display: block;
}

.hstat-lbl {
  font-size: .72rem;
  color: rgba(255, 255, 255, .45);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 6px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  padding: 14px 34px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all .3s;
}

.btn-grad {
  background: var(--grad);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(112, 72, 232, .35);
}

.btn-grad:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(112, 72, 232, .5);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .4);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .08);
}

.btn-white {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 30px;
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

/* ══════════════════════════════════════
   SECTION HEADERS  (Virgo exact style)
══════════════════════════════════════ */
.section-header {
  text-align: center;
  padding-bottom: 48px;
}

.section-header h6 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.0rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  /* color: var(--blue); */
  margin-bottom: 8px;
}

.section-header h6.light {
  color: rgba(255, 255, 255, .6);
}

.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #222;
  margin:7px;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header h2.light {
  color: var(--white);
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--grad);
  border-radius: 2px;
}

.section-header p {
  color: var(--text-light);
  max-width: 580px;
  margin: 20px auto 0;
  line-height: 1.8;
}

.section-header p.light {
  color: rgba(255, 255, 255, .6);
}

/* ══════════════════════════════════════
   SECTIONS  (Virgo: alternating light/dark with consistent padding)
══════════════════════════════════════ */
section {
  padding: 60px 40px;
}

section.bg-dark {
  background: var(--dark);
}

section.bg-dark2 {
  background: var(--dark2);
}

section.bg-light {
  background: var(--light-bg);
}

section.bg-white {
  background: var(--white);
}

section.bg-grad {
  background: var(--grad);
}

/* ══════════════════════════════════════
   TRUST STRIP
══════════════════════════════════════ */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 40px;
}

.trust-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-strip p {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #aaa;
  white-space: nowrap;
  margin: 0;
}

.trust-logos {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.trust-logo {
  font-family: 'Raleway', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: #ccc;
  letter-spacing: .04em;
}

/* ══════════════════════════════════════
   BEFORE/AFTER SLIDER
══════════════════════════════════════ */
.baf-container {
  max-width: 900px;
  margin: 0 auto;
}

.baf-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .3);
  user-select: none;
}

.baf-images {
  position: relative;
  height: 400px;
}

.baf-after,
.baf-before {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.baf-after {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.baf-before {
  background: linear-gradient(135deg, #f8f9fc 0%, #eef0f8 100%);
  clip-path: inset(0 50% 0 0);
}

.baf-chart {
  padding: 40px;
  width: 100%;
  max-width: 560px;
}

.chart-label {
  font-family: 'Raleway', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 20px;
}

.chart-label.light {
  color: rgba(255, 255, 255, .5);
}

.chart-label.dark {
  color: #999;
}

.bar-row {
  margin-bottom: 14px;
}

.bar-top-row {
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.bar-track {
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
}

.fill-grad {
  height: 100%;
  background: var(--grad);
  border-radius: 4px;
}

.fill-grey {
  height: 100%;
  background: #d8dde8;
  border-radius: 4px;
}

.baf-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--white);
  left: 50%;
  transform: translateX(-50%);
  cursor: ew-resize;
  z-index: 10;
}

.baf-handle {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
}

.baf-tag {
  position: absolute;
  top: 16px;
  padding: 5px 16px;
  border-radius: 30px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  z-index: 5;
}

.baf-tag.before {
  left: 16px;
  background: rgba(59, 91, 219, .15);
  color: var(--blue);
  border: 1px solid rgba(59, 91, 219, .25);
}

.baf-tag.after {
  right: 16px;
  background: rgba(255, 255, 255, .15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .25);
}

.baf-hint {
  text-align: center;
  font-size: .8rem;
  color: #aaa;
  margin-top: 14px;
}

/* ══════════════════════════════════════
   FEATURE CARDS  (Modern Compact Redesign)
══════════════════════════════════════ */
.features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3x3 grid for perfect evenness */
  gap: 24px;
  margin-top: 40px;
  max-width: 1040px; /* Centered and slightly narrower to keep cards compact */
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 992px) {
  .features-row {
    grid-template-columns: repeat(2, 1fr); /* 2x? grid for tablets */
  }
}

@media (max-width: 600px) {
  .features-row {
    grid-template-columns: 1fr; /* Stack on mobile */
  }
}

.feat-box {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  text-align: left; /* Changed from center */
  border: 1px solid var(--border);
  transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(59, 91, 219, .08);
  border-color: var(--blue);
}

.feat-ico-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--grad-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all .35s;
  margin: 0; /* Removed margin auto */
}

.feat-box:hover .feat-ico-wrap {
  background: var(--grad);
  color: #fff;
  transform: scale(1.1);
}

.feat-box h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.4;
}

.feat-box p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Dark variant (for the Features section) */
.feat-box.dark {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.feat-box.dark:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--purple);
}

.feat-box.dark h4 {
  color: #fff;
}

.feat-box.dark p {
  color: rgba(255, 255, 255, 0.5);
}

.feat-box.dark .feat-ico-wrap {
  background: rgba(255, 255, 255, 0.05);
}

.feat-box.dark:hover .feat-ico-wrap {
  background: var(--grad);
}

.feat-box.dark .feat-ico-wrap {
  background: rgba(255, 255, 255, .08);
}

/* ══════════════════════════════════════
   PROCESS STEPS  (numbered, centered)
══════════════════════════════════════ */
.steps-wrap {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 20px;
  flex-wrap: wrap;
  position: relative;
}

.steps-wrap::before {
  content: '';
  position: absolute;
  top: 35px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: var(--border);
}

.step-item {
  width: 25%;
  min-width: 160px;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--grad);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Raleway', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(112, 72, 232, .4);
  transition: transform .35s, box-shadow .35s;
}

.step-item:hover .step-circle {
  transform: scale(1.1);
  box-shadow: 0 16px 40px rgba(112, 72, 232, .55);
}

.step-item h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.step-item p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.65;
  margin: 0;
}

/* ══════════════════════════════════════
   WHO CAN USE SECTION (Bullet Design)
══════════════════════════════════════ */
.who-can-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  margin-top: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.who-can-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.who-can-item:hover {
  border-color: var(--blue);
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(59, 91, 219, 0.05);
}

.who-can-check {
  width: 24px;
  height: 24px;
  background: var(--grad);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.who-can-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

.who-can-text strong {
  display: block;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 2px;
}

.who-can-center {
  grid-column: 1 / span 2;
  justify-self: center;
  width: 100%;
  max-width: 480px; /* Matching the approximate width of other cards */
}

@media (max-width: 768px) {
  .who-can-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .who-can-center {
    grid-column: auto;
    max-width: 100%;
  }
}

/* Marquee (removed from index but kept in CSS for other potential uses) */
.marquee-outer {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 12px 0 20px;
}

.marquee-fade-l,
.marquee-fade-r {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.marquee-fade-l {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.marquee-fade-r {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.marquee-card {
  flex-shrink: 0;
  width: 160px;
  height: 96px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
  transition: all .3s;
}

.marquee-card:hover {
  border-color: rgba(112, 72, 232, .3);
  box-shadow: 0 8px 28px rgba(112, 72, 232, .12);
  transform: translateY(-4px);
}

.m-logo-wrap {
  width: 64px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.m-logo {
  max-width: 64px;
  max-height: 38px;
  object-fit: contain;
}

.m-fallback {
  display: none;
  font-family: 'Raleway', sans-serif;
  font-size: .85rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border: 1.5px solid var(--border);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

.m-name {
  font-size: .68rem;
  font-weight: 700;
  color: #999;
  text-align: center;
  font-family: 'Raleway', sans-serif;
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testi-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 20px;
}

.testi-card {
  flex: 1 1 calc(33.333% - 28px);
  min-width: 280px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: 32px;
  transition: all .35s;
}

.testi-card:hover {
  background: rgba(255, 255, 255, .09);
  border-color: rgba(112, 72, 232, .35);
  transform: translateY(-4px);
}

.testi-stars {
  color: #fbbf24;
  font-size: .9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testi-quote {
  font-size: .9rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--grad);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: .95rem;
}

.testi-name {
  font-family: 'Raleway', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
}

.testi-co {
  font-size: .78rem;
  color: rgba(255, 255, 255, .45);
  margin-top: 2px;
}

/* ══════════════════════════════════════
   TWO-COL SPLIT  (Virgo: text left, image/card right)
══════════════════════════════════════ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse>* {
  direction: ltr;
}

/* ══════════════════════════════════════
   STAT CARDS  (about page)
══════════════════════════════════════ */
.stat-panel {
  /* background: var(--dark2);   */
  /* border-radius: 16px; */
  /* padding: 48px 36px; */
  border: 1px solid rgba(255, 255, 255, .08);
  position: relative;
  overflow: hidden;
  width: 100%;
}
/* 
.stat-panel::before {
  content: 'LSO';
  position: absolute;
  right: -16px;
  bottom: -24px;
  font-family: 'Raleway', sans-serif;
  font-size: 7rem;
  font-weight: 800;
  color: rgba(255, 255, 255, .03);
  line-height: 1;
} */



.stat-item {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  padding: 22px;
}

.stat-num {
  font-family: 'Raleway', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-lbl {
  font-size: .72rem;
  color: rgba(255, 255, 255, .4);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
}

.about-pts {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
}

.about-pt {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pt-ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(59, 91, 219, .12), rgba(112, 72, 232, .12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.pt-body strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 4px;
}

.pt-body p {
  font-size: .84rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

/* ══════════════════════════════════════
   COMPARE TABLE
══════════════════════════════════════ */
.compare-box {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: 40px;
  overflow-x: auto;
  margin-top: 40px;
}

.ctable {
  width: 100%;
  border-collapse: collapse;
  min-width: 580px;
}

.ctable th {
  font-family: 'Raleway', sans-serif;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 12px 16px;
  color: rgba(255, 255, 255, .4);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  text-align: left;
}

.ctable th:not(:first-child) {
  text-align: center;
}

.ctable td {
  padding: 13px 16px;
  font-size: .875rem;
  color: rgba(255, 255, 255, .65);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.ctable td:not(:first-child) {
  text-align: center;
}

.ctable td:nth-child(2) {
  color: #a78bfa;
  font-weight: 700;
}

.cy {
  color: #34d399;
  font-size: 1.1rem;
}

.cn {
  color: rgba(255, 255, 255, .18);
  font-size: 1.1rem;
}

/* ══════════════════════════════════════
   SERVICES CARDS  (dark bg)
══════════════════════════════════════ */
.svc-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 20px;
}

.svc-card {
  flex: 1 1 calc(50% - 28px);
  min-width: 300px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  padding: 40px;
  transition: all .35s;
  display: flex;
  flex-direction: column;
}

.svc-card:hover {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(112, 72, 232, .3);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
}

.svc-ico {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(112, 72, 232, .4);
  transition: transform .35s;
}

.svc-card:hover .svc-ico {
  transform: scale(1.1) rotate(-5deg);
}

.svc-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.svc-card>p {
  font-size: .875rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 22px;
}

.svc-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}

.svc-bullets li {
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.svc-bullets li::before {
  content: '›';
  color: #a78bfa;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.4;
}

.svc-link {
  color: #a78bfa;
  font-weight: 700;
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.svc-link:hover {
  color: var(--white);
}

/* Process steps (light bg) */
.proc-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 20px;
  position: relative;
}

.proc-row::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
}

.proc-step {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}

.proc-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: var(--white);
  border: 2px solid var(--blue);
  color: var(--blue);
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}

.proc-step:hover .proc-num {
  background: var(--grad);
  border-color: transparent;
  color: var(--white);
}

.proc-step h4 {
  font-size: .88rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 6px;
}

.proc-step p {
  font-size: .78rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Pricing */
.price-card {
  flex: 1 1 230px; /* Reduced from 260px to fit 5 cards on 1440px screens */
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 28px 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
  transition: all .35s;
  max-width: 320px; /* Prevent cards from getting too wide in single column */
}

.pricing-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  align-items: stretch; /* Make all cards in a row the same height */
  justify-content: center;
}

@media(max-width: 1200px) {
  .price-card {
    flex-basis: calc(33.333% - 20px);
  }
}

@media(max-width: 900px) {
  .price-card {
    flex-basis: calc(50% - 20px);
  }
}

@media(max-width: 600px) {
  .price-card {
    flex-basis: 100%;
    max-width: 100%;
  }
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(59, 91, 219, .12);
}

.price-card.featured {
  background: var(--grad);
  border-color: transparent;
  transform: scale(1.04);
  box-shadow: 0 20px 60px rgba(112, 72, 232, .35);
}

.price-badge {
  display: inline-block;
  background: rgba(255, 255, 255, .2);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 12px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.price-plan {
  font-family: 'Raleway', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #999;
  margin-bottom: 8px;
}

.price-card.featured .price-plan {
  color: rgba(255, 255, 255, .7);
}

.price-amt {
  font-family: 'Raleway', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: #222;
  line-height: 1;
  margin-bottom: 15px;
}

.price-card.featured .price-amt {
  color: var(--white);
}

.price-period {
  font-size: .8rem;
  color: #aaa;
  margin-bottom: 24px;
}

.price-card.featured .price-period {
  color: rgba(255, 255, 255, .6);
}

.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}

.price-list li {
  font-size: .84rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-card.featured .price-list li {
  color: rgba(255, 255, 255, .85);
}

.price-list li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59, 91, 219, .12), rgba(112, 72, 232, .12));
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  flex-shrink: 0;
}

.price-card.featured .price-list li::before {
  background: rgba(255, 255, 255, .2);
  color: var(--white);
}

/* ══════════════════════════════════════
   PRODUCTS  (alternating layout)
══════════════════════════════════════ */
.product-section {
  margin-bottom: 80px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}

.product-grid.flip {
  direction: rtl;
}

.product-grid.flip>* {
  direction: ltr;
}

.prod-screen-box {
  background: var(--dark2);
  border-radius: 16px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, .08);
  position: relative;
  overflow: hidden;
}

.prod-screen-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad);
  opacity: .04;
}

.prod-inner {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  padding: 22px;
  position: relative;
  z-index: 1;
}

.prod-inner-label {
  font-size: .68rem;
  color: rgba(255, 255, 255, .35);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px;
}

.prod-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.prod-row:last-of-type {
  border-bottom: none;
}

.prod-row-name {
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
}

.prod-row-val {
  font-size: .82rem;
  font-weight: 700;
  color: #a78bfa;
}

.prod-bars {
  margin-top: 16px;
}

.prod-bar-item {
  margin-bottom: 10px;
}

.prod-bar-top {
  display: flex;
  justify-content: space-between;
  font-size: .72rem;
  margin-bottom: 5px;
}

.prod-bar-top span:first-child {
  color: rgba(255, 255, 255, .4);
}

.prod-bar-top span:last-child {
  color: #a78bfa;
  font-weight: 700;
}

.prod-track {
  height: 6px;
  background: rgba(255, 255, 255, .08);
  border-radius: 3px;
  overflow: hidden;
}

.prod-fill {
  height: 100%;
  background: var(--grad);
  border-radius: 3px;
}

.prod-feats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.prod-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all .3s;
}

.prod-feat:hover {
  border-color: rgba(112, 72, 232, .25);
  box-shadow: 0 4px 16px rgba(112, 72, 232, .08);
}

.prod-feat-ico {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.prod-feat-text strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 3px;
}

.prod-feat-text p {
  font-size: .8rem;
  color: var(--text-light);
  line-height: 1.55;
  margin: 0;
}

.prod-actions {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════
   TEAM
══════════════════════════════════════ */
.team-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 20px;
  justify-content: center;
}

.team-card {
  flex: 1 1 calc(33.333% - 28px);
  min-width: 220px;
  max-width: 320px;
  text-align: center;
}

.team-av {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  transition: transform .35s, box-shadow .35s;
}

.team-card:hover .team-av {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(112, 72, 232, .4);
}

.team-name {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #222;
}

.team-role {
  font-size: .8rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* ══════════════════════════════════════
   MISSION CARDS
══════════════════════════════════════ */
.mission-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 20px;
}

.mission-card {
  flex: 1 1 calc(33.333% - 28px);
  min-width: 240px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 30px 26px;
  transition: all .3s;
}

.mission-card:hover {
  border-color: rgba(112, 72, 232, .25);
  box-shadow: 0 8px 28px rgba(112, 72, 232, .08);
  transform: translateY(-4px);
}

.mission-ico {
  font-size: 2rem;
  margin-bottom: 14px;
}

.mission-card h3 {
  font-size: .97rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

.mission-card p {
  font-size: .84rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 52px;
}

.contact-form-box {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 44px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .06);
}

.cf-title {
  font-family: 'Raleway', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 6px;
}

.cf-sub {
  font-size: .875rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cf-group {
  margin-bottom: 18px;
}

.cf-group label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 7px;
}

.cf-group input,
.cf-group select,
.cf-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: .9rem;
  color: var(--text);
  background: var(--light-bg);
  outline: none;
  transition: border-color .3s, background .3s;
}

.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
}

.cf-group textarea {
  resize: vertical;
  min-height: 120px;
}

.cf-submit {
  background: var(--grad);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Raleway', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  padding: 14px 34px;
  border-radius: 30px;
  transition: all .3s;
  box-shadow: 0 4px 20px rgba(112, 72, 232, .35);
}

.cf-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(112, 72, 232, .5);
}

.contact-info-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ci-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
  transition: all .3s;
}

.ci-card:hover {
  border-color: rgba(112, 72, 232, .25);
  box-shadow: 0 8px 24px rgba(112, 72, 232, .1);
}

.ci-card.hl {
  background: var(--grad);
  border-color: transparent;
}

.ci-card.hl * {
  color: var(--white) !important;
}

.ci-ico {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.ci-lbl {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #aaa;
  margin-bottom: 4px;
}

.ci-val {
  font-size: .95rem;
  font-weight: 600;
  color: #222;
}

.ci-sub {
  font-size: .78rem;
  color: #aaa;
  margin-top: 4px;
}

.map-box {
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: #aaa;
  font-size: .85rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: all .3s;
}

.faq-item:hover {
  border-color: rgba(112, 72, 232, .25);
  box-shadow: 0 8px 24px rgba(112, 72, 232, .08);
}

.faq-q {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .9rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.faq-q::before {
  content: 'Q';
  color: var(--blue);
  font-weight: 800;
  font-size: .72rem;
  background: linear-gradient(135deg, rgba(59, 91, 219, .1), rgba(112, 72, 232, .1));
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.faq-a {
  font-size: .84rem;
  color: var(--text-light);
  line-height: 1.7;
  padding-left: 32px;
}

/* ══════════════════════════════════════
   CTA BAND
══════════════════════════════════════ */
.cta-section {
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 14px;
}

.cta-section p {
  color: rgba(255, 255, 255, .7);
  max-width: 520px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════
   FOOTER  (Virgo dark, 4-col)
══════════════════════════════════════ */
footer {
  background: var(--dark);
  padding: 72px 40px 32px;
  color: rgba(255, 255, 255, .5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  margin-bottom: 28px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo {
  height: 42px;
  width: 42px;
  border-radius: 8px;
}

.footer-brand-name {
  font-family: 'Raleway', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}

.footer-brand-tag {
  font-size: .6rem;
  color: rgba(255, 255, 255, .35);
  text-transform: uppercase;
  letter-spacing: .06em;
  display: block;
}

.footer-about {
  font-size: .84rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: .82rem;
}

.footer-contact-list span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col h4 {
  font-family: 'Raleway', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  color: rgba(255, 255, 255, .42);
  font-size: .84rem;
  transition: all .3s;
}

.footer-col ul a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  flex-wrap: wrap;
  gap: 8px;
}

/* ══════════════════════════════════════
   PAGE HERO (inner pages — dark bg, centered)
══════════════════════════════════════ */
.page-hero {
  background: var(--dark2);
  padding: 110px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  /* topbar + navbar = offset via body padding */
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/map.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: 0;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 60%, rgba(112, 72, 232, .18) 0%, transparent 70%);
}

.page-hero-content {
  max-width: 740px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, .65);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ══════════════════════════════════════
   WOW.js HIDDEN CLASS
   (elements hidden until revealed)
══════════════════════════════════════ */
.wow {
  visibility: hidden;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 992px) {
  section {
    padding: 70px 24px;
  }

  .split-section,
  .contact-grid,
  .product-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* About section — stacks on tablet */
  .about-split-section {
    padding: 56px 5%;
  }

  .stat-panel {
    min-height: 300px;
    width: 100%;
  }

  .custom {
    width: 100%;
  }

  .split-section.reverse,
  .product-grid.flip {
    direction: ltr;
  }

  .feat-box,
  .testi-card,
  .svc-card,
  .price-card {
    flex-basis: calc(50% - 28px);
  }

  .step-item {
    width: 50%;
    margin-bottom: 32px;
  }

  .steps-wrap::before {
    display: none;
  }

  .proc-row::before {
    display: none;
  }

  .proc-step {
    flex-basis: 50%;
    margin-bottom: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .topbar {
    padding: 10px 24px;
  }

  .navbar {
    padding: 0 24px;
  }

  .hero {
    padding: 100px 24px 70px;
  }
}

@media (max-width: 600px) {
  section {
    padding: 60px 16px;
  }

  .feat-box,
  .testi-card,
  .svc-card,
  .price-card,
  .mission-card,
  .team-card {
    flex-basis: 100%;
  }

  .step-item,
  .proc-step {
    width: 100%;
  }

  .faq-grid,
  .cf-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-stats-bar {
    gap: 32px;
    flex-wrap: wrap;
  }

  .hero-btns,
  .cta-btns,
  .prod-actions {
    flex-direction: column;
    align-items: center;
  }

  .topbar {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .trust-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  /* About section stacks on mobile */
  .stat-panel {
    min-height: 220px;
    border-radius: 12px;
  }

  .stat-panel img {
    height: 220px;
    object-fit: cover;
  }

  /* Comparison section */
  .compare-section { padding: 60px 16px; }
  .compare-inner { padding: 0; }
  .compare-vs-banner { flex-direction: column; gap: 0; }
  .compare-vs-side { padding: 16px 20px; flex-direction: row; gap: 12px; }
  .compare-vs-badge { width: 44px; height: 44px; font-size: .85rem; }
  .compare-cta { flex-direction: column; align-items: center; text-align: center; padding: 20px; }
  .compare-cta-text { justify-content: center; gap: 16px; }
  .compare-cta-divider { display: none; }

  /* About intro banner */
  .about-intro-banner {
    flex-direction: column;
    gap: 20px;
    padding: 24px 20px;
  }
  .about-intro-banner-divider { width: 100%; height: 1px; }
  .about-intro-bottom { grid-template-columns: 1fr; }
  .about-intro-owner { flex-direction: column; }

  /* Team cards */
  .team-cards-grid { grid-template-columns: 1fr; }

  /* Results */
  .results-grid { grid-template-columns: 1fr !important; }

  /* Hero stats */
  .hero-stats-bar { flex-wrap: wrap; gap: 20px; justify-content: flex-start; }
}

/* ── Pulse animation for counter numbers ── */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.counted {
  animation: countUp .5s ease both;
}

/* ABOUT QUOTES */


.about-intro-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

@media(max-width:960px) {


  .about-intro-quotes {
    grid-template-columns: 1fr;
  }

}

.about-intro-quote {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  border-left: 4px solid var(--blue);
  transition: all .25s;
}

.about-intro-quote:last-child {
  border-left-color: var(--purple);
}

.about-intro-quote:hover {
  box-shadow: 0 10px 28px rgba(59, 91, 219, .08);
}

.about-intro-quote:last-child .quote-label {
  color: var(--purple);
}


.about-intro-quote {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  border-left: 4px solid var(--blue);
}

.about-intro-quote blockquote {
  font-size: .92rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin: 0;
  text-align: justify;
}

.quote-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue);
  margin-bottom: 12px;
}

/* ── TEAM CARDS ── */

@media (max-width: 960px) {
  .team-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-cards-grid {
    grid-template-columns: 1fr;
  }
}

.team-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.team-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}


.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
  opacity: 0;
  transition: opacity .25s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(59, 91, 219, .1);
  border-color: rgba(112, 72, 232, .2);
}

.team-card:hover::before {
  opacity: 1;
}

.team-card {
  text-align: center
}

.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: all .25s;
}

.team-card:hover {
  border-color: rgba(112, 72, 232, .3);
  box-shadow: 0 8px 28px rgba(112, 72, 232, .1);
  transform: translateY(-3px);
}

.section-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--grad-soft);
  color: var(--blue);

    text-align: center;
    font-family: Raleway, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 10px;

}

.section-tag {
  margin-top: 0
}

.section-tag-dark{
    display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--grad-soft);
    text-align: center;
    color: rgb(167, 139, 250);
    font-family: Raleway, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 10px;

    border: solid .01rem;
}

/* CLIENT SEO RESULT */

.section {
  padding: 15px 5%
}

@media (max-width: 600px) {
  .section {
    padding: 15px 5%;
  }
}

.results-section {
  background: var(--bg);
  padding: 45px 5%;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto
}

.text-center {
  text-align: center;
}

.text-center .section-sub {
  margin: 0 auto
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  /* color: var(--navy); */
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}

@media (max-width: 600px) {

  .section-title {
    text-align: center;
  }
}

.section-sub {
  font-size: 1.02rem;
  /* color: var(--muted); */
  line-height: 1.75;
  max-width: 560px;
}

.section-sub {
  margin: 0 auto
}


.section-sub {
  max-width: 100%;
}

.section-sub {
  margin: 0 auto;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.result-center {
  grid-column: 1 / span 2;
  justify-self: center;
  width: calc(50% - 14px); /* (Total Width - Gap) / 2 */
}

@media(max-width:960px) {
  .results-grid {
    grid-template-columns: 1fr;
  }
  .result-center {
    grid-column: auto;
    width: 100%;
  }
}

.result-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(59, 91, 219, .06);
  transition: all .25s;
}

.result-card:hover {
  box-shadow: 0 12px 40px rgba(59, 91, 219, .12);
  transform: translateY(-3px);
}


.result-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 15px;
  border-bottom: 1px solid var(--border);
}

.result-client-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 4px;
}

.result-client-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  /* color: var(--blue); */
  line-height: 1.2;
}

.result-logo-box {
  width: 70px;
  height: 65px;
  border-radius: 12px;
  /* background: var(--grad); */
  /* background:linear-gradient(135deg,#3b5bdb,#7048e8); */
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: .02em;
  flex-shrink: 0;
}

.result-table {
  width: 100%;
  border-collapse: collapse;
}

.result-table thead tr {
  background: var(--grad);
}

.result-table thead th {
  padding: 12px 20px;
  font-size: .8rem;
  font-weight: 700;
  color: #fff;
  text-align: left;
  letter-spacing: .04em;
}

.result-table thead th:last-child {
  text-align: center;
  width: 100px;
}

.result-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}

.result-table tbody tr:last-child {
  border-bottom: none;
}

.result-table tbody tr:hover {
  background: var(--bg);
}

.result-table tbody td {
  padding: 12px 20px;
  font-size: .84rem;
  color: var(--text);
}

.result-table tbody td:last-child {
  text-align: center;
}


.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  font-weight: 800;
}

.rank-1 {
  background: #e3fbf0;
  color: #0d9c5a;
}

.rank-2 {
  background: #e8f0ff;
  color: #3b5bdb;
}

.rank-3 {
  background: #ede7ff;
  color: #7048e8;
}

/* ====================
    ABOUT SECTION 
================== */

/* ABOUT LSO */
.section-inner {
  max-width: 1200px;
  margin: 0 auto
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 56px
}

@media(max-width:960px) {


  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 0;
  }
}

/* MAP CSS */


.map-placeholder {
  background: var(--bg);
  border: none;
  border-radius: var(--radius);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
  font-size: .85rem;
  margin-top: 4px;
}
.map-placeholder iframe{
  border-radius: 10px;
}

.map-placeholder iframe {
  width: 100%;
  height: 250px;
  border: 0;
}

/* TEAM CARD RESPONSIVE CSS */

.team-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {

  /* Container padding */
  .bg-dark {
    padding: 15px;
  }

  /* 🔥 Grid becomes single column */
  .team-cards-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    justify-items: center; /* 🔥 center cards horizontally */
  }

  /* Card styling */
  .team-card {
    padding: 15px;
    border-radius: 10px;
     width: 100%;
    max-width: 320px; /* 👈 controls card width */
    margin: 0 auto;
    text-align: center; /* optional: center text */
  }

  /* Title */
  .team-card-title {
    font-size: 16px;
    margin-bottom: 6px;
  }

  /* Description */
  .team-card-desc {
    font-size: 13px;
    line-height: 1.5;
  }

  /* Section tag */
  .section-tag {
    font-size: 14px;
  }
}

/* ABOUT LSO RESPONSIVE CSS */

@media (max-width: 400px) {

  .stat-grid {
    grid-template-columns: 1fr; /* 🔥 stack items */
    gap: 12px;
    justify-items: center;
  }

  .stat-item {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }

  .stat-num {
    font-size: 22px; /* reduce big numbers */
  }

  .stat-lbl {
    font-size: 12px;
  }

  .stat-panel {
    padding: 15px;
  }
}

img {
  transition: transform 0.5s ease, box-shadow 0.3s ease;
}
img:hover {
  transform: scale(1.03);
  /* box-shadow: 0 10px 25px rgba(0,0,0,0.2); */
}


/* ══════════════════════════════════════
   COMPARISON SECTION
══════════════════════════════════════ */
.cmp-section {
  position: relative;
  background: var(--dark);
  padding: 80px 20px;
  overflow: hidden;
}

.cmp-bg-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(112,72,232,0.18) 0%, transparent 70%);
  pointer-events: none;
}

/* Toggle buttons */
.cmp-toggle-wrap {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.cmp-toggle {
  padding: 8px 22px;
  border-radius: 30px;
  border: 1.5px solid rgba(112,72,232,0.45);
  background: transparent;
  color: rgba(255,255,255,0.65);
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
  letter-spacing: .02em;
}

.cmp-toggle:hover,
.cmp-toggle.active {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 18px rgba(112,72,232,0.35);
}

/* Header row */
.cmp-header-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 0;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  margin-bottom: 2px;
}

.cmp-header-feature {
  background: rgba(255,255,255,0.04);
  padding: 18px 24px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
  display: flex;
  align-items: center;
}

.cmp-header-col {
  padding: 18px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.cmp-header-col.lso { background: rgba(59,91,219,0.18); border-top: 3px solid #3b5bdb; }
.cmp-header-col.yoast { background: rgba(255,255,255,0.04); border-top: 3px solid rgba(255,255,255,0.15); }

.cmp-badge-lso {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: #a78bfa;
  letter-spacing: .03em;
}

.cmp-badge-yoast {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
}

.cmp-header-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

/* Table rows */
.cmp-table {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cmp-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  overflow: hidden;
  transition: all .3s;
  animation: cmpRowIn .5s ease both;
}

@keyframes cmpRowIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cmp-row:hover {
  background: rgba(112,72,232,0.1);
  transform: scale(1.008);
  box-shadow: 0 4px 24px rgba(59,91,219,0.15);
}

.cmp-row.hidden { display: none; }

.cmp-feat-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  color: rgba(255,255,255,0.8);
  border-right: 1px solid rgba(255,255,255,0.05);
}

.cmp-feat-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.cmp-cell {
  padding: 14px 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.5;
}

.cmp-cell.lso-cell {
  background: rgba(59,91,219,0.07);
  color: rgba(200,210,255,0.85);
  border-right: 1px solid rgba(255,255,255,0.04);
}

.cmp-cell.yoast-cell {
  color: rgba(255,255,255,0.45);
}

.cmp-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(112,72,232,0.4);
  animation: popIn .4s cubic-bezier(.34,1.56,.64,1) both;
}

.cmp-cross {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(239,68,68,0.15);
  color: #f87171;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cmp-neutral {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* Score summary */
.cmp-score-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.cmp-score-card {
  flex: 1;
  max-width: 300px;
  min-width: 220px;
  padding: 30px 24px 24px;
  border-radius: 16px;
  text-align: center;
}

.cmp-score-card.lso-score {
  background: linear-gradient(135deg, rgba(59,91,219,0.22), rgba(112,72,232,0.22));
  border: 1.5px solid rgba(112,72,232,0.4);
}

.cmp-score-card.yoast-score {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
}

.cmp-score-label {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

.cmp-score-num {
  font-family: 'Raleway', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
  transition: all .5s;
}

.cmp-score-card.yoast-score .cmp-score-num {
  background: none;
  -webkit-text-fill-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.35);
}

.cmp-score-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.cmp-score-bar-wrap {
  height: 6px;
  background: rgba(255,255,255,0.07);
  border-radius: 99px;
  overflow: hidden;
}

.cmp-score-bar {
  height: 100%;
  border-radius: 99px;
  width: 0;
  transition: width 1.2s cubic-bezier(.4,0,.2,1) .5s;
}

.lso-bar { background: var(--grad); }
.yoast-bar { background: rgba(255,255,255,0.2); }

.cmp-score-vs {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: .1em;
}

/* CTA inside comparison */
.cmp-cta {
  text-align: center;
  margin-top: 40px;
}

.cmp-cta p {
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  margin-bottom: 16px;
}

/* ══════════════════════════════════════
   COMPARISON — MOBILE REDESIGN (≤768px)
   Card-per-feature layout: each row
   becomes a self-contained card with
   feature name + both columns labelled.
══════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Section padding ── */
  .cmp-section { padding: 60px 16px; overflow: hidden; }

  /* ── Hide the desktop sticky header row ── */
  .cmp-header-row { display: none !important; }

  /* ── Two mini column-header pills float above the table ── */
  .cmp-mobile-col-labels {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
  }

  /* ── Table becomes a flex column of cards ── */
  .cmp-table {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    overflow: visible !important;
    width: 100% !important;
  }

  /* ── Each row = a card ── */
  .cmp-row {
    display: grid !important;
    /* Row 1: feature bar (full width), Row 2: two cells side by side */
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto auto !important;
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px !important;
    overflow: hidden !important;
    padding: 0;
    transition: background .3s !important;
    width: 100% !important;
    min-width: unset !important;
  }

  .cmp-row:hover {
    transform: none !important;
    background: rgba(112,72,232,0.1) !important;
  }

  /* ── Feature name bar spans both columns (row 1) ── */
  .cmp-feat-cell {
    grid-column: 1 / -1 !important;  /* span full width */
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 11px 16px !important;
    background: rgba(112,72,232,0.18) !important;
    border-bottom: 1px solid rgba(255,255,255,0.07) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: rgba(255,255,255,0.9) !important;
    width: auto !important;
    flex-shrink: unset !important;
    min-width: unset !important;
    max-width: unset !important;
  }

  /* ── Two data cells sit side by side (row 2, auto-placed) ── */
  .cmp-row .cmp-cell {
    padding: 12px 14px !important;
    font-size: 12px !important;
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px !important;
    line-height: 1.45;
    width: auto !important;
    min-width: unset !important;
    max-width: unset !important;
    flex-shrink: unset !important;
    position: relative;
  }

  /* Add a tiny column label above each cell value */
  .cmp-row .cmp-cell.lso-cell::before {
    content: '⚡ LSO 360';
    font-size: 9.5px;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #a78bfa;
    display: block;
    margin-bottom: 2px;
  }

  .cmp-row .cmp-cell.yoast-cell::before {
    content: '🔌 Other Plugin';
    font-size: 9.5px;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255,255,255,0.4);
    display: block;
    margin-bottom: 2px;
  }

  /* LSO cell gets subtle blue tint */
  .cmp-row .cmp-cell.lso-cell {
    background: rgba(59,91,219,0.1) !important;
    border-right: 1px solid rgba(255,255,255,0.06) !important;
    color: rgba(200,210,255,0.85) !important;
  }

  .cmp-row .cmp-cell.yoast-cell {
    color: rgba(255,255,255,0.45) !important;
  }

  /* Score cards stack nicely */
  .cmp-score-wrap {
    gap: 12px;
    flex-direction: column;
    align-items: center;
  }

  .cmp-score-vs {
    width: 100%;
    text-align: center;
  }

  .cmp-score-card {
    width: 100%;
    max-width: 100%;
  }

  /* CTA button full width */
  .cmp-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================
      RESULT SLIDER
========================== */

/* Wrapper layout */
.result-wrapper {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

/* Left + Right equal */
.result-left,
.result-right {
  flex: 1;
}

/* Highlight active row */
/* Active row highlight — visible on dark backgrounds */
.result-table tbody tr {
  transition: background .3s ease, color .3s ease;
  cursor: default;
}
.result-table tbody tr.active-row {
  background: linear-gradient(135deg, rgba(59,91,219,.25), rgba(112,72,232,.2));
  color: #fff;
  font-weight: 700;
  border-left: 3px solid var(--purple);
}
.result-table tbody tr.active-row td {
  color: #fff;
}

/* Image slider container — needs explicit height */
.result-card.image-slider {
  padding: 0;
  overflow: hidden;
  min-height: 380px;
}
.image-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 380px;
  overflow: hidden;
  border-radius: 14px;
}

/* Images — stacked, only active one visible */
.image-slider img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .6s ease, transform .6s ease;
  border-radius: 14px;
}

/* Active image slides in */
.image-slider img.active-img {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 768px) {
  .result-card.image-slider { min-height: 220px; }
  .image-slider { min-height: 220px; }
  .result-wrapper { flex-direction: column; }
  .result-right { height: 220px; }
}


/* ══════════════════════════════════════
   ABOUT SECTION — Image + Text Split
══════════════════════════════════════ */
.about-split-section {
  padding: 40px 5%;
}

.about-split-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.custom {
  width: 100%;
}

/* Clean, single definition for stat-panel image */
.stat-panel {
  display: flex;
  height: 100%;
  min-height: 360px;
  overflow: hidden;
  border-radius: 16px;
  border: none;
}

.stat-grid {
  flex: 1;
  height: 100%;
}

.stat-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 16px;
}

/* Justified text */
.justify-content {
  text-align: justify;
}

.about-quotes{
  max-width:1160px;
  margin:10px auto;
}

@media (max-width: 500px) {
    .about-quotes{
      margin: 10px 15px;
    }
}


/* CLIENT VEDIOS CARD  */
/* SECTION */
.video-slider-section {
  padding: 60px 0;
  background: #f8f9fc;
}

/* HEADING */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

/* CONTAINER */
.video-slider-container {
  position: relative;
  max-width: 1300px; /* Increased for 5 videos */
  margin: auto;
  padding: 0 60px; /* Horizontal padding for buttons and side margins */
}

/* WRAPPER */
.video-slider-wrapper {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE/Edge */
  scroll-snap-type: x mandatory; /* Snap behavior for centering */
}

.video-slider-wrapper::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

/* VIDEO CARD */
.video-slide {
  flex: 0 0 calc(20% - 16px); /* Precise math for 5 videos */
  min-width: 180px;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: all 0.4s ease;
  position: relative;
  cursor: pointer;
  scroll-snap-align: center; /* Centering on snap */
}

.video-slide.playing {
  transform: scale(1.02);
  z-index: 2;
}

/* VIDEO */
.video-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px); /* Initial blur */
  transition: filter 0.5s ease;
}

.video-slide.playing video {
  filter: blur(0);
}

/* OVERLAY & PLAY BUTTON */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.video-slide.playing .video-overlay {
  opacity: 0;
  pointer-events: none;
}

.play-btn {
  width: 60px;
  height: 60px;
  background: var(--grad);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  padding-left: 5px;
  box-shadow: 0 10px 20px rgba(112, 72, 232, 0.4);
  transition: transform 0.3s ease;
}

.video-slide:hover .play-btn {
  transform: scale(1.1);
}

/* BUTTONS */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 10;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn.prev {
  left: 5px;
}

.slider-btn.next {
  right: 5px;
}

.slider-btn:hover {
  background: #7048e8;
  color: #fff;
}

/* RESPONSIVE VIDEO SLIDER */
@media (max-width: 1024px) {
  .video-slider-container { padding: 0 50px; }
  .video-slide {
    flex: 0 0 calc(33.33% - 14px);
    height: 480px;
  }
}

@media (max-width: 768px) {
  .video-slider-container { padding: 0 45px; }
  .video-slide {
    flex: 0 0 calc(45% - 10px);
    height: 520px;
  }
}

@media (max-width: 480px) {
  .video-slider-container { padding: 0 40px; }
  .video-slide {
    flex: 0 0 85%;
    height: 500px;
  }
}

/* ── ADDITIONAL MOBILE FIXES ── */
@media (max-width: 600px) {
  html, body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
  }

  .baf-chart {
    padding: 20px 15px !important;
  }

  .bar-top-row {
    font-size: 0.65rem !important;
  }

  /* Disable hover effects on mobile to prevent sticky hover states */
  .feat-box:hover {
    transform: none !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06) !important;
  }

  .video-slide:hover {
    transform: none !important;
  }

  /* Ensure hero content doesn't get too squeezed */
  .hero-content {
    padding: 0 10px;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
}

/* ── FAQ SECTION ── */
.faq-section {
  padding: 80px 20px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: var(--blue);
  box-shadow: 0 10px 25px rgba(59, 91, 219, 0.08);
}

.faq-question {
  padding: 24px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #222;
  user-select: none;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--blue);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fdfdfe;
}

.faq-answer p {
  padding: 0 28px 24px;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-light);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 16px;
  }
  .faq-question {
    padding: 20px;
    font-size: 0.95rem;
  }
  .faq-answer p {
    padding: 0 20px 20px;
  }
}
/* ── Hero Responsive Adjustments ── */
@media (max-width: 1024px) {
  .hero-eyebrow, .hero h1, .hero p.lead, .hero-btns {
    margin-left: 0px;
  }
}

@media (max-width: 768px) {
  .hero {
    align-items: center;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero-eyebrow, .hero h1, .hero p.lead, .hero-btns {
    margin-left: 0;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-stats-bar {
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
}

/* SOCIAL MEDIA ICONS */

.footer-socials { display:flex; gap:12px; align-items:center; }

.fsoc {
  width:40px; height:40px; border-radius:50%;
  background:rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.55);
  transition:var(--tr); text-decoration:none;
  border:1.5px solid rgba(255,255,255,.1);
}
.fsoc:hover { transform:translateY(-3px); box-shadow:0 6px 20px rgba(0,0,0,.3); }
.fsoc svg { width:20px; height:20px; fill:currentColor; }

/* Instagram hover — gradient */
.fsoc.fsoc-insta:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285ae8 90%);
  border-color: transparent;
  color: #fff;
}
  /* Facebook hover — blue */
  .fsoc.fsoc-fb:hover {
  background: #1877F2; border-color: #1877F2; color: #fff;
  }
  /* WhatsApp hover — green */
.fsoc.fsoc-wa:hover {
  background:#25D366; border-color:#25D366; color:#fff;
}
/* Email hover â€” red */
.fsoc.fsoc-mail:hover {
  background: red; border-color:red; color:#fff;
}

.fsoc.fsoc-yt:hover {
  background: #FF0000;
  border-color: #FF0000;
  color: #fff;
}

.fsoc.fsoc-play:hover {
  background: #fff;
  border-color: #4285F4;
  color: initial;
}

.fsoc.fsoc-play svg {
  fill: none;
}
.fsoc.fsoc-play:not(:hover) svg path {
  fill: rgba(255,255,255,.55);
}

/* ══════════════════════════════════════
   LOCATION SLIDER
══════════════════════════════════════ */
.location-slider-section {
  padding: 80px 40px;
  background: var(--light-bg);
  overflow: hidden;
}

.location-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.location-slider-wrapper {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 20px 0;
}

.location-slider-wrapper::-webkit-scrollbar {
  display: none;
}

.location-card {
  flex: 0 0 calc(33.333% - 20px);
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.location-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: var(--blue);
}

.loc-img-wrapper {
  height: 380px;
  background: var(--grad);
  position: relative;
}

.loc-content {
  padding: 24px;
}

.loc-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
  font-family: 'Raleway', sans-serif;
}

.loc-link {
  color: #ff6b35;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.loc-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  cursor: pointer;
  z-index: 10;
  color: var(--blue);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loc-btn.prev { left: -22px; }
.loc-btn.next { right: -22px; }

@media (max-width: 992px) {
  .location-card { flex: 0 0 calc(50% - 15px); }
}

@media (max-width: 600px) {
  .location-card { flex: 0 0 100%; }
  .loc-btn { display: none; }
}

/* ══════════════════════════════════════
   BLOG SECTION
══════════════════════════════════════ */
.blog-section {
  padding: 80px 40px;
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: var(--blue);
}

.blog-img-wrapper {
  width: 100%;
  height: 380px;
  overflow: hidden;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 0; /* Override default img radius for cards */
}

.blog-card:hover .blog-img {
  transform: scale(1.1);
}

.blog-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.4;
  font-family: 'Raleway', sans-serif;
}

.blog-link {
  font-weight: 700;
  color: #ff6b35; 
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 0.9rem;
}

.blog-link:hover {
  color: #e85a24;
  gap: 12px;
}

.badge-all-posts {
  background: #fff0eb;
  color: #ff6b35;
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 20px;
  font-family: 'Raleway', sans-serif;
}

@media (max-width: 768px) {
  .blog-section {
    padding: 60px 20px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}
