/* ============================================================
   Ni Source Technologies — Premium Visual Redesign Layer
   High-impact visual upgrades by senior design system
   ============================================================ */

/* ─── CUSTOM SCROLLBAR (System-wide) ───────────────────────── */
body {
  --scrollbarBG: #CFD8DC;
  --thumbBG: #90A4AE;

  scrollbar-width: thin;
  scrollbar-color: var(--thumbBG) var(--scrollbarBG);
}

/* Chrome, Safari, Edge, Opera scrollbar overrides */
body::-webkit-scrollbar,
html::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
body::-webkit-scrollbar-track,
html::-webkit-scrollbar-track {
  background: var(--scrollbarBG);
}
body::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb {
  background-color: var(--thumbBG);
  border-radius: 10px;
  border: 2px solid var(--scrollbarBG);
}
body::-webkit-scrollbar-thumb:hover,
html::-webkit-scrollbar-thumb:hover {
  background-color: #78909C; /* slightly darker tint on hover */
}

/* ─── SLEEK SCROLL PROGRESS BAR (Posh Design Layer) ────────── */
.scroll-progress-container {
  position: absolute;
  bottom: -2.5px; /* overlay directly on top of the bottom border line */
  left: 0;
  width: 100%;
  height: 2.5px;
  background: transparent !important;
  z-index: 1000;
  pointer-events: none;
  overflow: visible; /* allows glowing bead to display outside the track */
}

#scroll-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #27a5ff 0%, #8b5cf6 50%, #ec4899 100%) !important;
  box-shadow: 0 0 10px rgba(39, 165, 255, 0.85), 0 0 4px rgba(236, 72, 153, 0.6) !important;
  position: relative;
  transition: width 0.08s cubic-bezier(0.22, 1, 0.36, 1) !important;
  will-change: width;
}

/* Glowing posh pointer bead at the tip of progress bar */
#scroll-progress-bar::after {
  content: '';
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #ec4899;
  box-shadow: 0 0 8px #ec4899, 0 0 15px #27a5ff, 0 0 4px rgba(0,0,0,0.1);
  pointer-events: none;
  z-index: 1001;
}

/* ─── 1. TYPOGRAPHY — Bricolage Grotesque Headings ─────────── */
h1, h2, h3, h4, h5, h6,
.section-title,
.hero-title,
.service-card-title {
  font-family: 'Bricolage Grotesque', 'Plus Jakarta Sans', sans-serif !important;
  letter-spacing: -0.03em;
}


.section-title {
  font-size: clamp(2rem, 2.5vw + 1rem, 3.25rem) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.04em !important;
}

.section-subtitle {
  font-size: 1.05rem !important;
  line-height: 1.8 !important;
  color: var(--color-text-secondary) !important;
  max-width: 640px !important;
}

/* ─── 2. SECTION LABEL — Premium pill badge ─────────────────── */
.section-label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  background: linear-gradient(135deg, rgba(39,165,255,0.1) 0%, rgba(139,92,246,0.08) 100%) !important;
  border: 1px solid rgba(39,165,255,0.2) !important;
  border-radius: 100px !important;
  padding: 0.35rem 1rem !important;
  font-family: 'Sora', sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--color-primary) !important;
  backdrop-filter: blur(8px);
}

/* ─── 3. SECTION HEADER ACCENT LINE ─────────────────────────── */
.section-header::after {
  display: none;
}
.section-title-accent {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-block-start: 1rem;
  margin-block-end: 1.25rem;
}
.section-title-accent .accent-line {
  flex: 1;
  max-width: 80px;
  height: 2px;
  border-radius: 100px;
  background: linear-gradient(90deg, transparent, var(--color-primary));
}
.section-title-accent .accent-line:last-child {
  background: linear-gradient(90deg, var(--color-primary), transparent);
}
.section-title-accent .accent-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 12px rgba(39,165,255,0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}

/* ─── 4. PREMIUM SERVICE CARDS ───────────────────────────────── */
.service-card {
  background: #ffffff !important;
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
  border-radius: 20px !important;
  box-shadow: 0 4px 20px rgba(15,23,42,0.05) !important;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.4s ease,
              border-color 0.3s ease !important;
  overflow: hidden;
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: inherit;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-card-hover) !important;
  border-color: rgba(39,165,255,0.3) !important;
}
.service-card:hover::before {
  opacity: 1;
}
.service-card-icon {
  background: var(--card-grad, linear-gradient(135deg, rgba(39,165,255,0.12) 0%, rgba(139,92,246,0.08) 100%)) !important;
  border: var(--card-border, 1.5px solid rgba(39,165,255,0.18)) !important;
  border-radius: 18px !important;
  color: var(--card-color, var(--color-primary)) !important;
  box-shadow: var(--card-shadow, none) !important;
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1) !important;
}
.service-card:hover .service-card-icon {
  background: var(--card-grad, var(--gradient-primary)) !important;
  color: white !important;
  border-color: transparent !important;
  transform: scale(1.15) rotate(-3deg) !important;
  box-shadow: var(--card-shadow-hover, 0 8px 24px rgba(39,165,255,0.35)) !important;
}

/* ─── 5. SOLUTIONS GRID — Cinematic hover reveal ────────────── */
.solution-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.5s ease;
}
.solution-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.solution-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.5s ease;
}
.solution-card:hover .solution-card-img {
  transform: scale(1.08);
  filter: brightness(0.75) saturate(1.2);
}
.solution-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,15,30,0.95) 0%, rgba(10,15,30,0.3) 50%, transparent 100%);
  transition: background 0.5s ease;
}
.solution-card:hover .solution-card-overlay {
  background: linear-gradient(to top, rgba(39,165,255,0.85) 0%, rgba(10,15,30,0.4) 60%, transparent 100%);
}
.solution-card-body {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.75rem 1.5rem;
  transform: translateY(8px);
  transition: transform 0.4s ease;
}
.solution-card:hover .solution-card-body {
  transform: translateY(0);
}
.solution-card-badge {
  display: inline-block;
  background: rgba(39,165,255,0.25);
  border: 1px solid rgba(39,165,255,0.4);
  border-radius: 100px;
  padding: 0.2rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7dd3fc;
  margin-bottom: 0.6rem;
  backdrop-filter: blur(8px);
}
.solution-card-title {
  color: white !important;
  font-size: 1.2rem !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  letter-spacing: -0.02em !important;
  margin: 0 !important;
}
.solution-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: white;
  font-size: 0.85rem;
  margin-top: 0.75rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s, background 0.2s ease;
  backdrop-filter: blur(8px);
}
.solution-card:hover .solution-card-arrow {
  opacity: 1;
  transform: translateY(0);
}
.solution-card-arrow:hover {
  background: var(--color-primary);
}

/* ─── 6. STATS CARDS — Gradient number ──────────────────────── */
.stat-premium-card {
  background: #ffffff;
  border: 1px solid rgba(226,232,240,0.8);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(15,23,42,0.05);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.4s ease,
              border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.stat-premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-grad, var(--gradient-primary));
  border-radius: 20px 20px 0 0;
}
.stat-premium-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(39,165,255,0.2);
}
.stat-premium-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 800;
  line-height: 1;
  background: var(--accent-grad, var(--gradient-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}
.stat-premium-label {
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

/* ─── 7. PARTNER STRIP — Pill cards ─────────────────────────── */
.partner-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(226,232,240,0.9);
  border-radius: 100px;
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(15,23,42,0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}
.partner-pill:hover {
  border-color: rgba(39,165,255,0.35);
  box-shadow: 0 4px 20px rgba(39,165,255,0.12);
  color: var(--color-primary);
}
.partner-pill i {
  color: var(--color-primary);
  font-size: 1rem;
}

/* ─── 8. SECTION BACKGROUNDS — Alternating premium ──────────── */
.section-premium-light {
  background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}
.section-premium-dark {
  background: linear-gradient(135deg, #0a0f1e 0%, #0f1629 50%, #141e35 100%);
  position: relative;
  overflow: hidden;
}
.section-premium-dark::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(39,165,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.section-premium-dark::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(139,92,246,0.12) 0%, transparent 60%);
  pointer-events: none;
}

/* ─── 9. ANIMATED COUNT-UP NUMBERS ──────────────────────────── */
.count-up-num {
  font-feature-settings: 'tnum';
  font-variant-numeric: tabular-nums;
}

/* ─── 10. BUTTON UPGRADES ────────────────────────────────────── */
.btn-primary {
  background: var(--gradient-primary) !important;
  border: none !important;
  border-radius: 100px !important;
  font-family: 'Sora', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  padding: 0.85rem 2rem !important;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(39,165,255,0.35) !important;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.3s ease !important;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 60%);
  border-radius: inherit;
  pointer-events: none;
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 8px 32px rgba(39,165,255,0.5) !important;
}

.btn-ghost {
  background: rgba(255,255,255,0.08) !important;
  border: 1.5px solid rgba(255,255,255,0.2) !important;
  border-radius: 100px !important;
  font-family: 'Sora', sans-serif !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.9) !important;
  padding: 0.85rem 2rem !important;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease !important;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15) !important;
  border-color: rgba(255,255,255,0.4) !important;
  transform: translateY(-2px) !important;
}

/* ─── 11. HERO KEYWORD CHIPS ─────────────────────────────────── */
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-block: 1.5rem;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  animation: fade-up 0.6s var(--ease-out) both;
}
.hero-chip:nth-child(1) { animation-delay: 0.7s; }
.hero-chip:nth-child(2) { animation-delay: 0.8s; }
.hero-chip:nth-child(3) { animation-delay: 0.9s; }
.hero-chip:nth-child(4) { animation-delay: 1.0s; }
.hero-chip:hover {
  background: rgba(39,165,255,0.2);
  border-color: rgba(39,165,255,0.4);
  color: white;
}
.hero-chip i { color: #27a5ff; }

/* ─── 12. SCROLL-REVEAL STAGGER ──────────────────────────────── */
[data-reveal-group] {
  perspective: 1500px;
  transform-style: preserve-3d;
}
[data-reveal-item] {
  transition-delay: calc(var(--stagger, 0) * 80ms);
}

/* ─── 13. ANIMATED GRADIENT BORDER CARDS ─────────────────────── */
.glow-border-card {
  position: relative;
  border-radius: 20px;
  background: white;
  overflow: hidden;
}
.glow-border-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, #27a5ff 0%, #8b5cf6 50%, #ec4899 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.glow-border-card:hover::before {
  opacity: 1;
}

/* ─── 14. SECTION WAVE DIVIDER ───────────────────────────────── */
.wave-divider {
  overflow: hidden;
  line-height: 0;
  margin-block-end: -2px;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* ─── 15. FOOTER UPGRADE ────────────────────────────────────── */
footer {
  background: linear-gradient(135deg, #070c18 0%, #0a0f1e 100%) !important;
}

/* ─── 16. RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .solution-card { height: 220px; }
  .stat-premium-num { font-size: 2.25rem; }
  .hero-chips { gap: 0.4rem; }
  .hero-chip { font-size: 0.72rem; padding: 0.3rem 0.75rem; }
}

/* ─── 17. GLOBAL WFM / SECTOR COMPONENT OVERRIDES ────────────── */
.wfm-hero-box {
  background: #ffffff !important;
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
  border-radius: 24px !important;
  padding: 3.5rem !important;
  box-shadow: var(--shadow-xl) !important;
  position: relative;
  overflow: hidden;
}
.wfm-hero-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
}
.wfm-stat-card {
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
  border-radius: 16px !important;
  padding: 1.5rem !important;
  text-align: center !important;
  background: #ffffff !important;
  box-shadow: 0 4px 12px rgba(15,23,42,0.02) !important;
  transition: all 0.3s ease !important;
}
.wfm-stat-card:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(39, 165, 255, 0.25) !important;
  box-shadow: var(--shadow-md) !important;
}
.wfm-stat-num {
  font-family: 'Bricolage Grotesque', sans-serif !important;
  font-size: 2.25rem !important;
  font-weight: 800 !important;
  color: var(--color-primary) !important;
  margin-bottom: 0.25rem !important;
}
.wfm-stat-label {
  font-family: 'Sora', sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: var(--color-text-secondary) !important;
}

.wfm-section-title {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  background: linear-gradient(135deg, rgba(39,165,255,0.1) 0%, rgba(139,92,246,0.08) 100%) !important;
  border: 1px solid rgba(39,165,255,0.2) !important;
  border-radius: 100px !important;
  padding: 0.35rem 1rem !important;
  font-family: 'Sora', sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--color-primary) !important;
  margin-bottom: 2rem !important;
}

.wfm-service-card {
  background: white !important;
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
  border-radius: 20px !important;
  padding: 2.25rem !important;
  box-shadow: 0 4px 20px rgba(15,23,42,0.03) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: flex !important;
  gap: 1.5rem !important;
  height: 100% !important;
}
.wfm-service-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: var(--shadow-card-hover) !important;
  border-color: rgba(39, 165, 255, 0.25) !important;
}
.wfm-service-icon {
  width: 52px !important;
  height: 52px !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, rgba(39,165,255,0.1) 0%, rgba(139,92,246,0.05) 100%) !important;
  color: var(--color-primary) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.5rem !important;
  flex-shrink: 0 !important;
  transition: all 0.3s ease !important;
}
.wfm-service-card:hover .wfm-service-icon {
  background: var(--gradient-primary) !important;
  color: white !important;
  box-shadow: 0 4px 12px rgba(39,165,255,0.25) !important;
}
.wfm-service-content h3 {
  font-family: 'Bricolage Grotesque', sans-serif !important;
  font-size: 1.2rem !important;
  font-weight: 800 !important;
  color: var(--color-dark) !important;
  margin-bottom: 0.75rem !important;
}
.wfm-service-content p {
  font-size: 0.92rem !important;
  color: var(--color-text-secondary) !important;
  line-height: 1.65 !important;
}

.wfm-why-card {
  background: white !important;
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
  border-radius: 20px !important;
  padding: 1.75rem !important;
  display: flex !important;
  gap: 1.25rem !important;
  align-items: flex-start !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  height: 100% !important;
}
.wfm-why-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(39, 165, 255, 0.25) !important;
  box-shadow: var(--shadow-card-hover) !important;
}
.wfm-why-card .icon {
  width: 44px !important;
  height: 44px !important;
  border-radius: 10px !important;
  background: linear-gradient(135deg, rgba(39,165,255,0.1) 0%, rgba(139,92,246,0.05) 100%) !important;
  color: var(--color-primary) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.2rem !important;
  flex-shrink: 0 !important;
  transition: all 0.3s ease !important;
}
.wfm-why-card:hover .icon {
  background: var(--color-primary) !important;
  color: white !important;
  box-shadow: 0 4px 12px rgba(39,165,255,0.25) !important;
}
.wfm-why-card h3 {
  font-family: 'Sora', sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: var(--color-dark) !important;
  margin-bottom: 0.35rem !important;
}
.wfm-why-card p {
  font-size: 0.9rem !important;
  color: var(--color-text-secondary) !important;
  line-height: 1.6 !important;
}

.wfm-cta-box {
  background: var(--gradient-mesh), #ffffff !important;
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
  border-radius: 24px !important;
  padding: 3.5rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 2rem !important;
  margin-top: 4rem !important;
  box-shadow: var(--shadow-xl) !important;
  position: relative !important;
}
.wfm-cta-box h2 {
  font-family: 'Bricolage Grotesque', sans-serif !important;
  font-size: 2rem !important;
  font-weight: 850 !important;
  color: var(--color-dark) !important;
  margin-bottom: 0.5rem !important;
}
.wfm-cta-box p {
  font-size: 1.05rem !important;
  color: var(--color-text-secondary) !important;
  margin: 0 !important;
}

/* ─── 18. COMPACT LAYOUT SYSTEM-WIDE OVERRIDES ──────────────── */
.section {
  padding-block: clamp(2.5rem, 5vw, 3.5rem) !important;
}
.section-sm {
  padding-block: clamp(1.5rem, 3vw, 2rem) !important;
}
.section-lg {
  padding-block: clamp(3rem, 6vw, 4rem) !important;
}
.section-header {
  margin-block-end: clamp(1.5rem, 3.5vw, 2.25rem) !important;
  margin-bottom: clamp(1.5rem, 3.5vw, 2.25rem) !important; /* overrides inline margin-bottom: 3rem */
}
.page-hero {
  padding-block-start: calc(var(--nav-height) + clamp(1.75rem, 3.5vw, 2.5rem)) !important;
  padding-block-end: clamp(2.25rem, 4.5vw, 3rem) !important;
}
.wfm-hero-box {
  padding: clamp(1.75rem, 3.5vw, 2.5rem) !important;
}
.wfm-cta-box {
  padding: clamp(1.75rem, 3.5vw, 2.5rem) !important;
  margin-top: clamp(1.75rem, 3.5vw, 2.5rem) !important;
}

/* ─── 19. CUSTOM CURSOR FOLLOWER ───────────────────────────── */
@media (pointer: fine) {
  /* Only hide native cursor if JS successfully enables the custom cursor class */
  body.custom-cursor-enabled {
    cursor: none; /* Hide default system cursor */
  }
  body.custom-cursor-enabled a, 
  body.custom-cursor-enabled button, 
  body.custom-cursor-enabled [role="button"], 
  body.custom-cursor-enabled [data-tilt], 
  body.custom-cursor-enabled .btn, 
  body.custom-cursor-enabled .partner-pill, 
  body.custom-cursor-enabled .stat-glass-card, 
  body.custom-cursor-enabled .service-card, 
  body.custom-cursor-enabled .logo, 
  body.custom-cursor-enabled .nav-menu li a {
    cursor: none !important; /* Hide custom system cursor on hoverable elements as well */
  }
  body.custom-cursor-enabled select, 
  body.custom-cursor-enabled input, 
  body.custom-cursor-enabled textarea {
    cursor: auto !important; /* Ensure native dropdown select menus & input focus carets work normally */
  }
  
  .custom-cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border: 1.5px solid #ffffff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    transform: translate3d(-50%, -50%, 0);
    will-change: transform;
    mix-blend-mode: difference; /* creates beautiful invert overlap colors */
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
    opacity: 0;
  }
  .custom-cursor-follower.visible {
    opacity: 1;
  }
  
  .custom-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    transform: translate3d(-50%, -50%, 0);
    will-change: transform;
    transition: width 0.2s ease, height 0.2s ease, background-color 0.3s ease, opacity 0.3s ease;
    opacity: 0;
  }
  .custom-cursor-dot.visible {
    opacity: 1;
  }
  
  /* Hover States */
  .custom-cursor-active {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
  }
  
  .custom-cursor-dot-active {
    width: 10px;
    height: 10px;
    background-color: #ffffff;
  }
}

@media (pointer: coarse) {
  .custom-cursor-follower,
  .custom-cursor-dot {
    display: none !important;
  }
}

