/* ===========================
   VIRTUAL CFO - MAIN STYLESHEET
   Brand: Blue #2E6DA4 | Yellow #F5C518 | Black #0A0A0A
=========================== */

:root {
  --blue: #2E6DA4;
  --blue-dark: #1a4f7a;
  --blue-light: #4a8cc4;
  --yellow: #F5C518;
  --yellow-dark: #d4a800;
  --black: #0A0A0A;
  --dark: #111827;
  --gray: #6B7280;
  --light-gray: #F3F4F6;
  --white: #FFFFFF;
  --border: #E5E7EB;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 72px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ===========================
   TYPOGRAPHY
=========================== */
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { font-size: 1rem; color: var(--gray); line-height: 1.75; }

.section-label {
  display: inline-block;
  background: rgba(245, 197, 24, 0.15);
  color: var(--yellow-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(245, 197, 24, 0.3);
}

.section-title { color: var(--dark); margin-bottom: 16px; }
.section-subtitle { color: var(--gray); font-size: 1.05rem; max-width: 640px; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.btn-primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,197,24,0.35);
}

.btn-secondary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-secondary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,109,164,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  transform: translateY(-2px);
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, transform 0.35s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(30,64,175,0.1), 0 1px 4px rgba(0,0,0,0.05);
  border-bottom-color: rgba(46,109,164,0.1);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo img { height: 48px; width: auto; }

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-text span:first-child {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.5px;
}
.nav-logo-text span:last-child {
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--dark);
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--blue);
  background: rgba(46,109,164,0.06);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 4px);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
  transition: var(--transition);
}

.nav-dropdown-menu a:hover {
  background: var(--light-gray);
  color: var(--blue);
  padding-left: 22px;
}

.nav-cta { margin-left: 6px; padding: 9px 16px; font-size: 0.83rem; white-space: nowrap; }

.nav-menu-close { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
  background: none;
  border: none;
  outline: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===========================
   HERO SECTION — PREMIUM
=========================== */
.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  /* Light blue base background */
  background: linear-gradient(145deg, #eef6ff 0%, #dbeafe 45%, #eff6ff 100%);
}

/* Background orb layer — light blue */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 75% 20%, rgba(147,197,253,0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(245,197,24,0.18) 0%, transparent 50%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(96,165,250,0.35) 0%, transparent 70%);
  top: -260px; right: -160px;
  animation: orbFloat1 14s ease-in-out infinite;
}

.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,197,24,0.22) 0%, transparent 70%);
  bottom: -160px; left: 4%;
  animation: orbFloat2 18s ease-in-out infinite;
}

.hero-orb-3 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(59,130,246,0.2) 0%, transparent 70%);
  top: 28%; left: 33%;
  animation: orbFloat3 11s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-42px, 32px) scale(1.06); }
  66%       { transform: translate(26px, -22px) scale(0.94); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(36px, -46px) scale(1.12); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  50%       { transform: translate(-26px, 24px) scale(1.26); opacity: 1; }
}

/* Animated grid — visible on light bg */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(30,64,175,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,64,175,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridPulse 8s ease-in-out infinite;
}

.hero-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,197,24,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,197,24,0.08) 1px, transparent 1px);
  background-size: 120px 120px;
}

@keyframes gridPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

/* Mouse-follow glow — yellow on light bg */
.hero-mouse-glow {
  position: absolute;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(245,197,24,0.14) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 2;
  left: 60%; top: 50%;
  transition: left 0.5s ease, top 0.5s ease;
  will-change: left, top;
}

/* Container layout — fr units prevent % + gap overflow */
.hero .container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 11fr) minmax(0, 9fr);
  gap: 48px;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 32px;
  width: 100%;
}

/* HERO BADGE */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245,197,24,0.18);
  border: 1px solid rgba(245,197,24,0.45);
  color: #166534;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-badge span,
.hero-badge-dot {
  width: 7px; height: 7px;
  background: #16a34a;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(245,197,24,0.9);
}

/* TYPING HEADLINE — fixed 2-line height, left-aligned, no CLS */
.hero-typing-container {
  position: relative;
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  height: 2.9em;     /* exactly 2 lines: 2 × line-height(1.45) */
  margin-bottom: 22px;
  overflow: visible; /* cursor must not be clipped */
}

#typingHeadline {
  margin: 0;
  padding: 0;
  font-size: 1em;    /* inherits container's clamp font-size */
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -0.01em;
  text-align: left;
  background: linear-gradient(135deg, #2E6DA4 0%, #4a8cc4 40%, #F5C518 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #2E6DA4;
}

/* Blinking cursor injected by JS inside #typingHeadline */
.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 0.85em;
  background: #22c55e;
  margin-left: 3px;
  vertical-align: text-bottom;
  border-radius: 1px;
  animation: blinkCursor 0.75s step-end infinite;
}

@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.hero-desc {
  color: #334155;
  font-size: 1.06rem;
  line-height: 1.78;
  margin-bottom: 34px;
  max-width: 500px;
}

.powerbi-logo {
  display: inline-block;
  vertical-align: text-bottom;
  height: 1.05em;
  width: auto;
  margin: 0 0.18em;
}

.powerbi-label{
  display:inline-flex;
  align-items:center;
  gap:6px;
}

.powerbi-label img{
  width:20px;
  height:20px;
  object-fit:contain;
  flex:0 0 auto;
  vertical-align:middle;
}

@media (max-width:480px){
  .powerbi-label img{
    width:18px;
    height:18px;
  }
}

.tst-service-tag img.powerbi-logo,
.cmp-row-title img.powerbi-logo,
.section-subtitle img.powerbi-logo,
h3 img.powerbi-logo {
  height: 1.15em;
}


/* BUTTONS */
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #F5C518 0%, #d4a800 100%) !important;
  color: #060e1e !important;
  border-color: transparent !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 24px rgba(245,197,24,0.3);
}

.hero-btn-primary:hover {
  background: linear-gradient(135deg, #FFD740 0%, #F5C518 100%) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 36px rgba(245,197,24,0.5) !important;
  color: #060e1e !important;
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid rgba(30,58,138,0.22);
  color: #1e3a8a;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-hero-outline:hover {
  border-color: #16a34a;
  color: #166534;
  background: rgba(245,197,24,0.1);
  transform: translateY(-2px);
}

/* TRUST ROW */
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.hero-avatars { display: flex; }

.hero-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  margin-left: -10px;
  object-fit: cover;
  display: block;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-avatar:first-child { margin-left: 0; }
.hero-avatar:hover { transform: translateY(-3px) scale(1.08); box-shadow: 0 6px 18px rgba(0,0,0,0.22); position: relative; z-index: 10; }

.hero-stars { color: #16a34a; font-size: 0.88rem; letter-spacing: 2px; }
.hero-rating-text { font-size: 0.75rem; color: #64748b; margin-top: 2px; }

/* STATS */
.hero-stats {
  display: flex;
  gap: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(30,58,138,0.12);
}

.hero-stat {
  flex: 1;
  padding-right: 18px;
  position: relative;
}

.hero-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 0;
  width: 1px; height: 100%;
  background: rgba(30,58,138,0.1);
}

.hero-stat:not(:first-child) { padding-left: 18px; }

.hero-stat-num {
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1;
  color: #2E6DA4;
}

.hero-stat-label {
  font-size: 0.74rem;
  color: #64748b;
  margin-top: 5px;
}

/* HERO MOCKUP WRAP */
.hero-mockup-wrap {
  position: relative;
  padding: 48px 4px 44px 8px; /* top/bottom space for float cards */
  overflow: visible;
  min-width: 0;
}

/* FLOATING MINI CARDS — white on light bg */
.float-card {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(147,197,253,0.4);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(30,64,175,0.14), 0 1px 0 rgba(255,255,255,0.9) inset;
  max-width: calc(100% - 24px);
}

.float-card-body {
  display: flex;
  flex-direction: column;
}

/* Positioned fully within the wrap column — no negative offsets */
.float-card-tl {
  top: 8px;
  left: 20px;
  animation: floatCardA 5s ease-in-out infinite;
}

.float-card-br {
  bottom: 8px;
  right: 16px;
  animation: floatCardB 6.5s ease-in-out infinite;
  animation-delay: 1.2s;
}

/* Clean bob — no rotation that causes text-skew */
@keyframes floatCardA {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@keyframes floatCardB {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.float-card-icon {
  width: 36px; height: 36px;
  background: rgba(30,64,175,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1d4ed8;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.float-icon-gold {
  background: rgba(245,197,24,0.2);
  color: #16a34a;
}

.float-card-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}

.float-card-label {
  font-size: 0.68rem;
  color: #64748b;
  margin-top: 1px;
}

/* DASHBOARD MOCKUP — WHITE GLASS on light bg */
.dashboard-mockup {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(147,197,253,0.35);
  border-radius: 20px;
  padding: 20px;
  animation: float 5s ease-in-out infinite;
  box-shadow: 0 20px 60px rgba(30,64,175,0.15), 0 4px 16px rgba(30,64,175,0.08), 0 0 0 1px rgba(255,255,255,0.9) inset;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

/* Top shimmer accent — yellow */
.dashboard-mockup::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 8%, rgba(245,197,24,0.8) 50%, transparent 92%);
  border-radius: 20px 20px 0 0;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-9px) rotate(0.3deg); }
  66%       { transform: translateY(-4px) rotate(-0.2deg); }
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.mockup-dots { display: flex; gap: 5px; }
.mockup-dots span { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }

.mockup-title {
  flex: 1;
  font-size: 0.71rem;
  color: #64748b;
  font-weight: 500;
}

.mockup-live-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.2);
  color: #4ade80;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 50px;
}

.mockup-live-badge span {
  width: 5px; height: 5px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(74,222,128,0.7);
}

/* KPI CARDS */
.mockup-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.mockup-card {
  background: #eff6ff;
  border: 1px solid rgba(147,197,253,0.35);
  border-radius: 10px;
  padding: 11px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.mockup-card:hover {
  border-color: #16a34a;
  box-shadow: 0 2px 12px rgba(22,163,74,0.15);
}

.mockup-card-val {
  font-size: 1.08rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.mockup-card-label {
  font-size: 0.62rem;
  color: #64748b;
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.mockup-card-trend {
  font-size: 0.7rem;
  color: #4ade80;
  font-weight: 600;
  margin-top: 5px;
}

/* KPI FLASH ANIMATIONS */
.kpi-tick-up   { animation: kpiFlashUp   0.5s ease forwards; }
.kpi-tick-down { animation: kpiFlashDown 0.5s ease forwards; }

@keyframes kpiFlashUp {
  0%, 100% { color: #0f172a; text-shadow: none; }
  40%       { color: #16a34a; text-shadow: 0 0 10px rgba(22,163,74,0.4); }
}

@keyframes kpiFlashDown {
  0%, 100% { color: #0f172a; text-shadow: none; }
  40%       { color: #dc2626; text-shadow: 0 0 10px rgba(220,38,38,0.4); }
}

/* SVG CHART AREA — light */
.mockup-chart-area {
  background: rgba(239,246,255,0.7);
  border: 1px solid rgba(147,197,253,0.25);
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
  background-image:
    linear-gradient(rgba(30,64,175,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,64,175,0.04) 1px, transparent 1px);
  background-size: 50px 20px;
  background-origin: content-box;
}

.chart-area-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  flex-wrap: nowrap;
  gap: 8px;
}

.chart-legend-row {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.61rem;
  color: #334155;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.chart-legend-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.chart-period {
  font-size: 0.58rem;
  color: #94a3b8;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Live LABEL in chart header */
.live-label {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #16a34a !important;
  font-weight: 700;
  letter-spacing: 0.8px;
  font-size: 0.58rem;
}

.live-dot-small {
  width: 5px; height: 5px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 5px rgba(74,222,128,0.8);
}

/* Live value indicators next to legend */
.chart-live-val {
  font-size: 0.58rem;
  font-weight: 700;
  color: #4ade80;
  margin-left: 3px;
  transition: color 0.3s ease;
  min-width: 36px;
}

.chart-live-val.chart-val-down { color: #f87171; }
.chart-live-val-yellow { color: var(--yellow); }
.chart-live-val-yellow.chart-val-down { color: #f87171; }

.hero-svg-chart {
  width: 100%;
  height: 75px;
  display: block;
  overflow: hidden; /* clip SVG content to its bounding box */
}

.chart-month-labels {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  font-size: 0.56rem;
  color: #94a3b8;
  margin-top: 4px;
  width: 100%;
}

.chart-month-labels span {
  display: inline-block;
  flex-shrink: 0;
  text-align: center;
}

/* PROGRESS BARS */
.mockup-progress-row {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.mockup-progress-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mp-label {
  font-size: 0.61rem;
  color: #475569;
  width: 72px;
  flex-shrink: 0;
}

.mp-bar {
  flex: 1;
  height: 5px;
  background: rgba(30,64,175,0.1);
  border-radius: 3px;
  overflow: hidden;
  min-width: 40px;
}

.mp-fill {
  height: 100%;
  border-radius: 3px;
  width: 0%;
  transition: width 1.8s cubic-bezier(0.4,0,0.2,1);
  /* Show a faint shimmer at 0% so track looks intentional */
  min-width: 3px;
  opacity: 0.9;
}

.mp-fill-blue { background: linear-gradient(90deg, #2E6DA4, #4a8cc4); }
.mp-fill-gold { background: linear-gradient(90deg, #d4a800, #F5C518); }

.mp-val {
  font-size: 0.61rem;
  color: #334155;
  font-weight: 600;
  width: 26px;
  text-align: right;
  flex-shrink: 0;
}

/* Legacy bar-chart stub (kept for JS compat) */
.chart-bar { display: none; }

/* ===========================
   CONTAINER
=========================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 40px 0; }
.section-sm { padding: 24px 0; }

/* ===========================
   TRUST BAR
=========================== */
.trust-bar {
  background: var(--dark);
  padding: 20px 0;
  overflow: hidden;
}

.trust-track {
  display: flex;
  gap: 64px;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}

.trust-item i { color: var(--yellow); font-size: 1.1rem; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===========================
   STATS SECTION
=========================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-card {
  background: var(--white);
  padding: 40px 32px;
  text-align: center;
}

.stat-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}

.stat-num span { color: var(--yellow); }

.stat-label {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 8px;
  font-weight: 500;
}

/* ===========================
   SERVICE CARDS
=========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46,109,164,0.03), rgba(245,197,24,0.03));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: var(--white);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  color: var(--black);
  transform: scale(1.1);
}

.service-card h3 { color: var(--dark); margin-bottom: 12px; font-size: 1.15rem; }
.service-card p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}

.service-link:hover { gap: 10px; color: var(--yellow-dark); }

/* Glassmorphism variant */
.glass-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
}

/* ===========================
   PROBLEM-SOLUTION
=========================== */
.problem-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.problem-col {
  padding: 48px;
  background: #fff5f5;
}

.solution-col {
  padding: 48px;
  background: #f0f7ff;
}

.ps-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 1.1rem;
  font-weight: 700;
}

.ps-icon { font-size: 1.5rem; }

.ps-list { display: flex; flex-direction: column; gap: 12px; }

.ps-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.6);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}

.ps-item i { margin-top: 2px; flex-shrink: 0; }
.problem-col .ps-item i { color: #ef4444; }
.solution-col .ps-item i { color: #22c55e; }

/* ===========================
   ACCORDION / FAQ
=========================== */
.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  border: none;
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover { background: var(--light-gray); }
.faq-question.open { background: var(--blue); color: var(--white); }

.faq-icon { transition: var(--transition); flex-shrink: 0; }
.faq-question.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer.open {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.75;
}

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-size: 2.5rem;
  color: var(--yellow);
  font-family: serif;
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-name { font-size: 0.9rem; font-weight: 700; color: var(--dark); }
.author-title { font-size: 0.8rem; color: var(--gray); }

.stars { color: var(--yellow); font-size: 0.85rem; margin-bottom: 4px; }

/* ===========================
   TIMELINE
=========================== */
.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), var(--yellow), var(--blue));
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 48px;
  align-items: start;
}

.timeline-item:nth-child(even) .timeline-content { grid-column: 3; }
.timeline-item:nth-child(even) .timeline-empty { grid-column: 1; }

.timeline-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
  position: relative;
}

.timeline-content:hover {
  box-shadow: var(--shadow);
  border-color: var(--blue);
  transform: scale(1.02);
}

.timeline-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--yellow);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--blue);
  margin: 12px auto 0;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  transition: var(--transition);
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.3);
  background: var(--blue);
  box-shadow: 0 0 0 4px var(--yellow);
}

.timeline-year {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.timeline-content h4 { color: var(--dark); margin-bottom: 8px; }
.timeline-content p { font-size: 0.88rem; }

/* ===========================
   PROCESS STEPS
=========================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(to right, var(--blue), var(--yellow), var(--blue));
  z-index: 0;
}

.process-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue);
  margin: 0 auto 20px;
  transition: var(--transition);
}

.process-card:hover .process-num {
  background: var(--blue);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(46,109,164,0.3);
}

.process-card h4 { color: var(--dark); margin-bottom: 8px; }
.process-card p { font-size: 0.85rem; }

.process-system-section {
  position: relative;
  padding: 60px 0 52px;
  background: radial-gradient(circle at 14% 16%, rgba(59,130,246,0.12), transparent 26%), radial-gradient(circle at 88% 24%, rgba(245,197,24,0.14), transparent 24%), #ffffff;
  overflow: hidden;
}
.process-system-section .container { position: relative; z-index: 1; }
.process-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.process-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(92px);
  opacity: 0.75;
}
.process-orb-1 { width: 620px; height: 620px; background: radial-gradient(circle, rgba(59,130,246,0.16), transparent 62%); top: -180px; left: -110px; }
.process-orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(245,197,24,0.18), transparent 60%); bottom: -140px; right: -90px; }
.process-orb-3 { width: 360px; height: 360px; background: radial-gradient(circle, rgba(139,92,246,0.13), transparent 66%); top: 24%; right: 16%; }
.process-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 22% 18%, rgba(59,130,246,0.05), transparent 0 120px),
    radial-gradient(circle at 78% 72%, rgba(245,197,24,0.06), transparent 0 90px),
    linear-gradient(90deg, rgba(59,130,246,0.03) 1px, transparent 1px),
    linear-gradient(rgba(59,130,246,0.03) 1px, transparent 1px);
  background-size: 180px 180px, 140px 140px, 60px 60px, 60px 60px;
}
.process-badge {
  background: rgba(245,197,24,0.08);
  color: #92400e;
  border: 1px solid rgba(245,197,24,0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.process-title {
  max-width: 740px;
  margin: 0 auto 14px;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.process-description {
  max-width: 720px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
}
.process-system-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 32px;
  align-items: start;
  position: relative;
}
.process-hub-card {
  position: relative;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(59,130,246,0.16);
  border-radius: 28px;
  box-shadow: 0 24px 72px rgba(15,23,42,0.08);
  padding: 34px;
  overflow: hidden;
}
.process-hub-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(59,130,246,0.12), transparent 34%), radial-gradient(circle at bottom right, rgba(245,197,24,0.08), transparent 32%);
  pointer-events: none;
}
.process-hub-top,
.process-hub-kpis,
.process-hub-footer,
.process-hub-summary,
.process-graph-meta,
.process-graph-visual { position: relative; z-index: 1; }
.process-hub-chip {
  background: linear-gradient(140deg, rgba(59,130,246,0.12), rgba(245,197,24,0.12));
  color: var(--dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 10px 16px;
  border-radius: 999px;
  display: inline-flex;
}
.process-hub-summary {
  font-size: 0.96rem;
  color: var(--dark);
  line-height: 1.75;
  max-width: 560px;
}
.process-hub-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 22px;
}
.process-hub-kpi {
  background: rgba(236,248,255,0.95);
  border: 1px solid rgba(59,130,246,0.14);
  border-radius: 20px;
  padding: 18px 18px 16px;
}
.process-kpi-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}
.process-kpi-value {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  font-size: 2.15rem;
  font-weight: 900;
  color: var(--dark);
}
.process-kpi-value span { display: block; line-height: 1; }
.process-kpi-value small { font-size: 0.75rem; color: var(--gray); transform: translateY(-2px); }
.process-hub-graph {
  background: rgba(248,250,255,0.96);
  border: 1px solid rgba(59,130,246,0.16);
  border-radius: 22px;
  padding: 22px;
}
.process-graph-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  font-size: 0.92rem;
  color: var(--dark);
}
.process-graph-header strong { color: var(--blue); }
.process-graph-visual { position: relative; min-height: 120px; }
.process-graph-line { width: 100%; height: 120px; display: block; }
.process-graph-line path { stroke-dasharray: 700; stroke-dashoffset: 700; transition: stroke-dashoffset 1.4s ease 0.2s; }
.process-graph-points {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 22px 10px;
  pointer-events: none;
}
.process-graph-point {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5c518, #3b82f6);
  opacity: 0.25;
  transform: scale(0.75);
  transition: opacity 0.35s ease, transform 0.35s ease;
  box-shadow: 0 0 0 6px rgba(59,130,246,0.08);
}
.process-graph-point.point-active { opacity: 1; transform: scale(1); }
.process-graph-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}
.process-graph-meta div {
  background: rgba(255,255,255,0.9);
  border-radius: 16px;
  border: 1px solid rgba(59,130,246,0.1);
  padding: 14px 16px;
}
.process-graph-meta strong { display: block; font-size: 1rem; margin-bottom: 4px; }
.process-graph-meta small { font-size: 0.78rem; color: var(--gray); }
.process-hub-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.process-hub-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(59,130,246,0.08);
  color: var(--blue);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 0.82rem;
  border: 1px solid rgba(59,130,246,0.16);
}
.process-pill-green {
  background: rgba(22,163,74,0.1);
  color: #15803d;
  border-color: rgba(22,163,74,0.18);
}
.process-stages {
  position: relative;
  display: grid;
  gap: 22px;
  padding-left: 36px;
}
.process-stages::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 24px;
  bottom: 24px;
  width: 3px;
  background: linear-gradient(180deg, rgba(59,130,246,0.35), rgba(245,197,24,0.18), rgba(59,130,246,0.35));
  border-radius: 999px;
}
.process-stage {
  position: relative;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(59,130,246,0.14);
  border-radius: 26px;
  padding: 24px 24px 24px 34px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.3s ease;
}
.process-stage::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5c518, #3b82f6);
  box-shadow: 0 0 0 8px rgba(59,130,246,0.08);
}
.process-stage:hover {
  transform: translateX(8px);
  border-color: rgba(59,130,246,0.26);
  box-shadow: 0 26px 60px rgba(15,23,42,0.08);
}
.stage-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(245,197,24,0.14), rgba(59,130,246,0.14));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1.35rem;
  border: 1px solid rgba(59,130,246,0.12);
}
.process-stage h4 { margin-bottom: 10px; font-size: 1.08rem; line-height: 1.3; }
.process-stage p { color: var(--gray); font-size: 0.95rem; line-height: 1.75; margin-bottom: 12px; }
.stage-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: var(--blue);
  background: rgba(59,130,246,0.08);
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.process-highlight-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: rgba(240,249,255,0.95);
  border: 1px solid rgba(59,130,246,0.12);
  border-radius: 22px;
  padding: 22px;
  margin-top: 42px;
}
.strip-item { color: var(--dark); font-size: 0.95rem; line-height: 1.75; }
.strip-item strong { color: var(--blue); }
.process-stage.stage-active { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
  .process-system-layout { grid-template-columns: 1fr; }
  .process-hub-kpis { grid-template-columns: 1fr; }
  .process-graph-meta { grid-template-columns: 1fr; }
  .process-highlight-strip { grid-template-columns: 1fr; }
  .process-stages { padding-left: 22px; }
  .process-stages::before { left: 10px; }
}

@media (max-width: 720px) {
  .process-system-section { padding: 60px 0 48px; }
  .process-title { font-size: 2.2rem; }
  .process-system-layout { gap: 24px; }
  .process-hub-card { padding: 26px; }
  .process-hub-kpis { gap: 14px; }
  .process-stage { grid-template-columns: 52px 1fr; padding: 20px 20px 20px 30px; }
  .stage-icon { width: 52px; height: 52px; }
}

@media (max-width: 540px) {
  .process-badge { font-size: 0.72rem; padding: 8px 14px; }
  .process-description { font-size: 0.97rem; }
  .process-graph-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .process-stage { padding: 18px 18px 18px 28px; }
}

/* ===========================
   PRICING
=========================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--blue);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px 16px;
  border-radius: 50px;
}

.pricing-card:hover:not(.featured) {
  border-color: var(--blue);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--gray); }

.pricing-desc { font-size: 0.88rem; color: var(--gray); margin: 16px 0 24px; line-height: 1.6; }

.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--dark);
}

.pricing-features li i { color: var(--blue); margin-top: 2px; flex-shrink: 0; }

/* ===========================
   POWER BI VISUAL
=========================== */
.bi-dashboard {
  background: #0f172a;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.bi-topbar {
  background: #1e293b;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.bi-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-weight: 700;
  font-size: 0.9rem;
}

.bi-nav {
  display: flex;
  gap: 4px;
  margin-left: 20px;
}

.bi-nav-item {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
}

.bi-nav-item.active, .bi-nav-item:hover {
  background: rgba(245,197,24,0.15);
  color: var(--yellow);
}

.bi-body {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.bi-kpi {
  background: #1e293b;
  border-radius: 10px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.06);
}

.bi-kpi-val {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.bi-kpi-label { font-size: 0.7rem; color: rgba(255,255,255,0.4); margin-top: 2px; }
.bi-kpi-trend { font-size: 0.75rem; font-weight: 600; margin-top: 6px; }
.bi-kpi-trend.up { color: #4ade80; }
.bi-kpi-trend.down { color: #f87171; }

.bi-charts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
  margin-top: 4px;
}

.bi-chart-area {
  background: #1e293b;
  border-radius: 10px;
  padding: 16px;
  height: 160px;
  position: relative;
  overflow: hidden;
}

.bi-chart-title { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-bottom: 12px; }

.bi-line-chart {
  position: absolute;
  bottom: 20px;
  left: 16px;
  right: 16px;
  height: 100px;
}

.bi-donut {
  background: #1e293b;
  border-radius: 10px;
  padding: 16px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===========================
   CHECKLIST UI
=========================== */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: var(--transition);
}

.check-item.checked {
  background: #f0fdf4;
  border-color: #86efac;
}

.check-item.checked .check-box {
  background: #22c55e;
  border-color: #22c55e;
}

.check-box {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.check-box i { color: var(--white); font-size: 0.7rem; opacity: 0; transition: var(--transition); }
.check-item.checked .check-box i { opacity: 1; }

.check-text { font-size: 0.9rem; font-weight: 500; color: var(--dark); }
.check-item.checked .check-text { text-decoration: line-through; color: var(--gray); }

/* ===========================
   CTA SECTION
=========================== */
.cta-section {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--blue-light) 100%);
  border-radius: var(--radius-lg);
  padding: 56px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(245,197,24,0.15), transparent 70%);
}

.cta-section h2 { color: var(--white); position: relative; z-index: 1; }
.cta-section p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin: 16px auto 32px; max-width: 540px; position: relative; z-index: 1; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ===========================
   CONTACT
=========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 24px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.contact-item:hover {
  border-color: var(--blue);
  transform: translateX(4px);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-label { font-size: 0.78rem; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }
.contact-val { font-size: 0.95rem; font-weight: 600; color: var(--dark); margin-top: 2px; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  font-family: inherit;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(46,109,164,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p { font-size: 0.88rem; line-height: 1.75; margin-top: 16px; max-width: 300px; }

.footer-social { display: flex; gap: 12px; margin-top: 20px; }

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  font-size: 0.85rem;
}

.social-icon:hover { background: var(--yellow); color: var(--black); transform: translateY(-2px); }

.footer-col h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links { display: flex; flex-direction: column; gap: 8px; }

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--yellow); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

/* ===========================
   PAGE HERO (inner pages)
=========================== */
.page-hero {
  background: linear-gradient(135deg, #0a1628, #1a3a6b);
  padding: 56px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(46,109,164,0.3), transparent 60%);
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 640px; margin: 16px auto 0; font-size: 1.1rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.breadcrumb a { color: var(--yellow); }
.breadcrumb i { font-size: 0.7rem; }

/* ===========================
   DARK SECTION
=========================== */
.dark-section {
  background: var(--dark);
}

.dark-section .section-label {
  background: rgba(245,197,24,0.15);
  color: var(--yellow);
}

.dark-section .section-title { color: var(--white); }
.dark-section .section-subtitle { color: rgba(255,255,255,0.6); }

/* ===========================
   INDUSTRY TAGS
=========================== */
.industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.industry-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
  transition: var(--transition);
  cursor: default;
}

.industry-tag:hover {
  border-color: var(--blue);
  background: rgba(46,109,164,0.06);
  color: var(--blue);
  transform: translateY(-2px);
}

.industry-tag i { color: var(--blue); }

/* ===========================
   CASE STUDY CARDS
=========================== */
.case-study-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.case-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.case-card-header {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 28px;
  color: var(--white);
}

.case-tag {
  display: inline-block;
  background: rgba(245,197,24,0.2);
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.case-card-header h3 { color: var(--white); font-size: 1.1rem; }
.case-card-header p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-top: 6px; }

.case-card-body { padding: 28px; }
.case-card-body h5 { font-size: 0.8rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.case-card-body p { font-size: 0.88rem; color: var(--gray); margin-bottom: 20px; }

.case-outcomes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.outcome-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--dark);
  font-weight: 500;
}

.outcome-item i { color: #22c55e; flex-shrink: 0; }

/* ===========================
   WHATSAPP FLOAT
=========================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6), 0 0 0 8px rgba(37,211,102,0.1); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

/* ===========================
   UTILITIES
=========================== */
.bg-light { background: var(--light-gray); }
.bg-blue { background: var(--blue); }
.bg-dark { background: var(--dark); }

.text-blue { color: var(--blue); }
.text-yellow { color: var(--yellow); }
.text-white { color: var(--white); }

/* ===========================
   SPACING UTILITIES
   Pixel-named convention: the number in the class = px value.
   (e.g. mb-40 = margin-bottom: 40px)
   Also includes a small Bootstrap-compatible 1-6 shorthand scale.
=========================== */

/* margin-top — pixel-named (used by existing HTML) */
.mt-0  { margin-top: 0; }
.mt-4  { margin-top: 4px; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mt-56 { margin-top: 56px; }
.mt-64 { margin-top: 64px; }
.mt-80 { margin-top: 80px; }
.mt-96 { margin-top: 96px; }

/* margin-bottom — pixel-named (used by existing HTML) */
.mb-0  { margin-bottom: 0; }
.mb-4  { margin-bottom: 4px; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }
.mb-56 { margin-bottom: 56px; }
.mb-64 { margin-bottom: 64px; }
.mb-80 { margin-bottom: 80px; }
.mb-96 { margin-bottom: 96px; }

/* padding-top */
.pt-0  { padding-top: 0; }
.pt-1  { padding-top: 4px; }
.pt-2  { padding-top: 8px; }
.pt-3  { padding-top: 12px; }
.pt-4  { padding-top: 16px; }
.pt-5  { padding-top: 20px; }
.pt-6  { padding-top: 24px; }
.pt-8  { padding-top: 32px; }
.pt-10 { padding-top: 40px; }
.pt-12 { padding-top: 48px; }
.pt-14 { padding-top: 56px; }
.pt-16 { padding-top: 64px; }
.pt-20 { padding-top: 80px; }
.pt-24 { padding-top: 96px; }

/* padding-bottom */
.pb-0  { padding-bottom: 0; }
.pb-1  { padding-bottom: 4px; }
.pb-2  { padding-bottom: 8px; }
.pb-3  { padding-bottom: 12px; }
.pb-4  { padding-bottom: 16px; }
.pb-5  { padding-bottom: 20px; }
.pb-6  { padding-bottom: 24px; }
.pb-8  { padding-bottom: 32px; }
.pb-10 { padding-bottom: 40px; }
.pb-12 { padding-bottom: 48px; }
.pb-14 { padding-bottom: 56px; }
.pb-16 { padding-bottom: 64px; }
.pb-20 { padding-bottom: 80px; }
.pb-24 { padding-bottom: 96px; }

/* padding-y (vertical shorthand) */
.py-4  { padding-top: 16px;  padding-bottom: 16px; }
.py-6  { padding-top: 24px;  padding-bottom: 24px; }
.py-8  { padding-top: 32px;  padding-bottom: 32px; }
.py-10 { padding-top: 40px;  padding-bottom: 40px; }
.py-12 { padding-top: 48px;  padding-bottom: 48px; }
.py-16 { padding-top: 64px;  padding-bottom: 64px; }

/* padding-x (horizontal shorthand) */
.px-4  { padding-left: 16px; padding-right: 16px; }
.px-6  { padding-left: 24px; padding-right: 24px; }
.px-8  { padding-left: 32px; padding-right: 32px; }

/* gap (flex/grid) */
.gap-2  { gap: 8px; }
.gap-4  { gap: 16px; }
.gap-6  { gap: 24px; }
.gap-8  { gap: 32px; }
.gap-10 { gap: 40px; }
.gap-12 { gap: 48px; }
/* legacy pixel-named gap aliases */
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }

.divider {
  height: 1px;
  background: var(--border);
  margin: 48px 0;
}

/* ===========================
   ANIMATIONS
=========================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(50px) scale(0.97);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s !important; }
.stagger-2 { transition-delay: 0.2s !important; }
.stagger-3 { transition-delay: 0.3s !important; }
.stagger-4 { transition-delay: 0.4s !important; }
.stagger-5 { transition-delay: 0.5s !important; }
.stagger-6 { transition-delay: 0.6s !important; }

/* ===========================
   SCROLL PROGRESS BAR
=========================== */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-dark), var(--yellow));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(245,197,24,0.7);
}

/* ===========================
   HERO FLOATING PARTICLES
=========================== */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.hero-particles span {
  position: absolute;
  border-radius: 50%;
  background: rgba(30,64,175,0.12);
  animation: particleFloat linear infinite;
}

/* Blue + yellow particles visible on light bg */
.hero-particles span:nth-child(1)  { width: 5px;  height: 5px;  left: 8%;  animation-duration: 12s; animation-delay: 0s;    background: rgba(59,130,246,0.25); }
.hero-particles span:nth-child(2)  { width: 9px;  height: 9px;  left: 18%; animation-duration: 19s; animation-delay: 2s;    background: rgba(245,197,24,0.3); }
.hero-particles span:nth-child(3)  { width: 4px;  height: 4px;  left: 28%; animation-duration: 14s; animation-delay: 4.5s;  background: rgba(30,64,175,0.2); }
.hero-particles span:nth-child(4)  { width: 7px;  height: 7px;  left: 42%; animation-duration: 21s; animation-delay: 1s;    background: rgba(96,165,250,0.3); }
.hero-particles span:nth-child(5)  { width: 5px;  height: 5px;  left: 57%; animation-duration: 16s; animation-delay: 3.5s;  background: rgba(245,197,24,0.28); }
.hero-particles span:nth-child(6)  { width: 11px; height: 11px; left: 68%; animation-duration: 23s; animation-delay: 0.8s;  background: rgba(59,130,246,0.15); }
.hero-particles span:nth-child(7)  { width: 5px;  height: 5px;  left: 78%; animation-duration: 13s; animation-delay: 6s;    background: rgba(245,197,24,0.25); }
.hero-particles span:nth-child(8)  { width: 8px;  height: 8px;  left: 88%; animation-duration: 17s; animation-delay: 2.8s;  background: rgba(30,64,175,0.18); }
.hero-particles span:nth-child(9)  { width: 3px;  height: 3px;  left: 4%;  animation-duration: 15s; animation-delay: 8s;    background: rgba(245,197,24,0.32); }
.hero-particles span:nth-child(10) { width: 6px;  height: 6px;  left: 52%; animation-duration: 20s; animation-delay: 1.8s;  background: rgba(96,165,250,0.22); }
.hero-particles span:nth-child(11) { width: 4px;  height: 4px;  left: 35%; animation-duration: 11s; animation-delay: 5s;    background: rgba(59,130,246,0.2); }
.hero-particles span:nth-child(12) { width: 8px;  height: 8px;  left: 62%; animation-duration: 25s; animation-delay: 0.3s;  background: rgba(245,197,24,0.2); }
.hero-particles span:nth-child(13) { width: 5px;  height: 5px;  left: 73%; animation-duration: 14s; animation-delay: 7s;    background: rgba(30,64,175,0.22); }
.hero-particles span:nth-child(14) { width: 3px;  height: 3px;  left: 92%; animation-duration: 18s; animation-delay: 3s;    background: rgba(245,197,24,0.28); }
.hero-particles span:nth-child(15) { width: 6px;  height: 6px;  left: 22%; animation-duration: 22s; animation-delay: 9s;    background: rgba(59,130,246,0.18); }

@keyframes particleFloat {
  0%   { transform: translateY(110vh) rotate(0deg);   opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

/* ===========================
   SECTION LABEL SHIMMER
=========================== */
.section-label {
  position: relative;
  overflow: hidden;
}

.section-label::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  animation: labelShimmer 3s infinite;
}

@keyframes labelShimmer {
  0%   { left: -60%; }
  100% { left: 150%; }
}

/* ===========================
   SECTION TITLE YELLOW UNDERLINE
=========================== */
.section-title-underline {
  display: inline-block;
  position: relative;
}

.section-title-underline::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-dark), var(--yellow));
  border-radius: 2px;
  transition: width 1.1s cubic-bezier(0.4,0,0.2,1);
}

.fade-in.visible .section-title-underline::after,
.fade-in-up.visible .section-title-underline::after,
.fade-in-left.visible .section-title-underline::after {
  width: 100%;
}

/* ===========================
   BUTTON SHINE EFFECT
=========================== */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  animation: btnShine 3s infinite;
}

@keyframes btnShine {
  0%   { left: -100%; }
  40%  { left: 150%; }
  100% { left: 150%; }
}

/* ===========================
   YELLOW SERVICE CARD HOVER
=========================== */
.service-card:hover {
  border-color: var(--yellow) !important;
  box-shadow: 0 12px 40px rgba(245,197,24,0.2), 0 2px 8px rgba(0,0,0,0.08);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.service-card:hover::after { transform: scaleX(1); }

/* ===========================
   STAT CARDS — YELLOW ACCENT
=========================== */
.stat-card {
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.stat-card:hover::before { transform: scaleX(1); }

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(245,197,24,0.15);
}

.stat-num {
  color: var(--yellow) !important;
  text-shadow: 0 0 24px rgba(245,197,24,0.3);
}

/* ===========================
   FAQ OPEN STATE — YELLOW
=========================== */
.faq-question.open {
  background: var(--yellow) !important;
  color: var(--black) !important;
}

/* ===========================
   PRICING FEATURED — YELLOW THEME
=========================== */
.pricing-card.featured {
  border-color: var(--yellow) !important;
  box-shadow: 0 16px 48px rgba(245,197,24,0.25) !important;
}

.pricing-card.featured::before {
  background: var(--yellow) !important;
  color: var(--black) !important;
}

/* ===========================
   PROCESS STEPS — YELLOW HOVER
=========================== */
.process-card:hover .process-num {
  background: var(--yellow) !important;
  border-color: var(--yellow) !important;
  color: var(--black) !important;
  box-shadow: 0 8px 24px rgba(245,197,24,0.4) !important;
  transform: scale(1.15) rotate(-5deg);
}

/* Connecting line gradient */
.process-grid::before {
  background: linear-gradient(to right, var(--yellow), var(--blue), var(--yellow)) !important;
  height: 3px !important;
  animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {
  0%, 100% { box-shadow: 0 0 6px rgba(245,197,24,0.3); }
  50%       { box-shadow: 0 0 16px rgba(245,197,24,0.7); }
}

/* ===========================
   INDUSTRY TAGS — YELLOW HOVER
=========================== */
.industry-tag:hover {
  border-color: var(--yellow) !important;
  background: rgba(245,197,24,0.1) !important;
  color: var(--yellow-dark) !important;
}

.industry-tag:hover i { color: var(--yellow-dark) !important; }

/* ===========================
   CONTACT ITEMS — YELLOW HOVER
=========================== */
.contact-item:hover {
  border-color: var(--yellow) !important;
  box-shadow: 0 4px 20px rgba(245,197,24,0.15);
}

/* ===========================
   TIMELINE DOT GLOW
=========================== */
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 3px var(--blue), 0 0 0 6px rgba(245,197,24,0.2); }
  50%       { box-shadow: 0 0 0 3px var(--blue), 0 0 0 10px rgba(245,197,24,0.4); }
}

.timeline-dot { animation: dotPulse 2.5s ease-in-out infinite; }

/* ===========================
   CTA SECTION — YELLOW SHIMMER
=========================== */
.cta-section {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 40%, var(--blue-dark) 70%, #0d2444 100%) !important;
}

.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(245,197,24,0.12), transparent 70%);
  animation: ctaGlow 4s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1.0; }
}

/* ===========================
   TESTIMONIAL CARD — YELLOW ACCENT
=========================== */
.testimonial-card:hover {
  border-color: rgba(245,197,24,0.4) !important;
  box-shadow: 0 16px 48px rgba(245,197,24,0.12), 0 4px 12px rgba(0,0,0,0.06) !important;
}

/* ===========================
   HERO BADGE PULSE RING
=========================== */
.hero-badge span {
  position: relative;
}

.hero-badge span::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(245,197,24,0.3);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1);   opacity: 0.4; }
  50%       { transform: scale(2.5); opacity: 0; }
}

/* ===========================
   NAV LOGO YELLOW UNDERLINE
=========================== */
.nav-logo-text span:first-child {
  position: relative;
}

.nav-logo-text span:first-child::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.nav-logo:hover .nav-logo-text span:first-child::after { transform: scaleX(1); }

/* ===========================
   HERO STATS GLOW
=========================== */
.hero-stat-num {
  animation: statGlow 3s ease-in-out infinite;
}

@keyframes statGlow {
  0%, 100% { text-shadow: 0 2px 6px rgba(46,109,164,0.25); }
  50%       { text-shadow: 0 2px 16px rgba(46,109,164,0.5); }
}

/* ===========================
   TRUST BAR — YELLOW ICONS GLOW
=========================== */
.trust-item i {
  animation: iconGlow 3s ease-in-out infinite;
}

.trust-item:nth-child(odd) i  { animation-delay: 0s; }
.trust-item:nth-child(even) i { animation-delay: 1.5s; }

@keyframes iconGlow {
  0%, 100% { color: var(--yellow); filter: drop-shadow(0 0 3px rgba(245,197,24,0.4)); }
  50%       { color: var(--yellow); filter: drop-shadow(0 0 10px rgba(245,197,24,0.9)); }
}

/* ===========================
   PAGE HERO YELLOW ACCENT
=========================== */
.page-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--yellow), var(--yellow-dark), var(--yellow), transparent);
  z-index: 2;
}

/* ===========================
   FOOTER YELLOW ACCENT
=========================== */
.footer {
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--yellow), var(--yellow-dark), var(--yellow), transparent) 1;
}

/* ===========================
   GLASS CARD GLOW ON DARK BG
=========================== */
.dark-section .service-card:hover,
.dark-section .glass-card:hover {
  border-color: rgba(245,197,24,0.4) !important;
  box-shadow: 0 0 32px rgba(245,197,24,0.15) !important;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-mockup-wrap {
    display: block;
    margin-top: 28px;
    padding: 8px 4px;       /* remove float-card overflow spacing */
  }
  .float-card { display: none; }   /* hide absolute float cards — they'd overlap on mobile */
  .dashboard-mockup {
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .case-study-grid { grid-template-columns: 1fr; }
  .bi-body { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Navbar — logo LEFT, hamburger RIGHT */
  .navbar {
    display: block !important;  /* kill Bootstrap flex on nav so nav-container controls layout */
  }
  .nav-container {
    width: 100% !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 16px !important;
    height: 64px !important;
    max-width: 100% !important;
    margin: 0 !important;
  }
  .nav-logo {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    order: 1 !important;
  }
  .nav-logo img { height: 38px !important; }
  .hamburger {
    display: flex !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    order: 3 !important;
  }

  /* Right-side slide-in panel */
  .nav-menu {
    order: 2 !important;
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: 280px !important;
    max-width: 85vw !important;
    height: 100dvh !important;
    background: var(--white) !important;
    border-left: 1px solid var(--border) !important;
    padding: 80px 16px 24px !important;
    gap: 4px !important;
    box-shadow: -8px 0 32px rgba(0,0,0,0.15) !important;
    /* Use transform (not right) — GPU-accelerated, no hit-test mismatch on Android/iOS */
    transform: translateX(100%) !important;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1) !important;
    /* Escape navbar's will-change stacking context so z-index works correctly */
    z-index: 9999 !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    /* Invisible when closed: never intercept clicks off-screen */
    pointer-events: none !important;
    visibility: hidden !important;
  }
  .nav-menu.open {
    transform: translateX(0) !important;
    pointer-events: auto !important;
    visibility: visible !important;
  }

  /* Dark overlay behind panel */
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    /* Right edge stops where the nav-menu panel begins — overlay never covers the panel */
    right: min(280px, 85vw);
    background: rgba(0,0,0,0.45);
    z-index: 9998;
    transition: opacity 0.3s;
    pointer-events: none;
  }
  .nav-overlay.open {
    display: block;
    pointer-events: auto;
  }

  .nav-menu-close { display: block; }
  .hamburger { display: flex; }
  .nav-dropdown-menu { position: static; transform: none; box-shadow: none; border: none; background: var(--light-gray); }
  .nav-dropdown:hover .nav-dropdown-menu { top: auto; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .timeline::before { left: 24px; }
  .timeline-item { grid-template-columns: 48px 1fr; }
  .timeline-item:nth-child(even) .timeline-content { grid-column: 2; }
  .timeline-item:nth-child(even) .timeline-empty { display: none; }
  .timeline-dot { margin: 12px auto 0; }
  .problem-solution { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-section { padding: 48px 24px; }
  .hero-typing-container { font-size: 1.4rem; }
  .hero-trust-row { flex-wrap: wrap; }
  .hero-badge { margin-bottom: 20px; font-size: 0.72rem; }
  .hero-desc { font-size: 1rem; margin-bottom: 26px; max-width: 100%; }
  .hero .container { gap: 32px; padding-top: 24px; padding-bottom: 24px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .hero-stat { flex: 0 0 auto; width: calc(50% - 8px); }
  .hero-stat:not(:last-child)::after { display: none; }
  .hero-stat:not(:first-child) { padding-left: 0; }
  .hero-stat { padding-right: 0; }
  .bi-body { grid-template-columns: 1fr 1fr; }
  .bi-charts { grid-template-columns: 1fr; }

  /* Adjust body & hero for shorter mobile navbar */
  body { padding-top: 64px; }
  .hero { min-height: calc(100vh - 64px); }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .mockup-cards { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { justify-content: center; }
  .hero-typing-container { font-size: 1.2rem; }
  .hero-stat-num { font-size: 1.65rem; }
  .hero-trust-row { gap: 12px; }
}

@media (max-width: 360px) {
  .hero-typing-container { font-size: 1rem; }
}

/* ===========================
   BROWSER COMPATIBILITY
=========================== */
html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Safari backdrop-filter support */
.navbar { -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); }
.dashboard-mockup { -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px); }
.glass-card { -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); }

/* Cross-browser form inputs — exclude checkboxes & radios */
.form-group input:not([type="checkbox"]):not([type="radio"]),
.form-group select,
.form-group textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Custom select arrow (Safari & Firefox) */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

/* Remove tap highlight on mobile */
a, button, .btn { -webkit-tap-highlight-color: transparent; }

/* ===========================
   RESPONSIVE LAYOUT UTILITIES
   (for sections using inline grid styles)
=========================== */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col-grid.align-start { align-items: start; }

.faq-cols {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.bi-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.bi-integrations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 1024px) {
  .two-col-grid,
  .faq-cols,
  .bi-integrations {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .bi-before-after {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ===========================
   TOUCH / TABLET DROPDOWN
=========================== */
/* JS adds .open class on touch devices */
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 4px);
}

/* Mobile nav: sub-menu toggled by .mobile-open */
@media (max-width: 768px) {
  .nav-dropdown-menu {
    display: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(46,109,164,0.06);
    border-radius: var(--radius);
    margin-top: 4px;
    padding: 6px;
  }
  .nav-dropdown.mobile-open .nav-dropdown-menu {
    display: block !important;
  }
  .nav-menu li .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav-cta {
    justify-content: center;
    margin-left: 0 !important;
    margin-top: 4px;
  }
}

/* ===========================
   REDUCED MOTION ACCESSIBILITY
=========================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .dashboard-mockup { animation: none; }
  .trust-track { animation: none; }
  .whatsapp-float { animation: none; }
  .hero-badge span { animation: none; }
  .chart-bar { animation: none; }
}

/* ===========================
   EXTRA SMALL SCREENS (≤380px)
=========================== */
@media (max-width: 380px) {
  .container { padding: 0 14px; }
  .nav-container { padding: 0 12px; }
  .section { padding: 40px 0; }
  .section-sm { padding: 32px 0; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.55rem; }
  .hero-stats { gap: 14px; flex-wrap: wrap; }
  .hero-stat-num { font-size: 1.6rem; }
  .hero-stat-label { font-size: 0.74rem; }
  .cta-section { padding: 36px 16px; }
  .btn { padding: 12px 16px; font-size: 0.87rem; }
  .stat-card { padding: 26px 14px; }
  .stat-num { font-size: 2.2rem; }
  .service-card { padding: 22px; }
  .testimonial-card { padding: 22px; }
  .pricing-card { padding: 24px 18px; }
  .faq-question { padding: 15px 16px; font-size: 0.87rem; }
  .contact-form { padding: 22px 16px; }
  .ba-col { padding: 22px 16px; }
  .process-card { padding: 0 8px; }
  .footer-grid { gap: 28px; }
  .page-hero { padding: 48px 0 40px; }
  .whatsapp-float { width: 48px; height: 48px; font-size: 1.3rem; bottom: 18px; right: 18px; }
}

/* =====================================================
   PREMIUM REDESIGN v2.0 — ALL NON-HERO SECTIONS
   Finance-tech modern, clean, corporate, elegant
===================================================== */

/* ── Section Labels ───────────────────────────────── */
.section-label {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid rgba(46,109,164,0.22);
  color: #1e3a8a;
  font-weight: 700;
  font-size: 1.0rem;
  letter-spacing: 2px;
}

/* ── Trust Bar ────────────────────────────────────── */
.trust-bar {
  background: linear-gradient(135deg, #0c1835 0%, #1b3461 50%, #0c1835 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
  position: relative;
}

.trust-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(46,109,164,0.25) 0%, transparent 20%, transparent 80%, rgba(46,109,164,0.25) 100%);
  pointer-events: none;
}

.trust-track { gap: 0; }

.trust-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 7px 20px;
  margin: 0 10px;
  color: rgba(255,255,255,0.82);
  font-size: 0.84rem;
  font-weight: 500;
  gap: 9px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.trust-item i { font-size: 0.82rem; color: #F5C518; filter: none; }

/* ── Stats Section ────────────────────────────────── */
.stats-grid {
  background: transparent;
  gap: 0;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(30,64,175,0.08), 0 1px 4px rgba(0,0,0,0.04);
  overflow: hidden;
}

.stat-card {
  background: #ffffff;
  padding: 44px 32px;
  border: none;
  border-right: 1px solid #e8f0fb;
  border-top: 1px solid #e8f0fb;
  border-bottom: 1px solid #e8f0fb;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease, z-index 0s;
}

.stat-card:first-child { border-left: 1px solid #e8f0fb; }

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #F5C518, var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,109,164,0.06) 0%, transparent 70%);
  transition: transform 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(30,64,175,0.14), 0 4px 12px rgba(0,0,0,0.06);
  z-index: 2;
}

.stat-card:hover::before { transform: scaleX(1); }
.stat-card:hover::after { transform: scale(2); }

.stat-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 1px solid rgba(46,109,164,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1.25rem;
  margin: 0 auto 16px;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

.stat-card:hover .stat-icon {
  background: linear-gradient(135deg, #F5C518, #d4a800);
  color: #0c1835;
  box-shadow: 0 6px 20px rgba(245,197,24,0.35);
  transform: rotate(-8deg) scale(1.1);
}

.stat-num {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #F5C518 0%, #d4a800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: statGlow 3s ease-in-out infinite;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.88rem;
  color: #64748b;
  font-weight: 500;
  margin-top: 4px;
}

/* ── Service Cards ────────────────────────────────── */
.service-card {
  position: relative;
  border: 1px solid #e8f0fb;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 2px 16px rgba(30,64,175,0.06), 0 1px 3px rgba(0,0,0,0.03);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease, border-color 0.3s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light), #F5C518);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  border-radius: 20px 20px 0 0;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -20px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,24,0.08) 0%, transparent 70%);
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(30,64,175,0.14), 0 4px 12px rgba(0,0,0,0.06);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; transform: scale(2.5); }

.service-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  box-shadow: 0 6px 20px rgba(46,109,164,0.28);
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, #F5C518 0%, #d4a800 100%);
  box-shadow: 0 8px 28px rgba(245,197,24,0.4);
  transform: scale(1.12) rotate(-6deg);
}

.service-card h3 {
  font-size: 1.12rem;
  color: #0f172a;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.service-card:hover h3 { color: var(--blue-dark); }

.service-card p { font-size: 0.93rem; color: #475569; line-height: 1.72; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 0.87rem;
  font-weight: 600;
  margin-top: 18px;
  transition: gap 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

.service-card:hover .service-link { gap: 12px; color: #d4a800; }

/* ── Process Steps ────────────────────────────────── */
.process-card {
  text-align: center;
  padding: 8px;
  position: relative;
  transition: transform 0.3s ease;
}

.process-card:hover { transform: translateY(-4px); }

.process-num {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: linear-gradient(145deg, #eff6ff, #dbeafe);
  border: 2px solid rgba(46,109,164,0.25);
  color: var(--blue);
  font-size: 1.6rem;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(30,64,175,0.12), 0 0 0 8px rgba(46,109,164,0.06);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), background 0.3s ease, color 0.3s ease, box-shadow 0.35s ease;
}

.process-card:hover .process-num {
  background: linear-gradient(135deg, #F5C518, #d4a800);
  color: #0c1835;
  border-color: #d4a800;
  box-shadow: 0 8px 30px rgba(245,197,24,0.4), 0 0 0 8px rgba(245,197,24,0.1);
  transform: scale(1.12) rotate(-5deg);
}

.process-card h4 { font-size: 1rem; color: #0f172a; margin-bottom: 10px; font-weight: 700; }
.process-card p { font-size: 0.9rem; color: #475569; line-height: 1.7; }

/* ── Testimonial Cards ────────────────────────────── */
.testimonial-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #e8f0fb;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 2px 16px rgba(30,64,175,0.06), 0 1px 3px rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease, border-color 0.3s ease;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #F5C518, var(--blue), #F5C518);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(30,64,175,0.12), 0 4px 12px rgba(0,0,0,0.06);
  border-color: rgba(245,197,24,0.25);
}

.testimonial-card:hover::after { opacity: 1; }

.testimonial-quote {
  font-size: 4rem;
  line-height: 0.85;
  margin-bottom: 8px;
  display: block;
  background: linear-gradient(135deg, #F5C518, #d4a800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stars {
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
  display: block;
  background: linear-gradient(135deg, #F5C518, #d4a800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonial-text { font-size: 0.94rem; color: #374151; line-height: 1.78; margin-bottom: 22px; }

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.author-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: white;
  font-size: 0.88rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(46,109,164,0.3);
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.author-name { font-size: 0.92rem; font-weight: 700; color: #0f172a; }
.author-title { font-size: 0.78rem; color: #64748b; margin-top: 2px; }

/* ── FAQ Section ──────────────────────────────────── */
.faq-item {
  border: 1px solid #e8f0fb;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(30,64,175,0.04);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item:hover { box-shadow: 0 6px 20px rgba(30,64,175,0.1); transform: translateY(-2px); }

.faq-question {
  background: #ffffff;
  font-size: 0.95rem;
  color: #0f172a;
  font-weight: 600;
  padding: 18px 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease, color 0.3s ease;
}

.faq-question:hover { background: #f8fbff; }

.faq-question.open {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%) !important;
  color: #ffffff !important;
}

.faq-answer-inner { font-size: 0.93rem; color: #374151; line-height: 1.78; }

/* ── Before/After Section ─────────────────────────── */
.before-after {
  border: 1px solid #e8f0fb;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(30,64,175,0.1), 0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
}

.ba-col.before { background: linear-gradient(145deg, #fff5f5, #fff0f0); }
.ba-col.after { background: linear-gradient(145deg, #f0fdf4, #ecfdf5); }
.ba-col { padding: 36px 40px; }
.ba-item { font-size: 0.9rem; color: #374151; }

/* ── Misconception Cards ──────────────────────────── */
.misconception-card {
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding-left: 20px;
}

.misconception-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
}

.misconception-card.wrong::before { background: linear-gradient(180deg, #ef4444, #dc2626); }
.misconception-card.right::before { background: linear-gradient(180deg, #22c55e, #16a34a); }

.misconception-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.08); }

/* ── CTA Section ──────────────────────────────────── */
.cta-section {
  background: linear-gradient(145deg, #0c1835 0%, #1a3a6b 40%, #2264a0 65%, #1a3a6b 100%) !important;
  border-radius: 24px;
  padding: 56px 52px !important;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 65% 25%, rgba(245,197,24,0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 75%, rgba(74,140,196,0.18) 0%, transparent 48%);
  pointer-events: none;
  z-index: 0;
}

.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.cta-section > * { position: relative; z-index: 1; }

.cta-section h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; color: #ffffff; margin-bottom: 14px; }
.cta-section p { font-size: 1.05rem; color: rgba(255,255,255,0.78); max-width: 540px; margin: 0 auto 36px; }

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.cta-trust-item i { color: #4ade80; font-size: 0.9rem; }

/* ── Global Button Enhancements ───────────────────── */
.btn-primary {
  background: linear-gradient(135deg, #F5C518 0%, #d4a800 100%);
  color: #0c1835;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(245,197,24,0.32);
  border-color: transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffd740 0%, #F5C518 100%);
  box-shadow: 0 8px 28px rgba(245,197,24,0.48);
  transform: translateY(-3px);
  color: #0c1835;
}

.btn-secondary {
  background: linear-gradient(135deg, #2E6DA4 0%, #4a8cc4 100%);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(46,109,164,0.28);
  border-color: transparent;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #1a4f7a 0%, #2E6DA4 100%);
  box-shadow: 0 8px 28px rgba(46,109,164,0.38);
  transform: translateY(-3px);
  color: #ffffff;
}

.btn-outline:hover {
  background: var(--blue);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46,109,164,0.3);
}

.btn-white {
  background: rgba(255,255,255,0.95);
  color: #0f172a;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  border-color: transparent;
}

.btn-white:hover {
  background: #ffffff;
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
  transform: translateY(-3px);
  color: var(--blue-dark);
}

/* ── Page Hero (Inner Pages) ──────────────────────── */
.page-hero {
  background: linear-gradient(145deg, #0a1628 0%, #0d2444 40%, #1a3a6b 75%, #0d2444 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 72% 28%, rgba(46,109,164,0.32) 0%, transparent 55%),
    radial-gradient(ellipse at 14% 78%, rgba(245,197,24,0.1) 0%, transparent 48%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* ── Navbar Enhancements ──────────────────────────── */
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(30,64,175,0.1), 0 1px 4px rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(46,109,164,0.08);
}

.nav-link.active { color: var(--blue) !important; background: rgba(46,109,164,0.08); border-radius: 8px; font-weight: 600; }

/* ── Contact Form Enhancement ─────────────────────── */
.contact-form {
  border: 1px solid #e8f0fb;
  box-shadow: 0 8px 40px rgba(30,64,175,0.1), 0 2px 8px rgba(0,0,0,0.04);
}

.form-group input:not([type="checkbox"]):not([type="radio"]):focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(46,109,164,0.12), 0 2px 8px rgba(30,64,175,0.08);
  outline: none;
}

/* ── Footer Enhancement ───────────────────────────── */
.footer-link:hover { color: #F5C518 !important; padding-left: 6px; }
.footer-links a { transition: color 0.3s ease, padding-left 0.3s ease; }

.social-icon {
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon:hover {
  background: linear-gradient(135deg, #F5C518, #d4a800);
  color: #0c1835;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(245,197,24,0.35);
}

/* ── Scroll Progress Enhancement ─────────────────── */
#scroll-progress {
  background: linear-gradient(90deg, #F5C518, #16a34a, #F5C518);
  background-size: 200% 100%;
  animation: progressShimmer 3s linear infinite;
}

@keyframes progressShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Stats Grid Mobile ────────────────────────────── */
@media (max-width: 768px) {
  .stats-grid { gap: 2px; background: #e8f0fb; border-radius: 16px; }
  .stat-card { border-radius: 0; border: none; }
  .stat-card:first-child { border-radius: 16px 16px 0 0; }
  .stat-card:last-child { border-radius: 0 0 16px 16px; }
  .cta-section { padding: 48px 28px !important; border-radius: 16px; }
  .cta-trust { gap: 16px; }
}

@media (max-width: 480px) {
  .cta-section { padding: 40px 20px !important; }
  .stat-num { font-size: 2.4rem; }
}

/* =====================================================
   PREMIUM SERVICES SECTION
===================================================== */

/* ── Section Wrapper ──────────────────────────────── */
.services-section {
  background: linear-gradient(160deg, #f0f8ff 0%, #e8f3ff 40%, #f5f8ff 65%, #eef5ff 100%);
  position: relative;
  overflow: hidden;
}

/* ── Background Decoration ────────────────────────── */
.svc-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.svc-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}

.svc-orb-1 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(46,109,164,0.1) 0%, transparent 70%);
  top: -140px; right: -100px;
  animation: orbFloat1 18s ease-in-out infinite;
}

.svc-orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(245,197,24,0.1) 0%, transparent 70%);
  bottom: -100px; left: -80px;
  animation: orbFloat2 22s ease-in-out infinite;
}

.svc-orb-3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(74,140,196,0.08) 0%, transparent 70%);
  top: 40%; left: 40%;
  animation: orbFloat3 14s ease-in-out infinite;
}

.svc-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,64,175,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,64,175,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── Section Count Strip ──────────────────────────── */
.svc-count-strip {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-top: 18px;
  padding: 10px 24px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(46,109,164,0.15);
  border-radius: 50px;
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
  justify-content: center;
}

.svc-count-strip span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
}

.svc-count-strip i { color: #16a34a; font-size: 0.78rem; }

/* ── Services Grid ────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 32px;
}

/* ── Service Card Base ────────────────────────────── */
.service-card {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(147,197,253,0.28);
  border-radius: 24px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 20px rgba(30,64,175,0.07), 0 1px 4px rgba(0,0,0,0.04);
  transition:
    transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.4s ease,
    border-color 0.3s ease;
}

/* Card number watermark */
.svc-card-num {
  position: absolute;
  top: 18px; right: 22px;
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -3px;
  color: rgba(46,109,164,0.06);
  user-select: none;
  pointer-events: none;
  transition: color 0.35s ease;
}

.service-card:hover .svc-card-num { color: rgba(245,197,24,0.1); }

/* Top gradient reveal line */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2E6DA4, #4a8cc4 40%, #F5C518 70%, #4a8cc4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  border-radius: 24px 24px 0 0;
}

.service-card:hover::before { transform: scaleX(1); }

/* Bottom-right radial glow reveal */
.service-card::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,24,0.1) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.service-card:hover::after { opacity: 1; transform: scale(2.4); }

/* Hover lift + glow */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 24px 56px rgba(30,64,175,0.16),
    0 6px 16px rgba(0,0,0,0.07),
    0 0 0 1px rgba(46,109,164,0.18);
  border-color: transparent;
}

/* ── FEATURED Card (Virtual CFO) ──────────────────── */
.service-card.svc-featured {
  background: linear-gradient(145deg, #0d1f42 0%, #1a3a6b 100%);
  border: 1px solid rgba(74,140,196,0.4);
  box-shadow: 0 8px 40px rgba(30,64,175,0.25), 0 2px 8px rgba(0,0,0,0.1);
}

.service-card.svc-featured::before {
  background: linear-gradient(90deg, #F5C518, #FFD740 40%, #F5C518);
}

.service-card.svc-featured::after {
  background: radial-gradient(circle, rgba(245,197,24,0.12) 0%, transparent 70%);
}

.service-card.svc-featured:hover {
  box-shadow:
    0 28px 64px rgba(30,64,175,0.3),
    0 6px 20px rgba(0,0,0,0.12),
    0 0 0 1px rgba(74,140,196,0.5);
}

.service-card.svc-featured .svc-card-num { color: rgba(255,255,255,0.04); }
.service-card.svc-featured:hover .svc-card-num { color: rgba(245,197,24,0.1); }

/* Featured badge */
.svc-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(245,197,24,0.2), rgba(245,197,24,0.12));
  border: 1px solid rgba(245,197,24,0.35);
  color: #F5C518;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 18px;
  width: fit-content;
}

/* Featured card text colors */
.service-card.svc-featured h3 { color: #ffffff; }
.service-card.svc-featured p  { color: rgba(255,255,255,0.75); }

.service-card.svc-featured .svc-tag {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.15);
}

.service-card.svc-featured .service-link {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.2);
}

.service-card.svc-featured:hover .service-link {
  background: linear-gradient(135deg, #F5C518, #d4a800);
  color: #0c1835;
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(245,197,24,0.45);
}

/* ── Service Icon ─────────────────────────────────── */
.service-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, #2E6DA4 0%, #4a8cc4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(46,109,164,0.32), 0 2px 6px rgba(46,109,164,0.18);
  flex-shrink: 0;
  transition:
    transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.4s ease,
    background 0.35s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, #F5C518 0%, #d4a800 100%);
  box-shadow: 0 10px 32px rgba(245,197,24,0.45), 0 2px 8px rgba(245,197,24,0.28);
  transform: scale(1.1) rotate(-6deg);
}

/* Featured card icon */
.service-card.svc-featured .service-icon {
  background: linear-gradient(135deg, #F5C518, #d4a800);
  box-shadow: 0 8px 28px rgba(245,197,24,0.4), 0 2px 8px rgba(245,197,24,0.25);
}

.service-card.svc-featured:hover .service-icon {
  background: linear-gradient(135deg, #FFD740, #F5C518);
  box-shadow: 0 12px 36px rgba(245,197,24,0.55);
  transform: scale(1.12) rotate(-6deg);
}

/* ── Card Typography ──────────────────────────────── */
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.service-card:hover h3 { color: #1e3a8a; }

.service-card p {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.72;
  flex: 1;
  margin-bottom: 18px;
}

/* ── Service Tags ─────────────────────────────────── */
.svc-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.svc-tag {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(46,109,164,0.08);
  color: #1e4d7a;
  border: 1px solid rgba(46,109,164,0.14);
  letter-spacing: 0.2px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.service-card:hover .svc-tag {
  background: rgba(245,197,24,0.1);
  border-color: rgba(245,197,24,0.25);
  color: #92400e;
}

/* ── Service Link (button style) ──────────────────── */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1e4d7a;
  font-size: 0.87rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
  padding: 9px 18px;
  border-radius: 10px;
  background: rgba(46,109,164,0.08);
  border: 1px solid rgba(46,109,164,0.16);
  width: fit-content;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    gap 0.3s ease,
    box-shadow 0.3s ease;
}

.svc-arrow { transition: transform 0.3s ease; }

.service-card:hover .service-link {
  background: linear-gradient(135deg, #F5C518, #d4a800);
  color: #0c1835;
  border-color: transparent;
  gap: 13px;
  box-shadow: 0 4px 16px rgba(245,197,24,0.38);
}

.service-card:hover .svc-arrow { transform: translateX(5px); }

/* ── Bottom CTA Row ───────────────────────────────── */
.svc-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 28px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(34,197,94,0.18);
  border-radius: 18px;
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
  animation: slideInUp 0.8s ease-out forwards;
}

.svc-bottom-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #475569;
  font-weight: 500;
  margin: 0;
}

.svc-bottom-text i { color: var(--blue); font-size: 0.95rem; flex-shrink: 0; }

.svc-bottom-strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-radius: 999px;
  border: 1px solid rgba(34,197,94,0.25);
  background: rgba(255,255,255,0.98);
  color: #0f172a;
  font-weight: 800;
  font-size: 1.03rem;
  line-height: 1.4;
  box-shadow: 0 12px 34px rgba(34,197,94,0.08);
  animation: highlightGlow 4s ease-in-out infinite;
}

.svc-highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #22c55e;
  font-size: 1.2rem;
  animation: iconPulse 3s ease-in-out infinite;
}

.svc-all-btn {
  flex-shrink: 0;
  font-size: 0.9rem;
  padding: 11px 24px;
  gap: 8px;
}

@keyframes highlightGlow {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(34,197,94,0.08);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 16px 46px rgba(34,197,94,0.16);
    transform: translateY(-1px);
  }
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .svc-bottom-row { flex-direction: column; text-align: center; }
  .svc-all-btn { width: 100%; justify-content: center; }
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .svc-count-strip { gap: 14px; }
  .svc-bottom-row { flex-direction: column; text-align: center; }
  .svc-all-btn { width: 100%; justify-content: center; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 24px; }
}

/* =====================================================
   BVA — BEFORE VS AFTER (PREMIUM DARK SECTION)
===================================================== */

/* ── Section — LIGHT THEME ────────────────────────── */
.bva-section {
  background: linear-gradient(160deg, #f0f8ff 0%, #e8f3ff 40%, #f5f8ff 65%, #eef5ff 100%);
  position: relative;
  overflow: hidden;
}

/* ── Background Decoration ────────────────────────── */
.bva-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.bva-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.bva-bg-orb-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(239,68,68,0.06) 0%, transparent 70%);
  top: -100px; left: -80px;
  animation: orbFloat2 18s ease-in-out infinite;
}

.bva-bg-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(46,109,164,0.1) 0%, transparent 70%);
  bottom: -120px; right: -80px;
  animation: orbFloat1 22s ease-in-out infinite;
}

.bva-bg-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,197,24,0.1) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat3 14s ease-in-out infinite;
}

.bva-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,64,175,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,64,175,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── Header on Light ──────────────────────────────── */
.bva-label {
  background: linear-gradient(135deg, #eff6ff, #dbeafe) !important;
  border-color: rgba(46,109,164,0.22) !important;
  color: #1e3a8a !important;
}

.bva-heading { color: #0f172a !important; }
.bva-heading-vs { color: #94a3b8; font-weight: 400; font-style: italic; margin: 0 6px; }
.bva-heading-after { color: #1e3a8a; }
.bva-subtitle { color: #475569 !important; }

/* ── Comparison Grid ──────────────────────────────── */
.bva-grid {
  display: grid;
  grid-template-columns: 1fr 68px 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 36px;
}

/* ── Panel Base — LIGHT ───────────────────────────── */
.bva-panel {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.4s ease;
}

.bva-panel-before {
  background: rgba(255,255,255,0.88);
  border: 1.5px solid rgba(239,68,68,0.18);
  box-shadow: 0 4px 28px rgba(239,68,68,0.07), 0 2px 8px rgba(0,0,0,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.bva-panel-before:hover {
  box-shadow: 0 10px 40px rgba(239,68,68,0.12), 0 4px 12px rgba(0,0,0,0.07);
}

.bva-panel-after {
  background: rgba(255,255,255,0.92);
  border: 1.5px solid rgba(46,109,164,0.25);
  box-shadow: 0 8px 40px rgba(30,64,175,0.1), 0 2px 8px rgba(0,0,0,0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.bva-panel-after:hover {
  box-shadow: 0 14px 52px rgba(30,64,175,0.16), 0 4px 12px rgba(0,0,0,0.07);
}

/* ── Top Shimmer Lines ────────────────────────────── */
.bva-top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 24px 24px 0 0;
}

.bva-line-red  { background: linear-gradient(90deg, transparent 10%, rgba(248,113,113,0.8) 50%, transparent 90%); }
.bva-line-blue { background: linear-gradient(90deg, transparent 5%, #2E6DA4 25%, #4a8cc4 50%, #F5C518 70%, transparent 95%); }

/* ── Panel Header — LIGHT ─────────────────────────── */
.bva-panel-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px 28px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.bva-ph-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

.bva-panel:hover .bva-ph-icon { transform: scale(1.08) rotate(-4deg); }

.bva-ph-red {
  background: rgba(239,68,68,0.1);
  color: #dc2626;
  border: 1px solid rgba(239,68,68,0.2);
}

.bva-ph-blue {
  background: linear-gradient(135deg, #2E6DA4, #4a8cc4);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(46,109,164,0.3);
}

.bva-ph-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: #0f172a;
}

.bva-title-blue { color: #1e3a8a; }

.bva-ph-sub {
  font-size: 0.71rem;
  color: #64748b;
  margin-top: 3px;
  letter-spacing: 0.3px;
}

.bva-ph-badge {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  flex-shrink: 0;
}

.bva-badge-danger  { background: rgba(239,68,68,0.08);  color: #dc2626; border: 1px solid rgba(239,68,68,0.18); }
.bva-badge-success { background: rgba(22,163,74,0.1);   color: #16a34a; border: 1px solid rgba(22,163,74,0.2); }

.bva-bd {
  width: 5px; height: 5px;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

.bva-bd-red   { background: #dc2626; box-shadow: 0 0 5px rgba(220,38,38,0.6); }
.bva-bd-green { background: #16a34a; box-shadow: 0 0 5px rgba(22,163,74,0.6); }

/* ── List Items — LIGHT ───────────────────────────── */
.bva-list { flex: 1; padding: 8px 0; }

.bva-li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: background 0.25s ease, padding-left 0.25s ease;
  cursor: default;
  opacity: 0;
}

.bva-li:last-child { border-bottom: none; }

.bva-li.bva-li-visible {
  animation: bvaSlideIn 0.5s ease calc(var(--n) * 0.07s) both;
}

.bva-li-bad.bva-li-visible  { animation-name: bvaSlideInLeft; }
.bva-li-good.bva-li-visible { animation-name: bvaSlideInRight; }

@keyframes bvaSlideInLeft {
  from { opacity: 0; transform: translateX(-18px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes bvaSlideInRight {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}

.bva-panel-before .bva-li:hover { background: rgba(239,68,68,0.05); padding-left: 34px; }
.bva-panel-after  .bva-li:hover { background: rgba(46,109,164,0.06); padding-left: 34px; }

.bva-li-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
}

.bva-li:hover .bva-li-icon { transform: scale(1.18); }

.bva-li-x {
  background: rgba(239,68,68,0.1);
  color: #dc2626;
  border: 1px solid rgba(239,68,68,0.2);
}

.bva-li-check {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(22,163,74,0.28);
}

.bva-li:hover .bva-li-check { box-shadow: 0 5px 16px rgba(22,163,74,0.45); }

.bva-li span {
  font-size: 0.9rem;
  line-height: 1.45;
  transition: color 0.25s ease;
  color: #374151;
}

.bva-li-bad  span { color: #6b7280; }
.bva-li-good span { color: #0f172a; }
.bva-panel-before .bva-li:hover span { color: #374151; }
.bva-panel-after  .bva-li:hover span { color: #0f172a; }

/* ── Efficiency Meter — LIGHT ─────────────────────── */
.bva-meter {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-top: 1px solid rgba(0,0,0,0.05);
  background: rgba(248,250,252,0.8);
  margin-top: auto;
}

.bva-meter-lbl {
  font-size: 0.68rem;
  color: #64748b;
  font-weight: 600;
  white-space: nowrap;
}

.bva-meter-track {
  flex: 1;
  height: 6px;
  background: rgba(30,64,175,0.1);
  border-radius: 3px;
  overflow: hidden;
}

.bva-meter-fill {
  height: 100%;
  border-radius: 3px;
  width: 0%;
  transition: width 2s cubic-bezier(0.4,0,0.2,1);
}

.bva-mf-red  { background: linear-gradient(90deg, #dc2626, #f87171); }
.bva-mf-blue { background: linear-gradient(90deg, #2E6DA4, #4a8cc4, #22c55e); }

.bva-meter-val {
  font-size: 0.75rem;
  font-weight: 800;
  white-space: nowrap;
}

.bva-mv-red  { color: #dc2626; }
.bva-mv-blue { color: #16a34a; }

/* ── VS Center Column ─────────────────────────────── */
.bva-vs-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 8px;
}

.bva-vs-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 100%;
}

.bva-vs-line {
  width: 2px;
  flex: 1;
}

.bva-vs-top    { background: linear-gradient(to bottom, transparent, rgba(30,64,175,0.25)); }
.bva-vs-bottom { background: linear-gradient(to bottom, rgba(30,64,175,0.25), transparent); }

.bva-vs-badge {
  position: relative;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e3a8a, #2E6DA4, #4a8cc4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 4px 22px rgba(46,109,164,0.55), 0 0 0 6px rgba(46,109,164,0.12);
  animation: bvaVsPulse 3s ease-in-out infinite;
}

.bva-vs-badge span {
  font-size: 0.72rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 1.5px;
}

.bva-vs-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px solid rgba(245,197,24,0.3);
  animation: bvaVsRing 2.5s ease-in-out infinite;
}

@keyframes bvaVsPulse {
  0%, 100% { box-shadow: 0 4px 22px rgba(46,109,164,0.55), 0 0 0 6px rgba(46,109,164,0.12); }
  50%       { box-shadow: 0 6px 30px rgba(46,109,164,0.75), 0 0 0 10px rgba(245,197,24,0.18); }
}

@keyframes bvaVsRing {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50%       { transform: scale(1.35); opacity: 0; }
}

.bva-vs-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bva-vsd {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(74,140,196,0.4);
  animation: bvaVsDot 2s ease-in-out infinite;
}

.bva-vsd:nth-child(2) { animation-delay: 0.3s; }
.bva-vsd:nth-child(3) { animation-delay: 0.6s; }
.bva-vsd:nth-child(4) { animation-delay: 0.9s; }

@keyframes bvaVsDot {
  0%, 100% { opacity: 0.3; transform: translateX(-50%) scale(1); }
  50%       { opacity: 0.9; transform: translateX(-50%) scale(1.6); }
}

/* ── Metrics Strip — LIGHT ────────────────────────── */
.bva-metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(147,197,253,0.3);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 24px rgba(30,64,175,0.08);
}

.bva-metric {
  padding: 26px 20px;
  text-align: center;
  transition: background 0.3s ease;
  border-right: 1px solid rgba(30,64,175,0.08);
}

.bva-metric:last-child { border-right: none; }
.bva-metric:hover { background: rgba(239,246,255,0.8); }

.bva-metric-div {
  display: none; /* handled by border-right */
}

.bva-metric-num {
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #F5C518, #d4a800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.bva-metric-icon {
  font-size: 0.85rem;
  color: #4ade80;
  margin-bottom: 8px;
}

.bva-metric-label {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 500;
  line-height: 1.4;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .bva-grid { grid-template-columns: 1fr; gap: 20px; }

  .bva-vs-col {
    flex-direction: row;
    height: 56px;
    padding: 0;
  }

  .bva-vs-inner { flex-direction: row; height: auto; gap: 12px; }

  .bva-vs-line {
    height: 2px;
    width: auto;
    flex: 1;
  }

  .bva-vs-top    { background: linear-gradient(to right, transparent, rgba(245,197,24,0.35)); }
  .bva-vs-bottom { background: linear-gradient(to right, rgba(46,109,164,0.35), transparent); }

  .bva-vs-dots { display: none; }

  .bva-metrics-strip { grid-template-columns: repeat(2, 1fr); }
  .bva-metric:nth-child(2) { border-right: none; }
  .bva-metric:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.06); }
  .bva-metric:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.06); border-right: none; }
}

@media (max-width: 640px) {
  .bva-panel-header { padding: 20px 18px 16px; gap: 10px; }
  .bva-ph-badge { display: none; }
  .bva-li { padding: 12px 18px; }
  .bva-meter { padding: 14px 18px; }
  .bva-metrics-strip { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .bva-metrics-strip { grid-template-columns: 1fr; }
  .bva-metric { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .bva-metric:last-child { border-bottom: none; }
}

/* =====================================================
   VCD — VIRTUAL CFO vs FULL-TIME CFO DIAGRAM
===================================================== */

/* ── Section Wrapper ──────────────────────────────── */
.vcd-section {
  background: linear-gradient(160deg, #f0f8ff 0%, #e8f3ff 40%, #f5f8ff 65%, #eef5ff 100%);
  position: relative;
  overflow: hidden;
}

/* ── Background ───────────────────────────────────── */
.vcd-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.vcd-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.vcd-bg-orb-l {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(46,109,164,0.12) 0%, transparent 70%);
  top: -80px; left: -80px;
  animation: orbFloat1 16s ease-in-out infinite;
}

.vcd-bg-orb-r {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(245,197,24,0.1) 0%, transparent 70%);
  bottom: -80px; right: -60px;
  animation: orbFloat2 20s ease-in-out infinite;
}

.vcd-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,64,175,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,64,175,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── Main Diagram Layout ──────────────────────────── */
.vcd-diagram {
  display: grid;
  grid-template-columns: 1fr 48px 220px 48px 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 36px;
}

/* ── Column Base ──────────────────────────────────── */
.vcd-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Column Header ────────────────────────────────── */
.vcd-col-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 14px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.vcd-col-head-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.vcd-head-blue {
  background: linear-gradient(135deg, #2E6DA4, #4a8cc4);
  color: #ffffff;
  box-shadow: 0 6px 24px rgba(46,109,164,0.35);
}

.vcd-head-blue .vcd-col-head-icon {
  background: rgba(255,255,255,0.2);
  color: #ffffff;
}

.vcd-head-teal {
  background: linear-gradient(135deg, #0f4c75, #1b6ca8);
  color: #ffffff;
  box-shadow: 0 6px 24px rgba(15,76,117,0.35);
}

.vcd-head-teal .vcd-col-head-icon {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
}

/* ── Items Wrapper ────────────────────────────────── */
.vcd-items-wrap {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ── Comparison Item ──────────────────────────────── */
.vcd-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
  /* stagger animation */
  opacity: 0;
}

.vcd-item.vcd-visible {
  animation: vcdSlide 0.5s ease calc(var(--vi) * 0.1s) both;
}

@keyframes vcdSlide {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.vcd-item:hover { transform: translateY(-3px); }

.vcd-item-blue {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(46,109,164,0.2);
  box-shadow: 0 2px 14px rgba(30,64,175,0.07);
}

.vcd-item-blue:hover {
  box-shadow: 0 8px 28px rgba(30,64,175,0.16);
  border-color: rgba(46,109,164,0.35);
}

.vcd-item-teal {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(15,76,117,0.18);
  box-shadow: 0 2px 14px rgba(15,76,117,0.07);
}

.vcd-item-teal:hover {
  box-shadow: 0 8px 28px rgba(15,76,117,0.15);
  border-color: rgba(15,76,117,0.32);
}

/* Item Icon */
.vcd-item-ico {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, #2E6DA4, #4a8cc4);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(46,109,164,0.28);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
}

.vcd-item-blue:hover .vcd-item-ico {
  background: linear-gradient(135deg, #F5C518, #d4a800);
  box-shadow: 0 6px 18px rgba(245,197,24,0.4);
  transform: scale(1.1) rotate(-5deg);
}

.vcd-ico-teal { background: linear-gradient(135deg, #0f4c75, #1b6ca8); }

.vcd-item-teal:hover .vcd-item-ico {
  background: linear-gradient(135deg, #F5C518, #d4a800);
  box-shadow: 0 6px 18px rgba(245,197,24,0.4);
  transform: scale(1.1) rotate(-5deg);
}

/* Item Text */
.vcd-item-body { flex: 1; }

.vcd-item-key {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #64748b;
  margin-bottom: 2px;
}

.vcd-item-val {
  font-size: 0.88rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.35;
}

/* Arrow indicators on items */
.vcd-right-arrow, .vcd-left-arrow {
  font-size: 0.72rem;
  color: rgba(46,109,164,0.4);
  flex-shrink: 0;
  transition: color 0.3s ease, transform 0.3s ease;
}

.vcd-item:hover .vcd-right-arrow { color: #F5C518; transform: translateX(3px); }
.vcd-item:hover .vcd-left-arrow  { color: #F5C518; transform: translateX(-3px); }

/* ── Down Arrows Between Items ────────────────────── */
.vcd-down-arr {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 28px;
  font-size: 0.75rem;
}

.vcd-darr-blue { color: rgba(46,109,164,0.45); }
.vcd-darr-teal { color: rgba(15,76,117,0.45); }

/* ── Best For Footer ──────────────────────────────── */
.vcd-best {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  margin-top: 16px;
  opacity: 0;
}

.vcd-best.vcd-visible {
  animation: vcdSlide 0.5s ease calc(var(--vi) * 0.1s) both;
}

.vcd-best-blue {
  background: linear-gradient(135deg, rgba(46,109,164,0.1), rgba(74,140,196,0.07));
  border: 1px dashed rgba(46,109,164,0.3);
}

.vcd-best-teal {
  background: linear-gradient(135deg, rgba(15,76,117,0.09), rgba(27,108,168,0.06));
  border: 1px dashed rgba(15,76,117,0.28);
}

.vcd-best-ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2E6DA4, #4a8cc4);
  color: #ffffff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(46,109,164,0.28);
}

.vcd-best-lbl {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
  margin-bottom: 2px;
}

.vcd-best-val {
  font-size: 0.84rem;
  font-weight: 600;
  color: #1e3a8a;
  line-height: 1.35;
}

.vcd-best-teal .vcd-best-val { color: #0f4c75; }

/* ── Connector Columns ────────────────────────────── */
.vcd-connectors {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2px;
}

.vcd-conn-spacer { height: 76px; } /* aligns with column header */

.vcd-conn-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

.vcd-conn-line {
  height: 2px;
  width: 100%;
  border-radius: 1px;
}

.vcd-conn-space {
  height: 44px; /* matches item + arrow height */
}

.vcd-conn-blue { background: linear-gradient(90deg, rgba(46,109,164,0.6), rgba(46,109,164,0.15)); }
.vcd-conn-teal { background: linear-gradient(90deg, rgba(15,76,117,0.15), rgba(15,76,117,0.6)); }

/* ── CENTER KEY DIFFERENCES ───────────────────────── */
.vcd-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 76px; /* align with items below headers */
}

.vcd-diff-card {
  background: linear-gradient(145deg, #F5C518, #d4a800);
  border-radius: 18px;
  padding: 24px 20px;
  box-shadow: 0 12px 40px rgba(245,197,24,0.4), 0 4px 12px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
  width: 100%;
  text-align: center;
  animation: vcdDiffPulse 4s ease-in-out infinite;
}

@keyframes vcdDiffPulse {
  0%, 100% { box-shadow: 0 12px 40px rgba(245,197,24,0.4), 0 4px 12px rgba(0,0,0,0.1); }
  50%       { box-shadow: 0 16px 52px rgba(245,197,24,0.6), 0 6px 16px rgba(0,0,0,0.12); }
}

.vcd-diff-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 20%, rgba(255,255,255,0.25) 0%, transparent 60%);
  pointer-events: none;
}

.vcd-diff-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0c1835;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.vcd-diff-header::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -9px; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 2px;
  background: rgba(12,24,53,0.3);
  border-radius: 2px;
}

.vcd-diff-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.vcd-diff-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #0c1835;
  text-align: left;
  padding: 6px 10px;
  background: rgba(255,255,255,0.25);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: background 0.25s ease, transform 0.25s ease;
}

.vcd-diff-row:hover {
  background: rgba(255,255,255,0.4);
  transform: scale(1.02);
}

.vcd-diff-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #0c1835;
  flex-shrink: 0;
  opacity: 0.7;
}

.vcd-diff-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #0c1835;
  color: #F5C518;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.vcd-diff-cta:hover {
  background: #1a3a6b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(12,24,53,0.4);
  color: #F5C518;
}

/* ── Bottom CTA ───────────────────────────────────── */
.vcd-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 32px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(46,109,164,0.2);
  border-radius: 16px;
  flex-wrap: wrap;
  backdrop-filter: blur(8px);
}

.vcd-bottom-text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

.vcd-bottom-text i {
  color: #F5C518;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .vcd-diagram {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .vcd-connectors { display: none; }
  .vcd-center { padding-top: 0; }
  .vcd-col-right { order: 3; }
  .vcd-center     { order: 2; }
  .vcd-col-left   { order: 1; }

  .vcd-right-arrow, .vcd-left-arrow { display: none; }

  .vcd-diff-card { max-width: 420px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .vcd-col-head { font-size: 0.78rem; padding: 12px 16px; }
  .vcd-item { padding: 12px 14px; }
  .vcd-best { padding: 12px 14px; }
  .vcd-bottom { flex-direction: column; text-align: center; }
  .vcd-bottom .btn { width: 100%; justify-content: center; }
}

/* =====================================================
   PRC — PROCESS STEPS (PREMIUM REDESIGN)
===================================================== */

/* ── Section ──────────────────────────────────────── */
.prc-section {
  background: linear-gradient(160deg, #f8fbff 0%, #f0f8ff 40%, #f5f8ff 70%, #eef5ff 100%);
  position: relative;
  overflow: hidden;
}

/* ── Background Decoration ────────────────────────── */
.prc-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.prc-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.prc-orb-1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(46,109,164,0.1) 0%, transparent 70%);
  top: -80px; right: -60px;
  animation: orbFloat1 18s ease-in-out infinite;
}

.prc-orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(245,197,24,0.1) 0%, transparent 70%);
  bottom: -80px; left: -60px;
  animation: orbFloat2 22s ease-in-out infinite;
}

.prc-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,64,175,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,64,175,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── Timeline Layout ──────────────────────────────── */
.prc-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  margin-bottom: 44px;
}

/* ── Animated Connector Line ──────────────────────── */
.prc-connector {
  position: absolute;
  top: 37px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 4px;
  z-index: 0;
  background: rgba(30,64,175,0.08);
  border-radius: 4px;
  overflow: hidden;
}

.prc-connector-fill {
  height: 100%;
  width: 0%;
  border-radius: 4px;
  background: linear-gradient(90deg, #2E6DA4, #4a8cc4 35%, #16a34a 65%, #F5C518);
  transition: width 2.2s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}

/* Shimmer on the connector fill */
.prc-connector-fill::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40px; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5));
  animation: prcShimmer 1.5s ease-in-out infinite;
}

@keyframes prcShimmer {
  0%   { opacity: 0; }
  50%  { opacity: 1; }
  100% { opacity: 0; }
}

/* Animated dots moving along connector */
.prc-connector-dots { position: absolute; inset: -4px 0; pointer-events: none; }

.prc-cdot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #F5C518;
  box-shadow: 0 0 10px rgba(245,197,24,0.9), 0 0 20px rgba(245,197,24,0.4);
  top: 50%; transform: translateY(-50%);
  animation: prcDotMove 4s linear infinite;
  animation-delay: var(--d);
  opacity: 0;
  display: none; /* visible after fill completes */
}

.prc-dots-active .prc-cdot { display: block; }

@keyframes prcDotMove {
  0%   { left: 0%;   opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

/* ── Each Step ────────────────────────────────────── */
.prc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  gap: 0;
}

/* ── Number Circle ────────────────────────────────── */
.prc-num-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.prc-num-ring {
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  border: 1.5px solid rgba(46,109,164,0.18);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
  animation: prcRingPulse 3.5s ease-in-out infinite;
}

@keyframes prcRingPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46,109,164,0.12); }
  50%       { box-shadow: 0 0 0 8px rgba(46,109,164,0); }
}

.prc-ring-gold { border-color: rgba(245,197,24,0.3); animation-name: prcRingGold; }

@keyframes prcRingGold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,197,24,0.15); }
  50%       { box-shadow: 0 0 0 8px rgba(245,197,24,0); }
}

.prc-step:hover .prc-num-ring {
  border-color: rgba(245,197,24,0.5);
  box-shadow: 0 0 0 8px rgba(245,197,24,0.08) !important;
  animation: none;
}

.prc-num {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: linear-gradient(145deg, #eff6ff, #dbeafe);
  border: 2px solid rgba(46,109,164,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  font-weight: 900;
  color: #2E6DA4;
  box-shadow: 0 4px 20px rgba(30,64,175,0.12), 0 0 0 8px rgba(46,109,164,0.06);
  transition:
    transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
    background 0.35s ease,
    color 0.35s ease,
    box-shadow 0.4s ease;
}

.prc-step:hover .prc-num {
  background: linear-gradient(135deg, #F5C518, #d4a800);
  color: #0c1835;
  border-color: #d4a800;
  box-shadow: 0 8px 30px rgba(245,197,24,0.4), 0 0 0 8px rgba(245,197,24,0.12);
  transform: scale(1.1) rotate(-5deg);
}

/* Gold step 4 variant */
.prc-num-gold {
  background: linear-gradient(145deg, rgba(245,197,24,0.15), rgba(245,197,24,0.08));
  border-color: rgba(245,197,24,0.4);
  color: #d4a800;
  box-shadow: 0 4px 20px rgba(245,197,24,0.2), 0 0 0 8px rgba(245,197,24,0.08);
}

.prc-step:hover .prc-num-gold {
  background: linear-gradient(135deg, #FFD740, #F5C518);
  box-shadow: 0 8px 30px rgba(245,197,24,0.5), 0 0 0 8px rgba(245,197,24,0.15);
}

/* ── Process Card ─────────────────────────────────── */
.prc-card {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(147,197,253,0.28);
  border-radius: 20px;
  padding: 26px 22px 20px;
  text-align: center;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(30,64,175,0.07), 0 1px 4px rgba(0,0,0,0.04);
  transition:
    transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.4s ease,
    border-color 0.3s ease;
}

/* Top shimmer line (reveals on hover) */
.prc-card-top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2E6DA4, #4a8cc4 50%, #F5C518);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  border-radius: 20px 20px 0 0;
}

/* Gold card step 4 */
.prc-card-gold {
  background: linear-gradient(145deg, #fffdf0, #fffbdb);
  border-color: rgba(245,197,24,0.3);
  box-shadow: 0 4px 24px rgba(245,197,24,0.12), 0 1px 4px rgba(0,0,0,0.04);
}

.prc-card-gold:hover { border-color: rgba(245,197,24,0.5); }

.prc-line-gold { background: linear-gradient(90deg, #F5C518, #FFD740, #d4a800); }

/* Hover effects on all cards */
.prc-step:hover .prc-card {
  transform: translateY(-10px);
  box-shadow: 0 22px 52px rgba(30,64,175,0.14), 0 4px 12px rgba(0,0,0,0.06);
  border-color: rgba(46,109,164,0.3);
}

.prc-step:hover .prc-card-gold {
  box-shadow: 0 22px 52px rgba(245,197,24,0.18), 0 4px 12px rgba(0,0,0,0.06);
}

.prc-step:hover .prc-card-top-line { transform: scaleX(1); }

/* Step badge */
.prc-step-tag {
  display: inline-block;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(46,109,164,0.6);
  background: rgba(46,109,164,0.07);
  border: 1px solid rgba(46,109,164,0.14);
  border-radius: 50px;
  padding: 3px 10px;
  margin-bottom: 14px;
}

.prc-tag-gold {
  color: rgba(180,130,0,0.8);
  background: rgba(245,197,24,0.1);
  border-color: rgba(245,197,24,0.25);
}

/* Card icon */
.prc-card-icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, #2E6DA4, #4a8cc4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 16px;
  box-shadow: 0 6px 20px rgba(46,109,164,0.3);
  transition:
    transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
    background 0.35s ease,
    box-shadow 0.4s ease;
}

.prc-step:hover .prc-card-icon {
  background: linear-gradient(135deg, #F5C518, #d4a800);
  box-shadow: 0 8px 28px rgba(245,197,24,0.42);
  transform: scale(1.12) rotate(-6deg);
}

.prc-icon-gold {
  background: linear-gradient(135deg, #F5C518, #d4a800);
  box-shadow: 0 6px 20px rgba(245,197,24,0.35);
}

.prc-step:hover .prc-icon-gold {
  background: linear-gradient(135deg, #FFD740, #F5C518);
  box-shadow: 0 8px 30px rgba(245,197,24,0.55);
}

/* Card text */
.prc-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.prc-step:hover .prc-card h4 { color: #1e3a8a; }
.prc-step:hover .prc-card-gold h4 { color: #92400e; }

.prc-card p {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.72;
  margin-bottom: 16px;
}

/* Card footer tag */
.prc-card-foot { display: flex; justify-content: center; }

.prc-foot-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 600;
  color: #2E6DA4;
  background: rgba(46,109,164,0.07);
  border: 1px solid rgba(46,109,164,0.14);
  padding: 4px 12px;
  border-radius: 50px;
}

.prc-foot-gold {
  color: #d4a800;
  background: rgba(245,197,24,0.1);
  border-color: rgba(245,197,24,0.25);
}

/* ── Bottom CTA Strip ─────────────────────────────── */
.prc-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 32px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(46,109,164,0.18);
  border-radius: 16px;
  flex-wrap: wrap;
  backdrop-filter: blur(8px);
}

.prc-cta-text {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.55;
  margin: 0;
}

.prc-cta-text i { color: #16a34a; font-size: 1rem; flex-shrink: 0; }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .prc-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .prc-connector { display: none; }
}

@media (max-width: 640px) {
  .prc-timeline { grid-template-columns: 1fr; gap: 16px; }
  .prc-cta-strip { flex-direction: column; text-align: center; }
  .prc-cta-strip .btn { width: 100%; justify-content: center; }
}

/* =====================================================
   TST — TESTIMONIALS (PREMIUM SLIDER)
===================================================== */

/* ── Section ──────────────────────────────────────── */
.tst-section {
  background: linear-gradient(160deg, #f0f8ff 0%, #e8f3ff 40%, #f5f8ff 70%, #eef5ff 100%);
  position: relative;
  overflow: hidden;
}

/* ── Background ───────────────────────────────────── */
.tst-bg-decor { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }

.tst-orb { position: absolute; border-radius: 50%; filter: blur(80px); }

.tst-orb-1 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(46,109,164,0.12) 0%, transparent 70%);
  top: -80px; left: -60px;
  animation: orbFloat1 18s ease-in-out infinite;
}

.tst-orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(245,197,24,0.12) 0%, transparent 70%);
  bottom: -80px; right: -60px;
  animation: orbFloat2 22s ease-in-out infinite;
}

.tst-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,64,175,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,64,175,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── Trust Stats Strip ────────────────────────────── */
.tst-trust-strip {
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(147,197,253,0.3);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(30,64,175,0.07);
  margin-bottom: 48px;
  overflow: hidden;
}

.tst-trust-item {
  flex: 1;
  text-align: center;
  padding: 20px 16px;
  transition: background 0.3s ease;
}

.tst-trust-item:hover { background: rgba(239,246,255,0.8); }

.tst-trust-num {
  font-size: 1.65rem;
  font-weight: 900;
  background: linear-gradient(135deg, #F5C518, #d4a800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 5px;
}

.tst-trust-lbl {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
}

.tst-trust-sep {
  width: 1px;
  background: rgba(30,64,175,0.08);
  align-self: stretch;
}

/* ── Slider Layout ────────────────────────────────── */
.tst-slider-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
}

/* ── Navigation Buttons ───────────────────────────── */
.tst-nav-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(46,109,164,0.22);
  background: rgba(255,255,255,0.9);
  color: #2E6DA4;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 5;
  backdrop-filter: blur(8px);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease,
    color 0.3s ease;
  box-shadow: 0 2px 14px rgba(30,64,175,0.1);
}

.tst-nav-btn:hover {
  background: linear-gradient(135deg, #2E6DA4, #4a8cc4);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 6px 22px rgba(46,109,164,0.38);
  transform: scale(1.06);
}

/* ── Slider Viewport ──────────────────────────────── */
.tst-slider-viewport {
  flex: 1;
  overflow: hidden;
  padding: 16px 4px 24px;
  margin: -16px 14px -24px;
}

/* ── Slider Track ─────────────────────────────────── */
.tst-slider-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
  align-items: stretch;
}

/* ── Slide (sizing wrapper) ───────────────────────── */
.tst-slide {
  flex-shrink: 0;
  padding: 0 12px;
  box-sizing: border-box;
  /* width set dynamically by JS */
}

/* ── Testimonial Card ─────────────────────────────── */
.tst-card {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(147,197,253,0.3);
  border-radius: 24px;
  padding: 28px 26px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 4px 24px rgba(30,64,175,0.08), 0 1px 4px rgba(0,0,0,0.04);
  transition:
    transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.4s ease,
    border-color 0.3s ease;
}

/* Top shimmer line — reveals on hover */
.tst-card-top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2E6DA4, #4a8cc4 50%, #F5C518);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
  border-radius: 24px 24px 0 0;
}

.tst-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(30,64,175,0.14), 0 4px 12px rgba(0,0,0,0.06);
  border-color: rgba(46,109,164,0.3);
}

.tst-card:hover .tst-card-top-line { transform: scaleX(1); }

/* ── Card Header ──────────────────────────────────── */
.tst-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 10px;
}

/* Quote Icon */
.tst-quote-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(245,197,24,0.15), rgba(245,197,24,0.06));
  border: 1px solid rgba(245,197,24,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d97706;
  font-size: 1.05rem;
  flex-shrink: 0;
  transition:
    transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.tst-card:hover .tst-quote-icon {
  background: linear-gradient(135deg, #F5C518, #d4a800);
  color: #0c1835;
  transform: scale(1.08) rotate(-5deg);
  box-shadow: 0 6px 18px rgba(245,197,24,0.38);
}

/* Service Tag */
.tst-service-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 700;
  color: #1e4d7a;
  background: rgba(46,109,164,0.08);
  border: 1px solid rgba(46,109,164,0.16);
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.3px;
  flex-shrink: 0;
  margin-top: 4px;
}

/* Stars */
.tst-stars {
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #F5C518, #d4a800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

/* Text */
.tst-text {
  font-size: 0.92rem;
  color: #374151;
  line-height: 1.78;
  font-style: italic;
  flex: 1;
  margin-bottom: 20px;
}

/* Author */
.tst-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.tst-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(46,109,164,0.28);
  object-fit: cover;
  overflow: hidden;
  border: 2.5px solid #fff;
}

.tst-av-1 { background: linear-gradient(135deg, #2E6DA4, #4a8cc4); }
.tst-av-2 { background: linear-gradient(135deg, #1a5276, #2E6DA4); }
.tst-av-3 { background: linear-gradient(135deg, #0f4c75, #1b6ca8); }
.tst-av-4 { background: linear-gradient(135deg, #16a34a, #22c55e); }
.tst-av-5 { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.tst-av-6 { background: linear-gradient(135deg, #d97706, #F5C518); }

.tst-author-body { flex: 1; }

.tst-author-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.tst-author-role {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 2px;
}

.tst-verified {
  color: #16a34a;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ── Dot Indicators ───────────────────────────────── */
.tst-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.tst-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(46,109,164,0.2);
  padding: 0;
  transition: background 0.3s ease, width 0.35s ease, border-radius 0.35s ease;
}

.tst-dot.tst-dot-active {
  background: linear-gradient(135deg, #F5C518, #d4a800);
  width: 26px;
  border-radius: 4px;
}

.tst-dot:hover:not(.tst-dot-active) { background: rgba(46,109,164,0.4); }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 768px) {
  .tst-trust-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
  }
  .tst-trust-sep { display: none; }
  .tst-trust-item { border-bottom: 1px solid rgba(30,64,175,0.07); }
  .tst-trust-item:nth-child(3),
  .tst-trust-item:nth-child(4) { border-bottom: none; }
  .tst-trust-item:nth-child(odd) { border-right: 1px solid rgba(30,64,175,0.07); }
}

@media (max-width: 480px) {
  .tst-nav-btn { width: 40px; height: 40px; font-size: 0.82rem; }
  .tst-card { padding: 22px 20px 18px; }
}

/* =====================================================
   FAQ — PREMIUM REDESIGN
===================================================== */

/* ── Section ──────────────────────────────────────── */
.faq-section {
  background: linear-gradient(160deg, #f8fbff 0%, #f0f8ff 40%, #f5f8ff 70%, #eef5ff 100%);
  position: relative;
  overflow: hidden;
}

/* ── Background ───────────────────────────────────── */
.faq-bg-decor { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.faq-bg-orb   { position: absolute; border-radius: 50%; filter: blur(80px); }

.faq-orb-1 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(46,109,164,0.1) 0%, transparent 70%);
  top: -60px; right: -40px;
  animation: orbFloat1 18s ease-in-out infinite;
}

.faq-orb-2 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(245,197,24,0.1) 0%, transparent 70%);
  bottom: -60px; left: -40px;
  animation: orbFloat2 22s ease-in-out infinite;
}

.faq-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,64,175,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,64,175,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── 2-Column Layout ──────────────────────────────── */
.faq-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: start;
}

/* ── Left Column ──────────────────────────────────── */
.faq-left { position: sticky; top: 100px; }

.faq-left .section-title { line-height: 1.15; }

.faq-cta-btn { margin-bottom: 0; }

/* Quick Stats Strip */
.faq-quick-stats {
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(147,197,253,0.3);
  border-radius: 16px;
  overflow: hidden;
  margin: 28px 0 24px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(30,64,175,0.06);
}

.faq-stat {
  flex: 1;
  text-align: center;
  padding: 16px 10px;
  border-right: 1px solid rgba(30,64,175,0.08);
  transition: background 0.3s ease;
}

.faq-stat:last-child { border-right: none; }
.faq-stat:hover { background: rgba(239,246,255,0.8); }

.faq-stat-num {
  font-size: 1.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #F5C518, #d4a800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.faq-stat-lbl { font-size: 0.68rem; color: #64748b; font-weight: 500; }

/* Decoration Card */
.faq-deco-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(46,109,164,0.07), rgba(74,140,196,0.04));
  border: 1px solid rgba(46,109,164,0.14);
  border-radius: 14px;
  margin-top: 24px;
  transition: box-shadow 0.3s ease;
}

.faq-deco-card:hover { box-shadow: 0 4px 18px rgba(30,64,175,0.1); }

.faq-deco-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2E6DA4, #4a8cc4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(46,109,164,0.3);
}

.faq-deco-title { font-size: 0.88rem; font-weight: 700; color: #0f172a; }
.faq-deco-sub   { font-size: 0.76rem; color: #2E6DA4; margin-top: 2px; font-weight: 500; }

/* ── Right Column — Premium Accordion ────────────── */
.faq-list-premium {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Each FAQ item card */
.faq-list-premium .faq-item {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(147,197,253,0.28);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(30,64,175,0.06), 0 1px 3px rgba(0,0,0,0.03);
  transition: box-shadow 0.35s ease, border-color 0.3s ease, transform 0.35s ease;
  position: relative;
}

.faq-list-premium .faq-item:hover {
  box-shadow: 0 6px 28px rgba(30,64,175,0.1), 0 2px 6px rgba(0,0,0,0.05);
  border-color: rgba(46,109,164,0.22);
  transform: translateY(-2px);
}

/* Active item (open) — requires JS to add .faq-item-open */
.faq-list-premium .faq-item.faq-item-open {
  border-color: rgba(46,109,164,0.35);
  box-shadow: 0 8px 32px rgba(30,64,175,0.14), 0 2px 8px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

/* Top accent line on open item */
.faq-list-premium .faq-item.faq-item-open::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, #2E6DA4, #4a8cc4 50%, #F5C518);
}

/* FAQ Question Button — override existing styles */
.faq-list-premium .faq-question {
  width: 100%;
  display: flex !important;
  align-items: center;
  gap: 14px;
  padding: 18px 20px !important;
  background: transparent !important;
  color: #0f172a !important;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s ease !important;
  justify-content: flex-start !important;
}

.faq-list-premium .faq-question:hover {
  background: rgba(239,246,255,0.5) !important;
}

/* Open state — override the global blue gradient */
.faq-list-premium .faq-question.open {
  background: rgba(239,246,255,0.6) !important;
  color: #0f172a !important;
}

/* Question Icon Box */
.fq-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(46,109,164,0.09);
  border: 1px solid rgba(46,109,164,0.16);
  color: #2E6DA4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  flex-shrink: 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, color 0.3s ease;
}

.fq-icon-gold {
  background: rgba(245,197,24,0.12);
  border-color: rgba(245,197,24,0.25);
  color: #d97706;
}

.faq-question.open .fq-icon {
  background: linear-gradient(135deg, #2E6DA4, #4a8cc4);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(46,109,164,0.3);
}

.faq-question.open .fq-icon-gold {
  background: linear-gradient(135deg, #F5C518, #d4a800);
  color: #0c1835;
  box-shadow: 0 4px 14px rgba(245,197,24,0.35);
}

/* Question Text */
.fq-text {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.42;
  transition: color 0.3s ease;
}

.faq-question.open .fq-text { color: #1e3a8a; }

/* Toggle Chevron */
.fq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(46,109,164,0.07);
  border: 1px solid rgba(46,109,164,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2E6DA4;
  font-size: 0.7rem;
  flex-shrink: 0;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.3s ease;
}

.fq-toggle i { transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); }

.faq-question.open .fq-toggle {
  background: linear-gradient(135deg, #F5C518, #d4a800);
  border-color: transparent;
  color: #0c1835;
}

.faq-question.open .fq-toggle i { transform: rotate(180deg); }

/* Answer Panel */
.faq-list-premium .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.48s cubic-bezier(0.4,0,0.2,1);
}

.faq-list-premium .faq-answer.open { max-height: 600px; }

/* Answer Inner */
.faq-list-premium .faq-answer-inner {
  padding: 4px 20px 22px 72px; /* aligns with text past icon */
  font-size: 0.92rem;
  color: #374151;
  line-height: 1.82;
  position: relative;
}

/* Left accent line inside answer */
.faq-list-premium .faq-answer-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 38px;
  width: 2px;
  height: calc(100% - 22px);
  background: linear-gradient(to bottom, rgba(46,109,164,0.3), rgba(245,197,24,0.2), transparent);
  border-radius: 2px;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-left   { position: static; }
}

@media (max-width: 640px) {
  .faq-list-premium .faq-answer-inner {
    padding: 4px 16px 18px 16px;
  }
  .faq-list-premium .faq-answer-inner::before { display: none; }
  .faq-list-premium .faq-question { padding: 16px !important; gap: 12px; }
  .fq-icon { width: 34px; height: 34px; font-size: 0.82rem; }
  .fq-text { font-size: 0.9rem; }
}

/* =====================================================
   PCTA — PREMIUM CTA SECTION
===================================================== */

/* ── Section ──────────────────────────────────────── */
.pcta-section {
  position: relative;
  overflow: hidden;
  padding: 36px 0 30px;
}

/* ── Background — LIGHT BLUE (hero-inspired, slightly richer) ── */
.pcta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Slightly richer + cooler blue than hero (#eef6ff→#dbeafe) */
  background: linear-gradient(135deg, #d6eaff 0%, #c2d9fa 35%, #dde9ff 65%, #cfdff8 100%);
}

.pcta-orb { position: absolute; border-radius: 50%; filter: blur(80px); }

.pcta-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.22) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: orbFloat1 16s ease-in-out infinite;
}

.pcta-orb-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(245,197,24,0.2) 0%, transparent 70%);
  bottom: -140px; left: -60px;
  animation: orbFloat2 20s ease-in-out infinite;
}

.pcta-orb-3 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(30,64,175,0.14) 0%, transparent 70%);
  top: 30%; left: 32%;
  animation: orbFloat3 13s ease-in-out infinite;
}

.pcta-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,64,175,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,64,175,0.055) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Particles — visible on light bg */
.pcta-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.pcta-particles span {
  position: absolute;
  border-radius: 50%;
  animation: particleFloat linear infinite;
}
.pcta-particles span:nth-child(1) { width:5px;  height:5px;  left:8%;  animation-duration:14s; animation-delay:0s;    background:rgba(59,130,246,0.3); }
.pcta-particles span:nth-child(2) { width:8px;  height:8px;  left:20%; animation-duration:20s; animation-delay:2s;    background:rgba(245,197,24,0.35); }
.pcta-particles span:nth-child(3) { width:4px;  height:4px;  left:35%; animation-duration:16s; animation-delay:4s;    background:rgba(30,64,175,0.22); }
.pcta-particles span:nth-child(4) { width:6px;  height:6px;  left:55%; animation-duration:18s; animation-delay:1s;    background:rgba(96,165,250,0.28); }
.pcta-particles span:nth-child(5) { width:5px;  height:5px;  left:70%; animation-duration:22s; animation-delay:3s;    background:rgba(245,197,24,0.28); }
.pcta-particles span:nth-child(6) { width:7px;  height:7px;  left:82%; animation-duration:15s; animation-delay:5s;    background:rgba(30,64,175,0.18); }
.pcta-particles span:nth-child(7) { width:4px;  height:4px;  left:45%; animation-duration:17s; animation-delay:6s;    background:rgba(59,130,246,0.22); }
.pcta-particles span:nth-child(8) { width:6px;  height:6px;  left:92%; animation-duration:19s; animation-delay:2.5s;  background:rgba(245,197,24,0.25); }

/* ── Main Layout ──────────────────────────────────── */
.pcta-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: 44px;
}

/* ── Badge — light bg ─────────────────────────────── */
.pcta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,197,24,0.18);
  border: 1px solid rgba(245,197,24,0.38);
  color: #92400e;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.pcta-badge-dot {
  width: 6px; height: 6px;
  background: #d97706;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(245,197,24,0.8);
}

/* ── Heading — dark text on light bg ─────────────── */
.pcta-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  margin-bottom: 18px;
}

.pcta-heading-accent {
  background: linear-gradient(135deg, #d4a800, #F5C518);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Subheading ───────────────────────────────────── */
.pcta-sub {
  font-size: 1.04rem;
  color: #334155;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

/* ── Buttons ──────────────────────────────────────── */
.pcta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.pcta-btn-primary {
  font-size: 0.97rem !important;
  padding: 15px 28px !important;
  gap: 10px !important;
}

.pcta-btn-arrow { transition: transform 0.3s ease; }
.pcta-btn-primary:hover .pcta-btn-arrow { transform: translateX(6px); }

.pcta-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1.5px solid rgba(30,64,175,0.22);
  color: #1e3a8a;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(10px);
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.pcta-btn-ghost:hover {
  border-color: #d4a800;
  color: #92400e;
  background: rgba(245,197,24,0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,197,24,0.2);
}

/* ── Trust Items — dark text on light ─────────────── */
.pcta-trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.pcta-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: #475569;
  font-weight: 500;
}

.pcta-trust-item i { color: #16a34a; font-size: 0.82rem; flex-shrink: 0; }

/* ── Right: Stats Card ────────────────────────────── */
.pcta-right { position: relative; padding: 22px 22px 12px; }

.pcta-stats-card {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(147,197,253,0.35);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 16px 56px rgba(30,64,175,0.16), 0 4px 12px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  animation: float 5s ease-in-out infinite;
}

.pcta-sc-shimmer {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2E6DA4, #4a8cc4 40%, #F5C518 70%, #4a8cc4);
  border-radius: 20px 20px 0 0;
}

.pcta-sc-header {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
}

.pcta-sc-dots { display: flex; gap: 4px; }
.pcta-sc-dots span { width: 8px; height: 8px; border-radius: 50%; }
.pcta-sc-dots span:nth-child(1) { background: #ff5f57; }
.pcta-sc-dots span:nth-child(2) { background: #febc2e; }
.pcta-sc-dots span:nth-child(3) { background: #28c840; }

.pcta-sc-title {
  flex: 1;
  font-size: 0.68rem;
  color: #64748b;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.pcta-sc-live {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #4ade80;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.2);
  padding: 2px 7px;
  border-radius: 50px;
}

.pcta-sc-live span {
  width: 4px; height: 4px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 5px rgba(74,222,128,0.8);
}

/* KPI Grid */
.pcta-sc-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.pcta-sc-metric {
  background: rgba(239,246,255,0.8);
  border: 1px solid rgba(147,197,253,0.25);
  border-radius: 10px;
  padding: 10px;
  transition: border-color 0.3s ease;
}

.pcta-sc-metric:hover { border-color: rgba(245,197,24,0.3); }

.pcta-sc-val {
  font-size: 0.98rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.pcta-sc-lbl {
  font-size: 0.58rem;
  color: #64748b;
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.pcta-sc-trend {
  font-size: 0.65rem;
  font-weight: 600;
  color: #4ade80;
  margin-top: 5px;
}

/* Mini Bar Chart */
.pcta-mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 44px;
  background: rgba(239,246,255,0.7);
  border-radius: 8px;
  padding: 6px 8px 0;
  margin-bottom: 4px;
}

.pcta-mc-bar {
  flex: 1;
  background: rgba(46,109,164,0.35);
  border-radius: 3px 3px 0 0;
}

.pcta-mc-gold { background: linear-gradient(180deg, #F5C518, rgba(245,197,24,0.6)); }

.pcta-chart-months {
  display: flex;
  justify-content: space-between;
  font-size: 0.5rem;
  color: #94a3b8;
  padding: 0 8px;
}

/* ── Floating Cards ───────────────────────────────── */
.pcta-float-card {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(147,197,253,0.35);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(30,64,175,0.14), 0 2px 8px rgba(0,0,0,0.05);
  z-index: 2;
}

.pcta-fc-top {
  top: 2px; left: 0px;
  animation: floatCardA 5s ease-in-out infinite;
}

.pcta-fc-bottom {
  bottom: 0px; right: 0px;
  animation: floatCardB 6.5s ease-in-out infinite;
  animation-delay: 1.2s;
}

.pcta-fc-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.pcta-fci-yellow { background: rgba(245,197,24,0.18); color: #d97706; }
.pcta-fci-green  { background: rgba(22,163,74,0.12); color: #16a34a; }

.pcta-fc-val  { font-size: 0.88rem; font-weight: 700; color: #0f172a; line-height: 1; }
.pcta-fc-lbl  { font-size: 0.62rem; color: #64748b; margin-top: 2px; }

/* ── Bottom Metrics Strip — light glass ───────────── */
.pcta-metrics {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(147,197,253,0.3);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 24px rgba(30,64,175,0.08);
}

.pcta-metric {
  flex: 1;
  text-align: center;
  padding: 22px 16px;
  border-right: 1px solid rgba(30,64,175,0.08);
  transition: background 0.3s ease;
}

.pcta-metric:last-child { border-right: none; }
.pcta-metric:hover { background: rgba(239,246,255,0.8); }

.pcta-m-num {
  font-size: 1.55rem;
  font-weight: 900;
  background: linear-gradient(135deg, #F5C518, #d4a800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 5px;
}

.pcta-m-lbl {
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 500;
}

.pcta-metric-sep {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
  display: none; /* hidden — using border-right */
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .pcta-layout { grid-template-columns: 1fr; gap: 40px; }
  .pcta-right  { display: none; }
  .pcta-metrics { display: grid; grid-template-columns: repeat(2, 1fr); border-radius: 16px; }
  .pcta-metric { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .pcta-metric:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.07); }
  .pcta-metric:nth-child(3), .pcta-metric:nth-child(4) { border-bottom: none; }
}

@media (max-width: 640px) {
  .pcta-section { padding: 48px 0 40px; }
  .pcta-btns { flex-direction: column; }
  .pcta-btn-primary, .pcta-btn-ghost { justify-content: center !important; width: 100%; }
  .pcta-trust { gap: 12px; }
  .pcta-heading { font-size: 1.85rem; }
}

/* =====================================================
   PREMIUM HEADER ENHANCEMENTS
===================================================== */

/* ── Navbar base transition ───────────────────────── */
.navbar {
  transition: background 0.4s ease, box-shadow 0.4s ease,
              border-color 0.4s ease, height 0.35s ease !important;
}

/* ── Scrolled state: stronger glass ──────────────── */
.navbar.scrolled {
  background: rgba(255,255,255,0.97) !important;
  box-shadow: 0 4px 32px rgba(30,64,175,0.1), 0 1px 4px rgba(0,0,0,0.06) !important;
  border-bottom: 1px solid rgba(46,109,164,0.1) !important;
}

/* ── Nav-link: animated gradient underline ────────── */
.nav-menu > li > .nav-link {
  position: relative;
  overflow: visible;
}

.nav-menu > li > .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--yellow));
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.32s cubic-bezier(0.4,0,0.2,1);
}

.nav-menu > li > .nav-link:hover::after { width: 72%; }
.nav-menu > li > .nav-link.active::after { width: 85%; }

/* ── Active link: pill highlight ─────────────────── */
.nav-link.active {
  color: var(--blue) !important;
  font-weight: 700 !important;
  background: rgba(46,109,164,0.09) !important;
  border-radius: 8px;
}

/* ── Nav-link hover: smooth color ────────────────── */
.nav-link { transition: color 0.25s ease, background 0.25s ease !important; }

/* ── Dropdown: slide down + fade ─────────────────── */
.nav-dropdown-menu {
  transform: translateY(-10px) !important;
  transition: opacity 0.3s cubic-bezier(0.4,0,0.2,1),
              visibility 0.3s ease,
              transform 0.3s cubic-bezier(0.4,0,0.2,1) !important;
  border-radius: 14px !important;
  border: 1px solid rgba(46,109,164,0.1) !important;
  box-shadow: 0 16px 48px rgba(30,64,175,0.14), 0 4px 12px rgba(0,0,0,0.06) !important;
  overflow: hidden !important;
  padding: 8px !important;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

/* Dropdown item: icon moves + bg on hover */
.nav-dropdown-menu a {
  border-radius: 8px !important;
  transition: background 0.22s ease, color 0.22s ease, padding-left 0.25s ease !important;
  padding: 10px 14px !important;
  font-size: 0.88rem !important;
}

.nav-dropdown-menu a:hover {
  background: rgba(46,109,164,0.07) !important;
  color: var(--blue) !important;
  padding-left: 20px !important;
}

.nav-dropdown-menu a i {
  transition: transform 0.25s ease !important;
}

.nav-dropdown-menu a:hover i { transform: translateX(3px) !important; }

/* ── CTA Button: premium glow ─────────────────────── */
.nav-cta.btn-primary {
  background: linear-gradient(135deg, #F5C518 0%, #d4a800 100%) !important;
  color: #0c1835 !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 18px rgba(245,197,24,0.28) !important;
  position: relative !important;
  overflow: hidden !important;
  border-color: transparent !important;
}

.nav-cta.btn-primary::after {
  content: '' !important;
  position: absolute !important;
  top: 0; left: -100% !important;
  width: 60%; height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent) !important;
  transform: skewX(-20deg) !important;
  animation: btnShine 3s infinite !important;
}

.nav-cta.btn-primary:hover {
  background: linear-gradient(135deg, #FFD740 0%, #F5C518 100%) !important;
  box-shadow: 0 6px 28px rgba(245,197,24,0.52) !important;
  transform: translateY(-2px) !important;
  color: #0c1835 !important;
}

/* ── Logo hover scale ─────────────────────────────── */
.nav-logo {
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1) !important;
}
.nav-logo:hover { transform: scale(1.04) !important; }

/* ── Hamburger: premium bar animation ────────────── */
.hamburger span {
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1),
              opacity 0.28s ease,
              background 0.3s ease,
              width 0.3s ease !important;
}

.hamburger:hover span { background: var(--blue) !important; }

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px) !important;
  background: var(--blue) !important;
}
.hamburger.open span:nth-child(2) {
  opacity: 0 !important;
  transform: translateX(-8px) !important;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px) !important;
  background: var(--blue) !important;
}

/* ── Mobile panel: smoother slide (transform, not right) ── */
.nav-menu {
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1) !important;
}

/* Mobile nav links: stagger animation */
.nav-menu.open li {
  animation: mobileNavSlide 0.4s ease both;
}

.nav-menu.open li:nth-child(1) { animation-delay: 0.05s; }
.nav-menu.open li:nth-child(2) { animation-delay: 0.1s;  }
.nav-menu.open li:nth-child(3) { animation-delay: 0.15s; }
.nav-menu.open li:nth-child(4) { animation-delay: 0.2s;  }
.nav-menu.open li:nth-child(5) { animation-delay: 0.25s; }
.nav-menu.open li:nth-child(6) { animation-delay: 0.3s;  }
.nav-menu.open li:nth-child(7) { animation-delay: 0.35s; }
.nav-menu.open li:nth-child(8) { animation-delay: 0.4s;  }

@keyframes mobileNavSlide {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Nav overlay: smoother fade ──────────────────── */
.nav-overlay {
  transition: opacity 0.35s ease !important;
  opacity: 0;
  pointer-events: none !important;
}
.nav-overlay.open {
  opacity: 1 !important;
  display: block !important;
  pointer-events: auto !important;
}

/* =====================================================
   PREMIUM FOOTER ENHANCEMENTS
===================================================== */

/* ── Footer: subtle grid overlay ─────────────────── */
.footer {
  position: relative;
  overflow: hidden;
}

/* Floating glow orbs */
.footer::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,109,164,0.08) 0%, transparent 70%);
  filter: blur(80px);
  top: -150px; right: -100px;
  pointer-events: none;
  z-index: 0;
  animation: orbFloat1 18s ease-in-out infinite;
}

/* Subtle dot grid on footer */
.footer .container,
.footer > div:first-child { position: relative; z-index: 1; }

/* ── Social icons: premium lift + gradient ────────── */
.social-icon {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  transition:
    background 0.35s ease,
    transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.35s ease,
    color 0.3s ease,
    border-color 0.3s ease !important;
}

.social-icon:hover {
  background: linear-gradient(135deg, #F5C518, #d4a800) !important;
  color: #0c1835 !important;
  transform: translateY(-5px) scale(1.1) !important;
  box-shadow: 0 10px 28px rgba(245,197,24,0.42) !important;
  border-color: transparent !important;
}

/* ── Footer links: yellow + indent hover ─────────── */
.footer-link {
  transition: color 0.28s ease, padding-left 0.28s ease !important;
}

.footer-link:hover {
  color: #F5C518 !important;
  padding-left: 6px !important;
}

.footer-link i {
  transition: transform 0.28s ease, color 0.28s ease !important;
}

.footer-link:hover i {
  transform: translateX(4px) !important;
  color: #FFD740 !important;
}

/* ── Contact links in footer hover ───────────────── */
.footer a[href^="tel"]:hover,
.footer a[href^="mailto"]:hover,
.footer a[href^="https://wa"]:hover {
  color: rgba(255,255,255,0.95) !important;
}

/* ── Footer stats strip: number glow on hover ─────── */
.footer [style*="font-size:1.6rem"] {
  transition: text-shadow 0.3s ease, transform 0.3s ease !important;
}

.footer [style*="border-right"] div:hover [style*="font-size:1.6rem"],
.footer [style*="padding:0 24px"]:hover [style*="1.6rem"] {
  text-shadow: 0 0 20px rgba(245,197,24,0.6) !important;
  transform: scale(1.05) !important;
}

/* ── Footer bottom: scroll reveal ────────────────── */
.footer-bottom {
  animation: footerBottomFade 0.8s ease both;
}

@keyframes footerBottomFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── WhatsApp float: premium bounce ──────────────── */
.whatsapp-float {
  transition:
    transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.35s ease !important;
}

.whatsapp-float:hover {
  transform: scale(1.14) translateY(-5px) !important;
  box-shadow: 0 14px 40px rgba(37,211,102,0.55) !important;
}

/* ── Scroll progress bar: animated shimmer ────────── */
#scroll-progress {
  background: linear-gradient(90deg, #F5C518, #16a34a, #4a8cc4, #F5C518) !important;
  background-size: 300% 100% !important;
  animation: progressShimmer 4s linear infinite !important;
}

/* =====================================================
   ABOUT HERO — PREMIUM REDESIGN
===================================================== */

/* ── Section ──────────────────────────────────────── */
.about-hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #f0f8ff 0%, #e4effe 35%, #f0f7ff 65%, #e8f2ff 100%);
  padding: 76px 0 52px; /* extra top for fixed navbar */
}

/* ── Background Layers ────────────────────────────── */
.about-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }

.about-orb { position: absolute; border-radius: 50%; filter: blur(80px); }

.about-orb-1 {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(59,130,246,0.18) 0%, transparent 70%);
  top: -150px; right: -100px;
  animation: orbFloat1 16s ease-in-out infinite;
}

.about-orb-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(245,197,24,0.14) 0%, transparent 70%);
  bottom: -100px; left: -60px;
  animation: orbFloat2 20s ease-in-out infinite;
}

.about-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(30,64,175,0.12) 0%, transparent 70%);
  top: 40%; left: 38%;
  animation: orbFloat3 14s ease-in-out infinite;
}

.about-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,64,175,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,64,175,0.045) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Particles */
.about-particles { position: absolute; inset: 0; overflow: hidden; }
.about-particles span {
  position: absolute;
  border-radius: 50%;
  animation: particleFloat linear infinite;
}
.about-particles span:nth-child(1) { width:5px;  height:5px;  left:7%;  animation-duration:14s; animation-delay:0s;   background:rgba(59,130,246,0.3);  }
.about-particles span:nth-child(2) { width:8px;  height:8px;  left:20%; animation-duration:20s; animation-delay:2s;   background:rgba(245,197,24,0.32); }
.about-particles span:nth-child(3) { width:4px;  height:4px;  left:38%; animation-duration:16s; animation-delay:4s;   background:rgba(30,64,175,0.2);   }
.about-particles span:nth-child(4) { width:6px;  height:6px;  left:58%; animation-duration:18s; animation-delay:1s;   background:rgba(96,165,250,0.28); }
.about-particles span:nth-child(5) { width:5px;  height:5px;  left:72%; animation-duration:22s; animation-delay:3s;   background:rgba(245,197,24,0.28); }
.about-particles span:nth-child(6) { width:7px;  height:7px;  left:84%; animation-duration:15s; animation-delay:5s;   background:rgba(30,64,175,0.18);  }
.about-particles span:nth-child(7) { width:4px;  height:4px;  left:47%; animation-duration:17s; animation-delay:6s;   background:rgba(59,130,246,0.22); }
.about-particles span:nth-child(8) { width:5px;  height:5px;  left:93%; animation-duration:19s; animation-delay:2.5s; background:rgba(245,197,24,0.25); }

/* ── Breadcrumb ───────────────────────────────────── */
.about-breadcrumb {
  margin-bottom: 28px;
  font-size: 0.84rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-breadcrumb a { color: var(--blue); font-weight: 500; text-decoration: none; }
.about-breadcrumb a:hover { color: #d4a800; }
.about-breadcrumb i { font-size: 0.6rem; color: #94a3b8; }
.about-breadcrumb span { color: #0f172a; font-weight: 600; }

/* ── Two-column grid ──────────────────────────────── */
.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 11fr) minmax(0, 9fr);
  gap: 56px;
  align-items: center;
}

/* ── LEFT: Content ────────────────────────────────── */
.about-hero-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  margin-bottom: 20px;
}

.about-heading-accent {
  display: block;
  background: linear-gradient(135deg, #2E6DA4, #4a8cc4 40%, #F5C518 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero-sub {
  font-size: 1.04rem;
  color: #374151;
  line-height: 1.78;
  margin-bottom: 14px;
}

.about-hero-desc {
  font-size: 0.96rem;
  color: #475569;
  line-height: 1.78;
  margin-bottom: 32px;
}

/* ── Stats row ────────────────────────────────────── */
.about-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(147,197,253,0.3);
  border-radius: 16px;
  padding: 0;
  margin-bottom: 32px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(30,64,175,0.07);
}

.about-stat {
  flex: 1;
  text-align: center;
  padding: 20px 12px;
  transition: background 0.3s ease;
}
.about-stat:hover { background: rgba(239,246,255,0.8); }

.about-stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #F5C518, #d4a800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 5px;
}

.about-stat-lbl { font-size: 0.72rem; color: #64748b; font-weight: 500; }

.about-stat-sep {
  width: 1px; height: 40px;
  background: rgba(30,64,175,0.1);
  flex-shrink: 0;
}

/* ── CTA buttons ──────────────────────────────────── */
.about-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.about-btn-primary { gap: 10px !important; font-size: 0.97rem !important; padding: 14px 26px !important; }
.about-btn-arrow { transition: transform 0.3s ease; }
.about-btn-primary:hover .about-btn-arrow { transform: translateX(5px); }

.about-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1.5px solid rgba(30,64,175,0.22);
  color: #1e3a8a;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.about-btn-ghost:hover {
  border-color: #d4a800;
  color: #92400e;
  background: rgba(245,197,24,0.09);
  transform: translateY(-2px);
}

/* ── Trust badges ─────────────────────────────────── */
.about-trust-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.about-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: #475569;
  font-weight: 500;
}
.about-trust-item i { color: #16a34a; font-size: 0.82rem; flex-shrink: 0; }

/* ── RIGHT: Dashboard Card ────────────────────────── */
.about-hero-right { position: relative; padding: 36px 16px 30px; }

/* Floating cards */
.about-float-card {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(147,197,253,0.35);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  z-index: 5;
  box-shadow: 0 8px 32px rgba(30,64,175,0.14), 0 1px 4px rgba(0,0,0,0.04);
}

.about-fc-tl { top: 6px; left: 4px; animation: floatCardA 5s ease-in-out infinite; }
.about-fc-br { bottom: 6px; right: 4px; animation: floatCardB 6.5s ease-in-out infinite; animation-delay: 1.2s; }

.about-fc-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; flex-shrink: 0;
}
.about-fci-blue  { background: rgba(46,109,164,0.15);  color: #2E6DA4; }
.about-fci-green { background: rgba(22,163,74,0.12);   color: #16a34a; }

.about-fc-val { font-size: 0.9rem; font-weight: 700; color: #0f172a; }
.about-fc-lbl { font-size: 0.66rem; color: #64748b; margin-top: 1px; }

/* Main dashboard card */
.about-dash-card {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(147,197,253,0.32);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 16px 56px rgba(30,64,175,0.14), 0 4px 12px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  animation: float 5s ease-in-out infinite;
}

.about-dash-shimmer {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2E6DA4, #4a8cc4 40%, #F5C518 70%, #4a8cc4);
  border-radius: 22px 22px 0 0;
}

/* Dash header */
.about-dash-header {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
}
.about-dash-dots { display: flex; gap: 4px; }
.about-dash-dots span { width: 8px; height: 8px; border-radius: 50%; }
.about-dash-dots span:nth-child(1) { background: #ff5f57; }
.about-dash-dots span:nth-child(2) { background: #febc2e; }
.about-dash-dots span:nth-child(3) { background: #28c840; }
.about-dash-title {
  flex: 1; font-size: 0.7rem; color: #64748b; font-weight: 500;
  display: flex; align-items: center; gap: 5px;
}
.about-dash-live {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.58rem; font-weight: 700; letter-spacing: 1px;
  color: #16a34a;
  background: rgba(22,163,74,0.1);
  border: 1px solid rgba(22,163,74,0.2);
  padding: 2px 7px; border-radius: 50px;
}
.about-dash-live span {
  width: 4px; height: 4px; background: #16a34a; border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 5px rgba(22,163,74,0.8);
}

/* KPI metrics */
.about-dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.about-dm {
  background: rgba(239,246,255,0.8);
  border: 1px solid rgba(147,197,253,0.25);
  border-radius: 10px;
  padding: 10px;
  transition: border-color 0.3s ease;
}
.about-dm:hover { border-color: rgba(245,197,24,0.3); }
.about-dm-val { font-size: 0.96rem; font-weight: 700; color: #0f172a; line-height: 1.2; }
.about-dm-lbl { font-size: 0.58rem; color: #64748b; margin-top: 3px; text-transform: uppercase; letter-spacing: 0.4px; }
.about-dm-trend { font-size: 0.65rem; font-weight: 600; color: #16a34a; margin-top: 5px; }

/* Founder strip */
.about-founder-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(46,109,164,0.07), rgba(74,140,196,0.04));
  border: 1px solid rgba(46,109,164,0.14);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 14px;
}
.about-founder-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(46,109,164,0.3);
  border: 2px solid rgba(46,109,164,0.25);
}
.about-founder-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.about-founder-info { flex: 1; }
.about-founder-name { font-size: 0.85rem; font-weight: 700; color: #0f172a; }
.about-founder-cred { font-size: 0.7rem; color: #64748b; margin-top: 2px; }
.about-award-badge {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F5C518, #d4a800);
  color: #0c1835;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  box-shadow: 0 3px 10px rgba(245,197,24,0.35);
  flex-shrink: 0;
}

/* Progress bars */
.about-prog-section { display: flex; flex-direction: column; gap: 8px; }
.about-prog-row { display: flex; align-items: center; gap: 8px; }
.about-prog-lbl { font-size: 0.62rem; color: #475569; width: 110px; flex-shrink: 0; font-weight: 500; }
.about-prog-bar {
  flex: 1; height: 5px;
  background: rgba(30,64,175,0.1);
  border-radius: 3px; overflow: hidden;
}
.about-prog-fill {
  height: 100%; border-radius: 3px; width: 0%;
  transition: width 1.8s cubic-bezier(0.4,0,0.2,1);
}
.about-pf-blue { background: linear-gradient(90deg, #2E6DA4, #4a8cc4); }
.about-pf-gold { background: linear-gradient(90deg, #d4a800, #F5C518); }
.about-prog-val { font-size: 0.62rem; color: #334155; font-weight: 700; width: 28px; text-align: right; flex-shrink: 0; }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .about-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-hero-right {
    display: block;
    padding: 8px 4px;        /* remove overflow spacing reserved for float cards */
  }
  .about-float-card { display: none; }   /* hide absolute float cards on mobile */
  .about-hero-section { padding: 64px 0 40px; }
}

@media (max-width: 640px) {
  .about-hero-section { padding: 76px 0 44px; }
  .about-cta-row { flex-direction: column; }
  .about-btn-primary, .about-btn-ghost { justify-content: center; }
  .about-stats-row { flex-wrap: wrap; }
  .about-stat { flex: 0 0 calc(50% - 0.5px); }
  .about-stat-sep:nth-child(4) { display: none; }
}

/* =====================================================
   VM — VISION & MISSION (PREMIUM REDESIGN)
===================================================== */

/* ── Section ──────────────────────────────────────── */
.vm-section {
  background: linear-gradient(160deg, #f8fbff 0%, #f0f8ff 40%, #f5f8ff 70%, #eef5ff 100%);
  position: relative;
  overflow: hidden;
}

/* Typography: make "Vision & Mission" headline premium */
.vm-section .section-title{
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.12;
}

@media (max-width: 640px){
  .vm-section .section-title{
    font-size: clamp(1.65rem, 6.2vw, 2.2rem);
    letter-spacing: -0.4px;
  }
}

/* ── Background ───────────────────────────────────── */
.vm-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.vm-bg-orb { position: absolute; border-radius: 50%; filter: blur(80px); }

.vm-orb-1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(5,29,64,0.10) 0%, transparent 70%);
  top: -80px; right: -60px;
  animation: orbFloat1 18s ease-in-out infinite;
}

.vm-orb-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(214,178,105,0.14) 0%, transparent 70%);
  bottom: -80px; left: -60px;
  animation: orbFloat2 22s ease-in-out infinite;
}

.vm-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,64,175,0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,64,175,0.038) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── Cards Grid ───────────────────────────────────── */
.vm-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

/* ── Premium Card Base ────────────────────────────── */
.vm-premium-card {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(147,197,253,0.28);
  border-radius: 24px;
  padding: 36px 32px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(30,64,175,0.08), 0 1px 4px rgba(0,0,0,0.04);
  transition:
    transform 0.42s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.42s ease,
    border-color 0.32s ease;
}

.vm-premium-card::before{
  content:'';
  position:absolute;
  inset:-2px;
  pointer-events:none;
  opacity:0;
  transform: translateX(-30%) rotate(10deg);
  transition: opacity 0.4s ease, transform 0.55s cubic-bezier(0.22,1,0.36,1);
  background: linear-gradient(110deg,
    transparent 0%,
    rgba(255,255,255,0.55) 34%,
    rgba(255,255,255,0.12) 45%,
    transparent 60%);
}

.vm-premium-card::after{
  content:'';
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:0;
  transition: opacity 0.35s ease;
}

.vm-vision::after{
  background:
    radial-gradient(700px 260px at 20% 0%, rgba(5,29,64,0.14) 0%, rgba(5,29,64,0) 60%),
    radial-gradient(420px 220px at 90% 90%, rgba(214,178,105,0.12) 0%, rgba(214,178,105,0) 60%);
}

.vm-mission::after{
  background:
    radial-gradient(700px 260px at 20% 0%, rgba(214,178,105,0.16) 0%, rgba(214,178,105,0) 60%),
    radial-gradient(420px 220px at 90% 90%, rgba(5,29,64,0.10) 0%, rgba(5,29,64,0) 60%);
}

.vm-premium-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 56px rgba(30,64,175,0.14), 0 4px 12px rgba(0,0,0,0.06);
  border-color: rgba(5,29,64,0.28);
}

.vm-vision:hover{ border-color: rgba(5,29,64,0.38); }
.vm-mission:hover{ border-color: rgba(214,178,105,0.55); }

.vm-premium-card:hover::after,
.vm-premium-card:focus-within::after{
  opacity: 1;
}

@media (hover:hover){
  .vm-premium-card:hover::before,
  .vm-premium-card:focus-within::before{
    opacity: 1;
    transform: translateX(35%) rotate(10deg);
  }
}

.vm-premium-card:focus-within{
  outline: none;
}

.vm-premium-card :focus-visible{
  outline: 2px solid rgba(5,29,64,0.55);
  outline-offset: 3px;
  border-radius: 12px;
}

/* ── Top Shimmer Line ─────────────────────────────── */
.vm-card-shimmer {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 24px 24px 0 0;
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.vm-premium-card:hover .vm-card-shimmer { transform: scaleX(1); }

.vm-shimmer-blue { background: linear-gradient(90deg, #2E6DA4, #4a8cc4 50%, #F5C518); }
.vm-shimmer-gold { background: linear-gradient(90deg, #F5C518, #d4a800 40%, #2E6DA4 80%); }

/* ── Watermark Number ─────────────────────────────── */
.vm-card-watermark {
  position: absolute;
  top: 14px; right: 22px;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -4px;
  user-select: none;
  pointer-events: none;
  color: rgba(46,109,164,0.05);
  transition: color 0.35s ease;
}

.vm-vision:hover .vm-card-watermark  { color: rgba(46,109,164,0.1); }
.vm-mission:hover .vm-card-watermark { color: rgba(245,197,24,0.1); }

/* ── Card Top Row ─────────────────────────────────── */
.vm-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

/* ── Icon ─────────────────────────────────────────── */
.vm-premium-icon {
  width: 58px; height: 58px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition:
    transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.4s ease;
}

.vm-icon-blue {
  background: linear-gradient(135deg, #2E6DA4, #4a8cc4);
  color: #ffffff;
  box-shadow: 0 6px 22px rgba(46,109,164,0.3);
}

.vm-icon-gold {
  background: linear-gradient(135deg, #F5C518, #d4a800);
  color: #0c1835;
  box-shadow: 0 6px 22px rgba(245,197,24,0.35);
}

.vm-vision:hover .vm-icon-blue  { transform: scale(1.1) rotate(-6deg); box-shadow: 0 8px 30px rgba(46,109,164,0.45); }
.vm-mission:hover .vm-icon-gold { transform: scale(1.1) rotate(-6deg); box-shadow: 0 8px 30px rgba(245,197,24,0.52); }

/* ── Badge ────────────────────────────────────────── */
.vm-card-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), filter 0.35s ease;
}

.vm-premium-card:hover .vm-card-badge,
.vm-premium-card:focus-within .vm-card-badge{
  transform: scale(1.08);
  filter: saturate(1.05);
}

.vm-badge-blue {
  background: rgba(46,109,164,0.1);
  color: #1e3a8a;
  border: 1px solid rgba(46,109,164,0.18);
}

.vm-badge-gold {
  background: rgba(245,197,24,0.14);
  color: #92400e;
  border: 1px solid rgba(245,197,24,0.28);
}


/* ── Heading & Text ───────────────────────────────── */
.vm-card-heading {
  font-size: clamp(1.6rem, 2.2vw, 2.15rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 13px;
  line-height: 1.3;
}

.vm-card-text {
  font-size: 0.93rem;
  color: #374151;
  line-height: 1.78;
  margin-bottom: 20px;
}

/* ── Pillars ──────────────────────────────────────── */
.vm-card-pillars {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.vm-pillar {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.71rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  background: rgba(46,109,164,0.08);
  color: #1e4d7a;
  border: 1px solid rgba(46,109,164,0.14);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.vm-pillar:hover {
  background: rgba(245,197,24,0.12);
  border-color: rgba(245,197,24,0.28);
  color: #92400e;
}

.vm-pillar-gold {
  background: rgba(245,197,24,0.1);
  color: #92400e;
  border-color: rgba(245,197,24,0.22);
}

.vm-pillar-gold:hover {
  background: rgba(46,109,164,0.08);
  border-color: rgba(46,109,164,0.18);
  color: #1e4d7a;
}

/* ── Decorative Finance Chart ─────────────────────── */
.vm-card-deco {
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 16px;
}

.vm-deco-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 38px;
  background: rgba(239,246,255,0.7);
  border-radius: 8px;
  padding: 5px 8px 0;
}

.vm-dc-bar {
  flex: 1;
  background: rgba(46,109,164,0.28);
  border-radius: 3px 3px 0 0;
  transition: background 0.3s ease;
}

.vm-dc-active { background: linear-gradient(180deg, #2E6DA4, rgba(46,109,164,0.45)); }

.vm-vision:hover .vm-dc-bar   { background: rgba(46,109,164,0.2); }
.vm-vision:hover .vm-dc-active { background: linear-gradient(180deg, #4a8cc4, rgba(74,140,196,0.5)); }

/* ── Mission Mini KPIs ────────────────────────────── */
.vm-deco-mission { display: flex; gap: 10px; }

.vm-mini-kpi {
  flex: 1;
  background: rgba(245,197,24,0.08);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: 10px;
  padding: 10px 12px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.vm-mission:hover .vm-mini-kpi {
  background: rgba(245,197,24,0.13);
  border-color: rgba(245,197,24,0.3);
}

.vm-kpi-val   { font-size: 1rem;   font-weight: 700; color: #0f172a; }
.vm-kpi-lbl   { font-size: 0.6rem; color: #64748b;   margin-top: 2px; text-transform: uppercase; letter-spacing: 0.4px; }
.vm-kpi-trend { font-size: 0.64rem; font-weight: 600; color: #16a34a; margin-top: 4px; }

/* ── Core Values Strip ────────────────────────────── */
.vm-values-strip {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(147,197,253,0.28);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(30,64,175,0.06);
}

.vm-value {
  flex: 1;
  text-align: center;
  padding: 20px 14px;
  transition: background 0.3s ease;
  cursor: default;
}

.vm-value:hover { background: rgba(239,246,255,0.8); }

.vm-value-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(46,109,164,0.08);
  border: 1px solid rgba(46,109,164,0.14);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: #2E6DA4;
  margin: 0 auto 10px;
  transition:
    background 0.35s ease,
    transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.35s ease,
    color 0.3s ease;
}

.vm-value:hover .vm-value-icon {
  background: linear-gradient(135deg, #F5C518, #d4a800);
  color: #0c1835;
  box-shadow: 0 6px 18px rgba(245,197,24,0.38);
  transform: scale(1.12) rotate(-6deg);
}

.vm-value-lbl {
  font-size: 0.78rem;
  font-weight: 600;
  color: #374151;
  transition: color 0.3s ease;
}

.vm-value:hover .vm-value-lbl { color: #0f172a; }

.vm-value-sep {
  width: 1px; height: 40px;
  background: rgba(30,64,175,0.08);
  flex-shrink: 0;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 768px) {
  .vm-cards-grid { grid-template-columns: 1fr; }
  .vm-values-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 14px;
    gap: 0;
  }
  .vm-value-sep { display: none; }
  .vm-value { border-bottom: 1px solid rgba(30,64,175,0.07); }
  .vm-value:nth-child(5),
  .vm-value:nth-child(6) { border-bottom: none; }
}

@media (max-width: 480px) {
  .vm-values-strip { grid-template-columns: repeat(2, 1fr); }
  .vm-premium-card { padding: 28px 22px; }
  .vm-card-heading { font-size: clamp(1.25rem, 4.8vw, 1.65rem); }
}

@media (hover:none){
  .vm-premium-card:hover{
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce){
  .vm-premium-card,
  .vm-premium-card::before,
  .vm-premium-card::after,
  .vm-premium-icon,
  .vm-card-shimmer{
    transition: none !important;
    animation: none !important;
  }
  .vm-premium-card:hover{
    transform: none;
  }
}

/* =====================================================
   FS — FOUNDER STORY (PREMIUM REDESIGN)
===================================================== */

/* ── Section ──────────────────────────────────────── */
.fs-section {
  background: linear-gradient(160deg, #f0f8ff 0%, #e8f3ff 40%, #f5f8ff 65%, #eef5ff 100%);
  position: relative;
  overflow: hidden;
}

/* ── Background ───────────────────────────────────── */
.fs-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.fs-orb { position: absolute; border-radius: 50%; filter: blur(80px); }

.fs-orb-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(46,109,164,0.12) 0%, transparent 70%);
  top: -120px; left: -80px;
  animation: orbFloat2 18s ease-in-out infinite;
}

.fs-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,197,24,0.1) 0%, transparent 70%);
  bottom: -100px; right: -60px;
  animation: orbFloat1 22s ease-in-out infinite;
}

.fs-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,64,175,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,64,175,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── Two-Column Grid ──────────────────────────────── */
.fs-grid {
  display: grid;
  grid-template-columns: minmax(0, 9fr) minmax(0, 11fr);
  gap: 56px;
  align-items: start;
}

/* ── LEFT: Founder Visual ─────────────────────────── */
.fs-left { position: relative; padding: 44px 16px 36px; }

/* Floating credential cards */
.fs-float-card {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(147,197,253,0.32);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(30,64,175,0.12), 0 1px 4px rgba(0,0,0,0.04);
  z-index: 5;
}

.fs-fc-1 { top: 6px;  left: 0px; animation: floatCardA 5s ease-in-out infinite; }
.fs-fc-2 { bottom: 6px; right: 0px; animation: floatCardB 6.5s ease-in-out infinite; animation-delay: 1.2s; }

.fs-fc-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; flex-shrink: 0;
}

.fs-fci-yellow { background: rgba(245,197,24,0.18); color: #d97706; }
.fs-fci-blue   { background: rgba(46,109,164,0.15);  color: #2E6DA4; }

.fs-fc-val { font-size: 0.9rem; font-weight: 700; color: #0f172a; }
.fs-fc-lbl { font-size: 0.65rem; color: #64748b; margin-top: 1px; }

/* ── Founder Card ─────────────────────────────────── */
.fs-founder-card {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(147,197,253,0.3);
  border-radius: 22px;
  padding: 28px 24px 22px;
  text-align: center;
  box-shadow: 0 12px 48px rgba(30,64,175,0.12), 0 2px 8px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
  animation: float 5s ease-in-out infinite;
}

.fs-founder-shimmer {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2E6DA4, #4a8cc4 40%, #F5C518);
  border-radius: 22px 22px 0 0;
}

/* Avatar */
.fs-avatar-wrap {
  position: relative;
  width: 200px; height: 200px;
  margin: 0 auto 16px;
}

.fs-avatar-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(46,109,164,0.25);
  animation: vsBadgePulse 3.5s ease-in-out infinite;
}

.fs-avatar {
  width: 200px; height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2E6DA4, #4a8cc4);
  color: #ffffff;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 6px 24px rgba(46,109,164,0.35);
}

.fs-name       { font-size: 1rem;    font-weight: 700; color: #0f172a; margin-bottom: 4px; }
.fs-title-role { font-size: 0.78rem; color: #64748b;   margin-bottom: 18px; }

/* Credentials */
.fs-creds { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; text-align: left; }

.fs-cred {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(239,246,255,0.8);
  border: 1px solid rgba(147,197,253,0.22);
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #334155;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.fs-cred:hover { background: rgba(239,246,255,1); border-color: rgba(46,109,164,0.25); }
.fs-cred i { color: #2E6DA4; flex-shrink: 0; font-size: 0.82rem; }
.fs-cred span { line-height: 1.35; }

/* Mini metrics row */
.fs-metrics-row {
  display: flex;
  align-items: center;
  background: rgba(239,246,255,0.7);
  border: 1px solid rgba(147,197,253,0.22);
  border-radius: 12px;
  overflow: hidden;
}

.fs-mini-metric { flex: 1; text-align: center; padding: 12px 8px; }

.fs-mm-num {
  font-size: 1.3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #F5C518, #d4a800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 3px;
}

.fs-mm-lbl { font-size: 0.65rem; color: #64748b; font-weight: 500; }

.fs-mm-sep {
  width: 1px; height: 30px;
  background: rgba(30,64,175,0.1);
  flex-shrink: 0;
}

/* ── RIGHT: Content ───────────────────────────────── */
.fs-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin: 8px 0 18px;
}

.fs-story-text p {
  font-size: 0.93rem;
  color: #374151;
  line-height: 1.78;
  margin-bottom: 12px;
}

/* Achievement Strip */
.fs-achieve-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(147,197,253,0.28);
  border-radius: 16px;
  overflow: hidden;
  margin: 22px 0 28px;
  backdrop-filter: blur(8px);
}

.fs-achieve {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 14px;
  border-right: 1px solid rgba(30,64,175,0.08);
  transition: background 0.3s ease;
}

.fs-achieve:last-child { border-right: none; }
.fs-achieve:hover { background: rgba(239,246,255,0.8); }

.fs-ai {
  width: 34px; height: 34px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem;
  flex-shrink: 0;
}

.fs-ai-blue  { background: rgba(46,109,164,0.1);  color: #2E6DA4; }
.fs-ai-yellow{ background: rgba(245,197,24,0.15);  color: #d97706; }
.fs-ai-green { background: rgba(22,163,74,0.1);    color: #16a34a; }

.fs-an {
  font-size: 1.1rem;
  font-weight: 800;
  background: linear-gradient(135deg, #F5C518, #d4a800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.fs-al { font-size: 0.64rem; color: #64748b; font-weight: 500; margin-top: 2px; }

/* ── Premium Timeline ─────────────────────────────── */
.fs-timeline { margin-bottom: 8px; }

.fs-tl-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1e3a8a;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 8px 14px;
  background: rgba(46,109,164,0.07);
  border: 1px solid rgba(46,109,164,0.14);
  border-radius: 50px;
  display: inline-flex;
}

.fs-tl-track { display: flex; flex-direction: column; gap: 0; }

.fs-tl-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.fs-tl-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 20px;
  padding-top: 18px;
}

.fs-tl-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2E6DA4, #4a8cc4);
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 3px rgba(46,109,164,0.25);
  flex-shrink: 0;
  z-index: 1;
}

.fs-dot-gold {
  background: linear-gradient(135deg, #F5C518, #d4a800);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.3), 0 0 10px rgba(245,197,24,0.4);
  animation: vsBadgePulse 2.5s ease-in-out infinite;
}

.fs-tl-line {
  width: 2px;
  flex: 1;
  min-height: 24px;
  background: linear-gradient(to bottom, rgba(46,109,164,0.3), rgba(46,109,164,0.1));
  margin: 4px 0;
}

/* Timeline card */
.fs-tl-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(147,197,253,0.25);
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 12px;
  flex: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.fs-tl-card:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 22px rgba(30,64,175,0.1);
  border-color: rgba(46,109,164,0.3);
}

.fs-tl-card h4 { font-size: 0.92rem; font-weight: 700; color: #0f172a; margin-bottom: 6px; }
.fs-tl-card p  { font-size: 0.82rem; color: #475569;  line-height: 1.65; }

.fs-tl-year {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(46,109,164,0.1);
  color: #1e3a8a;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
}

/* Gold / current year */
.fs-card-gold {
  background: linear-gradient(145deg, #fffdf0, #fffbdb);
  border-color: rgba(245,197,24,0.28);
}

.fs-card-gold:hover { border-color: rgba(245,197,24,0.45); }

.fs-year-gold {
  background: rgba(245,197,24,0.18);
  color: #92400e;
  border: 1px solid rgba(245,197,24,0.3);
}

/* CTA */
.fs-cta { gap: 10px !important; font-size: 0.97rem !important; }
.fs-cta-arrow { transition: transform 0.3s ease; }
.fs-cta:hover .fs-cta-arrow { transform: translateX(5px); }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .fs-grid { grid-template-columns: 1fr; gap: 40px; }
  .fs-left { display: block; padding: 20px 16px 28px; }
  .fs-float-card { display: none; }
}

@media (max-width: 640px) {
  .fs-achieve-strip { grid-template-columns: repeat(2, 1fr); }
  .fs-achieve:nth-child(2) { border-right: none; }
  .fs-achieve:nth-child(3) { border-top: 1px solid rgba(30,64,175,0.08); }
  .fs-achieve:nth-child(4) { border-top: 1px solid rgba(30,64,175,0.08); border-right: none; }
  .fs-tl-card { padding: 12px 14px; }
}

/* =====================================================
   HTL — HORIZONTAL JOURNEY TIMELINE (PREMIUM)
===================================================== */

/* ── Section ──────────────────────────────────────── */
.htl-section {
  background: linear-gradient(160deg, #f0f8ff 0%, #e8f3ff 40%, #f5f8ff 65%, #eef5ff 100%);
  position: relative;
  overflow: hidden;
}

/* ── Background ───────────────────────────────────── */
.htl-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.htl-orb { position: absolute; border-radius: 50%; filter: blur(80px); }

.htl-orb-1 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(46,109,164,0.12) 0%, transparent 70%);
  top: -100px; left: -80px;
  animation: orbFloat2 18s ease-in-out infinite;
}

.htl-orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(245,197,24,0.12) 0%, transparent 70%);
  bottom: -100px; right: -60px;
  animation: orbFloat1 22s ease-in-out infinite;
}

.htl-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,64,175,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,64,175,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Particles */
.htl-particles { position: absolute; inset: 0; overflow: hidden; }
.htl-particles span {
  position: absolute;
  border-radius: 50%;
  animation: particleFloat linear infinite;
}
.htl-particles span:nth-child(1) { width:5px;  height:5px;  left:10%; animation-duration:14s; animation-delay:0s;   background:rgba(59,130,246,0.28);  }
.htl-particles span:nth-child(2) { width:7px;  height:7px;  left:28%; animation-duration:20s; animation-delay:2s;   background:rgba(245,197,24,0.32);  }
.htl-particles span:nth-child(3) { width:4px;  height:4px;  left:48%; animation-duration:16s; animation-delay:4s;   background:rgba(30,64,175,0.2);    }
.htl-particles span:nth-child(4) { width:6px;  height:6px;  left:65%; animation-duration:18s; animation-delay:1s;   background:rgba(96,165,250,0.26);  }
.htl-particles span:nth-child(5) { width:5px;  height:5px;  left:80%; animation-duration:22s; animation-delay:3s;   background:rgba(245,197,24,0.28);  }
.htl-particles span:nth-child(6) { width:4px;  height:4px;  left:92%; animation-duration:15s; animation-delay:5s;   background:rgba(30,64,175,0.18);   }

/* ── Wrapper ──────────────────────────────────────── */
.htl-wrap {
  position: relative;
  padding-bottom: 72px; /* space: year-badge(32) + gap(12) + node-radius(8) + margin(20) */
  margin-bottom: 36px;
}

/* ── Connecting Line (at node level) ──────────────── */
.htl-line-track {
  position: absolute;
  bottom: 48px; /* year(32px) + node-radius(8px) + margin(8px) = 48px */
  left: calc(12.5% - 4px);  /* center of 1st column minus half-node */
  right: calc(12.5% - 4px);
  height: 4px;
  background: rgba(30,64,175,0.1);
  border-radius: 4px;
  overflow: hidden;
}

.htl-line-fill {
  height: 100%;
  width: 0%;
  border-radius: 4px;
  background: linear-gradient(90deg, #2E6DA4, #4a8cc4 35%, #16a34a 65%, #F5C518);
  transition: width 2.4s cubic-bezier(0.4,0,0.2,1);
}

/* Moving dots along the line */
.htl-line-dots { position: absolute; inset: -3px 0; }

.htl-ld {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #F5C518;
  box-shadow: 0 0 10px rgba(245,197,24,0.9);
  top: 50%;
  transform: translateY(-50%);
  animation: prcDotMove 5s linear infinite;
  opacity: 0;
  display: none;
}

.htl-dots-active .htl-ld { display: block; }

/* ── Items Grid ───────────────────────────────────── */
.htl-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: end; /* nodes all align at bottom */
}

/* ── Individual Item ──────────────────────────────── */
.htl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px;
  /* stagger reveal */
  opacity: 0;
  transform: translateY(24px);
}

.htl-item.htl-visible {
  animation: htlItemReveal 0.6s ease calc(var(--hi) * 0.18s) both;
}

@keyframes htlItemReveal {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Card ─────────────────────────────────────────── */
.htl-card {
  width: 100%;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(147,197,253,0.3);
  border-radius: 20px;
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(30,64,175,0.08), 0 1px 4px rgba(0,0,0,0.04);
  transition:
    transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.4s ease,
    border-color 0.3s ease;
  min-height: 190px;
  display: flex;
  flex-direction: column;
}

.htl-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(30,64,175,0.16), 0 4px 12px rgba(0,0,0,0.07);
  border-color: rgba(46,109,164,0.3);
}

/* Gold featured card */
.htl-card-gold {
  background: linear-gradient(145deg, #fffdf0, #fffbdb) !important;
  border-color: rgba(245,197,24,0.28) !important;
  box-shadow: 0 6px 30px rgba(245,197,24,0.18), 0 2px 8px rgba(0,0,0,0.04) !important;
}

.htl-card-gold:hover {
  box-shadow: 0 22px 56px rgba(245,197,24,0.22), 0 4px 12px rgba(0,0,0,0.06) !important;
  border-color: rgba(245,197,24,0.45) !important;
}

/* Top accent line */
.htl-card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}

.htl-card:hover .htl-card-accent { transform: scaleX(1); }

.htl-accent-blue { background: linear-gradient(90deg, #2E6DA4, #4a8cc4 50%, #F5C518); }
.htl-accent-teal { background: linear-gradient(90deg, #0891b2, #06b6d4 50%, #4a8cc4); }
.htl-accent-gold { background: linear-gradient(90deg, #F5C518, #FFD740 50%, #d4a800); }

/* Watermark number */
.htl-card-num {
  position: absolute;
  top: 12px; right: 16px;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -3px;
  color: rgba(46,109,164,0.06);
  user-select: none;
  transition: color 0.3s ease;
}

.htl-cn-gold { color: rgba(245,197,24,0.1) !important; }
.htl-card:hover .htl-card-num  { color: rgba(46,109,164,0.1); }
.htl-card-gold:hover .htl-card-num { color: rgba(245,197,24,0.15) !important; }

/* Icon */
.htl-card-icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease;
}

.htl-ci-blue {
  background: linear-gradient(135deg, #2E6DA4, #4a8cc4);
  color: #ffffff;
  box-shadow: 0 5px 16px rgba(46,109,164,0.28);
}

.htl-ci-teal {
  background: linear-gradient(135deg, #0891b2, #06b6d4);
  color: #ffffff;
  box-shadow: 0 5px 16px rgba(8,145,178,0.28);
}

.htl-ci-gold {
  background: linear-gradient(135deg, #F5C518, #d4a800);
  color: #0c1835;
  box-shadow: 0 5px 16px rgba(245,197,24,0.38);
}

.htl-card:hover .htl-card-icon { transform: scale(1.1) rotate(-5deg); }
.htl-ci-blue:hover { box-shadow: 0 7px 22px rgba(46,109,164,0.45); }
.htl-ci-gold:hover { box-shadow: 0 7px 22px rgba(245,197,24,0.55); }

/* Title & Description */
.htl-card-title {
  font-size: 0.94rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.35;
}

.htl-card-desc {
  font-size: 0.82rem;
  color: #475569;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 10px;
}

/* Tag pill */
.htl-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(46,109,164,0.08);
  color: #1e4d7a;
  border: 1px solid rgba(46,109,164,0.15);
  margin-top: auto;
}

.htl-tag-gold {
  background: rgba(245,197,24,0.14);
  color: #92400e;
  border-color: rgba(245,197,24,0.28);
}

/* ── Vertical Connector (card → node) ─────────────── */
.htl-vert-conn {
  width: 2px;
  height: 28px;
  flex-shrink: 0;
}

.htl-vc-blue { background: linear-gradient(to bottom, rgba(46,109,164,0.4), rgba(46,109,164,0.2)); }
.htl-vc-teal { background: linear-gradient(to bottom, rgba(8,145,178,0.4), rgba(8,145,178,0.2)); }
.htl-vc-gold { background: linear-gradient(to bottom, rgba(245,197,24,0.6), rgba(245,197,24,0.3)); }

/* ── Node Dots (on the connecting line) ───────────── */
.htl-node {
  width: 16px; height: 16px;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  z-index: 2;
}

.htl-node-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.35s ease;
}

.htl-nd-blue {
  background: linear-gradient(135deg, #2E6DA4, #4a8cc4);
  box-shadow: 0 0 0 3px rgba(46,109,164,0.18), 0 0 0 6px rgba(46,109,164,0.06);
}

.htl-nd-teal {
  background: linear-gradient(135deg, #0891b2, #06b6d4);
  box-shadow: 0 0 0 3px rgba(8,145,178,0.18), 0 0 0 6px rgba(8,145,178,0.06);
}

.htl-nd-gold {
  background: linear-gradient(135deg, #F5C518, #d4a800);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.3), 0 0 0 6px rgba(245,197,24,0.1);
  animation: vsBadgePulse 2.5s ease-in-out infinite;
}

.htl-ring-gold { border-color: rgba(245,197,24,0.4) !important; animation: bvaVsRing 2.5s ease-in-out infinite; }

.htl-item:hover .htl-node-ring {
  border-color: rgba(46,109,164,0.3);
  box-shadow: 0 0 0 8px rgba(46,109,164,0.08);
}

.htl-featured:hover .htl-nd-gold { animation-duration: 1.5s; }

/* ── Year Badge ───────────────────────────────────── */
.htl-year-wrap {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}

.htl-year-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(46,109,164,0.1);
  color: #1e3a8a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(46,109,164,0.18);
}

.htl-year-gold {
  background: rgba(245,197,24,0.2) !important;
  color: #92400e !important;
  border-color: rgba(245,197,24,0.35) !important;
  box-shadow: 0 3px 12px rgba(245,197,24,0.25);
}

/* ── Bottom Achievement Strip ─────────────────────── */
.htl-bottom-strip {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(147,197,253,0.28);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(30,64,175,0.06);
}

.htl-bs {
  flex: 1;
  text-align: center;
  padding: 22px 16px;
  border-right: 1px solid rgba(30,64,175,0.08);
  transition: background 0.3s ease;
}

.htl-bs:last-child { border-right: none; }
.htl-bs:hover { background: rgba(239,246,255,0.8); }

.htl-bs-num {
  font-size: 1.7rem;
  font-weight: 900;
  background: linear-gradient(135deg, #F5C518, #d4a800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 5px;
}

.htl-bs-lbl { font-size: 0.76rem; color: #64748b; font-weight: 500; }

.htl-bs-sep {
  width: 1px; height: 40px;
  background: rgba(30,64,175,0.08);
  flex-shrink: 0;
  display: none;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .htl-items { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .htl-line-track { display: none; }
  .htl-wrap { padding-bottom: 0; }
}

@media (max-width: 640px) {
  .htl-items { grid-template-columns: 1fr; gap: 16px; }
  .htl-card  { min-height: auto; }
  .htl-vert-conn, .htl-node, .htl-year-wrap { display: none; }
  .htl-bottom-strip { display: grid; grid-template-columns: 1fr 1fr; border-radius: 14px; }
  .htl-bs { border-right: none; border-bottom: 1px solid rgba(30,64,175,0.08); }
  .htl-bs:nth-child(odd)  { border-right: 1px solid rgba(30,64,175,0.08); }
  .htl-bs:nth-child(3), .htl-bs:nth-child(4) { border-bottom: none; }
}

/* =====================================================
   USP — WHAT MAKES US DIFFERENT (PREMIUM REDESIGN)
===================================================== */

/* ── Section ──────────────────────────────────────── */
.usp-section {
  background: linear-gradient(160deg, #f8fbff 0%, #f0f8ff 40%, #f5f8ff 70%, #eef5ff 100%);
  position: relative;
  overflow: hidden;
}

/* ── Background ───────────────────────────────────── */
.usp-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.usp-orb { position: absolute; border-radius: 50%; filter: blur(80px); }

.usp-orb-1 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(46,109,164,0.1) 0%, transparent 70%);
  top: -100px; right: -70px;
  animation: orbFloat1 18s ease-in-out infinite;
}

.usp-orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(245,197,24,0.1) 0%, transparent 70%);
  bottom: -80px; left: -60px;
  animation: orbFloat2 22s ease-in-out infinite;
}

.usp-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,64,175,0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,64,175,0.038) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── Cards Grid ───────────────────────────────────── */
.usp-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

/* ── Premium Card Base ────────────────────────────── */
.usp-pcard {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(147,197,253,0.28);
  border-radius: 22px;
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(30,64,175,0.07), 0 1px 4px rgba(0,0,0,0.04);
  transition:
    transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.4s ease,
    border-color 0.3s ease;
}

.usp-pcard:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 52px rgba(30,64,175,0.14), 0 4px 12px rgba(0,0,0,0.07);
  border-color: rgba(46,109,164,0.28);
}

/* ── Featured card (01) ───────────────────────────── */
.usp-featured {
  background: linear-gradient(145deg, #1a3a6b 0%, #2264a0 60%, #1a3a6b 100%) !important;
  border-color: rgba(74,140,196,0.4) !important;
  box-shadow: 0 8px 40px rgba(30,64,175,0.25) !important;
}

.usp-featured:hover {
  box-shadow: 0 24px 60px rgba(30,64,175,0.3) !important;
  border-color: rgba(74,140,196,0.55) !important;
}

/* ── Top Shimmer Line ─────────────────────────────── */
.usp-card-shimmer {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 22px 22px 0 0;
  transform: scaleX(0.2);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.usp-pcard:hover .usp-card-shimmer { transform: scaleX(1); }

.usp-shimmer-blue   { background: linear-gradient(90deg, #2E6DA4, #4a8cc4 50%, #F5C518); }
.usp-shimmer-green  { background: linear-gradient(90deg, #16a34a, #22c55e 50%, #4a8cc4); }
.usp-shimmer-teal   { background: linear-gradient(90deg, #0891b2, #06b6d4 50%, #2E6DA4); }
.usp-shimmer-purple { background: linear-gradient(90deg, #7c3aed, #a78bfa 50%, #2E6DA4); }
.usp-shimmer-gold   { background: linear-gradient(90deg, #F5C518, #FFD740 50%, #d4a800); }

/* ── Card Watermark Number ────────────────────────── */
.usp-card-num {
  position: absolute;
  top: 12px; right: 18px;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -3px;
  color: rgba(46,109,164,0.05);
  user-select: none;
  transition: color 0.3s ease;
}

.usp-cn-light { color: rgba(255,255,255,0.07) !important; }

.usp-pcard:hover .usp-card-num  { color: rgba(46,109,164,0.1); }
.usp-featured:hover .usp-card-num { color: rgba(255,255,255,0.1) !important; }

/* ── Icons ────────────────────────────────────────── */
.usp-picon {
  width: 54px; height: 54px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease;
}

.usp-pcard:hover .usp-picon { transform: scale(1.1) rotate(-5deg); }

.usp-pi-blue   { background: linear-gradient(135deg, #2E6DA4, #4a8cc4); color: #fff; box-shadow: 0 5px 18px rgba(46,109,164,0.3);   }
.usp-pi-green  { background: linear-gradient(135deg, #16a34a, #22c55e); color: #fff; box-shadow: 0 5px 18px rgba(22,163,74,0.3);   }
.usp-pi-teal   { background: linear-gradient(135deg, #0891b2, #06b6d4); color: #fff; box-shadow: 0 5px 18px rgba(8,145,178,0.3);   }
.usp-pi-purple { background: linear-gradient(135deg, #7c3aed, #a78bfa); color: #fff; box-shadow: 0 5px 18px rgba(124,58,237,0.3);  }
.usp-pi-gold   { background: linear-gradient(135deg, #F5C518, #d4a800); color: #0c1835; box-shadow: 0 5px 18px rgba(245,197,24,0.35); }
.usp-pi-white  { background: rgba(255,255,255,0.2); color: #F5C518; border: 1px solid rgba(255,255,255,0.25); box-shadow: 0 5px 18px rgba(0,0,0,0.15); }

.usp-pcard:hover .usp-pi-blue   { box-shadow: 0 8px 26px rgba(46,109,164,0.48); }
.usp-pcard:hover .usp-pi-green  { box-shadow: 0 8px 26px rgba(22,163,74,0.48);  }
.usp-pcard:hover .usp-pi-teal   { box-shadow: 0 8px 26px rgba(8,145,178,0.48);  }
.usp-pcard:hover .usp-pi-purple { box-shadow: 0 8px 26px rgba(124,58,237,0.48); }
.usp-pcard:hover .usp-pi-gold   { box-shadow: 0 8px 26px rgba(245,197,24,0.52); }

/* ── Typography ───────────────────────────────────── */
.usp-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.usp-featured .usp-card-title { color: #ffffff; }

.usp-pcard:hover .usp-card-title { color: #1e3a8a; }
.usp-featured:hover .usp-card-title { color: #ffffff; }

.usp-card-desc {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.72;
  flex: 1;
  margin-bottom: 16px;
}

.usp-featured .usp-card-desc { color: rgba(255,255,255,0.78); }

/* ── Tag Pills ────────────────────────────────────── */
.usp-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  background: rgba(46,109,164,0.08);
  color: #1e4d7a;
  border: 1px solid rgba(46,109,164,0.15);
  margin-top: auto;
  width: fit-content;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.usp-pcard:hover .usp-card-tag {
  background: rgba(245,197,24,0.1);
  border-color: rgba(245,197,24,0.25);
  color: #92400e;
}

.usp-tag-light {
  background: rgba(255,255,255,0.15) !important;
  color: #F5C518 !important;
  border-color: rgba(245,197,24,0.3) !important;
}

.usp-featured:hover .usp-tag-light {
  background: rgba(245,197,24,0.25) !important;
  border-color: rgba(245,197,24,0.5) !important;
}

.usp-tag-teal   { background: rgba(8,145,178,0.08);  color: #0891b2; border-color: rgba(8,145,178,0.18);   }
.usp-tag-purple { background: rgba(124,58,237,0.08); color: #7c3aed; border-color: rgba(124,58,237,0.18);  }
.usp-tag-gold   { background: rgba(245,197,24,0.1);  color: #92400e; border-color: rgba(245,197,24,0.22);  }

/* ── Bottom CTA Bar ───────────────────────────────── */
.usp-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 36px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(147,197,253,0.28);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 24px rgba(30,64,175,0.07);
  flex-wrap: wrap;
}

.usp-cta-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 5px;
}

.usp-cta-sub {
  font-size: 0.86rem;
  color: #64748b;
}

.usp-cta-right {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.usp-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  border: 1.5px solid rgba(30,64,175,0.22);
  color: #1e3a8a;
  background: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.usp-btn-outline:hover {
  border-color: #d4a800;
  color: #92400e;
  background: rgba(245,197,24,0.08);
  transform: translateY(-2px);
}

.usp-btn-primary { font-size: 0.92rem !important; padding: 12px 22px !important; gap: 8px !important; }
.usp-btn-arrow   { transition: transform 0.3s ease; }
.usp-btn-primary:hover .usp-btn-arrow { transform: translateX(5px); }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .usp-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .usp-cards-grid { grid-template-columns: 1fr; }
  .usp-cta-bar { flex-direction: column; text-align: center; }
  .usp-cta-right { width: 100%; justify-content: center; }
}

/* =====================================================
   ABOUT CTA — "OUR PROMISE" CARD (different from homepage)
===================================================== */

/* ── About CTA: LIGHT BLUE theme — matches page color ─ */

/* Light blue gradient (slightly richer than other sections for distinction) */
.about-cta-section .pcta-bg {
  background: linear-gradient(150deg, #e0eeff 0%, #d0e7ff 35%, #e6f0ff 65%, #d8eaff 100%);
}

/* Orbs — visible on light bg */
.about-cta-section .pcta-orb-1 {
  background: radial-gradient(circle, rgba(22,163,74,0.14) 0%, transparent 70%);
}
.about-cta-section .pcta-orb-2 {
  background: radial-gradient(circle, rgba(245,197,24,0.16) 0%, transparent 70%);
}
.about-cta-section .pcta-orb-3 {
  background: radial-gradient(circle, rgba(30,64,175,0.12) 0%, transparent 70%);
}

/* Grid — dark lines visible on light */
.about-cta-section .pcta-grid-overlay {
  background-image:
    linear-gradient(rgba(30,64,175,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,64,175,0.05) 1px, transparent 1px) !important;
}

/* Particles — blue/yellow visible on light */
.about-cta-section .pcta-particles span:nth-child(odd)  { background: rgba(59,130,246,0.28)  !important; }
.about-cta-section .pcta-particles span:nth-child(even) { background: rgba(245,197,24,0.3)    !important; }

/* Badge — amber on light */
.about-cta-section .pcta-badge {
  background: rgba(245,197,24,0.18) !important;
  border-color: rgba(245,197,24,0.38) !important;
  color: #92400e !important;
}
.about-cta-section .pcta-badge-dot { background: #d97706 !important; }

/* Heading — dark on light */
.about-cta-section .pcta-heading { color: #0f172a !important; }

.about-cta-section .pcta-heading-accent {
  background: linear-gradient(135deg, #d4a800, #F5C518) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Sub — dark gray */
.about-cta-section .pcta-sub { color: #334155 !important; }

/* Ghost button — dark on light */
.about-cta-section .pcta-btn-ghost {
  border-color: rgba(30,64,175,0.22) !important;
  color: #1e3a8a !important;
  background: rgba(255,255,255,0.6) !important;
}
.about-cta-section .pcta-btn-ghost:hover {
  border-color: #d4a800 !important;
  color: #92400e !important;
  background: rgba(245,197,24,0.1) !important;
}

/* Trust items — dark on light */
.about-cta-section .pcta-trust-item { color: #475569 !important; }
.about-cta-section .pcta-trust-item i { color: #16a34a !important; }

/* Metrics bottom strip — white glass on light */
.about-cta-section .pcta-metrics {
  background: rgba(255,255,255,0.82) !important;
  border-color: rgba(147,197,253,0.3) !important;
  box-shadow: 0 4px 24px rgba(30,64,175,0.08) !important;
}
.about-cta-section .pcta-metric {
  border-right-color: rgba(30,64,175,0.08) !important;
}
.about-cta-section .pcta-metric:hover { background: rgba(239,246,255,0.8) !important; }
.about-cta-section .pcta-m-lbl { color: #64748b !important; }

/* Right side stats/promise card — white glass on light */
.about-cta-section .pcta-stats-card {
  background: rgba(255,255,255,0.88) !important;
  border-color: rgba(147,197,253,0.35) !important;
  box-shadow: 0 16px 56px rgba(30,64,175,0.14), 0 4px 12px rgba(0,0,0,0.05) !important;
  animation: float 5s ease-in-out infinite !important;
}
.about-cta-section .pcta-sc-title { color: #64748b !important; }

/* Float cards — white glass on light */
.about-cta-section .pcta-float-card {
  background: rgba(255,255,255,0.92) !important;
  border-color: rgba(147,197,253,0.35) !important;
  box-shadow: 0 8px 32px rgba(30,64,175,0.14) !important;
}
.about-cta-section .pcta-fc-val { color: #0f172a !important; }
.about-cta-section .pcta-fc-lbl { color: #64748b !important; }

/* Promise items inside card — light bg friendly */
.about-cta-section .about-promise-item {
  background: rgba(239,246,255,0.8) !important;
  border-color: rgba(147,197,253,0.22) !important;
}
.about-cta-section .about-promise-item:hover {
  background: rgba(239,246,255,1) !important;
  border-color: rgba(22,163,74,0.25) !important;
}
.about-cta-section .about-pi-title { color: #0f172a !important; }
.about-cta-section .about-pi-sub   { color: #64748b !important; }

/* Promise metrics row */
.about-cta-section .about-promise-metrics {
  background: rgba(239,246,255,0.7) !important;
  border-color: rgba(147,197,253,0.22) !important;
}
.about-cta-section .about-pm-lbl { color: #64748b !important; }

/* Live badge — green on light */
.about-cta-section .pcta-sc-live {
  color: #16a34a !important;
  background: rgba(22,163,74,0.1) !important;
  border-color: rgba(22,163,74,0.2) !important;
}
.about-cta-section .pcta-sc-live span {
  background: #16a34a !important;
}

/* Promise card content */
.about-promise-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.about-promise-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.about-promise-item:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(22,163,74,0.2);
}

.about-pi-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #ffffff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(22,163,74,0.3);
}

.about-pi-gold {
  background: linear-gradient(135deg, #F5C518, #d4a800) !important;
  color: #0c1835 !important;
  box-shadow: 0 3px 10px rgba(245,197,24,0.35) !important;
}

.about-pi-title {
  font-size: 0.84rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.about-pi-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

/* Mini metrics row inside promise card */
.about-promise-metrics {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
}

.about-pm {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  transition: background 0.3s ease;
}

.about-pm:hover { background: rgba(255,255,255,0.08); }

.about-pm-num {
  font-size: 1.15rem;
  font-weight: 900;
  background: linear-gradient(135deg, #F5C518, #d4a800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 3px;
}

.about-pm-lbl { font-size: 0.6rem; color: rgba(255,255,255,0.42); font-weight: 500; }

.about-pm-sep {
  width: 1px; height: 30px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
}

/* =====================================================
   SVC HERO — SERVICES PAGE PREMIUM HERO
===================================================== */

/* ── Section ──────────────────────────────────────── */
.svc-hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #f0f8ff 0%, #e4effe 35%, #f0f7ff 65%, #e8f2ff 100%);
  padding: 90px 0 60px;
}

/* ── Background ───────────────────────────────────── */
.svc-hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.svc-hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); }

.svc-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.18) 0%, transparent 70%);
  top: -150px; right: -100px;
  animation: orbFloat1 16s ease-in-out infinite;
}
.svc-orb-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(245,197,24,0.14) 0%, transparent 70%);
  bottom: -100px; left: -60px;
  animation: orbFloat2 20s ease-in-out infinite;
}
.svc-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(30,64,175,0.12) 0%, transparent 70%);
  top: 40%; left: 38%;
  animation: orbFloat3 14s ease-in-out infinite;
}

.svc-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30,64,175,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,64,175,0.045) 1px, transparent 1px);
  background-size: 60px 60px;
}

.svc-hero-particles { position: absolute; inset: 0; overflow: hidden; }
.svc-hero-particles span {
  position: absolute; border-radius: 50%;
  animation: particleFloat linear infinite;
}
.svc-hero-particles span:nth-child(1) { width:5px;  height:5px;  left:7%;  animation-duration:14s; animation-delay:0s;   background:rgba(59,130,246,0.28);  }
.svc-hero-particles span:nth-child(2) { width:7px;  height:7px;  left:22%; animation-duration:20s; animation-delay:2s;   background:rgba(245,197,24,0.32);  }
.svc-hero-particles span:nth-child(3) { width:4px;  height:4px;  left:40%; animation-duration:16s; animation-delay:4s;   background:rgba(30,64,175,0.2);    }
.svc-hero-particles span:nth-child(4) { width:6px;  height:6px;  left:60%; animation-duration:18s; animation-delay:1s;   background:rgba(96,165,250,0.28);  }
.svc-hero-particles span:nth-child(5) { width:5px;  height:5px;  left:74%; animation-duration:22s; animation-delay:3s;   background:rgba(245,197,24,0.28);  }
.svc-hero-particles span:nth-child(6) { width:6px;  height:6px;  left:85%; animation-duration:15s; animation-delay:5s;   background:rgba(30,64,175,0.18);   }
.svc-hero-particles span:nth-child(7) { width:4px;  height:4px;  left:48%; animation-duration:17s; animation-delay:6s;   background:rgba(59,130,246,0.22);  }
.svc-hero-particles span:nth-child(8) { width:5px;  height:5px;  left:93%; animation-duration:19s; animation-delay:2.5s; background:rgba(245,197,24,0.25);  }

/* ── Breadcrumb ───────────────────────────────────── */
.svc-breadcrumb {
  margin-bottom: 28px;
  font-size: 0.84rem; color: #64748b;
  display: flex; align-items: center; gap: 8px;
}
.svc-breadcrumb a { color: var(--blue); font-weight: 500; text-decoration: none; }
.svc-breadcrumb a:hover { color: #d4a800; }
.svc-breadcrumb i { font-size: 0.6rem; color: #94a3b8; }
.svc-breadcrumb span { color: #0f172a; font-weight: 600; }

/* ── 2-Column Layout ──────────────────────────────── */
.svc-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 11fr) minmax(0, 9fr);
  gap: 52px;
  align-items: center;
}

/* ── Heading ──────────────────────────────────────── */
.svc-hero-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  margin-bottom: 18px;
}
.svc-heading-accent {
  display: block;
  background: linear-gradient(135deg, #2E6DA4, #4a8cc4 40%, #F5C518 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.svc-hero-sub {
  font-size: 1.04rem;
  color: #374151;
  line-height: 1.78;
  margin-bottom: 26px;
  max-width: 540px;
}

/* ── Service Pills ────────────────────────────────── */
.svc-hero-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.svc-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 50px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(46,109,164,0.2);
  color: #1e4d7a;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: all 0.28s ease;
}

.svc-pill:hover {
  background: var(--blue);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(46,109,164,0.3);
}

.svc-pill-teal:hover { background: #0891b2; box-shadow: 0 6px 18px rgba(8,145,178,0.3); }
.svc-pill-gold:hover  { background: linear-gradient(135deg, #F5C518, #d4a800); color: #0c1835; box-shadow: 0 6px 18px rgba(245,197,24,0.35); }

/* ── Stats ────────────────────────────────────────── */
.svc-hero-stats {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(147,197,253,0.3);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
  width: fit-content;
}
.svc-hs { text-align: center; padding: 14px 20px; }
.svc-hs-num {
  font-size: 1.5rem; font-weight: 900;
  background: linear-gradient(135deg, #F5C518, #d4a800);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.svc-hs-lbl { font-size: 0.68rem; color: #64748b; font-weight: 500; margin-top: 3px; }
.svc-hs-sep { width: 1px; height: 30px; background: rgba(30,64,175,0.1); flex-shrink: 0; }

/* ── Trust ────────────────────────────────────────── */
.svc-hero-trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 26px;
  font-size: 0.8rem;
  color: #475569;
  font-weight: 500;
}
.svc-hero-trust i { color: #16a34a; margin-right: 4px; }

/* CTA */
.svc-hero-cta { gap: 10px !important; font-size: 0.97rem !important; }
.svc-cta-arrow { transition: transform 0.3s ease; }
.svc-hero-cta:hover .svc-cta-arrow { transform: translateX(5px); }

/* ── RIGHT: Services Overview Card ───────────────── */
.svc-hero-right { position: relative; padding: 36px 10px 30px; }

/* Floating cards */
.svc-float-card {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(147,197,253,0.32);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(30,64,175,0.12);
  z-index: 5;
}
.svc-fc-top    { top: 4px;  left: 0; animation: floatCardA 5s ease-in-out infinite; }
.svc-fc-bottom { bottom: 4px; right: 0; animation: floatCardB 6.5s ease-in-out infinite; animation-delay:1.2s; }

.svc-fc-icon {
  width: 34px; height: 34px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; flex-shrink: 0;
  background: rgba(46,109,164,0.15); color: #2E6DA4;
}
.svc-fci-gold { background: rgba(245,197,24,0.18); color: #d97706; }
.svc-fc-val { font-size: 0.9rem; font-weight: 700; color: #0f172a; }
.svc-fc-lbl { font-size: 0.65rem; color: #64748b; margin-top: 1px; }

/* Main overview card */
.svc-overview-card {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(147,197,253,0.3);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 12px 48px rgba(30,64,175,0.12), 0 2px 8px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
  animation: float 5s ease-in-out infinite;
}
.svc-oc-shimmer {
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; border-radius: 22px 22px 0 0;
  background: linear-gradient(90deg, #2E6DA4, #4a8cc4 40%, #F5C518);
}

.svc-oc-header {
  display: flex; align-items: center; gap: 9px; margin-bottom: 16px;
}
.svc-oc-dots { display: flex; gap: 4px; }
.svc-oc-dots span { width: 8px; height: 8px; border-radius: 50%; }
.svc-oc-dots span:nth-child(1) { background: #ff5f57; }
.svc-oc-dots span:nth-child(2) { background: #febc2e; }
.svc-oc-dots span:nth-child(3) { background: #28c840; }
.svc-oc-title {
  flex: 1; font-size: 0.7rem; color: #64748b; font-weight: 500;
  display: flex; align-items: center; gap: 5px;
}
.svc-oc-badge {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 1px;
  color: #2E6DA4;
  background: rgba(46,109,164,0.1);
  border: 1px solid rgba(46,109,164,0.18);
  padding: 2px 8px; border-radius: 50px;
}
.svc-oc-badge span {
  width: 4px; height: 4px; background: #2E6DA4; border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

/* ── 3×2 Icon Grid ────────────────────────────────── */
.svc-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.svc-ig-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 8px;
  background: rgba(239,246,255,0.7);
  border: 1px solid rgba(147,197,253,0.22);
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), background 0.25s ease, box-shadow 0.3s ease, border-color 0.25s ease;
}

.svc-ig-item:hover {
  transform: translateY(-5px) scale(1.03);
  background: rgba(255,255,255,0.95);
  box-shadow: 0 8px 24px rgba(30,64,175,0.12);
  border-color: rgba(46,109,164,0.25);
}

.svc-ig-icon {
  width: 44px; height: 44px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
}

.svc-ig-item:hover .svc-ig-icon { transform: scale(1.12) rotate(-6deg); }

.svc-igi-blue   { background: linear-gradient(135deg, #2E6DA4, #4a8cc4); color: #fff; box-shadow: 0 4px 12px rgba(46,109,164,0.28);   }
.svc-igi-green  { background: linear-gradient(135deg, #16a34a, #22c55e); color: #fff; box-shadow: 0 4px 12px rgba(22,163,74,0.28);   }
.svc-igi-purple { background: linear-gradient(135deg, #7c3aed, #a78bfa); color: #fff; box-shadow: 0 4px 12px rgba(124,58,237,0.28);  }
.svc-igi-teal   { background: linear-gradient(135deg, #0891b2, #06b6d4); color: #fff; box-shadow: 0 4px 12px rgba(8,145,178,0.28);   }
.svc-igi-gold   { background: linear-gradient(135deg, #F5C518, #d4a800); color: #0c1835; box-shadow: 0 4px 12px rgba(245,197,24,0.35); }

.svc-ig-item:hover .svc-igi-blue   { box-shadow: 0 6px 20px rgba(46,109,164,0.45);  }
.svc-ig-item:hover .svc-igi-green  { box-shadow: 0 6px 20px rgba(22,163,74,0.45);   }
.svc-ig-item:hover .svc-igi-purple { box-shadow: 0 6px 20px rgba(124,58,237,0.45);  }
.svc-ig-item:hover .svc-igi-teal   { box-shadow: 0 6px 20px rgba(8,145,178,0.45);   }
.svc-ig-item:hover .svc-igi-gold   { box-shadow: 0 6px 20px rgba(245,197,24,0.52);  }

.svc-ig-lbl {
  font-size: 0.68rem;
  font-weight: 600;
  color: #374151;
  text-align: center;
  line-height: 1.3;
  transition: color 0.25s ease;
}

.svc-ig-item:hover .svc-ig-lbl { color: #1e3a8a; }

/* Trust row inside card */
.svc-oc-trust-row {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(30,64,175,0.07);
  padding-top: 12px;
}

.svc-oct {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.64rem;
  color: #64748b;
  font-weight: 500;
  justify-content: center;
  border-right: 1px solid rgba(30,64,175,0.07);
}

.svc-oct:last-child { border-right: none; }
.svc-oct i { color: #16a34a; font-size: 0.7rem; }

/* ── SERVICE TABS — PREMIUM ───────────────────────── */
.svc-tabs-section {
  background: rgba(255,255,255,0.85);
  border-top: 1px solid rgba(147,197,253,0.25);
  border-bottom: 1px solid rgba(147,197,253,0.25);
  padding: 0;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(30,64,175,0.06);
}

.svc-tabs-premium {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
}

.svc-tabs-premium::-webkit-scrollbar { display: none; }

.svc-tab-p {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 18px 20px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  border-right: 1px solid rgba(30,64,175,0.06);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.svc-tab-p:hover {
  color: var(--blue);
  background: rgba(46,109,164,0.04);
  border-bottom-color: var(--blue);
}

.svc-tab-p i { font-size: 0.82rem; }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .svc-hero-layout { grid-template-columns: 1fr; gap: 32px; }
  .svc-hero-right {
    display: block;
    padding: 8px 4px;
  }
  .svc-float-card { display: none; }
  .svc-hero-section { padding: 80px 0 44px; }
}

@media (max-width: 640px) {
  .svc-hero-section { padding: 68px 0 36px; }
  .svc-hero-cta { width: 100%; justify-content: center; }
  .svc-hero-trust { gap: 12px; }
}

/* =====================================================
   SD — PREMIUM SERVICE DETAIL (Virtual CFO etc.)
===================================================== */

/* ── Section background enhancement ──────────────── */
.sd-premium {
  background: linear-gradient(160deg, #f8fbff 0%, #f0f8ff 50%, #f5f8ff 100%);
  border-radius: 24px;
  padding: 56px 48px !important;
  margin-bottom: 24px;
  border: 1px solid rgba(147,197,253,0.2) !important;
  box-shadow: 0 4px 32px rgba(30,64,175,0.06);
  position: relative;
  overflow: hidden;
}

.sd-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,64,175,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,64,175,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ── Badge ────────────────────────────────────────── */
.sd-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.sd-badge-icon {
  width: 26px; height: 26px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
}

.sd-badge-blue {
  background: rgba(46,109,164,0.09);
  border: 1px solid rgba(46,109,164,0.2);
  color: #1e3a8a;
}

.sd-badge-blue .sd-badge-icon {
  background: linear-gradient(135deg, #2E6DA4, #4a8cc4);
  color: #ffffff;
}

/* ── Heading ──────────────────────────────────────── */
.sd-heading { color: #0f172a !important; margin-bottom: 16px !important; }

/* ── Description ──────────────────────────────────── */
.sd-desc {
  font-size: 0.94rem;
  color: #374151;
  line-height: 1.78;
  margin-bottom: 12px;
}

/* ── Problems & Benefits Cards ────────────────────── */
.sd-problems-card,
.sd-benefits-card {
  border-radius: 16px;
  padding: 16px 18px;
  margin-top: 18px;
}

.sd-problems-card {
  background: rgba(254,242,242,0.8);
  border: 1px solid rgba(239,68,68,0.15);
}

.sd-benefits-card {
  background: rgba(240,253,244,0.8);
  border: 1px solid rgba(22,163,74,0.18);
}

.sd-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
}

.sd-label-red   { color: #dc2626; }
.sd-label-green { color: #16a34a; }

/* ── List Items ───────────────────────────────────── */
.sd-list { display: flex; flex-direction: column; gap: 8px; }

.sd-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #374151;
  font-weight: 500;
  padding: 6px 0;
  transition: transform 0.25s ease;
}

.sd-list-item:hover { transform: translateX(4px); }

.sd-li-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem;
  flex-shrink: 0;
}

.sd-li-red   { background: rgba(239,68,68,0.12);  color: #dc2626; border: 1px solid rgba(239,68,68,0.2);  }
.sd-li-green { background: linear-gradient(135deg, #16a34a, #22c55e); color: #fff; box-shadow: 0 2px 8px rgba(22,163,74,0.28); }

/* ── CTA Row ──────────────────────────────────────── */
.sd-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.sd-btn-primary { gap: 9px !important; }
.sd-btn-arrow   { transition: transform 0.3s ease; }
.sd-btn-primary:hover .sd-btn-arrow { transform: translateX(5px); }

.sd-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1.5px solid rgba(30,64,175,0.22);
  color: #1e3a8a;
  background: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.sd-btn-ghost:hover {
  border-color: #d4a800;
  color: #92400e;
  background: rgba(245,197,24,0.09);
  transform: translateY(-2px);
}

/* ── Right: Visual Wrap ───────────────────────────── */
.sd-visual-wrap { position: relative; padding: 36px 12px 30px; }

/* Floating cards */
.sd-float-card {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(147,197,253,0.32);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(30,64,175,0.12);
  z-index: 5;
}

.sd-fc-top    { top: 4px;  left: 0; animation: floatCardA 5s ease-in-out infinite; }
.sd-fc-bottom { bottom: 4px; right: 0; animation: floatCardB 6.5s ease-in-out infinite; animation-delay: 1.2s; }

.sd-fc-icon {
  width: 32px; height: 32px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; flex-shrink: 0;
}

.sd-fci-blue { background: rgba(46,109,164,0.15); color: #2E6DA4; }
.sd-fci-gold { background: rgba(245,197,24,0.18); color: #d97706; }

.sd-fc-val { font-size: 0.88rem; font-weight: 700; color: #0f172a; }
.sd-fc-lbl { font-size: 0.64rem; color: #64748b; margin-top: 1px; }

/* ── Main Dashboard Card ──────────────────────────── */
.sd-dash-card {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(147,197,253,0.3);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 12px 48px rgba(30,64,175,0.12), 0 2px 8px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
  animation: float 5s ease-in-out infinite;
}

.sd-dash-shimmer {
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; border-radius: 22px 22px 0 0;
  background: linear-gradient(90deg, #2E6DA4, #4a8cc4 40%, #F5C518);
}

.sd-dash-header {
  display: flex; align-items: center; gap: 9px; margin-bottom: 14px;
}

.sd-dash-dots { display: flex; gap: 4px; }
.sd-dash-dots span { width: 8px; height: 8px; border-radius: 50%; }
.sd-dash-dots span:nth-child(1) { background: #ff5f57; }
.sd-dash-dots span:nth-child(2) { background: #febc2e; }
.sd-dash-dots span:nth-child(3) { background: #28c840; }

.sd-dash-title {
  flex: 1; font-size: 0.7rem; color: #64748b; font-weight: 500;
  display: flex; align-items: center; gap: 5px;
}

.sd-dash-live {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.58rem; font-weight: 700; letter-spacing: 1px;
  color: #16a34a;
  background: rgba(22,163,74,0.1);
  border: 1px solid rgba(22,163,74,0.2);
  padding: 2px 7px; border-radius: 50px;
}

.sd-dash-live span {
  width: 4px; height: 4px; background: #16a34a; border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 5px rgba(22,163,74,0.8);
}

/* KPI row */
.sd-kpi-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px; margin-bottom: 14px;
}

.sd-kpi {
  background: rgba(239,246,255,0.8);
  border: 1px solid rgba(147,197,253,0.25);
  border-radius: 10px; padding: 10px;
  transition: border-color 0.3s ease;
}

.sd-kpi:hover { border-color: rgba(245,197,24,0.3); }

.sd-kpi-val  { font-size: 0.96rem; font-weight: 700; color: #0f172a; line-height: 1.2; }
.sd-kpi-lbl  { font-size: 0.58rem; color: #64748b; margin-top: 3px; text-transform: uppercase; letter-spacing: 0.4px; }
.sd-kpi-trend { font-size: 0.64rem; font-weight: 600; color: #16a34a; margin-top: 4px; }

/* Includes checklist */
.sd-includes { margin-bottom: 12px; }

.sd-incl-title {
  font-size: 0.7rem; font-weight: 700; color: #64748b;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px;
}

.sd-incl-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
}

.sd-incl-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.78rem; color: #334155; font-weight: 500;
  padding: 6px 8px;
  background: rgba(239,246,255,0.6);
  border-radius: 8px;
}

.sd-incl-item i { color: #16a34a; font-size: 0.7rem; flex-shrink: 0; }

/* Progress bars */
.sd-progress-section { border-top: 1px solid rgba(0,0,0,0.05); padding-top: 12px; display: flex; flex-direction: column; gap: 8px; }

.sd-prog-row { display: flex; align-items: center; gap: 8px; }
.sd-prog-lbl { font-size: 0.62rem; color: #475569; width: 110px; flex-shrink: 0; font-weight: 500; }
.sd-prog-bar { flex: 1; height: 5px; background: rgba(30,64,175,0.1); border-radius: 3px; overflow: hidden; }
.sd-prog-fill { height: 100%; border-radius: 3px; width: 0%; transition: width 1.8s cubic-bezier(0.4,0,0.2,1); }
.sd-pf-blue { background: linear-gradient(90deg, #2E6DA4, #4a8cc4); }
.sd-pf-gold { background: linear-gradient(90deg, #d4a800, #F5C518); }
.sd-prog-val { font-size: 0.62rem; color: #334155; font-weight: 700; width: 28px; text-align: right; flex-shrink: 0; }

/* ── Green accent extensions (Month-end) ──────────── */

/* Reversed layout — visual on LEFT */
.sd-reverse {
  direction: rtl; /* flip the grid */
}
.sd-reverse > * { direction: ltr; } /* restore text direction */

.sd-visual-left { position: relative; padding: 36px 12px 30px; }

/* Green badge */
.sd-badge-green {
  background: rgba(22,163,74,0.09) !important;
  border-color: rgba(22,163,74,0.22) !important;
  color: #166534 !important;
}
.sd-badge-icon-green {
  background: linear-gradient(135deg, #16a34a, #22c55e) !important;
  color: #ffffff !important;
}

/* Green icon colors */
.sd-fci-green { background: rgba(22,163,74,0.15); color: #16a34a; }

/* Green dashboard shimmer & card */
.sd-dash-green .sd-dash-shimmer,
.sd-shimmer-green {
  background: linear-gradient(90deg, #16a34a, #22c55e 50%, #F5C518) !important;
}

/* Green LIVE badge */
.sd-live-green {
  color: #16a34a !important;
  background: rgba(22,163,74,0.1) !important;
  border-color: rgba(22,163,74,0.22) !important;
}
.sd-live-dot-green {
  width: 4px; height: 4px;
  background: #16a34a; border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 5px rgba(22,163,74,0.8);
  display: inline-block;
  margin-right: 3px;
}

/* Month tracker */
.sd-month-grid { margin-bottom: 14px; }

.sd-month-label {
  font-size: 0.62rem; color: #64748b; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.sd-months {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 5px;
}

.sd-month {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 0.6rem;
  font-weight: 600;
  padding: 6px 4px;
  border-radius: 8px;
  transition: transform 0.25s ease;
}

.sd-month:hover { transform: scale(1.06); }

.sd-month i { font-size: 0.55rem; }

.sd-m-done {
  background: rgba(22,163,74,0.1);
  color: #16a34a;
  border: 1px solid rgba(22,163,74,0.2);
}

.sd-m-active {
  background: rgba(245,197,24,0.15);
  color: #d97706;
  border: 1px solid rgba(245,197,24,0.3);
  animation: pulse 2s ease-in-out infinite;
}

.sd-m-pending {
  background: rgba(30,64,175,0.05);
  color: #94a3b8;
  border: 1px solid rgba(30,64,175,0.08);
}

/* Green KPI and progress variants */
.sd-kpi-green { background: rgba(240,253,244,0.9); border-color: rgba(22,163,74,0.2); }
.sd-kpi-green:hover { border-color: rgba(22,163,74,0.35); }

.sd-trend-green { color: #16a34a !important; }

.sd-pf-green { background: linear-gradient(90deg, #16a34a, #22c55e); }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .sd-premium { padding: 40px 28px !important; border-radius: 16px; }
  .sd-visual-wrap, .sd-visual-left { display: none; }
  .sd-reverse { direction: ltr; }
}

@media (max-width: 640px) {
  .sd-premium { padding: 28px 20px !important; }
  .sd-cta-row { flex-direction: column; }
  .sd-incl-grid { grid-template-columns: 1fr; }
}

/* ── Purple (Audit & Tax) ─────────────────────────── */
.sd-badge-purple { background: rgba(124,58,237,0.09) !important; border-color: rgba(124,58,237,0.22) !important; color: #5b21b6 !important; }
.sd-badge-icon-purple { background: linear-gradient(135deg, #7c3aed, #a78bfa) !important; color: #fff !important; }
.sd-fci-purple { background: rgba(124,58,237,0.15); color: #7c3aed; }
.sd-dash-purple .sd-dash-shimmer,
.sd-shimmer-purple { background: linear-gradient(90deg, #7c3aed, #a78bfa 50%, #F5C518) !important; }
.sd-live-purple { color: #7c3aed !important; background: rgba(124,58,237,0.1) !important; border-color: rgba(124,58,237,0.22) !important; }
.sd-live-dot-purple { width:4px; height:4px; background:#7c3aed; border-radius:50%; animation:pulse 1.5s ease-in-out infinite; box-shadow:0 0 5px rgba(124,58,237,0.8); display:inline-block; margin-right:3px; }
.sd-pf-purple { background: linear-gradient(90deg, #7c3aed, #a78bfa); }

/* Compliance list */
.sd-compliance-list { display: flex; flex-direction: column; gap: 7px; margin-bottom: 12px; }
.sd-comp-item { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 10px; transition: transform 0.25s ease; }
.sd-comp-item:hover { transform: translateX(4px); }
.sd-comp-done  { background: rgba(240,253,244,0.8); border: 1px solid rgba(22,163,74,0.15); }
.sd-comp-active { background: rgba(254,252,232,0.8); border: 1px solid rgba(245,197,24,0.25); }
.sd-comp-icon { width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, #16a34a, #22c55e); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.66rem; flex-shrink: 0; }
.sd-comp-icon-yellow { background: linear-gradient(135deg, #d97706, #F5C518) !important; color: #0c1835 !important; }
.sd-comp-text { flex: 1; }
.sd-comp-title { font-size: 0.8rem; font-weight: 600; color: #0f172a; }
.sd-comp-sub   { font-size: 0.66rem; color: #64748b; margin-top: 1px; }
.sd-comp-status { font-size: 0.62rem; font-weight: 700; padding: 2px 8px; border-radius: 50px; }
.sd-cs-green { background: rgba(22,163,74,0.12); color: #16a34a; border: 1px solid rgba(22,163,74,0.2); }
.sd-cs-yellow{ background: rgba(245,197,24,0.15); color: #d97706; border: 1px solid rgba(245,197,24,0.28); }

/* ── Teal (Process Optimization) ─────────────────── */
.sd-badge-teal { background: rgba(8,145,178,0.09) !important; border-color: rgba(8,145,178,0.22) !important; color: #0e7490 !important; }
.sd-badge-icon-teal { background: linear-gradient(135deg, #0891b2, #06b6d4) !important; color: #fff !important; }
.sd-fci-teal { background: rgba(8,145,178,0.15); color: #0891b2; }
.sd-dash-teal .sd-dash-shimmer,
.sd-shimmer-teal { background: linear-gradient(90deg, #0891b2, #06b6d4 50%, #16a34a) !important; }
.sd-live-teal { color: #0891b2 !important; background: rgba(8,145,178,0.1) !important; border-color: rgba(8,145,178,0.22) !important; }
.sd-live-dot-teal { width:4px; height:4px; background:#0891b2; border-radius:50%; animation:pulse 1.5s ease-in-out infinite; box-shadow:0 0 5px rgba(8,145,178,0.8); display:inline-block; margin-right:3px; }
.sd-pf-teal { background: linear-gradient(90deg, #0891b2, #06b6d4); }

/* Before/After comparison */
.sd-ba-compare { display: grid; grid-template-columns: 1fr 20px 1fr; gap: 8px; margin-bottom: 12px; }
.sd-ba-col { display: flex; flex-direction: column; gap: 6px; }
.sd-ba-label { font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #dc2626; margin-bottom: 2px; }
.sd-ba-label-green { color: #16a34a !important; }
.sd-ba-divider { width: 1px; background: linear-gradient(to bottom, transparent, rgba(30,64,175,0.2), transparent); align-self: stretch; margin: 0 auto; }
.sd-ba-item { display: flex; align-items: center; gap: 7px; font-size: 0.76rem; font-weight: 500; padding: 5px 8px; border-radius: 8px; }
.sd-bai-red   { background: rgba(254,242,242,0.9); color: #dc2626; border: 1px solid rgba(239,68,68,0.12); }
.sd-bai-green { background: rgba(240,253,244,0.9); color: #16a34a; border: 1px solid rgba(22,163,74,0.15); }
.sd-bai-red i, .sd-bai-green i { font-size: 0.64rem; flex-shrink: 0; }

/* ── Gold (Special Projects) ──────────────────────── */
.sd-badge-gold-strong { background: rgba(245,197,24,0.14) !important; border-color: rgba(245,197,24,0.32) !important; color: #92400e !important; }
.sd-badge-icon-gold { background: linear-gradient(135deg, #F5C518, #d4a800) !important; color: #0c1835 !important; }
.sd-dash-gold .sd-dash-shimmer,
.sd-shimmer-gold { background: linear-gradient(90deg, #F5C518, #d4a800 40%, #2E6DA4) !important; }
.sd-live-gold { color: #d97706 !important; background: rgba(245,197,24,0.12) !important; border-color: rgba(245,197,24,0.28) !important; }
.sd-live-dot-gold { width:4px; height:4px; background:#F5C518; border-radius:50%; animation:pulse 1.5s ease-in-out infinite; box-shadow:0 0 5px rgba(245,197,24,0.8); display:inline-block; margin-right:3px; }

/* ── Left-side project cards grid (Service 6 content) ─ */
.sd-projects-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 18px 0; }
.sd-proj-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(147,197,253,0.25);
  border-radius: 14px; padding: 14px;
  display: flex; flex-direction: column; gap: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.sd-proj-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(30,64,175,0.1);
  border-color: rgba(46,109,164,0.28);
}
.sd-proj-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.sd-proj-card:hover .sd-proj-icon { transform: scale(1.1) rotate(-5deg); }
.sd-pi-blue   { background: linear-gradient(135deg, #2E6DA4, #4a8cc4); color: #fff; box-shadow: 0 3px 10px rgba(46,109,164,0.28);   }
.sd-pi-purple { background: linear-gradient(135deg, #7c3aed, #a78bfa); color: #fff; box-shadow: 0 3px 10px rgba(124,58,237,0.28);  }
.sd-pi-teal   { background: linear-gradient(135deg, #0891b2, #06b6d4); color: #fff; box-shadow: 0 3px 10px rgba(8,145,178,0.28);   }
.sd-pi-gold   { background: linear-gradient(135deg, #F5C518, #d4a800); color: #0c1835; box-shadow: 0 3px 10px rgba(245,197,24,0.35); }
.sd-proj-title { font-size: 0.85rem; font-weight: 700; color: #0f172a; }
.sd-proj-desc  { font-size: 0.74rem; color: #64748b; line-height: 1.4; }

/* Dashboard project grid (right visual) */
.sd-proj-dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.sd-pd-item {
  background: rgba(239,246,255,0.8); border: 1px solid rgba(147,197,253,0.22);
  border-radius: 10px; padding: 12px;
  display: flex; flex-direction: column; gap: 6px; align-items: flex-start;
  transition: border-color 0.25s ease;
}
.sd-pd-item:hover { border-color: rgba(245,197,24,0.3); }
.sd-pd-label { font-size: 0.8rem; font-weight: 700; color: #0f172a; }
.sd-pd-tag   { font-size: 0.62rem; color: #64748b; background: rgba(255,255,255,0.7); border: 1px solid rgba(30,64,175,0.1); padding: 2px 8px; border-radius: 50px; }

/* ── Fade Animation Enhancement ───────────────────── */
.fade-in-up {
  transition-duration: 0.8s;
}

.service-card.fade-in-up.visible,
.testimonial-card.fade-in-up.visible {
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1),
              transform 0.8s cubic-bezier(0.4,0,0.2,1);
}

/* =====================================================
   PREMIUM COMPARISON SECTION — Virtual CFO vs Traditional
===================================================== */

/* ── SECTION WRAPPER ──────────────────────────────── */
.vcfo-compare-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #f0f8ff 0%, #e8f3ff 35%, #f5f8ff 65%, #eef5ff 100%);
}

.vcfo-compare-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.vcfo-decor-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}

.vcfo-decor-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(46,109,164,0.1) 0%, transparent 70%);
  top: -120px; right: -120px;
  animation: orbFloat1 16s ease-in-out infinite;
}

.vcfo-decor-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,197,24,0.1) 0%, transparent 70%);
  bottom: -80px; left: -60px;
  animation: orbFloat2 20s ease-in-out infinite;
}

.vcfo-decor-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,64,175,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,64,175,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.vcfo-compare-section .container { position: relative; z-index: 1; }

.compare-heading-old { color: #374151; }
.compare-heading-vs  { color: #94a3b8; font-weight: 400; font-style: italic; margin: 0 6px; }
.compare-heading-new { color: #1e3a8a; }

/* ── TABLE OUTER CARD ─────────────────────────────── */
.cmp-table {
  background: #ffffff;
  border-radius: 24px;
  border: 1.5px solid rgba(46,109,164,0.14);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.03),
    0 16px 56px rgba(30,64,175,0.09);
  overflow: hidden;
  margin-bottom: 40px;
}

/* Shared 3-column grid used by header, each row, and footer */
.cmp-thead,
.cmp-trow,
.cmp-tfoot {
  display: grid;
  grid-template-columns: 40% 30% 30%;
  align-items: stretch;
}

/* ── COLUMN HEADERS ───────────────────────────────── */
.cmp-thead {
  border-bottom: 2px solid rgba(46,109,164,0.1);
}

.cmp-th-feature {
  padding: 26px 20px;
  background: #f8faff;
  border-right: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.cmp-th-feature-label {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: none;
  color: #1e293b;
}

.cmp-th {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 28px 16px 22px;
  text-align: center;
  gap: 8px;
  position: relative;
}

.cmp-th-trad {
  background: #fafafa;
  border-right: 1px solid rgba(0,0,0,0.06);
}

/* Virtual CFO column — premium dark-blue header */
.cmp-th-vcfo {
  background: linear-gradient(165deg, #152e5a 0%, #1e3a8a 50%, #2E6DA4 100%);
}

/* "Recommended" ribbon at the very top of the VCO column */
.cmp-th-recommended {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #16a34a, #22c55e);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 0 0 10px 10px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}

.cmp-th-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.cmp-th-icon-red  { background: #fee2e2; color: #dc2626; }
.cmp-th-icon-blue {
  background: rgba(255,255,255,0.18);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.28);
}

.cmp-th-name {
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.25;
}

.cmp-th-trad .cmp-th-name { color: #374151; }
.cmp-th-vcfo .cmp-th-name { color: #ffffff; }

.cmp-th-tags {
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.cmp-th-trad .cmp-th-tags { color: #94a3b8; }
.cmp-th-vcfo .cmp-th-tags { color: rgba(255,255,255,0.55); }

/* ── BODY ROWS ────────────────────────────────────── */
.cmp-tbody { display: flex; flex-direction: column; }

.cmp-trow {
  border-bottom: 1px solid rgba(0,0,0,0.048);
  /* Scroll-reveal: start hidden, slide in from left */
  opacity: 0;
  transform: translateX(-14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.cmp-trow.row-visible {
  opacity: 1;
  transform: translateX(0);
  transition-delay: calc(var(--stagger) * 0.07s);
}

.cmp-trow:last-child { border-bottom: none; }

/* Zebra striping — feature + traditional cells only */
.cmp-trow:nth-child(even) .cmp-td-feature,
.cmp-trow:nth-child(even) .cmp-td-trad {
  background: #f8faff;
}

/* VCO column always has a blue tint — even rows get slightly deeper */
.cmp-trow:nth-child(even) .cmp-td-vcfo {
  background: rgba(46,109,164,0.07);
}

/* Hover: highlight entire row */
.cmp-trow:hover .cmp-td-feature,
.cmp-trow:hover .cmp-td-trad {
  background: #eef4ff;
  transition: background 0.18s ease;
}

.cmp-trow:hover .cmp-td-vcfo {
  background: rgba(46,109,164,0.12);
  transition: background 0.18s ease;
}

/* Feature label cell */
.cmp-td-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border-right: 1px solid rgba(0,0,0,0.05);
  transition: background 0.18s ease;
}

.cmp-feat-icon {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: #2E6DA4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.cmp-td-feature > span:last-child {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.4;
}

/* Value cells */
.cmp-td {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 12px;
  transition: background 0.18s ease;
}

.cmp-td-trad {
  border-right: 1px solid rgba(0,0,0,0.05);
}

/* VCO column base tint — creates the visual "column" effect */
.cmp-td-vcfo {
  background: rgba(46,109,164,0.045);
}

/* ── INDICATOR PILLS ──────────────────────────────── */
.cmp-pip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0.76rem;
  font-weight: 700;
  border-radius: 50px;
  padding: 6px 12px;
  min-width: 38px;
  white-space: nowrap;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
}

.cmp-trow:hover .cmp-pip { transform: scale(1.08); }

/* Soft green check — Traditional "yes" */
.cmp-pip-yes {
  background: rgba(22,163,74,0.1);
  color: #16a34a;
  border: 1px solid rgba(22,163,74,0.22);
}

/* Solid green — Virtual CFO "yes" */
.cmp-pip-yes-strong {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(22,163,74,0.3);
}

/* Red X — not available */
.cmp-pip-no {
  background: rgba(239,68,68,0.08);
  color: #dc2626;
  border: 1px solid rgba(239,68,68,0.18);
}

/* Amber — partial / limited */
.cmp-pip-limited {
  background: rgba(245,158,11,0.1);
  color: #d97706;
  border: 1px solid rgba(245,158,11,0.22);
}

/* ── TABLE FOOTER SUMMARY ─────────────────────────── */
.cmp-tfoot {
  border-top: 2px solid rgba(46,109,164,0.1);
}

.cmp-tf-feature {
  background: #f8faff;
  border-right: 1px solid rgba(0,0,0,0.06);
  padding: 16px 24px;
}

.cmp-tf-trad {
  background: #fafafa;
  border-right: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 14px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ef4444;
}

.cmp-tf-vcfo {
  background: rgba(46,109,164,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 14px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1e3a8a;
}

/* ── CTA STRIP ────────────────────────────────────── */
.cmp-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: linear-gradient(145deg, #0c1835 0%, #1a3a6b 50%, #0c1835 100%);
  border-radius: 20px;
  padding: 30px 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.cmp-cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(245,197,24,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.cmp-cta-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.cmp-cta-left { position: relative; z-index: 1; }

.cmp-cta-heading {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.cmp-cta-trust { display: flex; gap: 20px; flex-wrap: wrap; }

.cmp-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

.cmp-trust-item i { color: #4ade80; font-size: 0.82rem; }

.cmp-cta-btn {
  font-size: 0.97rem;
  padding: 16px 32px;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.cmp-btn-arrow { transition: transform 0.3s ease; }
.cmp-cta-btn:hover .cmp-btn-arrow { transform: translateX(6px); }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
  .cmp-thead,
  .cmp-trow,
  .cmp-tfoot { grid-template-columns: 46% 27% 27%; }

  .cmp-cta-strip { flex-direction: column; text-align: center; padding: 28px 24px; }
  .cmp-cta-trust { justify-content: center; }
}

@media (max-width: 768px) {
  .cmp-thead,
  .cmp-trow,
  .cmp-tfoot { grid-template-columns: 1fr 80px 104px; }

  .cmp-th-tags         { display: none; }
  .cmp-th-name         { font-size: 0.8rem; }
  .cmp-th-icon         { width: 38px; height: 38px; font-size: 1rem; }
  .cmp-th-feature,
  .cmp-td-feature      { padding: 13px 16px; gap: 8px; }
  .cmp-td-feature > span:last-child { font-size: 0.82rem; }
  .cmp-feat-icon       { width: 26px; height: 26px; font-size: 0.72rem; border-radius: 6px; }
  .cmp-td              { padding: 13px 8px; }
  .cmp-pip             { padding: 5px 9px; font-size: 0.72rem; min-width: 32px; }
  .cmp-tf-feature      { padding: 14px 16px; }
  .cmp-cta-strip       { border-radius: 16px; }
}

@media (max-width: 480px) {
  .cmp-thead,
  .cmp-trow,
  .cmp-tfoot { grid-template-columns: 1fr 66px 88px; }

  .cmp-th-recommended  { font-size: 0.56rem; padding: 3px 10px; }
  .cmp-td-feature > span:last-child { font-size: 0.76rem; }
  .cmp-pip             { font-size: 0.68rem; padding: 4px 7px; min-width: 28px; }
  .cmp-cta-btn         { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════
   INDUSTRIES WE SERVE — PREMIUM REDESIGN
═══════════════════════════════════════════════════════════════ */

/* ── Section wrapper ── */
.ind-section {
  position: relative;
  padding: 60px 0 48px;
  background: linear-gradient(180deg, #f4f8fd 0%, #ffffff 50%, #f0f6ff 100%);
  overflow: hidden;
}

/* ── Background decorations ── */
.ind-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ind-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.ind-orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(46,109,164,0.13) 0%, transparent 70%);
  top: -200px;
  left: -150px;
  animation: ind-orb-drift 20s ease-in-out infinite;
}

.ind-orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,197,24,0.11) 0%, transparent 70%);
  bottom: -150px;
  right: -100px;
  animation: ind-orb-drift 24s ease-in-out infinite reverse;
}

.ind-orb-3 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(124,58,237,0.07) 0%, transparent 70%);
  top: 40%;
  left: 55%;
  transform: translate(-50%, -50%);
  animation: ind-orb-drift 16s ease-in-out 3s infinite;
}

@keyframes ind-orb-drift {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(28px, -18px); }
  66%       { transform: translate(-18px, 28px); }
}

.ind-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46,109,164,0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,109,164,0.032) 1px, transparent 1px);
  background-size: 52px 52px;
}

/* ── Section header ── */
.ind-header {
  text-align: center;
  margin-bottom: 56px;
}

.ind-heading {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.2;
}

.ind-heading-accent {
  position: relative;
  color: var(--blue);
  display: inline-block;
}

.ind-heading-accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--yellow));
  border-radius: 3px;
  transform-origin: left;
  transform: scaleX(0);
  animation: ind-underline 1.1s cubic-bezier(0.4,0,0.2,1) forwards 0.5s;
}

@keyframes ind-underline {
  to { transform: scaleX(1); }
}

.ind-subtitle {
  color: var(--gray);
  font-size: 1.02rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.72;
}

/* ── Cards grid ── */
.ind-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

/* ── Base card (hidden until revealed) ── */
.ind-card {
  position: relative;
  background: #ffffff;
  border: 1.5px solid #e5e7eb;
  border-radius: 20px;
  padding: 28px 22px 22px;
  cursor: pointer;
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.3s ease, box-shadow 0.35s ease;
}

/* ── Revealed state ── */
.ind-card.ind-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hover state ── */
.ind-card:hover {
  transform: translateY(-10px) !important;
  border-color: var(--acc);
  box-shadow: 0 20px 56px var(--acc-shadow), 0 4px 16px rgba(0,0,0,0.055);
}

/* ── Top accent bar ── */
.ind-card-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--acc);
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.ind-card:hover .ind-card-accent-bar {
  opacity: 1;
  transform: scaleX(1);
}

/* ── Radial glow overlay ── */
.ind-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, var(--acc-soft), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 20px;
}

.ind-card:hover .ind-card-glow { opacity: 1; }

/* ── Card inner (stacks above glow) ── */
.ind-card-inner { position: relative; z-index: 1; }

/* ── Icon wrap ── */
.ind-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 15px;
  background: var(--acc-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s ease;
}

.ind-icon-wrap i {
  font-size: 1.45rem;
  color: var(--acc);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

/* ── Animated ring around icon ── */
.ind-icon-ring {
  position: absolute;
  inset: -4px;
  border-radius: 19px;
  border: 2px solid var(--acc);
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.ind-card:hover .ind-icon-wrap {
  transform: scale(1.08) rotate(-5deg);
  box-shadow: 0 8px 24px var(--acc-shadow);
}

.ind-card:hover .ind-icon-wrap i { transform: scale(1.12); }

.ind-card:hover .ind-icon-ring {
  opacity: 0.35;
  transform: scale(1);
  animation: ind-ring-pulse 1.9s ease-in-out infinite;
}

@keyframes ind-ring-pulse {
  0%, 100% { transform: scale(1);    opacity: 0.35; }
  50%       { transform: scale(1.18); opacity: 0.12; }
}

/* ── Card typography ── */
.ind-card-name {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.ind-card-desc {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.55;
  margin-bottom: 14px;
}

/* ── KPI chip ── */
.ind-card-kpi {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  background: var(--acc-bg);
  border-radius: 50px;
  transition: background 0.28s ease, transform 0.28s ease;
}

.ind-card-kpi i {
  font-size: 0.7rem;
  color: var(--acc);
  transition: color 0.2s ease;
}

.ind-kpi-val {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--acc);
  transition: color 0.2s ease;
}

.ind-kpi-lbl {
  font-size: 0.72rem;
  color: var(--gray);
  font-weight: 500;
  transition: color 0.2s ease;
}

.ind-card:hover .ind-card-kpi { background: var(--acc); transform: translateY(-2px); }
.ind-card:hover .ind-card-kpi i,
.ind-card:hover .ind-kpi-val,
.ind-card:hover .ind-kpi-lbl  { color: #ffffff; }

/* ── Arrow button (appears on hover) ── */
.ind-card-arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--acc-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.28s ease, transform 0.28s ease, background 0.28s ease;
  z-index: 2;
}

.ind-card-arrow i {
  font-size: 0.7rem;
  color: var(--acc);
  transition: color 0.2s ease;
}

.ind-card:hover .ind-card-arrow { opacity: 1; transform: translateX(0); background: var(--acc); }
.ind-card:hover .ind-card-arrow i { color: #ffffff; }

/* ── Bottom CTA strip ── */
.ind-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 32px;
  background: linear-gradient(135deg, rgba(46,109,164,0.05) 0%, rgba(245,197,24,0.05) 100%);
  border: 1.5px solid rgba(46,109,164,0.14);
  border-radius: 16px;
  flex-wrap: wrap;
}

.ind-cta-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--dark);
}

.ind-cta-text i { color: var(--blue); font-size: 1rem; }

.ind-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: var(--blue);
  color: #ffffff;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.ind-cta-btn:hover {
  background: var(--blue-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(46,109,164,0.3);
}

.ind-cta-btn-arrow { transition: transform 0.25s ease; }
.ind-cta-btn:hover .ind-cta-btn-arrow { transform: translateX(4px); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .ind-cards-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .ind-section { padding: 52px 0 40px; }
  .ind-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .ind-header { margin-bottom: 40px; }
  .ind-cta-strip { flex-direction: column; text-align: center; padding: 20px 24px; }
  .ind-cta-text  { justify-content: center; }
  .ind-cta-btn   { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .ind-cards-grid { grid-template-columns: 1fr; }
  .ind-card { padding: 24px 18px 18px; }
}

/* ═══════════════════════════════════════════════════════════════
   CASE STUDIES — PREMIUM REDESIGN
═══════════════════════════════════════════════════════════════ */

/* ── Section ── */
.cs-section {
  position: relative;
  padding: 60px 0 48px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 40%, #f0f6ff 100%);
  overflow: hidden;
}

/* ── Background decorations ── */
.cs-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.cs-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.cs-orb-1 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(46,109,164,0.1) 0%, transparent 70%);
  top: -250px;
  right: -200px;
  animation: cs-orb-move 22s ease-in-out infinite;
}

.cs-orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,197,24,0.09) 0%, transparent 70%);
  bottom: -150px;
  left: -100px;
  animation: cs-orb-move 28s ease-in-out infinite reverse;
}

@keyframes cs-orb-move {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(30px, -25px); }
  66%       { transform: translate(-20px, 20px); }
}

.cs-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46,109,164,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,109,164,0.03) 1px, transparent 1px);
  background-size: 52px 52px;
}

/* ── Section header ── */
.cs-header {
  text-align: center;
  margin-bottom: 64px;
}

.cs-heading {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.2;
}

.cs-heading-accent {
  position: relative;
  color: var(--blue);
  display: inline-block;
}

.cs-heading-accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--yellow));
  border-radius: 3px;
  transform-origin: left;
  transform: scaleX(0);
  animation: cs-underline 1.1s cubic-bezier(0.4,0,0.2,1) forwards 0.5s;
}

@keyframes cs-underline {
  to { transform: scaleX(1); }
}

.cs-subtitle {
  color: var(--gray);
  font-size: 1.02rem;
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.72;
}

/* ── Trust stats bar ── */
.cs-trust-bar {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 16px 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  flex-wrap: wrap;
  justify-content: center;
}

.cs-ts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0 28px;
}

.cs-ts-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.cs-ts-denom {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray);
}

.cs-ts-lbl {
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 500;
}

.cs-ts-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Grid ── */
.cs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

/* ── Individual card ── */
.cs-card {
  border-radius: 22px;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.cs-card.cs-revealed {
  opacity: 1;
  transform: translateY(0);
}

.cs-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.14), 0 0 0 1px rgba(var(--cs-acc-rgb),0.25);
  transform: translateY(-6px);
}

/* ── Card top (dark gradient header) ── */
.cs-card-top {
  background: var(--cs-top);
  padding: 28px 28px 22px;
  position: relative;
  overflow: hidden;
}

/* Animated shimmer sweep */
.cs-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.04) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: cs-shimmer-sweep 4s ease-in-out infinite 1s;
  pointer-events: none;
}

@keyframes cs-shimmer-sweep {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

/* ── Meta row ── */
.cs-top-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.cs-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(var(--cs-acc-rgb), 0.18);
  color: var(--cs-acc);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid rgba(var(--cs-acc-rgb), 0.3);
}

.cs-verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  font-weight: 600;
}

.cs-verified i { color: #4ade80; }

/* ── Company name + tagline ── */
.cs-company {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.cs-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin-bottom: 20px;
}

/* ── KPI row ── */
.cs-kpis {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(0,0,0,0.2);
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.07);
}

.cs-kpi {
  flex: 1;
  text-align: center;
}

.cs-kpi-val {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--cs-acc);
  line-height: 1;
  margin-bottom: 4px;
  text-shadow: 0 0 20px rgba(var(--cs-acc-rgb), 0.4);
}

.cs-kpi-lbl {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cs-kpi-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ── Before → After transform strip ── */
.cs-transform {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,0.15);
  border-radius: 10px;
  padding: 10px 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.06);
}

.cs-tf-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cs-tf-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.cs-tf-val {
  font-size: 0.88rem;
  font-weight: 700;
}

.cs-tf-before { color: rgba(255,255,255,0.55); text-decoration: line-through; }
.cs-tf-after  { color: var(--cs-acc); }

.cs-tf-arrow {
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ── Mini animated bar chart ── */
.cs-minichart {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cs-mc-bars {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  height: 60px;
  background: rgba(0,0,0,0.18);
  border-radius: 8px;
  padding: 8px 12px 0;
  border: 1px solid rgba(255,255,255,0.05);
}

.cs-mc-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
  gap: 4px;
}

.cs-mc-bar {
  width: 100%;
  border-radius: 4px 4px 0 0;
  height: 0;
  transition: height 0.9s cubic-bezier(0.4,0,0.2,1);
}

.cs-mc-bar-b { background: rgba(255,255,255,0.18); }
.cs-mc-bar-a { background: var(--cs-acc); box-shadow: 0 -4px 16px rgba(var(--cs-acc-rgb),0.35); }

.cs-mc-lbl {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  padding-bottom: 5px;
  white-space: nowrap;
}

.cs-mc-note {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
  letter-spacing: 0.3px;
}

/* ── Card body (white area) ── */
.cs-card-body {
  background: #ffffff;
  padding: 24px 28px 26px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.cs-results-head {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  margin-bottom: 14px;
}

.cs-results-head i { color: #22c55e; }

.cs-results {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

/* ── Result items (stagger in via JS) ── */
.cs-result {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--dark);
  font-weight: 500;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cs-result.cs-result-in {
  opacity: 1;
  transform: translateX(0);
}

.cs-result i {
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 0.75rem;
}

/* ── Bottom CTA strip ── */
.cs-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 36px;
  background: linear-gradient(135deg, #0f2744 0%, #1a3a5c 100%);
  border-radius: 18px;
  flex-wrap: wrap;
  box-shadow: 0 8px 40px rgba(15,39,68,0.25);
}

.cs-cta-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cs-cta-star {
  font-size: 1.5rem;
  color: var(--yellow);
  flex-shrink: 0;
  animation: cs-star-pulse 2.5s ease-in-out infinite;
}

@keyframes cs-star-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.15); opacity: 0.8; }
}

.cs-cta-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3px;
}

.cs-cta-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

.cs-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--yellow);
  color: var(--dark);
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
}

.cs-cta-btn:hover {
  background: var(--yellow-dark);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,197,24,0.4);
}

.cs-cta-arrow { transition: transform 0.22s ease; }
.cs-cta-btn:hover .cs-cta-arrow { transform: translateX(4px); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .cs-grid { grid-template-columns: 1fr; }
  .cs-trust-bar { gap: 0; }
  .cs-ts { padding: 8px 18px; }
}

@media (max-width: 640px) {
  .cs-section { padding: 52px 0 40px; }
  .cs-header { margin-bottom: 40px; }
  .cs-trust-bar { flex-direction: column; padding: 12px 20px; border-radius: 12px; }
  .cs-ts-sep { width: 60px; height: 1px; }
  .cs-card-top { padding: 22px 20px 18px; }
  .cs-card-body { padding: 20px 20px 22px; }
  .cs-kpis { padding: 12px 14px; }
  .cs-kpi-val { font-size: 1.45rem; }
  .cs-cta-strip { flex-direction: column; padding: 22px 24px; text-align: center; border-radius: 14px; }
  .cs-cta-left { flex-direction: column; text-align: center; gap: 10px; }
  .cs-cta-btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════
   WHY CHOOSE US — PREMIUM REDESIGN
═══════════════════════════════════════════════════════════════ */

/* ── Section ── */
.wcu-section {
  position: relative;
  padding: 60px 0 48px;
  background: linear-gradient(180deg, #f4f8fd 0%, #ffffff 50%, #f0f6ff 100%);
  overflow: hidden;
}

/* ── Background ── */
.wcu-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.wcu-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.wcu-orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(46,109,164,0.12) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  animation: wcu-drift 20s ease-in-out infinite;
}

.wcu-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,197,24,0.1) 0%, transparent 70%);
  bottom: -120px;
  right: -100px;
  animation: wcu-drift 26s ease-in-out infinite reverse;
}

.wcu-orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.07) 0%, transparent 70%);
  top: 45%;
  left: 55%;
  transform: translate(-50%, -50%);
  animation: wcu-drift 17s ease-in-out 4s infinite;
}

@keyframes wcu-drift {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(24px, -18px); }
  66%       { transform: translate(-18px, 24px); }
}

.wcu-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46,109,164,0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,109,164,0.032) 1px, transparent 1px);
  background-size: 52px 52px;
}

/* ── Section label (uses shared .section-label, no override needed) ── */
.wcu-badge {
  background: rgba(46,109,164,0.07) !important;
  color: var(--blue) !important;
  border-color: rgba(46,109,164,0.18) !important;
}

/* ── Section header ── */
.wcu-header {
  text-align: center;
  margin-bottom: 60px;
}

.wcu-heading {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.25;
}

.wcu-accent {
  position: relative;
  color: var(--blue);
  display: inline-block;
}

.wcu-accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--yellow));
  border-radius: 3px;
  transform-origin: left;
  transform: scaleX(0);
  animation: wcu-underline 1.1s cubic-bezier(0.4,0,0.2,1) forwards 0.5s;
}

@keyframes wcu-underline {
  to { transform: scaleX(1); }
}

.wcu-subtitle {
  color: var(--gray);
  font-size: 1.02rem;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.72;
}

/* ── Achievement pill strip ── */
.wcu-achievements {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 16px 24px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.wcu-ach {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 0 22px;
}

.wcu-ach-num {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}

.wcu-ach-lbl {
  font-size: 0.7rem;
  color: var(--gray);
  font-weight: 500;
  white-space: nowrap;
}

.wcu-ach-sep {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Cards grid ── */
.wcu-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}

/* ── Individual card ── */
.wcu-card {
  position: relative;
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 30px 24px 24px;
  overflow: hidden;
  cursor: default;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease,
              border-color 0.3s ease, box-shadow 0.35s ease,
              background 0.3s ease;
}

.wcu-card.wcu-revealed {
  opacity: 1;
  transform: translateY(0);
}

.wcu-card:hover {
  background: #fafcff;
  border-color: rgba(var(--wcu-acc-rgb), 0.4);
  box-shadow:
    0 16px 48px rgba(0,0,0,0.08),
    0 0 0 1px rgba(var(--wcu-acc-rgb), 0.12),
    0 0 32px rgba(var(--wcu-acc-rgb), 0.06);
  transform: translateY(-7px) !important;
}

/* Radial glow on hover */
.wcu-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 0%, rgba(var(--wcu-acc-rgb), 0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 18px;
}

.wcu-card:hover .wcu-card-glow { opacity: 1; }

/* Left accent bar — grows in on reveal */
.wcu-card-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--wcu-acc), rgba(var(--wcu-acc-rgb), 0));
  border-radius: 0 2px 2px 0;
  transition: height 0.6s cubic-bezier(0.4,0,0.2,1) 0.1s;
}

.wcu-card.wcu-revealed .wcu-card-line { height: 100%; }

.wcu-card:hover .wcu-card-line {
  background: linear-gradient(180deg, var(--wcu-acc), rgba(var(--wcu-acc-rgb), 0.25));
}

/* Ghost number watermark */
.wcu-card-num {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 1.55rem;
  font-weight: 900;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  user-select: none;
  transition: color 0.3s ease;
}

.wcu-card:hover .wcu-card-num { color: rgba(var(--wcu-acc-rgb), 0.14); }

/* Icon container */
.wcu-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(var(--wcu-acc-rgb), 0.1);
  border: 1px solid rgba(var(--wcu-acc-rgb), 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.32s ease, box-shadow 0.32s ease, background 0.3s ease;
}

.wcu-icon-wrap i {
  font-size: 1.28rem;
  color: var(--wcu-acc);
}

.wcu-card:hover .wcu-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 6px 22px rgba(var(--wcu-acc-rgb), 0.24);
  background: rgba(var(--wcu-acc-rgb), 0.16);
}

/* Card text */
.wcu-card-title {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.wcu-card-desc {
  font-size: 0.81rem;
  color: var(--gray);
  line-height: 1.68;
  margin-bottom: 18px;
}

/* Trust chip */
.wcu-card-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(var(--wcu-acc-rgb), 0.08);
  border: 1px solid rgba(var(--wcu-acc-rgb), 0.18);
  border-radius: 50px;
  font-size: 0.71rem;
  font-weight: 700;
  color: var(--wcu-acc);
  transition: background 0.3s ease;
}

.wcu-card-chip i { font-size: 0.65rem; }

.wcu-card:hover .wcu-card-chip {
  background: rgba(var(--wcu-acc-rgb), 0.15);
}

/* ── Integration ecosystem strip ── */
.wcu-eco-strip {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 18px 26px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.wcu-eco-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  flex-shrink: 0;
}

.wcu-eco-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16a34a;
  flex-shrink: 0;
  animation: wcu-dot-pulse 2.2s ease-in-out infinite;
}

@keyframes wcu-dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
  50%       { box-shadow: 0 0 0 4px rgba(22,163,74,0.18); }
}

.wcu-eco-items {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
}

.wcu-eco-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  background: #f8fafc;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.77rem;
  font-weight: 600;
  color: var(--gray);
  cursor: default;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.wcu-eco-item i {
  font-size: 0.7rem;
  color: #9ca3af;
  transition: color 0.25s ease;
}

.wcu-eco-item:hover {
  background: rgba(46,109,164,0.06);
  border-color: rgba(46,109,164,0.25);
  color: var(--blue);
}

.wcu-eco-item:hover i { color: var(--blue); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .wcu-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .wcu-section { padding: 52px 0 40px; }
  .wcu-header { margin-bottom: 40px; }
  .wcu-cards { grid-template-columns: 1fr; gap: 14px; }
  .wcu-achievements { flex-direction: column; padding: 14px 20px; }
  .wcu-ach-sep { width: 60px; height: 1px; }
  .wcu-eco-strip { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ═══════════════════════════════════════════════════════════════
   PROCESS — PREMIUM REDESIGN  (pip-)
═══════════════════════════════════════════════════════════════ */

/* ── Section ── */
.pip-section {
  position: relative;
  padding: 60px 0 48px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f4f8fd 100%);
  overflow: hidden;
}

/* ── Background ── */
.pip-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.pip-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.pip-orb-1 {
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(46,109,164,0.11) 0%, transparent 70%);
  top: -180px; right: -160px;
  animation: pip-orb 22s ease-in-out infinite;
}

.pip-orb-2 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(245,197,24,0.09) 0%, transparent 70%);
  bottom: -120px; left: -120px;
  animation: pip-orb 28s ease-in-out infinite reverse;
}

@keyframes pip-orb {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(22px, -16px); }
  66%       { transform: translate(-16px, 22px); }
}

.pip-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(46,109,164,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,109,164,0.03) 1px, transparent 1px);
  background-size: 52px 52px;
}

/* ── Header ── */
.pip-header { text-align: center; margin-bottom: 56px; }

.pip-heading {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.22;
}

.pip-accent {
  position: relative;
  color: var(--blue);
  display: inline-block;
}

.pip-accent::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--yellow));
  border-radius: 3px;
  transform-origin: left;
  transform: scaleX(0);
  animation: pip-underline 1.1s cubic-bezier(0.4,0,0.2,1) forwards 0.5s;
}

@keyframes pip-underline { to { transform: scaleX(1); } }

.pip-subtitle {
  color: var(--gray);
  font-size: 1.02rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.72;
}

/* ── Journey grid ── */
.pip-journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  margin-bottom: 40px;
  align-items: start;
}

/* ── Animated connecting rail ── */
.pip-rail-wrap {
  position: absolute;
  top: 39px; /* center of 80px node */
  left: 12.5%; /* center of column 1 */
  right: 12.5%; /* center of column 4 */
  height: 2px;
  z-index: 0;
}

.pip-rail-bg {
  position: absolute;
  inset: 0;
  background: #e5e7eb;
  border-radius: 2px;
}

.pip-rail-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #2E6DA4 0%, #7c3aed 33%, #16a34a 66%, #F5C518 100%);
  border-radius: 2px;
  transition: width 1.6s cubic-bezier(0.4,0,0.2,1) 0.2s;
}

/* Traveling glow on the fill */
.pip-rail-fill::after {
  content: '';
  position: absolute;
  top: -3px; right: -8px;
  width: 16px; height: 8px;
  background: radial-gradient(circle, rgba(245,197,24,0.9), transparent 70%);
  border-radius: 50%;
  filter: blur(3px);
}

/* ── Individual step column ── */
.pip-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── Node circle ── */
.pip-node {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(var(--pip-acc-rgb), 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  flex-shrink: 0;
}

.pip-node i {
  font-size: 1.35rem;
  color: rgba(var(--pip-acc-rgb), 0.45);
  transition: color 0.4s ease;
  position: relative;
  z-index: 1;
}

/* Pulsing ring (visible when active) */
.pip-node-ring {
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 2px solid var(--pip-acc);
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Active state (added by JS) */
.pip-node.pip-node-active {
  background: var(--pip-acc);
  border-color: var(--pip-acc);
  box-shadow: 0 0 0 8px rgba(var(--pip-acc-rgb), 0.12), 0 8px 28px rgba(var(--pip-acc-rgb), 0.32);
}

.pip-node.pip-node-active i { color: #ffffff; }

.pip-node.pip-node-active .pip-node-ring {
  opacity: 0.35;
  animation: pip-ring-pulse 2.2s ease-in-out infinite;
}

@keyframes pip-ring-pulse {
  0%, 100% { transform: scale(1);    opacity: 0.35; }
  50%       { transform: scale(1.22); opacity: 0.12; }
}

.pip-node-label {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  font-weight: 800;
  color: rgba(var(--pip-acc-rgb), 0.5);
  letter-spacing: 1px;
  white-space: nowrap;
  transition: color 0.4s ease;
}

.pip-node.pip-node-active .pip-node-label { color: var(--pip-acc); }

/* ── Vertical dotted connector: node → card ── */
.pip-vline {
  width: 1px;
  height: 20px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(var(--pip-acc-rgb), 0.3) 0,
    rgba(var(--pip-acc-rgb), 0.3) 4px,
    transparent 4px,
    transparent 8px
  );
  margin-top: 14px; /* clears the label */
  flex-shrink: 0;
}

/* ── Card ── */
.pip-card {
  width: 100%;
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 20px 18px 18px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease,
              border-color 0.3s ease, box-shadow 0.3s ease;
}

.pip-card.pip-card-in {
  opacity: 1;
  transform: translateY(0);
}

.pip-card:hover {
  border-color: rgba(var(--pip-acc-rgb), 0.35);
  box-shadow: 0 14px 40px rgba(0,0,0,0.07),
              0 0 0 1px rgba(var(--pip-acc-rgb), 0.1);
  transform: translateY(-5px) !important;
}

/* Top accent bar */
.pip-card-topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--pip-acc);
  border-radius: 18px 18px 0 0;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 0.3s ease, transform 0.4s ease;
}

.pip-card:hover .pip-card-topbar { opacity: 1; transform: scaleX(1); }

/* Radial glow */
.pip-card-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(var(--pip-acc-rgb), 0.06), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 18px;
}

.pip-card:hover .pip-card-glow { opacity: 1; }

/* Card head row */
.pip-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.pip-step-tag {
  font-size: 0.67rem;
  font-weight: 800;
  color: var(--pip-acc);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.pip-icon-wrap {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: rgba(var(--pip-acc-rgb), 0.09);
  border: 1px solid rgba(var(--pip-acc-rgb), 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pip-icon-wrap i { font-size: 1rem; color: var(--pip-acc); }

.pip-card:hover .pip-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 4px 16px rgba(var(--pip-acc-rgb), 0.22);
}

/* Title + desc */
.pip-title { font-size: 0.97rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.pip-desc  { font-size: 0.79rem; color: var(--gray); line-height: 1.62; margin-bottom: 14px; }

/* ── Mini visuals ── */
.pip-mv {
  background: #f8fafc;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 12px;
}

/* Step 1 — Connect visual */
.pip-mv-connect { display: flex; align-items: center; gap: 6px; min-height: 60px; }

.pip-mvc-sources { display: flex; flex-direction: column; gap: 4px; flex: 1; }

.pip-mvc-src {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.63rem; font-weight: 600; color: var(--gray);
}

.pip-mvc-src i { font-size: 0.58rem; color: var(--blue); }

.pip-mvc-flow {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  flex-shrink: 0;
}

.pip-mvc-line {
  width: 22px; height: 2px;
  background: linear-gradient(90deg, #e5e7eb, #2E6DA4);
  border-radius: 2px;
  position: relative; overflow: hidden;
}

.pip-mvc-dot {
  position: absolute; top: -2px; left: -10%;
  width: 6px; height: 6px;
  border-radius: 50%; background: #2E6DA4;
  animation: pip-dot-flow 1.9s ease-in-out infinite;
}

@keyframes pip-dot-flow { 0% { left: -10%; } 100% { left: 110%; } }

.pip-mvc-flow > i { font-size: 0.58rem; color: #9ca3af; }

.pip-mvc-dest {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  flex-shrink: 0;
}

.pip-mvc-dest i  { font-size: 1.1rem; color: #2E6DA4; }
.pip-mvc-dest span { font-size: 0.6rem; font-weight: 700; color: #2E6DA4; }

/* Step 2 — Build visual (animated bars) */
.pip-mv-build { display: flex; flex-direction: column; gap: 6px; min-height: 60px; justify-content: center; }

.pip-mvb-row { display: flex; align-items: center; gap: 6px; }

.pip-mvb-lbl { font-size: 0.62rem; font-weight: 600; color: var(--gray); width: 50px; flex-shrink: 0; }

.pip-mvb-track {
  flex: 1; height: 5px;
  background: #e9ecef; border-radius: 3px; overflow: hidden;
}

.pip-mvb-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  border-radius: 3px;
  transition: width 1s cubic-bezier(0.4,0,0.2,1);
}

/* Step 3 — Deploy visual */
.pip-mv-deploy { display: flex; flex-direction: column; gap: 5px; min-height: 60px; justify-content: center; }

.pip-mvi-item { display: flex; align-items: center; gap: 6px; font-size: 0.66rem; font-weight: 600; }

.pip-mvi-done i  { font-size: 0.6rem; color: #16a34a; }
.pip-mvi-done span { color: var(--gray); }

.pip-mvi-live i  { font-size: 0.6rem; color: #ea580c; animation: pip-blink 1.3s ease-in-out infinite; }
.pip-mvi-live span { color: #ea580c; font-weight: 800; }

@keyframes pip-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* Step 4 — Support visual */
.pip-mv-support { display: flex; flex-direction: column; gap: 8px; min-height: 60px; justify-content: center; }

.pip-mvs-metrics { display: flex; justify-content: space-around; }

.pip-mvs-m { text-align: center; }
.pip-mvs-val { font-size: 0.92rem; font-weight: 900; color: var(--dark); }
.pip-mvs-lbl { font-size: 0.6rem; color: var(--gray); font-weight: 500; }

.pip-mvs-status {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  font-size: 0.65rem; font-weight: 700; color: #16a34a;
}

.pip-mvs-dot {
  width: 5px; height: 5px; border-radius: 50%; background: #16a34a;
  animation: pip-green-pulse 2.2s ease-in-out infinite;
}

@keyframes pip-green-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
  50%       { box-shadow: 0 0 0 3px rgba(22,163,74,0.2); }
}

/* Timeframe chip */
.pip-timeframe {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.7rem; font-weight: 600; color: var(--gray);
}

.pip-timeframe i { font-size: 0.65rem; color: var(--pip-acc); }

/* ── Bottom CTA strip ── */
.pip-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 32px;
  background: linear-gradient(135deg, rgba(46,109,164,0.05), rgba(245,197,24,0.05));
  border: 1.5px solid rgba(46,109,164,0.14);
  border-radius: 16px;
  flex-wrap: wrap;
}

.pip-cta-info { display: flex; align-items: center; gap: 16px; }

.pip-cta-icon-wrap {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(46,109,164,0.1);
  border: 1px solid rgba(46,109,164,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.pip-cta-icon-wrap i { font-size: 1.1rem; color: var(--blue); }

.pip-cta-title { font-size: 0.97rem; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.pip-cta-sub   { font-size: 0.8rem; color: var(--gray); }

.pip-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; background: var(--blue); color: #ffffff;
  border-radius: 10px; font-size: 0.88rem; font-weight: 700;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  transition: background 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.pip-cta-btn:hover {
  background: var(--blue-dark); color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,109,164,0.28);
}

.pip-cta-arrow { transition: transform 0.22s ease; }
.pip-cta-btn:hover .pip-cta-arrow { transform: translateX(4px); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .pip-journey { grid-template-columns: repeat(2, 1fr); }
  .pip-rail-wrap { display: none; }
  .pip-vline { display: none; }
  .pip-step { align-items: flex-start; }
  .pip-node-label { display: none; }
}

@media (max-width: 640px) {
  .pip-section { padding: 52px 0 40px; }
  .pip-header { margin-bottom: 40px; }
  .pip-journey { grid-template-columns: 1fr; }
  .pip-cta { flex-direction: column; text-align: center; }
  .pip-cta-info { flex-direction: column; text-align: center; }
  .pip-cta-btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════
   FAQ — PREMIUM REDESIGN  (pfq-)
═══════════════════════════════════════════════════════════════ */

/* ── Section ── */
.pfq-section {
  position: relative;
  padding: 60px 0 48px;
  background: linear-gradient(180deg, #f4f8fd 0%, #ffffff 60%, #f8fafc 100%);
  overflow: hidden;
}

/* ── Background ── */
.pfq-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.pfq-orb { position: absolute; border-radius: 50%; filter: blur(100px); }

.pfq-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(46,109,164,0.1) 0%, transparent 70%);
  top: -150px; left: -150px;
  animation: pfq-drift 22s ease-in-out infinite;
}

.pfq-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,197,24,0.09) 0%, transparent 70%);
  bottom: -100px; right: -100px;
  animation: pfq-drift 28s ease-in-out infinite reverse;
}

@keyframes pfq-drift {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(20px, -15px); }
  66%       { transform: translate(-15px, 20px); }
}

.pfq-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(46,109,164,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,109,164,0.03) 1px, transparent 1px);
  background-size: 52px 52px;
}

/* ── Two-column layout ── */
.pfq-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}

/* ── LEFT column ── */
.pfq-left { position: sticky; top: 100px; }

.pfq-heading {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.22;
}

.pfq-accent {
  position: relative;
  color: var(--blue);
  display: inline-block;
}

.pfq-accent::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--yellow));
  border-radius: 3px;
  transform-origin: left;
  transform: scaleX(0);
  animation: pfq-underline 1.1s cubic-bezier(0.4,0,0.2,1) forwards 0.5s;
}

@keyframes pfq-underline { to { transform: scaleX(1); } }

.pfq-subtitle {
  color: var(--gray);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ── Stats strip ── */
.pfq-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 14px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.pfq-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.pfq-stat-num {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}

.pfq-stat-lbl {
  font-size: 0.67rem;
  color: var(--gray);
  font-weight: 500;
  white-space: nowrap;
}

.pfq-stat-sep {
  width: 1px;
  height: 28px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Support card ── */
.pfq-support-card {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}

.pfq-sc-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.pfq-sc-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.pfq-sc-icon i { font-size: 1.1rem; color: #ffffff; }

.pfq-sc-title { font-size: 0.92rem; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.pfq-sc-sub   { font-size: 0.76rem; color: var(--gray); }

.pfq-sc-status {
  margin-left: auto;
  display: flex; align-items: center; gap: 5px;
  font-size: 0.7rem; font-weight: 700; color: #16a34a;
  flex-shrink: 0;
}

.pfq-sc-dot {
  width: 6px; height: 6px;
  border-radius: 50%; background: #16a34a;
  animation: pfq-dot-pulse 2.2s ease-in-out infinite;
}

@keyframes pfq-dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
  50%       { box-shadow: 0 0 0 4px rgba(22,163,74,0.18); }
}

.pfq-sc-actions { display: flex; flex-direction: column; gap: 8px; }

.pfq-sc-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 18px; border-radius: 10px;
  font-size: 0.83rem; font-weight: 700; text-decoration: none;
  transition: all 0.25s ease;
}

.pfq-sc-primary { background: var(--blue); color: #ffffff; }
.pfq-sc-primary:hover {
  background: var(--blue-dark); color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46,109,164,0.28);
}

.pfq-sc-ghost {
  background: #f8fafc;
  border: 1.5px solid var(--border);
  color: var(--dark);
}

.pfq-sc-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(46,109,164,0.04);
}

/* ── RIGHT column: FAQ items ── */
.pfq-right { display: flex; flex-direction: column; gap: 10px; }

/* ── Individual FAQ item ── */
.pfq-item {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.pfq-item:hover {
  border-color: rgba(46,109,164,0.25);
  box-shadow: 0 4px 20px rgba(46,109,164,0.06);
}

.pfq-item.pfq-open {
  border-color: rgba(46,109,164,0.3);
  box-shadow: 0 6px 28px rgba(46,109,164,0.09);
}

/* Gold variant for pricing question */
.pfq-item-gold.pfq-open {
  border-color: rgba(245,197,24,0.4);
  box-shadow: 0 6px 28px rgba(245,197,24,0.12);
}

/* ── Question button ── */
.pfq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.25s ease;
}

.pfq-q:hover { background: rgba(46,109,164,0.025); }

.pfq-item.pfq-open .pfq-q { background: rgba(46,109,164,0.035); }
.pfq-item-gold.pfq-open .pfq-q { background: rgba(245,197,24,0.04); }

/* Icon container */
.pfq-q-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(46,109,164,0.08);
  border: 1px solid rgba(46,109,164,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.pfq-q-icon i { font-size: 0.92rem; color: var(--blue); }

.pfq-item.pfq-open .pfq-q-icon {
  background: var(--blue);
  border-color: var(--blue);
  transform: scale(1.05);
}

.pfq-item.pfq-open .pfq-q-icon i { color: #ffffff; }

/* Gold icon variant */
.pfq-q-icon-gold {
  background: rgba(245,197,24,0.1);
  border-color: rgba(245,197,24,0.25);
}

.pfq-q-icon-gold i { color: var(--yellow-dark); }

.pfq-item-gold.pfq-open .pfq-q-icon-gold {
  background: var(--yellow);
  border-color: var(--yellow);
}

.pfq-item-gold.pfq-open .pfq-q-icon-gold i { color: var(--dark); }

/* Question text */
.pfq-q-text {
  flex: 1;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.45;
  transition: color 0.2s ease;
}

.pfq-item.pfq-open .pfq-q-text { color: var(--blue); }
.pfq-item-gold.pfq-open .pfq-q-text { color: var(--yellow-dark); }

/* Chevron toggle */
.pfq-q-chevron {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.pfq-q-chevron i { font-size: 0.7rem; color: var(--gray); transition: color 0.2s ease; }

.pfq-item.pfq-open .pfq-q-chevron {
  background: var(--blue);
  transform: rotate(180deg);
}

.pfq-item.pfq-open .pfq-q-chevron i { color: #ffffff; }

.pfq-item-gold.pfq-open .pfq-q-chevron { background: var(--yellow); }
.pfq-item-gold.pfq-open .pfq-q-chevron i { color: var(--dark); }

/* ── Collapsible answer ── */
.pfq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.4,0,0.2,1);
}

.pfq-item.pfq-open .pfq-a { max-height: 400px; }

.pfq-a-inner {
  padding: 0 20px 20px 72px; /* aligns under icon */
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.pfq-a-inner p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.72;
  margin-bottom: 0;
}

.pfq-a-inner strong { color: var(--dark); }

/* Integration tags */
.pfq-a-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.pfq-a-tag {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 11px;
  background: rgba(46,109,164,0.06);
  border: 1px solid rgba(46,109,164,0.14);
  border-radius: 6px;
  font-size: 0.7rem; font-weight: 600; color: var(--blue);
  transition: background 0.2s ease;
}

.pfq-a-tag i { font-size: 0.6rem; }
.pfq-a-tag:hover { background: rgba(46,109,164,0.12); }

.pfq-a-tag-more {
  background: rgba(245,197,24,0.08);
  border-color: rgba(245,197,24,0.2);
  color: var(--yellow-dark);
}

.pfq-a-tag-more:hover { background: rgba(245,197,24,0.15); }

/* Mini timeline (Q2) */
.pfq-a-timeline {
  display: flex;
  gap: 0;
  margin-top: 14px;
  background: #f8fafc;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  padding: 12px 14px;
}

.pfq-at-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  gap: 4px;
  position: relative;
}

.pfq-at-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pfq-at-line {
  position: absolute;
  top: 4px;
  left: 10px;
  right: -8px;
  height: 2px;
  background: linear-gradient(90deg, #e5e7eb, transparent);
}

.pfq-at-last .pfq-at-line { display: none; }

.pfq-at-label { font-size: 0.72rem; font-weight: 700; color: var(--dark); }
.pfq-at-sub   { font-size: 0.65rem; color: var(--gray); }

/* Checklist (Q3, Q4) */
.pfq-a-checks {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 12px;
}

.pfq-a-check {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.83rem; color: var(--dark); font-weight: 500;
}

.pfq-a-check i {
  font-size: 0.72rem;
  color: #16a34a;
  margin-top: 3px;
  flex-shrink: 0;
}

/* CTA link (Q5) */
.pfq-a-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px;
  padding: 10px 20px;
  background: var(--blue); color: #ffffff;
  border-radius: 10px;
  font-size: 0.83rem; font-weight: 700;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.pfq-a-cta:hover {
  background: var(--blue-dark); color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(46,109,164,0.28);
}

.pfq-a-cta-arrow { transition: transform 0.22s ease; }
.pfq-a-cta:hover .pfq-a-cta-arrow { transform: translateX(4px); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .pfq-layout { grid-template-columns: 1fr; gap: 40px; }
  .pfq-left { position: static; }
  .pfq-stats { max-width: 380px; }
  .pfq-support-card { max-width: 420px; }
}

@media (max-width: 640px) {
  .pfq-section { padding: 52px 0 40px; }
  .pfq-a-inner { padding-left: 20px; }
  .pfq-a-timeline { flex-direction: column; gap: 10px; }
  .pfq-at-line { display: none; }
  .pfq-stats { flex-direction: column; max-width: 100%; }
  .pfq-stat-sep { width: 60px; height: 1px; }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE EXPERIENCE IMPROVEMENTS
   ▸ All rules are max-width guards — desktop is never affected.
   ▸ Breakpoints: ≤768px (phones + small tablets)
                  ≤480px (phones)
                  ≤440px (comparison table special layout)
                  ≤360px (very small phones)
═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────
   1. GLOBAL RHYTHM — section padding, spacing utilities
───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Reduce from 70px / 48px to breathable-but-compact values */
  .section    { padding: 52px 0; }
  .section-sm { padding: 34px 0; }

  /* Tighter container gutters on narrow screens */
  .container { padding-left: 16px; padding-right: 16px; }

  /* Spacing utilities — reduce large gaps proportionally on mobile */
  .mb-64 { margin-bottom: 36px !important; }
  .mb-56 { margin-bottom: 32px !important; }
  .mb-48 { margin-bottom: 28px !important; }
  .mb-40 { margin-bottom: 24px !important; }
  .mb-32 { margin-bottom: 20px !important; }
  .mt-64 { margin-top:    36px !important; }
  .mt-48 { margin-top:    28px !important; }
  .mt-32 { margin-top:    20px !important; }
  .mt-16 { margin-top:    10px !important; }
}

@media (max-width: 480px) {
  .section    { padding: 44px 0; }
  .section-sm { padding: 28px 0; }
  .mb-64 { margin-bottom: 28px !important; }
  .mb-56 { margin-bottom: 24px !important; }
  .mb-48 { margin-bottom: 22px !important; }
  .mb-40 { margin-bottom: 20px !important; }
}

/* ─────────────────────────────────────────────────────────────
   2. TYPOGRAPHY — headings, labels, subtitles
───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Section labels (currently 1rem on desktop) */
  .section-label {
    font-size: 0.72rem;
    letter-spacing: 1.2px;
    padding: 6px 14px;
    margin-bottom: 10px;
  }

  /* Section titles inherit from h2's clamp() — add a mobile floor */
  .section-title {
    font-size: clamp(1.5rem, 5.5vw, 2.1rem);
    line-height: 1.22;
    margin-bottom: 12px;
  }

  /* Section subtitles */
  .section-subtitle {
    font-size: 0.94rem;
    line-height: 1.68;
    max-width: 100% !important;
  }

  /* Body text */
  p { font-size: 0.95rem; line-height: 1.72; }
}

@media (max-width: 480px) {
  .section-title    { font-size: clamp(1.3rem, 5.2vw, 1.75rem); }
  .section-subtitle { font-size: 0.9rem; }
}

/* ─────────────────────────────────────────────────────────────
   3. BUTTONS — touch targets & tap comfort
───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Minimum 48px height for accessible tap targets (WCAG 2.5.5) */
  .btn {
    min-height: 48px;
    padding: 13px 22px;
    font-size: 0.91rem;
  }

  /* Full-width CTAs inside comparison/hero strip */
  .cmp-cta-btn,
  .cta-section .btn {
    min-height: 52px;
  }
}

/* ─────────────────────────────────────────────────────────────
   4. HERO SECTION
───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Trust / rating row */
  .hero-avatar      { width: 34px; height: 34px; border-width: 2px; }
  .hero-stars       { font-size: 0.9rem; }
  .hero-rating-text { font-size: 0.76rem; }

  /* Stats strip */
  .hero-stat-num   { font-size: 1.72rem; }
  .hero-stat-label { font-size: 0.7rem; letter-spacing: 0.2px; }

  /* Description */
  .hero-desc { font-size: 0.94rem; line-height: 1.72; }
}

/* ─────────────────────────────────────────────────────────────
   5. WHAT IS A VIRTUAL CFO — comparison table (≤768px)
───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Section intro text */
  .vcfo-compare-section .section-subtitle { margin-top: 10px; }

  /* Card shell */
  .cmp-table { border-radius: 16px; margin-bottom: 28px; }

  /* CTA strip below the table */
  .cmp-cta-strip {
    padding: 24px 18px;
    border-radius: 16px;
    gap: 18px;
  }
  .cmp-cta-heading  { font-size: 1.05rem; margin-bottom: 10px; }
  .cmp-trust-item   { font-size: 0.78rem; gap: 5px; }
}

/* ─── Stacked layout for very small phones (≤440px) ─────── */
/*     Feature label sits full-width above; Trad | CFO below  */
@media (max-width: 440px) {
  /* Header: drop the empty feature column, show both titles */
  .cmp-thead  { grid-template-columns: 1fr 1fr; }
  .cmp-th-feature { display: none; }
  .cmp-th { padding: 24px 10px 16px; }

  .cmp-th-trad .cmp-th-name,
  .cmp-th-vcfo .cmp-th-name { font-size: 0.82rem; }

  .cmp-th-icon { width: 36px; height: 36px; font-size: 0.95rem; }

  /* Shrink recommended ribbon to fit the narrower column */
  .cmp-th-recommended { font-size: 0.52rem; padding: 3px 8px; letter-spacing: 0.4px; }

  /* Each row: feature name spans full width on top,
     then traditional and VCO values sit side-by-side below */
  .cmp-trow {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .cmp-td-feature {
    grid-column: 1 / -1;        /* full-width row */
    border-right: none;
    border-bottom: 1px solid rgba(46,109,164,0.1);
    padding: 10px 14px;
    background: #eff6ff !important;
    border-left: 3px solid rgba(46,109,164,0.25);
  }

  /* Reset zebra for feature cells — uniform shade looks cleaner */
  .cmp-trow:nth-child(even) .cmp-td-feature { background: #e8f2ff !important; }
  .cmp-trow:nth-child(odd)  .cmp-td-feature { background: #eff6ff !important; }

  /* VCO / Trad cells fill the row below the feature name */
  .cmp-td-trad { border-right: 1px solid rgba(0,0,0,0.05); }
  .cmp-td      { justify-content: center; padding: 11px 8px; }

  /* Feature icon — slightly smaller */
  .cmp-feat-icon {
    width: 24px; height: 24px;
    font-size: 0.7rem; border-radius: 6px;
  }

  .cmp-td-feature > span:last-child {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.35;
  }

  /* Indicator pills */
  .cmp-pip { font-size: 0.7rem; padding: 5px 9px; min-width: 30px; }

  /* Footer row — same 2-col pattern, no feature column */
  .cmp-tfoot { grid-template-columns: 1fr 1fr; }
  .cmp-tf-feature { display: none; }
  .cmp-tf-trad,
  .cmp-tf-vcfo    { font-size: 0.76rem; padding: 12px 10px; }
}

/* ─────────────────────────────────────────────────────────────
   6. STATS SECTION
───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .stat-num   { font-size: 2.6rem; }
  .stat-label { font-size: 0.82rem; }
  .stat-card  { padding: 26px 18px; }
}

/* ─────────────────────────────────────────────────────────────
   7. SERVICE CARDS
───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .service-card { padding: 24px 18px; }
  .service-card h3 { font-size: 1.05rem; }
  .service-card p  { font-size: 0.88rem; }
}

/* ─────────────────────────────────────────────────────────────
   8. TESTIMONIALS
───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .tst-quote { font-size: 0.9rem; line-height: 1.65; }
}

/* ─────────────────────────────────────────────────────────────
   9. GLOBAL CTA SECTIONS
───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .cta-section { padding: 44px 20px !important; border-radius: 16px; }
  .cta-section h2 { font-size: clamp(1.35rem, 5vw, 1.9rem) !important; line-height: 1.25; }
  .cta-section p  { font-size: 0.93rem !important; }
  .cta-trust { gap: 10px; }
}

/* ─────────────────────────────────────────────────────────────
   10. FOOTER
───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .footer-desc    { font-size: 0.88rem; line-height: 1.65; }
  .footer-heading { font-size: 0.82rem; letter-spacing: 0.5px; }

  /* Footer links — slightly larger touch area */
  .footer-links a,
  .footer-link {
    min-height: 36px;
    display: flex;
    align-items: center;
    font-size: 0.87rem;
  }
}

/* ─────────────────────────────────────────────────────────────
   11. PREVENT OVERFLOW — catch-all safety net
───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Prevent any section from causing horizontal scroll */
  .section,
  .vcfo-compare-section,
  .hero { overflow-x: hidden; }

  /* Ensure images never stretch beyond their container */
  img { max-width: 100%; height: auto; }
}

/* ─────────────────────────────────────────────────────────────
   12. EXTRA SMALL PHONES (≤360px) — on top of ≤380px block
───────────────────────────────────────────────────────────── */
@media (max-width: 360px) {
  .section    { padding: 40px 0; }
  .container  { padding-left: 12px; padding-right: 12px; }

  .section-title { font-size: clamp(1.2rem, 5vw, 1.5rem); }

  /* CMP table at this size: even tighter pips */
  .cmp-pip { padding: 4px 7px; font-size: 0.65rem; min-width: 26px; }
  .cmp-td-feature > span:last-child { font-size: 0.74rem; }
}

/* ===========================
   CLIENT LOGOS SECTION
=========================== */
.cl-section {
  background: linear-gradient(160deg, #ffffff 0%, #f8fbff 50%, #f0f6ff 100%);
  position: relative;
  overflow: hidden;
}

.cl-bg { position: absolute; inset: 0; pointer-events: none; }

.cl-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(88px);
}
.cl-orb-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(46,109,164,0.08) 0%, transparent 70%);
  top: -140px; left: -80px;
  animation: orbFloat1 18s ease-in-out infinite;
}
.cl-orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(245,197,24,0.07) 0%, transparent 70%);
  bottom: -100px; right: -60px;
  animation: orbFloat2 22s ease-in-out infinite;
}
.cl-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30,64,175,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,64,175,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Logo marquee */
.cl-marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.cl-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: cl-scroll 40s linear infinite;
}

.cl-track:hover {
  animation-play-state: paused;
}

@keyframes cl-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Individual logo card */
.cl-logo-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: 20px 24px;
  flex-shrink: 0;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.3s cubic-bezier(0.4,0,0.2,1),
              border-color 0.3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.cl-logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(46,109,164,0.12);
  border-color: rgba(46,109,164,0.2);
}

.cl-logo-card img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.cl-logo-card:hover img {
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .cl-logo-card { width: 140px; padding: 16px 18px; min-height: 76px; }
  .cl-logo-card img { max-height: 48px; }
  .cl-track { gap: 14px; }
}
@media (max-width: 480px) {
  .cl-logo-card { width: 120px; padding: 14px 16px; min-height: 68px; }
  .cl-logo-card img { max-height: 40px; }
  .cl-track { gap: 12px; }
}
