/* =============================================================
   SimplexPros — Bootstrap 5.3 Theme Override
   Keeps the existing dark enterprise branding while using
   Bootstrap 5.3 for layout, components, and interactions.
   ============================================================= */

/* ── 1. Root / CSS variables ─────────────────────────────── */
:root {
  /* Remap Bootstrap primary to brand blue */
  --bs-primary:        #2563eb;
  --bs-primary-rgb:    37, 99, 235;
  --bs-link-color:     #2563eb;
  --bs-link-hover-color: #1d4ed8;

  /* Body font */
  --bs-body-font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;

  /* Dark colour palette */
  --sp-slate-950:  #020617;
  --sp-slate-900:  #0f172a;
  --sp-slate-800:  #1e293b;
  --sp-slate-700:  #334155;
  --sp-slate-600:  #475569;
  --sp-slate-500:  #64748b;
  --sp-slate-400:  #94a3b8;
  --sp-slate-300:  #cbd5e1;
  --sp-blue-400:   #60a5fa;
  --sp-blue-500:   #3b82f6;
  --sp-blue-600:   #2563eb;
  --sp-blue-700:   #1d4ed8;
  --sp-indigo-950: #1e1b4b;
  --sp-indigo-900: #312e81;
  --sp-indigo-600: #4f46e5;
  --sp-emerald-600:#059669;
  --sp-emerald-950:#022c22;
  --sp-rose-600:   #e11d48;
  --sp-rose-950:   #4c0519;
}

/* ── 2. Background utilities ─────────────────────────────── */
.bg-slate-950  { background-color: var(--sp-slate-950)  !important; }
.bg-slate-900  { background-color: var(--sp-slate-900)  !important; }
.bg-slate-800  { background-color: var(--sp-slate-800)  !important; }
.bg-indigo-950 { background-color: var(--sp-indigo-950) !important; }
.bg-indigo-600 { background-color: var(--sp-indigo-600) !important; }
.bg-emerald-600{ background-color: var(--sp-emerald-600)!important; }
.bg-emerald-950{ background-color: var(--sp-emerald-950)!important; }
.bg-rose-950   { background-color: var(--sp-rose-950)   !important; }
.bg-rose-600   { background-color: var(--sp-rose-600)   !important; }
.bg-orange-500 { background-color: #f97316 !important; }
.bg-purple-600 { background-color: #9333ea !important; }
.bg-teal-600   { background-color: #0d9488 !important; }
.bg-yellow-500 { background-color: #eab308 !important; }
.bg-green-600  { background-color: #16a34a !important; }

/* ── 3. Text colour utilities ────────────────────────────── */
.text-blue-400   { color: var(--sp-blue-400)  !important; }
.text-blue-100   { color: #dbeafe !important; }
.text-blue-200   { color: #bfdbfe !important; }
.text-slate-300  { color: var(--sp-slate-300) !important; }
.text-slate-400  { color: var(--sp-slate-400) !important; }
.text-slate-500  { color: var(--sp-slate-500) !important; }
.text-slate-600  { color: var(--sp-slate-600) !important; }
.text-slate-900  { color: var(--sp-slate-900) !important; }
.text-indigo-400 { color: #818cf8 !important; }
.text-indigo-200 { color: #c7d2fe !important; }
.text-indigo-100 { color: #e0e7ff !important; }
.text-emerald-400{ color: #34d399 !important; }
.text-emerald-200{ color: #a7f3d0 !important; }
.text-emerald-100{ color: #d1fae5 !important; }
.text-rose-400   { color: #fb7185 !important; }
.text-rose-200   { color: #fecdd3 !important; }
.text-rose-100   { color: #ffe4e6 !important; }
.text-green-400  { color: #4ade80 !important; }
.text-green-500  { color: #22c55e !important; }
.text-yellow-400 { color: #facc15 !important; }

/* ── 4. Typography ───────────────────────────────────────── */
.fw-black        { font-weight: 900 !important; }
.ls-widest       { letter-spacing: 0.15em; }
.ls-wider        { letter-spacing: 0.1em; }
.lh-tight        { line-height: 1.15 !important; }
.lh-relaxed      { line-height: 1.65 !important; }

/* Large display type that mirrors Tailwind's text-6xl / text-7xl */
.sp-text-7xl {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
}
.sp-text-6xl {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
}
.sp-text-5xl {
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.15;
}
.sp-text-4xl {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.2;
}

/* ── 5. Gradient text ─────────────────────────────────────── */
.text-gradient {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── 6. Section spacing ───────────────────────────────────── */
.section-py    { padding-top: 5rem; padding-bottom: 5rem; }
.section-py-lg { padding-top: 7rem; padding-bottom: 7rem; }

/* ── 7. Announcement top bar ─────────────────────────────── */
.sp-topbar {
  background-color: var(--sp-blue-600);
  padding: 0.5rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
}
.sp-topbar a {
  color: #bfdbfe;
  text-decoration: underline;
  font-weight: 700;
}
.sp-topbar a:hover { color: #fff; }

/* ── 8. Navbar ────────────────────────────────────────────── */
.navbar-sp {
  background-color: var(--sp-slate-950) !important;
  border-bottom: 1px solid var(--sp-slate-800);
  min-height: 4.5rem;
}
.navbar-sp .navbar-brand {
  font-weight: 900;
  font-size: 1.5rem;
  color: #fff !important;
  text-decoration: none;
}
.navbar-sp .nav-link {
  color: var(--sp-slate-300) !important;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  padding: 0.4rem 0.75rem !important;
  transition: color 0.15s ease, background-color 0.15s ease;
}
.navbar-sp .nav-link:hover,
.navbar-sp .nav-link.active {
  color: #fff !important;
  background-color: var(--sp-slate-800);
}
.navbar-sp .dropdown-menu {
  background-color: var(--sp-slate-900);
  border: 1px solid var(--sp-slate-800);
  border-radius: 0.75rem;
  padding: 0.5rem;
  min-width: 14rem;
}
.navbar-sp .dropdown-item {
  color: var(--sp-slate-300);
  font-size: 0.875rem;
  border-radius: 0.4rem;
  padding: 0.5rem 0.85rem;
  transition: all 0.15s ease;
}
.navbar-sp .dropdown-item:hover,
.navbar-sp .dropdown-item:focus {
  background-color: var(--sp-slate-800);
  color: #fff;
}
.navbar-sp .navbar-toggler {
  border-color: var(--sp-slate-700);
  color: var(--sp-slate-300);
  padding: 0.4rem 0.6rem;
}
.navbar-sp .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(203,213,225,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
#navbarMain {
  border-top: 1px solid var(--sp-slate-800);
}
.navbar-sp .navbar-collapse .nav-link {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

/* ── 9. Button overrides — squared with hard shadow ─────── */
.btn {
  border-radius: 0 !important;
  letter-spacing: 0.02em;
}
.btn-primary {
  background-color: var(--sp-blue-600);
  border-color: var(--sp-blue-600);
  font-weight: 700;
  border-radius: 0 !important;
  padding: 0.65rem 1.5rem;
  box-shadow: 4px 4px 0 0 rgba(0, 0, 0, 0.55);
  transition: background-color 0.18s ease, border-color 0.18s ease,
              transform 0.15s ease, box-shadow 0.15s ease !important;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: var(--sp-blue-700);
  border-color: var(--sp-blue-700);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 rgba(0, 0, 0, 0.55);
}
.btn-primary:active {
  transform: translate(1px, 1px) !important;
  box-shadow: 2px 2px 0 0 rgba(0, 0, 0, 0.55) !important;
}
.btn-outline-primary {
  border-radius: 0 !important;
  font-weight: 600;
  box-shadow: 4px 4px 0 0 rgba(37, 99, 235, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease !important;
}
.btn-outline-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 rgba(37, 99, 235, 0.35) !important;
}
.btn-outline-secondary {
  border-radius: 0 !important;
  box-shadow: 4px 4px 0 0 rgba(100, 116, 139, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease !important;
}
.btn-outline-secondary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 rgba(100, 116, 139, 0.4) !important;
}
.btn-outline-light {
  border-radius: 0 !important;
  box-shadow: 4px 4px 0 0 rgba(255, 255, 255, 0.15);
  transition: transform 0.15s ease, box-shadow 0.15s ease !important;
}
.btn-outline-light:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 rgba(255, 255, 255, 0.2) !important;
}
.btn-light {
  border-radius: 0 !important;
  box-shadow: 4px 4px 0 0 rgba(0, 0, 0, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease !important;
}
.btn-light:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 rgba(0, 0, 0, 0.55) !important;
}
.btn-glow {
  transition: background-color 0.2s ease, border-color 0.2s ease,
              box-shadow 0.15s ease, transform 0.15s ease !important;
}
.btn-glow:hover {
  box-shadow: 6px 6px 0 0 rgba(0, 0, 0, 0.55),
              0 0 28px rgba(37, 99, 235, 0.45) !important;
  transform: translate(-2px, -2px);
}

/* ── 10. Cards ───────────────────────────────────────────── */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4) !important;
}

/* Service box (big dark cards on homepage) */
.service-box {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  padding: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: block;
}
.service-box:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 0 rgba(0, 0, 0, 0.6) !important;
  text-decoration: none;
}
.service-box-hosting { background-color: var(--sp-slate-900); }
.service-box-hosting:hover { background-color: var(--sp-slate-800); }
.service-box-care    { background-color: var(--sp-indigo-950); }
.service-box-care:hover { background-color: #1e1b4b; }
.service-box-migrations { background-color: var(--sp-emerald-950); }
.service-box-migrations:hover { background-color: #064e3b; }
.service-box-security { background-color: var(--sp-rose-950); }
.service-box-security:hover { background-color: #881337; }

/* ── 11. Icon boxes ──────────────────────────────────────── */
.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 0.75rem;
}
.icon-box-sm  { width: 3rem;  height: 3rem;  }
.icon-box-md  { width: 3.5rem; height: 3.5rem; }
.icon-box-lg  { width: 4rem;  height: 4rem;  }
.icon-box-xl  { width: 6rem;  height: 6rem;  border-radius: 1rem; }

/* ── 12. Badges ──────────────────────────────────────────── */
.section-label {
  display: inline-block;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 1rem;
}
.badge-popular {
  position: absolute;
  top: -0.875rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #facc15;
  color: #713f12;
  padding: 0.25rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  white-space: nowrap;
}

/* ── 13. Trust badges ─────────────────────────────────────── */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: var(--sp-slate-800);
  border-radius: 9999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--sp-slate-300);
}
.trust-dot {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

/* ── 14. Glow / decorative orbs ─────────────────────────── */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}

/* ── 15. Animated pulse ───────────────────────────────────── */
@keyframes sp-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}
.sp-pulse { animation: sp-pulse 2s cubic-bezier(0.4,0,0.6,1) infinite; }

/* ── 16. Comparison table ─────────────────────────────────── */
.table-comparison { border-color: var(--sp-slate-800); }
.table-comparison th,
.table-comparison td {
  vertical-align: middle;
  padding: 0.875rem 1rem;
  border-color: var(--sp-slate-800);
}
.table-comparison thead th {
  background-color: var(--sp-slate-900);
  color: #fff;
  font-weight: 900;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.table-comparison tbody tr { background-color: transparent; }
.table-comparison tbody tr:nth-child(odd)  { background-color: rgba(255,255,255,0.02); }
.table-comparison tbody tr:nth-child(even) { background-color: rgba(255,255,255,0.01); }
.table-comparison tbody td { color: var(--sp-slate-300); font-size: 0.9rem; }
.table-comparison tbody td:first-child { color: #fff; font-weight: 600; }
.check-yes { color: #4ade80; }
.check-no  { color: var(--sp-slate-600); }

/* ── 17. Form controls ────────────────────────────────────── */
.form-control, .form-select {
  border-radius: 0.625rem;
  border: 2px solid #e5e7eb;
  padding: 0.7rem 1rem;
  font-size: 0.875rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-control:focus, .form-select:focus {
  border-color: var(--sp-blue-600);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  outline: none;
}
.form-control.is-invalid { border-color: #ef4444; }
.form-control.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

/* ── 18. Modal overrides ─────────────────────────────────── */
.modal-content {
  border-radius: 1rem;
  border: 1px solid var(--sp-slate-800);
  background-color: var(--sp-slate-900);
  color: #fff;
}
.modal-header {
  border-bottom: 1px solid var(--sp-slate-800);
  padding: 1.25rem 1.5rem;
}
.modal-body   { padding: 1.5rem; }
.modal-footer {
  border-top: 1px solid var(--sp-slate-800);
  padding: 1rem 1.5rem;
}
.btn-close-white { filter: invert(1) grayscale(100%) brightness(200%); }

/* ── 19. Footer ───────────────────────────────────────────── */
.footer-sp { background-color: var(--sp-slate-950); color: var(--sp-slate-400); }
.footer-sp a { color: var(--sp-slate-400); text-decoration: none; transition: color 0.15s ease; }
.footer-sp a:hover { color: #fff !important; }
.footer-heading {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fff;
  margin-bottom: 1.25rem;
}

/* ── 20. Misc helpers ─────────────────────────────────────── */
.rounded-4 { border-radius: 1rem  !important; }
.rounded-5 { border-radius: 1.5rem!important; }
.scale-105  { transform: scale(1.05); }

/* Benefit list items */
.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  transition: border-color 0.2s ease;
}
.benefit-item:hover { border-color: rgba(37, 99, 235, 0.4); }

/* Step card (migrations process) */
.step-card {
  background-color: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.2s ease;
}

/* Why-us benefit rows */
.why-item {
  display: flex;
  gap: 1.25rem;
  background-color: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color 0.2s ease;
}
.why-item:hover { border-color: rgba(37, 99, 235, 0.4); }

/* Testimonial card */
.testimonial-card {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
}
.testimonial-card:hover { box-shadow: 0 20px 40px -10px rgba(0,0,0,0.12); }

/* Tag pills */
.tag-pill {
  display: inline-block;
  border-radius: 9999px;
  padding: 0.2rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ── 21. Navbar scroll blur effect ──────────────────────── */
.navbar-sp {
  transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.navbar-sp-scrolled {
  background-color: rgba(2, 6, 23, 0.85) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 20px rgba(0,0,0,0.4);
}

/* ── 22. Offcanvas (mobile menu) ─────────────────────────── */
.offcanvas-sp {
  background-color: var(--sp-slate-950);
  border-right: 1px solid var(--sp-slate-800);
  width: 17rem !important;
}
.offcanvas-sp .offcanvas-header {
  border-bottom: 1px solid var(--sp-slate-800);
  padding: 1.1rem 1.25rem;
}
.offcanvas-sp .offcanvas-body {
  padding: 1.25rem;
}
.offcanvas-sp .nav-link {
  color: var(--sp-slate-300);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.5rem;
  padding: 0.6rem 0.75rem;
  transition: color 0.15s ease, background-color 0.15s ease;
}
.offcanvas-sp .nav-link:hover,
.offcanvas-sp .nav-link.active {
  color: #fff !important;
  background-color: var(--sp-slate-800);
}
.offcanvas-sp .dropdown-menu {
  background-color: var(--sp-slate-900);
  border: 1px solid var(--sp-slate-800);
  border-radius: 0.75rem;
  padding: 0.4rem;
  position: static !important;
  float: none;
  transform: none !important;
  margin-top: 0.25rem;
}
.offcanvas-sp .dropdown-item {
  color: var(--sp-slate-300);
  font-size: 0.9rem;
  border-radius: 0.4rem;
  padding: 0.5rem 0.85rem;
  transition: all 0.15s ease;
}
.offcanvas-sp .dropdown-item:hover {
  background-color: var(--sp-slate-800);
  color: #fff;
}
.offcanvas-sp .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}

/* ── 23. Hero layout enhancements ───────────────────────── */
/* Full-viewport hero: spans from bottom of nav to bottom of viewport */
.hero-section {
  display: flex;
  align-items: center;
  /* 2.75rem topbar + 4.5rem navbar = 7.25rem */
  min-height: calc(100vh - 7.25rem);
  min-height: calc(100dvh - 7.25rem);
}
.hero-section > .container-xl {
  padding-top: 3rem;
  padding-bottom: 3rem;
  width: 100%;
}
/* Shrink the hero headline so the whole hero fits above fold */
.hero-text h1.sp-text-7xl {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
}
@media (max-width: 767.98px) {
  .hero-section {
    min-height: calc(100vh - 7.25rem);
    min-height: calc(100dvh - 7.25rem);
  }
  .hero-section > .container-xl {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .hero-text h1.sp-text-7xl {
    font-size: clamp(2rem, 7vw, 2.75rem);
  }
}
.hero-visual {
  pointer-events: none;
  user-select: none;
}
.hero-inner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 992px) {
  .hero-inner-grid {
    grid-template-columns: 1.1fr 0.9fr;
    text-align: left;
  }
  .hero-inner-grid .hero-text .d-flex {
    justify-content: flex-start;
  }
  .hero-inner-grid .hero-text .d-flex.trust-row {
    justify-content: flex-start;
  }
}

/* Hero scan line overlay — subtle tech texture */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(37, 99, 235, 0.018) 3px,
    rgba(37, 99, 235, 0.018) 4px
  );
  pointer-events: none;
  z-index: 0;
}
.hero-section > * { position: relative; z-index: 1; }
/* Orb wrapper must be absolute so it doesn't affect flex layout */
.hero-section > [aria-hidden="true"] {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

/* ── 24. Stat / metric cards ─────────────────────────────── */
.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.stat-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}
.stat-card .stat-number {
  font-size: clamp(2.75rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  color: #fff;
}
.stat-card .stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(219, 234, 254, 0.75);
  margin-top: 0.4rem;
}

/* ── 25. Testimonial improvements ────────────────────────── */
.testimonial-card {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
  transform: translateY(-3px);
}
.testimonial-quote-mark {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  opacity: 0.08;
  color: var(--sp-blue-600);
}
.testimonial-body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.avatar-gradient {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
  color: #fff;
}
.avatar-gradient-blue   { background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%); }
.avatar-gradient-indigo { background: linear-gradient(135deg, #4f46e5 0%, #818cf8 100%); }
.avatar-gradient-teal   { background: linear-gradient(135deg, #0d9488 0%, #34d399 100%); }

/* ── 26. FAQ Accordion ────────────────────────────────────── */
.faq-accordion .accordion-item {
  background: transparent;
  border: 1px solid var(--sp-slate-800);
  border-radius: 0.75rem !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-accordion .accordion-button {
  background-color: var(--sp-slate-900);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 0.75rem !important;
  padding: 1.1rem 1.5rem;
  box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background-color: var(--sp-slate-800);
  color: #fff;
  box-shadow: none;
  border-radius: 0.75rem 0.75rem 0 0 !important;
}
.faq-accordion .accordion-button::after {
  filter: invert(1) brightness(2);
}
.faq-accordion .accordion-body {
  background-color: var(--sp-slate-900);
  color: var(--sp-slate-400);
  line-height: 1.7;
  border-top: 1px solid var(--sp-slate-800);
  padding: 1.25rem 1.5rem;
}

/* ── 27. Comparison table enhancements ───────────────────── */
.table-comparison .col-highlight {
  background-color: rgba(37, 99, 235, 0.08) !important;
}
.table-comparison thead .col-highlight {
  background-color: rgba(37, 99, 235, 0.2) !important;
  color: var(--sp-blue-400) !important;
}

/* ── 28. Scroll-reveal animations ────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
}

/* ── 29. Button focus / interaction polish ───────────────── */
.btn:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.5);
  outline-offset: 3px;
}
.btn-primary:focus-visible {
  outline-color: rgba(96, 165, 250, 0.6);
}

/* ── 30. Deliverables / What's Included grid ─────────────── */
.deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background-color: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(51, 65, 85, 0.4);
  border-radius: 0.875rem;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.deliverable-item:hover {
  border-color: rgba(37, 99, 235, 0.35);
  background-color: rgba(30, 41, 59, 0.7);
}
.deliverable-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ── 31. Pricing page — billing toggle ───────────────────── */
.billing-toggle {
  display: inline-flex;
  background: var(--sp-slate-800);
  border-radius: 9999px;
  padding: 0.25rem;
  gap: 0.2rem;
}
.btn-billing {
  background: transparent;
  border: none;
  color: var(--sp-slate-400);
  border-radius: 9999px;
  padding: 0.5rem 1.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  line-height: 1.4;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.btn-billing.active {
  background: var(--sp-blue-600);
  color: #fff;
}
.btn-billing:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.5);
  outline-offset: 2px;
}
.annual-badge {
  display: inline-block;
  background: #16a34a;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.12rem 0.45rem;
  border-radius: 9999px;
  vertical-align: middle;
  margin-left: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── 32. Pricing plan card — featured ────────────────────── */
.plan-card {
  border-radius: 0 !important;
}
.plan-card-featured {
  border: 2px solid var(--sp-blue-600) !important;
  background: linear-gradient(160deg, #1e3a8a 0%, #1e40af 100%) !important;
  box-shadow:
    6px 6px 0 0 rgba(0, 0, 0, 0.7),
    0 0 48px rgba(37, 99, 235, 0.25) !important;
  transform: translateY(-6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.plan-card-featured:hover {
  transform: translate(-2px, -10px);
  box-shadow:
    8px 8px 0 0 rgba(0, 0, 0, 0.8),
    0 0 60px rgba(37, 99, 235, 0.3) !important;
}

/* ── 33. Trust pill badges ────────────────────────────────── */
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
}

/* ── 34. Comparison table v2 — sticky + categories ──────── */
.comparison-swipe-label {
  display: none;
  text-align: center;
  font-size: 0.8rem;
  color: var(--sp-slate-400);
  margin-bottom: 0.6rem;
}
@media (max-width: 991.98px) {
  .comparison-swipe-label { display: block; }
}

.comparison-wrapper {
  position: relative;
}
.comparison-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 3.5rem;
  background: linear-gradient(to right, transparent, var(--sp-slate-950));
  pointer-events: none;
  border-radius: 0 1rem 1rem 0;
  display: none;
}
@media (max-width: 991.98px) {
  .comparison-wrapper::after { display: block; }
}

/* Base table styles */
.table-comparison-v2 {
  border-color: var(--sp-slate-800);
  min-width: 560px;
}
.table-comparison-v2 th,
.table-comparison-v2 td {
  vertical-align: middle;
  padding: 0.8rem 1rem;
  border-color: var(--sp-slate-800);
}
.table-comparison-v2 thead th {
  background-color: var(--sp-slate-900);
  color: #fff;
  font-weight: 900;
  font-size: 0.875rem;
  line-height: 1.4;
}
.table-comparison-v2 tbody td {
  color: var(--sp-slate-300);
  font-size: 0.875rem;
}
.table-comparison-v2 tfoot td {
  border-top: 2px solid var(--sp-slate-700);
}

/* Alternating rows — solid colors required for sticky column */
.table-comparison-v2 tbody tr {
  background-color: var(--sp-slate-950);
}
.table-comparison-v2 tbody tr:nth-child(odd) {
  background-color: #040d1e;
}

/* Sticky first column */
.table-comparison-v2 .sticky-col {
  position: sticky;
  left: 0;
  z-index: 2;
  background: inherit;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
.table-comparison-v2 thead .sticky-col {
  z-index: 3;
  background-color: var(--sp-slate-900);
}
.table-comparison-v2 tfoot .sticky-col {
  background-color: var(--sp-slate-950);
}

/* Category header rows */
.table-comparison-v2 .category-row {
  background-color: rgba(37, 99, 235, 0.08) !important;
}
.table-comparison-v2 .category-row td {
  color: var(--sp-blue-400);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  background-color: rgba(37, 99, 235, 0.08);
}

/* Pro column highlight */
.table-comparison-v2 .col-highlight {
  background-color: rgba(37, 99, 235, 0.1) !important;
}
.table-comparison-v2 thead .col-highlight {
  background-color: rgba(37, 99, 235, 0.22) !important;
}
.table-comparison-v2 tfoot .col-highlight {
  background-color: rgba(37, 99, 235, 0.1) !important;
}

/* ── 35. Info tooltip button ─────────────────────────────── */
.info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--sp-slate-600);
  cursor: pointer;
  padding: 0;
  margin-left: 0.3rem;
  vertical-align: middle;
  border-radius: 50%;
  line-height: 1;
  transition: color 0.15s ease;
}
.info-btn:hover,
.info-btn:focus-visible {
  color: var(--sp-blue-400);
  outline: none;
}
.info-btn:focus-visible {
  outline: 2px solid rgba(37, 99, 235, 0.5);
  outline-offset: 2px;
}

/* ── 36. HostGator-style plan comparison columns ─────────── */
.hg-compare-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border: 2px solid var(--sp-slate-700);
  background: var(--sp-slate-950);
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .hg-compare-wrap {
    grid-template-columns: 1fr;
  }
}

.hg-col {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--sp-slate-700);
  background: var(--sp-slate-950);
  transition: background 0.2s ease;
}
.hg-col:last-child { border-right: none; }
.hg-col-featured {
  background: linear-gradient(180deg, #0f2a6e 0%, #0d1f4e 100%);
  border-right: 1px solid rgba(37, 99, 235, 0.5);
  border-left: 1px solid rgba(37, 99, 235, 0.5);
  box-shadow: inset 0 0 0 2px rgba(37, 99, 235, 0.18);
  position: relative;
  z-index: 1;
}

/* Plan header in each column */
.hg-col-head {
  padding: 2rem 1.5rem;
  border-bottom: 1px solid var(--sp-slate-700);
  text-align: center;
  position: relative;
}
.hg-col-featured .hg-col-head {
  border-bottom-color: rgba(37, 99, 235, 0.4);
  background: rgba(37, 99, 235, 0.08);
}
.hg-plan-badge {
  display: inline-block;
  background: #facc15;
  color: #713f12;
  font-size: 0.6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.75rem;
  margin-bottom: 0.75rem;
}
.hg-plan-name {
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}
.hg-plan-tagline {
  font-size: 0.7rem;
  color: var(--sp-slate-400);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hg-col-featured .hg-plan-tagline { color: #93c5fd; }
.hg-plan-price {
  margin-bottom: 0.25rem;
}
.hg-plan-price-amount {
  font-size: 3.25rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.hg-plan-price-mo {
  font-size: 0.95rem;
  color: var(--sp-slate-400);
  font-weight: 500;
}
.hg-col-featured .hg-plan-price-mo { color: #93c5fd; }
.hg-plan-note {
  font-size: 0.7rem;
  color: var(--sp-slate-500);
  margin-bottom: 1.25rem;
  min-height: 1rem;
}
.hg-col-featured .hg-plan-note { color: rgba(147, 197, 253, 0.7); }
.hg-col-cta {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-weight: 800;
  font-size: 0.85rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: transparent;
  color: var(--sp-blue-400);
  border: 2px solid var(--sp-blue-400);
  box-shadow: 3px 3px 0 0 rgba(37, 99, 235, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.hg-col-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 0 rgba(37, 99, 235, 0.5);
  background: rgba(37, 99, 235, 0.1);
  color: var(--sp-blue-400);
}
.hg-col-cta-featured {
  background: var(--sp-blue-600);
  color: #fff;
  border-color: var(--sp-blue-600);
  box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.6);
}
.hg-col-cta-featured:hover {
  background: var(--sp-blue-700);
  color: #fff;
  box-shadow: 5px 5px 0 0 rgba(0, 0, 0, 0.7);
}

/* Feature category header */
.hg-feat-cat {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(37, 99, 235, 0.2);
  background: rgba(37, 99, 235, 0.08);
}
.hg-feat-cat-label {
  grid-column: 1 / -1;
  padding: 0.6rem 1.5rem;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sp-blue-400);
  border-bottom: 1px solid rgba(37, 99, 235, 0.2);
}

/* Feature rows */
.hg-feat-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(30, 41, 59, 0.7);
  transition: background 0.15s ease;
}
.hg-feat-row:hover { background: rgba(37, 99, 235, 0.04); }
.hg-feat-row:last-child { border-bottom: none; }
.hg-feat-label {
  padding: 0.75rem 1.5rem;
  font-size: 0.8rem;
  color: var(--sp-slate-300);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-right: 1px solid rgba(30, 41, 59, 0.7);
}
.hg-feat-cell {
  padding: 0.75rem 0.75rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--sp-slate-300);
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(30, 41, 59, 0.7);
}
.hg-feat-cell:last-child { border-right: none; }
.hg-feat-cell-featured {
  background: rgba(37, 99, 235, 0.07);
  color: #fff;
  font-weight: 600;
}
.check-yes {
  color: #4ade80;
}
.check-no {
  color: var(--sp-slate-700);
}

/* Plan comparison section header grid (name row + price row on top) */
.hg-header-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  background: var(--sp-slate-900);
  border-bottom: 2px solid var(--sp-blue-600);
  position: sticky;
  top: 0;
  z-index: 10;
}
@media (max-width: 767.98px) {
  .hg-feat-row,
  .hg-header-row {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
  .hg-feat-label { padding: 0.6rem 0.75rem; }
  .hg-feat-cell  { padding: 0.6rem 0.4rem; font-size: 0.72rem; }
}
.hg-header-feat {
  padding: 1rem 1.5rem;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sp-slate-400);
  display: flex;
  align-items: center;
  border-right: 1px solid var(--sp-slate-700);
}
.hg-header-plan {
  padding: 1rem 0.75rem;
  text-align: center;
  border-right: 1px solid var(--sp-slate-700);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
}
.hg-header-plan:last-child { border-right: none; }
.hg-header-plan-featured {
  background: rgba(37, 99, 235, 0.15);
}
.hg-header-plan-name {
  font-size: 0.75rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hg-header-plan-price {
  font-size: 1rem;
  font-weight: 900;
  color: var(--sp-blue-400);
}
.hg-header-plan-mo {
  font-size: 0.65rem;
  color: var(--sp-slate-500);
}

/* Wrapper */
.hg-table-wrap {
  border: 2px solid var(--sp-slate-700);
  overflow: hidden;
}
.hg-table-body {
  background: var(--sp-slate-950);
}

/* ── 37. Modern section & card radius tweaks ─────────────── */
.card {
  border-radius: 0 !important;
}
.accordion-item {
  border-radius: 0 !important;
}
.faq-accordion .accordion-item {
  border-radius: 0 !important;
}
.faq-accordion .accordion-button {
  border-radius: 0 !important;
}
.faq-accordion .accordion-button:not(.collapsed) {
  border-radius: 0 !important;
}
.rounded-pill { border-radius: 9999px !important; }

/* ── 38. Cyber grid overlay ──────────────────────────────── */
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* ── 39. Tech glow border on dark section dividers ───────── */
.tech-divider {
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(37, 99, 235, 0.4) 20%,
    rgba(99, 102, 241, 0.6) 50%,
    rgba(37, 99, 235, 0.4) 80%,
    transparent 100%
  );
  margin: 0;
  border: none;
}

/* ── 40. Icon box square variant ─────────────────────────── */
.icon-box {
  border-radius: 0 !important;
}

/* ── 41. Topbar height adjustment ────────────────────────── */
.sp-topbar {
  padding: 0.45rem 1rem;
}

