/* ==========================================================================
   EASY SERVE COMMUNICATION — PREMIUM DESIGN SYSTEM
   Blue + Green glassmorphism layer · Stripe/Vercel/Linear-inspired
   Loaded AFTER styles.css. Overrides and enhances, never removes.
   ========================================================================== */

/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */
:root {
  /* Core palette */
  --primary-blue: #2563EB;
  --secondary-blue: #3B82F6;
  --primary-green: #10B981;
  --accent-green: #34D399;
  --primary-blue-rgb: 37, 99, 235;
  --primary-green-rgb: 16, 185, 129;
  --bg-light: #F8FCFF;
  --dark-section: #0F172A;
  --text-dark: #0F172A;
  --text-light: #64748B;
  --border-blue: rgba(37, 99, 235, 0.12);
  --border-green: rgba(16, 185, 129, 0.18);

  /* Brand gradient */
  --gradient-brand: linear-gradient(135deg, #2563EB 0%, #10B981 100%);
  --gradient-brand-soft: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(16, 185, 129, 0.08));
  --gradient-brand-text: linear-gradient(120deg, #2563EB 0%, #10B981 60%, #34D399 100%);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.68);
  --glass-bg-strong: rgba(255, 255, 255, 0.85);
  --glass-bg-dark: rgba(15, 23, 42, 0.75);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-blur: blur(20px) saturate(160%);
  --glass-shadow: 0 20px 50px rgba(15, 76, 129, 0.08), 0 2px 10px rgba(16, 185, 129, 0.06);
  --glass-shadow-hover: 0 30px 70px rgba(37, 99, 235, 0.16), 0 8px 24px rgba(16, 185, 129, 0.12);

  /* Glows */
  --glow-blue: 0 0 24px rgba(37, 99, 235, 0.4);
  --glow-green: 0 0 24px rgba(16, 185, 129, 0.4);

  /* Radii */
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Override older layers to the new palette */
  --primary-blue-nav: #2563EB;
  --accent-green-nav: #10B981;
  --rev-blue: #2563EB;
  --rev-green: #10B981;
  --luxury-gold-gradient: linear-gradient(135deg, #2563EB 0%, #10B981 100%);
  --luxury-gold: #10B981;
  --luxury-gold-dark: #2563EB;
  --luxury-card-border: rgba(37, 99, 235, 0.14);
}

/* ==========================================================================
   2. GLOBAL BASE
   ========================================================================== */
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  background-color: #F8FCFF;
  color: #0F172A;
  font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  isolation: isolate;
  position: relative;
}

body.no-scroll {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6,
.btn, .section-tag, .badge-sub, .nav-pill, .brand-name,
.counter-numbers, .counter-numbers-suffix, .rating-number,
.jd-rating-score, .jd-rating-count, .testimonial-slide .quote,
.hero-main-title {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
}

/* Selection */
::selection {
  background: linear-gradient(135deg, #2563EB, #10B981);
  color: #ffffff;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: #eef4ff;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #2563EB, #10B981);
  border-radius: 8px;
  border: 2px solid #eef4ff;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #1D4ED8, #0E9F6E);
}
html {
  scrollbar-color: #2563EB #eef4ff;
  scrollbar-width: thin;
}

/* Accessible focus rings */
:focus-visible {
  outline: 2px solid #2563EB;
  outline-offset: 3px;
  border-radius: 6px;
}

button, a {
  -webkit-tap-highlight-color: transparent;
}

/* ==========================================================================
   3. GLOBAL ANIMATED BACKGROUND (aurora blobs + grid + particles)
   ========================================================================== */
.bg-aurora {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(37, 99, 235, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 110%, rgba(16, 185, 129, 0.07), transparent 60%),
    linear-gradient(180deg, #F8FCFF 0%, #ffffff 100%);
}

.bg-aurora .aurora-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 20%, transparent 75%);
}

.bg-aurora .aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  will-change: transform;
}

.bg-aurora .aurora-blob.b1 {
  width: 520px;
  height: 520px;
  top: -160px;
  left: -120px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.5) 0%, transparent 70%);
  animation: aurora-drift-1 26s ease-in-out infinite alternate;
}

.bg-aurora .aurora-blob.b2 {
  width: 460px;
  height: 460px;
  top: 24%;
  right: -180px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.42) 0%, transparent 70%);
  animation: aurora-drift-2 32s ease-in-out infinite alternate;
}

.bg-aurora .aurora-blob.b3 {
  width: 420px;
  height: 420px;
  bottom: -140px;
  left: 30%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.35) 0%, transparent 70%);
  animation: aurora-drift-1 38s ease-in-out infinite alternate-reverse;
}

@keyframes aurora-drift-1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(70px, 40px) scale(1.12); }
  100% { transform: translate(-40px, 80px) scale(0.95); }
}

@keyframes aurora-drift-2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-60px, -50px) scale(1.1); }
  100% { transform: translate(40px, -20px) scale(1.05); }
}

#bg-particles {
  position: absolute;
  inset: 0;
  opacity: 0.8;
}

/* ==========================================================================
   4. PRELOADER
   ========================================================================== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  background: linear-gradient(160deg, #0F172A 0%, #0b1d3a 45%, #123a5e 100%);
  transition: opacity 0.7s var(--ease-out), visibility 0.7s;
}

#preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  position: relative;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 26px;
  background: linear-gradient(135deg, #2563EB 0%, #10B981 100%);
  box-shadow: 0 0 60px rgba(37, 99, 235, 0.5), 0 0 30px rgba(16, 185, 129, 0.4);
  animation: preloader-breathe 2s ease-in-out infinite;
}

.preloader-logo svg {
  width: 46px;
  height: 46px;
  color: #ffffff;
}

.preloader-logo::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 32px;
  border: 2px solid transparent;
  background: linear-gradient(135deg, #2563EB, #34D399, #2563EB) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: preloader-ring 1.8s linear infinite;
}

@keyframes preloader-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes preloader-ring {
  to { transform: rotate(360deg); }
}

.preloader-progress {
  width: 220px;
  height: 5px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.preloader-progress-bar {
  width: 0%;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, #2563EB, #34D399, #10B981);
  background-size: 200% 100%;
  animation: shimmer-slide 1.4s linear infinite;
  transition: width 0.3s ease;
}

.preloader-text {
  font-family: 'Outfit', sans-serif;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

/* ==========================================================================
   5. SCROLL PROGRESS BAR
   ========================================================================== */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #2563EB, #34D399, #10B981);
  background-size: 200% 100%;
  transform-origin: left;
  transform: scaleX(0);
  z-index: 9999;
  pointer-events: none;
  animation: shimmer-slide 3s linear infinite;
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.5);
}

/* ==========================================================================
   6. CURSOR FOLLOWER
   ========================================================================== */
#cursor-dot,
#cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  will-change: transform;
  display: none;
}

#cursor-dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #2563EB, #10B981);
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.6);
}

#cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(37, 99, 235, 0.55);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out),
    border-color 0.25s, background 0.25s;
}

#cursor-ring.hovering {
  width: 56px;
  height: 56px;
  border-color: rgba(16, 185, 129, 0.8);
  background: rgba(16, 185, 129, 0.08);
}

@media (hover: hover) and (pointer: fine) {
  #cursor-dot, #cursor-ring { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  #cursor-dot, #cursor-ring { display: none !important; }
}

/* ==========================================================================
   7. BACK TO TOP
   ========================================================================== */
#back-to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  background: linear-gradient(135deg, #2563EB 0%, #10B981 100%);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4), 0 4px 14px rgba(16, 185, 129, 0.3);
  opacity: 0;
  transform: translateY(24px) scale(0.8);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-spring),
    box-shadow 0.3s ease;
  z-index: 900;
}

#back-to-top.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

#back-to-top:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.55), 0 6px 20px rgba(16, 185, 129, 0.4);
}

#back-to-top svg {
  width: 22px;
  height: 22px;
  animation: btt-float 2.2s ease-in-out infinite;
}

@keyframes btt-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ==========================================================================
   8. PREMIUM NAVBAR — glass · blur · gradient border · shrink · hide
   ========================================================================== */
.main-header {
  background: rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border-bottom: none !important;
  box-shadow: 0 1px 0 rgba(37, 99, 235, 0.06), 0 8px 30px rgba(15, 76, 129, 0.06) !important;
  transition: transform 0.45s var(--ease-out), box-shadow 0.4s ease, background 0.4s ease, margin-bottom 0.35s var(--ease-out) !important;
}

/* Animated gradient bottom border */
.main-header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, #2563EB 0%, #34D399 30%, #10B981 55%, #34D399 80%, #2563EB 100%);
  background-size: 300% 100%;
  animation: header-border-flow 6s linear infinite;
  opacity: 0.85;
  pointer-events: none;
}

@keyframes header-border-flow {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* Hide on scroll down, show on scroll up */
.main-header.nav-hidden {
  transform: translateY(-110%);
}

/* Shrink on scroll */
.main-header.sticky {
  background: rgba(255, 255, 255, 0.85) !important;
  box-shadow: 0 1px 0 rgba(37, 99, 235, 0.08), 0 12px 40px rgba(15, 76, 129, 0.12) !important;
  /* Keeps the page in place while the header shrinks (delta set by JS) */
  margin-bottom: var(--hdr-delta, 0px);
}

.main-header.sticky .utility-bar {
  padding: 6px 0;
  border-bottom-color: rgba(37, 99, 235, 0.06);
}

.main-header.sticky .nav-bar-wrapper {
  padding: 4px 0;
}

.main-header.sticky .brand-logo {
  width: 40px;
  height: 40px;
}

.utility-bar,
.nav-bar-wrapper {
  transition: padding 0.35s var(--ease-out);
}

/* Anchor targets land below the sticky header (no overlap while scrolling) */
section[id],
.faq-card[id] {
  scroll-margin-top: 110px;
}

.utility-bar {
  border-bottom: 1px solid rgba(37, 99, 235, 0.08);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-bar-wrapper {
  background: transparent;
}

/* Logo */
.brand-logo-link {
  position: relative;
}

.logo-wrapper {
  position: relative;
}

.brand-logo {
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.18);
}

.brand-tagline {
  border-left-color: rgba(37, 99, 235, 0.25) !important;
  color: #64748B !important;
}

.brand-name {
  background: linear-gradient(135deg, #2563EB, #10B981);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: filter 0.3s ease;
}

.brand-logo-link:hover .brand-name {
  filter: drop-shadow(0 0 12px rgba(37, 99, 235, 0.4));
}

/* Nav pills with animated underline */
.nav-pill {
  position: relative;
  color: #334155 !important;
  font-weight: 600 !important;
  transition: color 0.25s ease !important;
}

.nav-pill::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2563EB, #10B981);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.35s var(--ease-out);
}

.nav-pill:hover::after,
.nav-pill.is-open::after {
  width: 78%;
}

.nav-pill:hover {
  color: #2563EB !important;
  text-shadow: 0 0 18px rgba(37, 99, 235, 0.35);
}

.nav-pill.is-open {
  color: #2563EB !important;
}

.chevron-icon {
  transition: transform 0.3s var(--ease-out), color 0.3s ease;
}

.nav-pill.is-open .chevron-icon {
  transform: rotate(180deg);
  color: #10B981;
}

/* Login / Sign up */
.login-link {
  position: relative;
  color: #0F172A !important;
}

.login-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2563EB, #10B981);
  transition: width 0.3s var(--ease-out);
}

.login-link:hover {
  color: #2563EB !important;
}

.login-link:hover::after {
  width: 100%;
}

.signup-btn {
  border-color: #2563EB !important;
  color: #2563EB !important;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease-out) !important;
}

.signup-btn:hover {
  background: linear-gradient(135deg, #2563EB, #10B981) !important;
  border-color: transparent !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.35), 0 4px 14px rgba(16, 185, 129, 0.3) !important;
}

/* Hamburger */
.hamburger-line {
  background: linear-gradient(90deg, #2563EB, #10B981) !important;
  transition: all 0.3s var(--ease-out);
}

.hamburger-btn:hover .hamburger-line {
  transform: scaleX(1.2);
}

/* Dropdown panels — glass + gradient border + entrance */
.dropdown-panels-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  pointer-events: none;
}

.dropdown-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  padding: 28px 0 24px;
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  border-bottom: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 30px 70px rgba(15, 76, 129, 0.16) !important;
  opacity: 0;
  transform: translateY(-14px);
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.dropdown-panel.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563EB 0%, #34D399 50%, #10B981 100%);
  background-size: 200% 100%;
  animation: shimmer-slide 4s linear infinite;
}

/* Pane / card items inside dropdowns */
.pane-item,
.pane-subitem,
.ai-item-card,
.company-item-card,
.solutions-col,
.detail-link,
.pane-detail-content {
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease,
    background 0.3s ease, border-color 0.3s ease !important;
}

.pane-item {
  border-radius: 14px;
}

.pane-item.active {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(16, 185, 129, 0.08)) !important;
  border-color: rgba(37, 99, 235, 0.2) !important;
}

.pane-item:hover,
.pane-subitem:hover,
.ai-item-card:hover,
.company-item-card:hover,
.detail-link:hover {
  transform: translateX(4px) !important;
}

.ai-item-card,
.company-item-card {
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.7) !important;
  border: 1px solid rgba(37, 99, 235, 0.1) !important;
}

.ai-item-card:hover,
.company-item-card:hover {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.07), rgba(16, 185, 129, 0.07)) !important;
  border-color: rgba(37, 99, 235, 0.25) !important;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.12) !important;
}

.dropdown-footer-row {
  border-top: 1px solid rgba(37, 99, 235, 0.1) !important;
}

.footer-row-link {
  color: #2563EB !important;
  font-weight: 600;
}

.footer-row-link.highlight-green {
  color: #10B981 !important;
}

.two-tone-icon .stroke-blue,
.stroke-blue {
  stroke: #2563EB !important;
}

.two-tone-icon .fill-green,
.fill-green {
  fill: #10B981 !important;
}

.stroke-green {
  stroke: #10B981 !important;
}

/* Mobile drawer */
.mobile-navigation {
  background: rgba(248, 252, 255, 0.92) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: -20px 0 60px rgba(15, 76, 129, 0.18) !important;
}

.mobile-dropdown-btn {
  border-radius: 12px !important;
}

.mobile-dropdown-btn.active {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(16, 185, 129, 0.08)) !important;
  color: #2563EB !important;
}

.mobile-sub-link-item {
  border-radius: 10px;
  transition: background 0.25s ease, transform 0.25s var(--ease-out), color 0.25s ease;
}

.mobile-sub-link-item:hover {
  background: rgba(37, 99, 235, 0.07) !important;
  color: #2563EB !important;
  transform: translateX(4px);
}

/* ==========================================================================
   9. PREMIUM BUTTONS — gradient · glow · ripple · arrow slide · magnetic
   ========================================================================== */
.btn {
  position: relative;
  overflow: hidden;
  border-radius: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em;
  will-change: transform;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease,
    background-position 0.4s ease, color 0.3s ease, border-color 0.3s ease !important;
}

.btn-solid {
  background: linear-gradient(135deg, #2563EB 0%, #3B82F6 45%, #10B981 100%) !important;
  background-size: 220% 220% !important;
  background-position: 0% 50%;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.35), 0 4px 14px rgba(16, 185, 129, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
}

.btn-solid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  background-size: 250% 100%;
  background-position: -250% center;
  transition: background-position 0.7s ease;
  pointer-events: none;
}

.btn-solid:hover {
  background-position: 100% 50%;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 42px rgba(37, 99, 235, 0.45), 0 8px 22px rgba(16, 185, 129, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.btn-solid:hover::before {
  background-position: 250% center;
}

.btn-solid:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.65) !important;
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(37, 99, 235, 0.4) !important;
  color: #2563EB !important;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.1) !important;
}

.btn-outline:hover {
  background: linear-gradient(135deg, #2563EB 0%, #10B981 100%) !important;
  border-color: transparent !important;
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(37, 99, 235, 0.38), 0 6px 18px rgba(16, 185, 129, 0.3) !important;
}

.btn-white {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.45) !important;
  color: #ffffff !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.8) !important;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(37, 99, 235, 0.3) !important;
}

.btn-sm {
  border-radius: 10px !important;
}

/* Ripple */
.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: scale(0);
  animation: ripple-anim 0.65s var(--ease-out);
  pointer-events: none;
}

.ripple-effect.on-dark {
  background: rgba(37, 99, 235, 0.4);
}

@keyframes ripple-anim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Arrow slide inside buttons */
.btn .icon-arrow,
.btn .arrow-indicator {
  transition: transform 0.35s var(--ease-spring);
}

.btn:hover .icon-arrow,
.btn:hover .arrow-indicator {
  transform: translateX(5px);
}

/* ==========================================================================
   10. HERO — premium dark glass
   ========================================================================== */
.hero-section {
  background: linear-gradient(135deg, #0F172A 0%, #16284f 30%, #1e3a8a 55%, #2563EB 78%, #0e7490 100%) !important;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(ellipse 100% 80% at 50% 40%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 100% 80% at 50% 40%, #000 30%, transparent 75%);
  z-index: 0;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 110%, rgba(16, 185, 129, 0.22), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-section .container,
.hero-section .hero-grid,
.hero-section .meta-partner-strip {
  position: relative;
  z-index: 2;
}

.meta-partner-strip {
  background: rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  letter-spacing: 0.06em;
}

/* Hero tabs — glass pills */
.hero-tabs-container {
  position: relative;
  z-index: 2;
}

.hero-service-tabs {
  background: rgba(255, 255, 255, 0.07) !important;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 18px !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25) !important;
}

.service-tab-btn {
  border-radius: 12px !important;
  color: rgba(255, 255, 255, 0.75) !important;
  position: relative;
  transition: all 0.35s var(--ease-out) !important;
}

.service-tab-btn::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.25), rgba(16, 185, 129, 0.2));
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}

.service-tab-btn > * {
  position: relative;
  z-index: 1;
}

.service-tab-btn:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.1) !important;
  transform: translateY(-2px);
}

.service-tab-btn.active {
  color: #ffffff !important;
  background: linear-gradient(135deg, #2563EB, #10B981) !important;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.45), 0 0 22px rgba(16, 185, 129, 0.3) !important;
}

.service-tab-btn.active::before {
  opacity: 1;
}

.tab-progress-bar {
  background: rgba(255, 255, 255, 0.35) !important;
}

.service-tab-btn.active .tab-progress-bar {
  background: rgba(255, 255, 255, 0.9) !important;
}

/* Hero title — word reveal + shimmer accent */
.hero-main-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem) !important;
  color: #ffffff;
}

.hero-main-title .accent-highlight {
  background: linear-gradient(120deg, #34D399 0%, #3B82F6 60%, #34D399 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: text-shimmer 5s linear infinite;
}

.hero-title-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(26px);
  animation: hero-word-in 0.7s var(--ease-out) forwards;
  animation-delay: calc(var(--word-i, 0) * 60ms);
}

@keyframes hero-word-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero badge — glass glow pill */
.brand-badge-hero {
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.15), 0 10px 30px rgba(0, 0, 0, 0.25) !important;
  animation: hero-badge-glow 3.5s ease-in-out infinite !important;
  border-radius: 999px !important;
}

@keyframes hero-badge-glow {
  0%, 100% {
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.2), 0 10px 30px rgba(0, 0, 0, 0.25),
      0 0 0 rgba(16, 185, 129, 0);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.35), 0 10px 34px rgba(0, 0, 0, 0.3),
      0 0 28px rgba(16, 185, 129, 0.4);
  }
}

.pulse-indicator {
  background: #34D399 !important;
  box-shadow: 0 0 0 rgba(52, 211, 153, 0.5);
  animation: indicator-pulse 2s var(--ease-out) infinite !important;
}

@keyframes indicator-pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5); }
  70% { box-shadow: 0 0 0 9px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.hero-paragraph {
  color: rgba(226, 232, 240, 0.85) !important;
}

/* API tags */
.api-tag {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 999px !important;
  color: rgba(226, 232, 240, 0.9) !important;
  transition: all 0.3s var(--ease-out) !important;
}

/* Hero service illustration — gentle float (CSS replaces the former
   infinite GSAP tween so no tweens accumulate across service switches) */
.service-illustration-box {
  animation: illustration-float 2.8s ease-in-out infinite;
  will-change: transform;
}

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

.api-tag:hover {
  background: rgba(16, 185, 129, 0.18) !important;
  border-color: rgba(52, 211, 153, 0.45) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.25);
}

/* Hero widget — glass panel */
.widget-card {
  background: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(37, 99, 235, 0.12) !important;
  border-radius: 24px !important;
  box-shadow:
    0 40px 90px rgba(2, 6, 23, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
  animation: float-up-down 7s 1s infinite ease-in-out;
}

/* Hero shapes — blue/green blobs */
.shape-1 {
  background: radial-gradient(circle, rgba(52, 211, 153, 0.5) 0%, transparent 70%) !important;
}

.shape-2 {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.55) 0%, transparent 70%) !important;
}

.shape-glow {
  background: radial-gradient(circle, rgba(37, 99, 235, 0.45) 0%, transparent 70%) !important;
}

/* Illustration icon */
.illustration-icon-wrapper {
  background: linear-gradient(135deg, #2563EB, #10B981) !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.4) !important;
  color: #ffffff !important;
}

/* ==========================================================================
   11. SECTION HEADERS — premium typography
   ========================================================================== */
.section-tag {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.1)) !important;
  color: #2563EB !important;
  border: 1px solid rgba(37, 99, 235, 0.22) !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.1);
}

.badge-sub {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.1)) !important;
  color: #2563EB !important;
  border: 1px solid rgba(37, 99, 235, 0.22) !important;
}

.section-header h2,
.section-main-title {
  color: #0F172A !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}

.section-header h2::before,
.section-main-title::before {
  content: none;
}

.section-header.with-line::after,
.section-title-wrapper::after {
  background: linear-gradient(90deg, #2563EB 0%, #10B981 100%) !important;
  box-shadow: 0 2px 14px rgba(37, 99, 235, 0.35);
}

.section-desc,
.section-subtitle {
  color: #64748B !important;
}

.section-title-wrapper h2 {
  background: linear-gradient(120deg, #2563EB 0%, #10B981 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 18px rgba(37, 99, 235, 0.2));
}

/* ==========================================================================
   12. SCROLL REVEALS — enhanced + directional variants
   ========================================================================== */
.reveal-on-scroll,
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out),
    filter 0.8s var(--ease-out);
}

.reveal-on-scroll.revealed,
.reveal-stagger.revealed > * {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Directional variants (classes added by premium.js) */
.reveal-left {
  transform: translateX(-60px) !important;
}

.reveal-right {
  transform: translateX(60px) !important;
}

.reveal-zoom {
  transform: scale(0.88) translateY(20px) !important;
}

.reveal-left.revealed,
.reveal-right.revealed,
.reveal-zoom.revealed {
  transform: translateX(0) scale(1) translateY(0) !important;
}

/* Stagger transition delays — slightly snappier */
.reveal-stagger > *:nth-child(1) { transition-delay: 0.04s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.22s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.28s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.34s; }
.reveal-stagger > *:nth-child(7) { transition-delay: 0.4s; }
.reveal-stagger > *:nth-child(8) { transition-delay: 0.46s; }

/* Directional reveals driven by premium.js (own observer, class .premium-reveal) */
.premium-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out),
    filter 0.8s var(--ease-out) !important;
}

.premium-reveal.reveal-left {
  transform: translateX(-56px);
}

.premium-reveal.reveal-right {
  transform: translateX(56px);
}

.premium-reveal.reveal-zoom {
  transform: scale(0.9) translateY(18px);
}

.premium-reveal.revealed {
  opacity: 1;
  transform: none;
}

/* Section tag shimmer badge */
.section-tag.premium-section-tag {
  position: relative;
  overflow: hidden;
}

.section-tag.premium-section-tag::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.55) 50%, transparent 65%);
  background-size: 250% 100%;
  animation: section-tag-shimmer 3.5s linear infinite;
  pointer-events: none;
}

@keyframes section-tag-shimmer {
  0% { background-position: -250% center; }
  60%, 100% { background-position: 250% center; }
}

/* Active testimonial emphasis */
.testimonial-slide.premium-active {
  transform: scale(1.025);
  z-index: 2;
}

/* ==========================================================================
   13. ABOUT SECTION
   ========================================================================== */
.about-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(248, 252, 255, 0.55) 100%) !important;
  position: relative;
}

.about-grid {
  position: relative;
}

.about-text-content h3 {
  color: #0F172A !important;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.about-box {
  background: rgba(255, 255, 255, 0.75) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(37, 99, 235, 0.12) !important;
  border-radius: 18px !important;
  box-shadow: var(--glass-shadow) !important;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease,
    border-color 0.3s ease !important;
}

.about-box:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--glass-shadow-hover) !important;
  border-color: rgba(16, 185, 129, 0.35) !important;
}

.box-icon {
  border-radius: 14px !important;
  animation: float-up-down 5s infinite ease-in-out;
  transition: transform 0.35s var(--ease-spring) !important;
}

.about-box:hover .box-icon {
  transform: scale(1.12) rotate(-6deg);
}

.box-icon.icon-blue {
  background: linear-gradient(135deg, #2563EB, #3B82F6) !important;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35) !important;
  color: #ffffff;
}

.box-icon.icon-green {
  background: linear-gradient(135deg, #10B981, #34D399) !important;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35) !important;
  color: #ffffff;
}

.about-highlight-card {
  background: linear-gradient(160deg, #0F172A 0%, #16284f 55%, #1e3a8a 100%) !important;
  border-radius: 24px !important;
  border: 1px solid rgba(37, 99, 235, 0.3) !important;
  box-shadow: 0 40px 90px rgba(15, 23, 42, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  position: relative;
  overflow: hidden;
}

.about-highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563EB, #34D399, #10B981);
  background-size: 200% 100%;
  animation: shimmer-slide 5s linear infinite;
}

.about-highlight-card::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  right: -100px;
  bottom: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.35), transparent 70%);
  filter: blur(50px);
  animation: float-up-down 9s infinite ease-in-out;
}

.highlight-inner {
  position: relative;
  z-index: 1;
}

.highlight-logo-wrapper {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) !important;
}

.highlight-stat-bullets .bullet {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(10px);
  border-radius: 12px;
  transition: all 0.3s var(--ease-out);
}

.highlight-stat-bullets .bullet:hover {
  background: rgba(52, 211, 153, 0.12) !important;
  border-color: rgba(52, 211, 153, 0.4) !important;
  transform: translateX(6px);
}

.highlight-stat-bullets .bullet::before {
  background: #34D399 !important;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.6);
}

/* ==========================================================================
   14. SERVICES SECTION
   ========================================================================== */
.services-section {
  background: linear-gradient(180deg, rgba(248, 252, 255, 0.6) 0%, rgba(255, 255, 255, 0.8) 100%) !important;
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 900px;
  height: 500px;
  background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(37, 99, 235, 0.06), transparent 70%);
  pointer-events: none;
}

.services-filters {
  position: relative;
}

.filter-tab {
  border-radius: 999px !important;
  font-weight: 600 !important;
  color: #64748B !important;
  border: 1px solid rgba(37, 99, 235, 0.15) !important;
  background: rgba(255, 255, 255, 0.75) !important;
  backdrop-filter: blur(10px);
  transition: all 0.35s var(--ease-out) !important;
}

.filter-tab:hover {
  border-color: rgba(37, 99, 235, 0.4) !important;
  color: #2563EB !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.14);
}

.filter-tab.active {
  background: linear-gradient(135deg, #2563EB, #10B981) !important;
  border-color: transparent !important;
  color: #ffffff !important;
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.4), 0 0 18px rgba(16, 185, 129, 0.25) !important;
}

/* Services split screen */
.services-nav-col {
  background: rgba(255, 255, 255, 0.7) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(37, 99, 235, 0.12) !important;
  border-radius: 22px !important;
  box-shadow: var(--glass-shadow) !important;
}

.service-nav-item {
  border-radius: 14px !important;
  transition: all 0.3s var(--ease-out) !important;
}

.service-nav-item:hover {
  background: rgba(37, 99, 235, 0.06) !important;
  transform: translateX(4px);
}

.service-nav-item.active {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.1)) !important;
  border-left-color: #2563EB !important;
}

.nav-indicator {
  background: linear-gradient(135deg, #2563EB, #10B981) !important;
  border-radius: 99px !important;
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.5);
}

.service-preview-col {
  background: rgba(255, 255, 255, 0.7) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(37, 99, 235, 0.12) !important;
  border-radius: 22px !important;
  box-shadow: var(--glass-shadow) !important;
}

.preview-badge-pill {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.1)) !important;
  border: 1px solid rgba(37, 99, 235, 0.25) !important;
  color: #2563EB !important;
}

/* ==========================================================================
   15. WHY CHOOSE US — glass cards with gradient borders
   ========================================================================== */
.why-choose-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 252, 255, 0.55) 100%) !important;
  position: relative;
  overflow: hidden;
}

.why-choose-section::before,
.why-choose-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.why-choose-section::before {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -140px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 70%);
  animation: aurora-drift-1 20s ease-in-out infinite alternate;
}

.why-choose-section::after {
  width: 380px;
  height: 380px;
  bottom: -120px;
  left: -140px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.16), transparent 70%);
  animation: aurora-drift-2 24s ease-in-out infinite alternate;
}

.feature-box {
  background: rgba(255, 255, 255, 0.78) !important;
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(37, 99, 235, 0.12) !important;
  border-radius: 22px !important;
  box-shadow: var(--glass-shadow) !important;
  position: relative;
  z-index: 1;
  transition: transform 0.45s var(--ease-spring), box-shadow 0.45s ease,
    border-color 0.3s ease !important;
}

.feature-box::before {
  background: linear-gradient(90deg, #2563EB, #34D399, #10B981) !important;
  height: 3px;
  box-shadow: 0 0 14px rgba(37, 99, 235, 0.5);
}

.feature-box:hover {
  transform: translateY(-10px) scale(1.02) !important;
  box-shadow: var(--glass-shadow-hover), 0 0 40px rgba(37, 99, 235, 0.08) !important;
  border-color: rgba(37, 99, 235, 0.3) !important;
}

.feature-icon {
  border-radius: 14px !important;
}

.feature-box:hover .feature-icon {
  transform: scale(1.15) rotate(-6deg) !important;
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.25) !important;
}

.feature-box .whatsapp-color {
  background: linear-gradient(135deg, #10B981, #34D399) !important;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3) !important;
  color: #ffffff;
}

.feature-box .icon-blue {
  background: linear-gradient(135deg, #2563EB, #3B82F6) !important;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3) !important;
  color: #ffffff;
}

.feature-box .icon-green {
  background: linear-gradient(135deg, #10B981, #34D399) !important;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3) !important;
  color: #ffffff;
}

.feature-box .icon-light-blue {
  background: linear-gradient(135deg, #3B82F6, #60A5FA) !important;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3) !important;
  color: #ffffff;
}

.feature-box h4 {
  color: #0F172A !important;
  font-weight: 700;
}

.feature-box p {
  color: #64748B !important;
}

/* ==========================================================================
   16. STATS — animated glow counters
   ========================================================================== */
.stats-section {
  background: linear-gradient(135deg, #0F172A 0%, #1e3a8a 55%, #0f766e 100%) !important;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) !important;
}

.stats-section::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.2), transparent 70%);
  filter: blur(70px);
  top: -160px;
  right: -120px;
  animation: aurora-drift-1 22s ease-in-out infinite alternate;
  pointer-events: none;
}

.stat-counter-box {
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 22px !important;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease !important;
}

.stat-counter-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #3B82F6, #34D399, #10B981);
  background-size: 200% 100%;
  opacity: 0.5;
  animation: shimmer-slide 4s linear infinite;
}

.stat-counter-box:hover {
  transform: translateY(-8px) !important;
  background: rgba(255, 255, 255, 0.09) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(37, 99, 235, 0.12) !important;
}

.counter-icon {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.25), rgba(16, 185, 129, 0.25)) !important;
  border: 1px solid rgba(52, 211, 153, 0.35) !important;
  color: #34D399 !important;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.25) !important;
}

.counter-numbers,
.counter-numbers-suffix {
  background: linear-gradient(135deg, #ffffff 20%, #34D399 70%, #10B981 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  filter: drop-shadow(0 6px 24px rgba(37, 99, 235, 0.35));
}

.counter-label {
  color: rgba(226, 232, 240, 0.8) !important;
}

/* ==========================================================================
   17. CLIENTS MARQUEE
   ========================================================================== */
.clients-section {
  background: linear-gradient(180deg, rgba(248, 252, 255, 0.6) 0%, rgba(255, 255, 255, 0.8) 100%) !important;
}

.clients-title {
  color: #64748B !important;
}

.client-badge {
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(37, 99, 235, 0.12) !important;
  border-radius: 999px !important;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.06) !important;
  transition: all 0.3s var(--ease-out) !important;
}

.client-badge:hover {
  transform: translateY(-4px) scale(1.05);
  border-color: rgba(16, 185, 129, 0.4) !important;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.16) !important;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(16, 185, 129, 0.06)) !important;
}

.carousel-wrapper:hover .clients-track {
  animation-play-state: paused;
}

/* ==========================================================================
   18. PROCESS TIMELINE — animated line, glowing nodes
   ========================================================================== */
.process-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 252, 255, 0.55) 100%) !important;
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(37, 99, 235, 0.07), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.process-step-item {
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(37, 99, 235, 0.12) !important;
  border-radius: 22px !important;
  box-shadow: var(--glass-shadow) !important;
  transition: transform 0.45s var(--ease-spring), box-shadow 0.45s ease !important;
}

.process-step-item:hover {
  transform: translateY(-10px) !important;
  box-shadow: var(--glass-shadow-hover) !important;
  border-color: rgba(16, 185, 129, 0.3) !important;
}

.step-icon-wrapper {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(16, 185, 129, 0.08)) !important;
  border: 1px solid rgba(37, 99, 235, 0.15) !important;
  border-radius: 18px !important;
}

.step-num {
  background: linear-gradient(135deg, #2563EB, #10B981) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.4) !important;
  animation: step-num-pulse 3s ease-in-out infinite;
}

@keyframes step-num-pulse {
  0%, 100% { box-shadow: 0 6px 18px rgba(37, 99, 235, 0.4), 0 0 0 0 rgba(16, 185, 129, 0.4); }
  50% { box-shadow: 0 6px 24px rgba(37, 99, 235, 0.55), 0 0 0 10px rgba(16, 185, 129, 0); }
}

.process-step-item .two-tone-icon .stroke-blue {
  stroke: #2563EB;
}

/* Animated connectors between steps */
.process-arrow svg {
  filter: drop-shadow(0 0 10px rgba(37, 99, 235, 0.5));
  animation: arrow-glow-flow 2.4s ease-in-out infinite;
}

@keyframes arrow-glow-flow {
  0%, 100% {
    transform: translateX(0);
    filter: drop-shadow(0 0 6px rgba(37, 99, 235, 0.35));
  }
  50% {
    transform: translateX(6px);
    filter: drop-shadow(0 0 16px rgba(16, 185, 129, 0.6));
  }
}

/* ==========================================================================
   19. INDUSTRIES CARDS
   ========================================================================== */
.industries-section {
  background: linear-gradient(180deg, rgba(248, 252, 255, 0.6) 0%, rgba(255, 255, 255, 0.8) 100%) !important;
}

.industry-card {
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(37, 99, 235, 0.12) !important;
  border-radius: 22px !important;
  box-shadow: var(--glass-shadow) !important;
  transition: transform 0.45s var(--ease-spring), box-shadow 0.45s ease !important;
}

.industry-card::before {
  background: linear-gradient(90deg, #2563EB, #34D399, #10B981) !important;
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.5);
}

.industry-card:hover {
  transform: translateY(-10px) scale(1.02) !important;
  box-shadow: var(--glass-shadow-hover) !important;
}

.industry-icon {
  filter: drop-shadow(0 8px 18px rgba(37, 99, 235, 0.2));
}

.industry-card h3 {
  color: #0F172A !important;
}

/* ==========================================================================
   20. FAQ — animated glass accordion
   ========================================================================== */
.faq-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 252, 255, 0.55) 100%) !important;
  position: relative;
}

.faq-glow-shape.shape-1 {
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25), transparent 70%) !important;
  animation: aurora-drift-1 18s ease-in-out infinite alternate;
}

.faq-glow-shape.shape-2 {
  background: radial-gradient(circle, rgba(16, 185, 129, 0.22), transparent 70%) !important;
  animation: aurora-drift-2 22s ease-in-out infinite alternate;
}

.faq-search-box {
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(37, 99, 235, 0.15) !important;
  border-radius: 18px !important;
  box-shadow: var(--glass-shadow) !important;
  transition: box-shadow 0.3s ease, border-color 0.3s ease !important;
}

.faq-search-box:focus-within {
  border-color: rgba(37, 99, 235, 0.4) !important;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08), var(--glass-shadow-hover) !important;
}

.faq-card {
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(37, 99, 235, 0.12) !important;
  border-radius: 18px !important;
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.05) !important;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease,
    border-color 0.3s ease !important;
}

.faq-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(37, 99, 235, 0.12) !important;
  border-color: rgba(37, 99, 235, 0.25) !important;
}

.faq-card.open {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(240, 249, 255, 0.92)) !important;
  border-color: rgba(37, 99, 235, 0.3) !important;
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.14), 0 0 30px rgba(16, 185, 129, 0.06) !important;
}

.faq-card-header {
  transition: background 0.3s ease !important;
}

.faq-card-header:hover {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.04), rgba(16, 185, 129, 0.04)) !important;
}

.faq-plus-icon {
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.1)) !important;
  color: #2563EB !important;
  transition: transform 0.4s var(--ease-spring), background 0.3s ease, color 0.3s ease !important;
}

.faq-card.open .faq-plus-icon {
  transform: rotate(135deg);
  background: linear-gradient(135deg, #2563EB, #10B981) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.faq-cat-badge {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.1)) !important;
  color: #2563EB !important;
  border: 1px solid rgba(37, 99, 235, 0.2) !important;
}

.faq-answer-content {
  color: #64748B !important;
}

.faq-toggle-btn {
  border-radius: 999px !important;
  background: linear-gradient(135deg, #2563EB, #10B981) !important;
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.35) !important;
  color: #ffffff !important;
  transition: all 0.35s var(--ease-out) !important;
}

.faq-toggle-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.45) !important;
}

.faq-toggle-btn-icon {
  transition: transform 0.4s var(--ease-spring);
}

.faq-toggle-btn:hover .faq-toggle-btn-icon {
  transform: translateY(2px);
}

/* ==========================================================================
   21. GOOGLE REVIEWS — blue/green glass polish
   ========================================================================== */
.testimonials-section {
  background: linear-gradient(160deg, rgba(234, 242, 255, 0.82) 0%, rgba(255, 255, 255, 0.75) 35%, rgba(233, 250, 243, 0.8) 70%, rgba(255, 255, 255, 0.85) 100%) !important;
  position: relative;
  overflow: hidden;
}

.testimonials-section .section-header,
.testimonials-layout-grid,
.testimonials-section .btn {
  position: relative;
  z-index: 1;
}

/* Animated gradient drift (transform-only, replaces the former
   background-position animation which repainted the section every frame) */
.testimonials-section::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 300%;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(160deg, rgba(234, 242, 255, 0.82) 0%, rgba(255, 255, 255, 0.75) 35%, rgba(233, 250, 243, 0.8) 70%, rgba(255, 255, 255, 0.85) 100%);
  will-change: transform;
  animation: rev-bg-drift 18s ease-in-out infinite;
}

.reviews-summary-card {
  background: rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: blur(20px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(160%) !important;
  border: 1px solid rgba(37, 99, 235, 0.14) !important;
  border-radius: 24px !important;
  box-shadow: var(--glass-shadow) !important;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--ease-spring), box-shadow 0.45s ease !important;
}

.reviews-summary-card::before {
  background: linear-gradient(90deg, #2563EB 0%, #34D399 50%, #10B981 100%) !important;
  background-size: 200% 100%;
  animation: shimmer-slide 6s linear infinite;
  box-shadow: 0 2px 18px rgba(37, 99, 235, 0.4) !important;
}

.reviews-summary-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--glass-shadow-hover) !important;
}

.rating-number {
  background: linear-gradient(135deg, #2563EB 0%, #10B981 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  filter: drop-shadow(0 8px 22px rgba(37, 99, 235, 0.25));
}

.rating-stars .star-icon {
  animation: rev-star-shimmer 3s ease-in-out infinite;
}

.feature-item {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 12px;
  padding: 8px 14px;
  transition: all 0.3s var(--ease-out);
}

.feature-item:hover {
  background: rgba(16, 185, 129, 0.06);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateX(4px);
}

.feature-item span:not(.feature-bullet) {
  color: #334155 !important;
  font-weight: 600;
}

/* Active slide scale */
.testimonial-slide {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(18px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(160%) !important;
  border: 1px solid rgba(37, 99, 235, 0.14) !important;
  border-radius: 24px !important;
  box-shadow: var(--glass-shadow) !important;
  transition: transform 0.5s var(--ease-spring), box-shadow 0.5s ease, opacity 0.4s ease !important;
  position: relative;
  overflow: hidden;
}

.testimonial-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2563EB, #34D399, #10B981);
  background-size: 200% 100%;
  animation: shimmer-slide 5s linear infinite;
}

.testimonial-slide.active {
  transform: scale(1.02);
}

.testimonial-slide:not(.active) {
  opacity: 0.85;
}

.testimonial-slide:hover {
  box-shadow: var(--glass-shadow-hover) !important;
}

.author-avatar {
  background: linear-gradient(135deg, #2563EB, #10B981) !important;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35) !important;
  color: #ffffff !important;
}

.author-name {
  color: #0F172A !important;
}

.author-meta {
  color: #64748B !important;
}

.quote-icon {
  color: #10B981 !important;
  filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.4));
}

.slide-stars svg {
  filter: drop-shadow(0 2px 8px rgba(37, 99, 235, 0.35));
  animation: rev-star-shimmer 3.5s ease-in-out infinite;
}

.slide-stars svg:nth-child(2n) { animation-delay: 0.4s; }
.slide-stars svg:nth-child(3n) { animation-delay: 0.8s; }

.control-btn {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(37, 99, 235, 0.25) !important;
  color: #2563EB !important;
  transition: all 0.35s var(--ease-spring) !important;
}

.control-btn:hover {
  background: linear-gradient(135deg, #2563EB, #10B981) !important;
  border-color: transparent !important;
  color: #ffffff !important;
  transform: scale(1.1);
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.4) !important;
}

.slide-dots .dot {
  background-color: #c7d8f5 !important;
  transition: all 0.3s var(--ease-out) !important;
}

.slide-dots .dot.active {
  width: 26px;
  border-radius: 99px;
  background: linear-gradient(90deg, #2563EB, #10B981) !important;
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.5) !important;
}

/* ==========================================================================
   22. JUSTDIAL REVIEWS — polish (already blue/green)
   ========================================================================== */
.justdial-section {
  background: linear-gradient(160deg, rgba(234, 242, 255, 0.82) 0%, rgba(255, 255, 255, 0.75) 35%, rgba(233, 250, 243, 0.8) 70%, rgba(255, 255, 255, 0.85) 100%) !important;
  position: relative;
  overflow: hidden;
}

/* Animated gradient drift (transform-only, see section 21) */
.justdial-section::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 300%;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(160deg, rgba(234, 242, 255, 0.82) 0%, rgba(255, 255, 255, 0.75) 35%, rgba(233, 250, 243, 0.8) 70%, rgba(255, 255, 255, 0.85) 100%);
  will-change: transform;
  animation: rev-bg-drift 18s ease-in-out infinite;
}

/* Shared keyframes: drifts a 300%-tall gradient layer to mimic the old
   background-position animation without repainting the section */
@keyframes rev-bg-drift {
  0%, 100% { transform: translateY(33.333%); }
  50% { transform: translateY(-33.333%); }
}

.jd-summary-card {
  background: rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: blur(20px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(160%) !important;
  border-radius: 24px !important;
  box-shadow: var(--glass-shadow) !important;
}

.jd-summary-card::before {
  background: linear-gradient(90deg, #2563EB 0%, #34D399 50%, #10B981 100%) !important;
  background-size: 200% 100%;
  animation: shimmer-slide 6s linear infinite;
}

.jd-card {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(18px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(160%) !important;
  border: 1px solid rgba(37, 99, 235, 0.14) !important;
  border-radius: 22px !important;
  box-shadow: var(--glass-shadow) !important;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease !important;
}

.jd-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563EB, #34D399, #10B981);
  background-size: 200% 100%;
  animation: shimmer-slide 6s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.jd-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--glass-shadow-hover) !important;
  border-color: rgba(16, 185, 129, 0.35) !important;
}

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

.jd-avatar {
  background: linear-gradient(135deg, #2563EB, #3B82F6) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3) !important;
}

.jd-avatar--green {
  background: linear-gradient(135deg, #10B981, #34D399) !important;
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3) !important;
}

.jd-card-stars svg {
  filter: drop-shadow(0 2px 8px rgba(37, 99, 235, 0.35));
}

.jd-verified-badge {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(37, 99, 235, 0.08)) !important;
  border: 1px solid rgba(16, 185, 129, 0.28) !important;
  color: #0B5638 !important;
}

.jd-cta-btn {
  border-radius: 999px !important;
  background: linear-gradient(135deg, #2563EB, #10B981) !important;
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.35), 0 4px 12px rgba(16, 185, 129, 0.25) !important;
  color: #ffffff !important;
  transition: all 0.35s var(--ease-out) !important;
  position: relative;
  overflow: hidden;
}

.jd-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
  background-size: 250% 100%;
  background-position: -250% center;
  transition: background-position 0.6s ease;
}

.jd-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(37, 99, 235, 0.5), 0 6px 18px rgba(16, 185, 129, 0.35) !important;
}

.jd-cta-btn:hover::before {
  background-position: 250% center;
}

/* ==========================================================================
   23. CONTACT SECTION
   ========================================================================== */
.contact-section {
  background: linear-gradient(180deg, rgba(248, 252, 255, 0.6) 0%, rgba(255, 255, 255, 0.85) 100%) !important;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  top: -200px;
  left: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1), transparent 70%);
  filter: blur(70px);
  pointer-events: none;
}

.contact-card-box {
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(22px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(22px) saturate(160%) !important;
  border: 1px solid rgba(37, 99, 235, 0.14) !important;
  border-radius: 28px !important;
  box-shadow: var(--glass-shadow), 0 0 60px rgba(37, 99, 235, 0.06) !important;
  overflow: hidden;
  position: relative;
}

.contact-card-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563EB, #34D399, #10B981);
  background-size: 200% 100%;
  animation: shimmer-slide 5s linear infinite;
  z-index: 2;
}

.contact-info-panel {
  background: linear-gradient(160deg, #0F172A 0%, #1e3a8a 55%, #0f766e 100%) !important;
  position: relative;
  overflow: hidden;
}

.contact-info-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.contact-info-panel > * {
  position: relative;
  z-index: 1;
}

.contact-item {
  transition: transform 0.35s var(--ease-out);
}

.contact-item:hover {
  transform: translateX(6px);
}

.icon-circle {
  animation: float-up-down 5s infinite ease-in-out;
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.3) !important;
}

.icon-circle.icon-green {
  background: linear-gradient(135deg, #10B981, #34D399) !important;
  color: #ffffff;
}

.icon-circle.icon-blue {
  background: linear-gradient(135deg, #2563EB, #3B82F6) !important;
  color: #ffffff;
}

.icon-circle.icon-light-blue {
  background: linear-gradient(135deg, #3B82F6, #60A5FA) !important;
  color: #ffffff;
}

.contact-item h5 {
  color: #ffffff !important;
}

.contact-item p {
  color: rgba(226, 232, 240, 0.75) !important;
}

.contact-form-panel {
  background: rgba(248, 252, 255, 0.6) !important;
}

.form-input,
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.85) !important;
  border: 1.5px solid rgba(37, 99, 235, 0.15) !important;
  border-radius: 12px !important;
  color: #0F172A !important;
  transition: all 0.3s ease !important;
}

.form-input:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2563EB !important;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1), 0 8px 24px rgba(37, 99, 235, 0.12) !important;
  background: #ffffff !important;
}

/* ==========================================================================
   24. FOOTER — glass dark + wave + animated socials
   ========================================================================== */
.main-footer {
  background: rgba(15, 23, 42, 0.96) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Wave separator */
.main-footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 90px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 90' preserveAspectRatio='none'%3E%3Cpath d='M0,32 C240,90 480,0 720,24 C960,48 1200,90 1440,40 L1440,0 L0,0 Z' fill='%23F8FCFF'/%3E%3Cpath d='M0,48 C240,100 480,20 720,44 C960,68 1200,100 1440,56 L1440,0 L0,0 Z' fill='%232563EB' opacity='0.12'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
  z-index: 1;
  pointer-events: none;
}

/* Floating particles in footer */
.main-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(52, 211, 153, 0.5) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(96, 165, 250, 0.5) 1.5px, transparent 1.5px);
  background-size: 140px 140px, 180px 180px;
  background-position: 0 0, 90px 40px;
  animation: footer-particles 24s linear infinite;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%);
}

@keyframes footer-particles {
  from { background-position: 0 0, 90px 40px; }
  to { background-position: 280px 280px, 370px 320px; }
}

.main-footer .container {
  position: relative;
  z-index: 2;
}

.footer-grid {
  padding-top: 80px !important;
}

.footer-col h4 {
  color: #ffffff !important;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, #2563EB, #10B981);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.6);
}

.footer-brand-desc,
.footer-about-text {
  color: rgba(226, 232, 240, 0.65) !important;
}

.footer-links li a {
  color: rgba(226, 232, 240, 0.7) !important;
  transition: all 0.3s var(--ease-out) !important;
  position: relative;
}

.footer-links li a:hover {
  color: #34D399 !important;
  padding-left: 8px;
  text-shadow: 0 0 14px rgba(52, 211, 153, 0.5);
}

.footer-links li a::before {
  content: '→';
  position: absolute;
  left: -14px;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s var(--ease-out);
  color: #34D399;
}

.footer-links li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Social icons */
.social-links a {
  background: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 50% !important;
  color: rgba(255, 255, 255, 0.8) !important;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease-spring) !important;
}

.social-links a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2563EB, #10B981);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.social-links a svg {
  position: relative;
  z-index: 1;
  transition: transform 0.35s var(--ease-spring);
}

.social-links a:hover {
  transform: translateY(-5px) scale(1.12);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.45), 0 0 20px rgba(16, 185, 129, 0.3) !important;
  border-color: transparent !important;
  color: #ffffff !important;
  animation: social-float 2s ease-in-out infinite;
}

.social-links a:hover::before {
  opacity: 1;
}

.social-links a:nth-child(1) { animation-delay: 0s; }
.social-links a:nth-child(2) { animation-delay: 0.3s; }
.social-links a:nth-child(3) { animation-delay: 0.6s; }

@keyframes social-float {
  0%, 100% { transform: translateY(-5px) scale(1.12); }
  50% { transform: translateY(-9px) scale(1.12); }
}

.meta-partner-badge {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: rgba(2, 6, 23, 0.5);
  position: relative;
  z-index: 2;
}

.footer-bottom p {
  color: rgba(226, 232, 240, 0.55) !important;
}

.footer-bottom-links a {
  color: rgba(226, 232, 240, 0.6) !important;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #34D399 !important;
  text-shadow: 0 0 12px rgba(52, 211, 153, 0.5);
}

/* ==========================================================================
   25. SERVICE MODAL — glass dialog
   ========================================================================== */
.service-dialog {
  border-radius: 26px !important;
  border: 1px solid rgba(37, 99, 235, 0.15) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 60px 140px rgba(2, 6, 23, 0.4), 0 0 80px rgba(37, 99, 235, 0.1) !important;
  animation: dialog-in 0.45s var(--ease-spring) !important;
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.service-dialog::backdrop {
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.dialog-close-btn {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.1)) !important;
  color: #2563EB !important;
  border-radius: 50% !important;
  transition: all 0.3s var(--ease-spring) !important;
}

.dialog-close-btn:hover {
  background: linear-gradient(135deg, #2563EB, #10B981) !important;
  color: #ffffff !important;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.dialog-category-badge {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.1)) !important;
  color: #2563EB !important;
  border: 1px solid rgba(37, 99, 235, 0.22) !important;
}

.animation-card-frame {
  border-radius: 20px !important;
  border: 1px solid rgba(37, 99, 235, 0.15) !important;
  background: rgba(248, 252, 255, 0.8) !important;
  box-shadow: var(--glass-shadow) !important;
}

.modal-cta-box {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(16, 185, 129, 0.06)) !important;
  border: 1px solid rgba(37, 99, 235, 0.15) !important;
  border-radius: 16px;
}

/* ==========================================================================
   26. FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-whatsapp-btn {
  background: linear-gradient(135deg, #10B981, #34D399) !important;
  box-shadow: 0 12px 34px rgba(16, 185, 129, 0.45), 0 0 24px rgba(16, 185, 129, 0.25) !important;
  animation: wa-float 3s ease-in-out infinite;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease !important;
  z-index: 950;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.12) rotate(-6deg);
  box-shadow: 0 16px 44px rgba(16, 185, 129, 0.6), 0 0 34px rgba(16, 185, 129, 0.4) !important;
}

.floating-whatsapp-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(52, 211, 153, 0.7);
  animation: wa-ring 2.2s var(--ease-out) infinite;
}

@keyframes wa-ring {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(1.55); opacity: 0; }
}

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

/* ==========================================================================
   27. OTHER PAGES — careers · industries page · service details · AI
   ========================================================================== */
.careers-section,
.industries-section,
.features-section,
.flowchart-section,
.sandbox-section,
.cta-section {
  background: linear-gradient(180deg, rgba(248, 252, 255, 0.6) 0%, rgba(255, 255, 255, 0.85) 100%) !important;
  position: relative;
}

.careers-hero,
.hero-container {
  background: linear-gradient(135deg, #0F172A 0%, #16284f 40%, #1e3a8a 70%, #2563EB 100%) !important;
  position: relative;
  overflow: hidden;
}

.careers-hero::before,
.hero-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(ellipse 100% 80% at 50% 40%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 100% 80% at 50% 40%, #000 30%, transparent 75%);
  pointer-events: none;
}

.hero-title {
  background: linear-gradient(120deg, #ffffff, #dbeafe);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em !important;
}

.hero-visual-card {
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 22px !important;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3) !important;
}

.hero-visual-icon {
  background: linear-gradient(135deg, #2563EB, #10B981) !important;
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.4) !important;
  animation: float-up-down 4s infinite ease-in-out;
}

.hero-visual-badge {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(37, 99, 235, 0.2)) !important;
  border: 1px solid rgba(52, 211, 153, 0.4) !important;
  color: #34D399 !important;
  border-radius: 999px;
}

/* Generic premium cards for subpages */
.feature-card,
.sandbox-card,
.output-card,
.flow-step,
.ai-item-card,
.company-item-card,
.industry-card,
.detail-col,
.detail-overview-card {
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(37, 99, 235, 0.12) !important;
  border-radius: 20px !important;
  box-shadow: var(--glass-shadow) !important;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease,
    border-color 0.3s ease !important;
}

.feature-card:hover,
.sandbox-card:hover,
.output-card:hover,
.flow-step:hover,
.ai-item-card:hover,
.company-item-card:hover,
.industry-card:hover,
.detail-col:hover,
.detail-overview-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--glass-shadow-hover) !important;
  border-color: rgba(16, 185, 129, 0.3) !important;
}

.feature-card-icon {
  background: linear-gradient(135deg, #2563EB, #10B981) !important;
  color: #ffffff !important;
  border-radius: 14px !important;
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.3) !important;
  animation: float-up-down 5s infinite ease-in-out;
}

.feature-card-title,
.sandbox-card-title,
.flow-step-title,
.section-main-title {
  color: #0F172A !important;
  font-weight: 700;
}

.flow-step-num {
  background: linear-gradient(135deg, #2563EB, #10B981) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.4) !important;
}

.console-terminal {
  background: #0F172A !important;
  border: 1px solid rgba(37, 99, 235, 0.2) !important;
  border-radius: 16px !important;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.3) !important;
}

.sandbox-trigger-btn {
  border-radius: 12px !important;
}

/* ==========================================================================
   28. ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar {
  background: linear-gradient(90deg, #0F172A 0%, #1e3a8a 50%, #0f766e 100%) !important;
  background-size: 200% 100%;
  animation: shimmer-slide 10s linear infinite;
  position: relative;
  z-index: 1001;
}

.announcement-bar .badge {
  background: linear-gradient(135deg, #34D399, #10B981) !important;
  box-shadow: 0 0 14px rgba(52, 211, 153, 0.5);
}

.announcement-bar .text {
  color: rgba(255, 255, 255, 0.9) !important;
}

.announcement-bar a {
  color: #34D399 !important;
  position: relative;
}

.announcement-bar a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: #34D399;
  transition: width 0.3s var(--ease-out);
}

.announcement-bar a:hover::after {
  width: 100%;
}

/* ==========================================================================
   29. RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-main-title {
    font-size: clamp(2rem, 4.6vw, 2.9rem) !important;
  }

  .footer-grid {
    padding-top: 70px !important;
  }
}

@media (max-width: 768px) {
  .main-header {
    background: rgba(255, 255, 255, 0.88) !important;
  }

  .main-header::after {
    height: 2px;
  }

  .main-footer::before {
    height: 60px;
  }

  .footer-grid {
    padding-top: 60px !important;
  }

  #back-to-top {
    right: 18px;
    bottom: 84px;
    width: 44px;
    height: 44px;
  }

  #back-to-top svg {
    width: 19px;
    height: 19px;
  }

  .floating-whatsapp-btn {
    right: 18px !important;
    bottom: 22px !important;
  }
}

@media (max-width: 480px) {
  .announcement-content {
    font-size: 0.8rem;
  }

  .hero-main-title {
    font-size: 2rem !important;
  }
}

/* ==========================================================================
   30. REDUCED MOTION — respect user preference
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-on-scroll,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* ==========================================================================
   31. GLOBAL CONNECTIVITY PARTNERS — glass grid, gradient borders, glow
   ========================================================================== */

.partners-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(135deg, #F0F8FF 0%, #EEFBF5 50%, #F0F8FF 100%);
  background-size: 200% 200%;
  animation: partners-gradient-drift 18s ease-in-out infinite;
}

@keyframes partners-gradient-drift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Background decor: blurred circles + grid pattern + particles */
.partners-bg-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.partners-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 80, 163, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 80, 163, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 40%, transparent 100%);
}

.partner-blur-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.partner-blur-circle.circle-blue {
  width: 420px;
  height: 420px;
  top: -140px;
  left: -120px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.16), transparent 70%);
  animation: aurora-drift-1 20s ease-in-out infinite alternate;
}

.partner-blur-circle.circle-green {
  width: 380px;
  height: 380px;
  bottom: -140px;
  right: -120px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.16), transparent 70%);
  animation: aurora-drift-2 24s ease-in-out infinite alternate;
}

.partner-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.55), rgba(16, 185, 129, 0.15));
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.5);
  opacity: 0;
  animation: partner-particle-float 9s ease-in-out infinite;
}

.partner-particle.p1 { top: 12%; left: 8%; animation-delay: 0s; }
.partner-particle.p2 { top: 25%; left: 88%; animation-delay: 1.4s; }
.partner-particle.p3 { top: 55%; left: 15%; animation-delay: 2.8s; }
.partner-particle.p4 { top: 70%; left: 92%; animation-delay: 4.2s; }
.partner-particle.p5 { top: 85%; left: 40%; animation-delay: 5.6s; }
.partner-particle.p6 { top: 8%; left: 55%; animation-delay: 7s; }

@keyframes partner-particle-float {
  0% { transform: translateY(0) scale(0.8); opacity: 0; }
  15% { opacity: 0.8; }
  50% { transform: translateY(-40px) scale(1.15); opacity: 0.9; }
  85% { opacity: 0.5; }
  100% { transform: translateY(-90px) scale(0.8); opacity: 0; }
}

/* Section header polish */
.partners-section .container {
  position: relative;
  z-index: 1;
}

.partners-heading {
  background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}

.partners-heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
  box-shadow: 0 0 14px rgba(37, 99, 235, 0.5);
  transition: width 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.section-header.revealed .partners-heading::after {
  width: 110px;
}

.partners-tagline {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-green);
  margin: 4px 0 10px;
}

/* Partner cards grid */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.partner-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 30px 16px;
  min-height: 170px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: var(--glass-shadow);
  will-change: transform;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease;
}

/* Gradient border via padded pseudo-mask so inner glass stays translucent */
.partner-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.45), rgba(16, 185, 129, 0.45));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.7;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

/* Shimmering gradient border on hover */
.partner-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1.5px;
  background: linear-gradient(115deg, var(--primary-blue), var(--primary-green), var(--primary-blue));
  background-size: 220% 220%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  animation: partner-shimmer 3s linear infinite;
  animation-play-state: paused;
  pointer-events: none;
}

@keyframes partner-shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 220% 50%; }
}

.partner-card:hover {
  transform: translateY(-8px) scale(1.045);
  box-shadow: var(--glass-shadow-hover), 0 0 34px rgba(37, 99, 235, 0.16), 0 0 34px rgba(16, 185, 129, 0.1);
}

.partner-card:hover::before {
  opacity: 0;
}

.partner-card:hover::after {
  opacity: 1;
  animation-play-state: running;
}

.partner-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  animation: float-up-down 5s infinite ease-in-out;
}

.partner-card:nth-child(3n+1) .partner-logo-wrap { animation-delay: 0s; }
.partner-card:nth-child(3n+2) .partner-logo-wrap { animation-delay: 0.7s; }
.partner-card:nth-child(3n+3) .partner-logo-wrap { animation-delay: 1.4s; }

.partner-logo-img {
  max-height: 34px;
  max-width: 96px;
  width: auto;
  object-fit: contain;
}

.partner-monogram {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 8px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.25);
  transition: transform 0.35s var(--ease-spring);
}

.partner-card:hover .partner-monogram {
  transform: scale(1.12) rotate(-4deg);
}

.partner-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.25;
}

.partner-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 20px;
}

.partner-badge.badge-tech {
  background: var(--blue-light);
  color: var(--blue-light-text);
}

.partner-badge.badge-telecom {
  background: var(--green-light);
  color: var(--green-light-text);
}

/* Extend stagger delays beyond the shared 12-item default, scoped to this grid only */
.partners-grid.reveal-stagger > *:nth-child(13) { transition-delay: 0.42s; }
.partners-grid.reveal-stagger > *:nth-child(14) { transition-delay: 0.46s; }
.partners-grid.reveal-stagger > *:nth-child(15) { transition-delay: 0.50s; }
.partners-grid.reveal-stagger > *:nth-child(16) { transition-delay: 0.54s; }
.partners-grid.reveal-stagger > *:nth-child(17) { transition-delay: 0.58s; }
.partners-grid.reveal-stagger > *:nth-child(18) { transition-delay: 0.62s; }
.partners-grid.reveal-stagger > *:nth-child(19) { transition-delay: 0.66s; }
.partners-grid.reveal-stagger > *:nth-child(20) { transition-delay: 0.70s; }
/* Tighten the default 12-item cadence so the whole grid settles faster */
.partners-grid.reveal-stagger > *:nth-child(1) { transition-delay: 0.02s; }
.partners-grid.reveal-stagger > *:nth-child(2) { transition-delay: 0.06s; }
.partners-grid.reveal-stagger > *:nth-child(3) { transition-delay: 0.10s; }
.partners-grid.reveal-stagger > *:nth-child(4) { transition-delay: 0.14s; }
.partners-grid.reveal-stagger > *:nth-child(5) { transition-delay: 0.18s; }
.partners-grid.reveal-stagger > *:nth-child(6) { transition-delay: 0.22s; }
.partners-grid.reveal-stagger > *:nth-child(7) { transition-delay: 0.26s; }
.partners-grid.reveal-stagger > *:nth-child(8) { transition-delay: 0.30s; }
.partners-grid.reveal-stagger > *:nth-child(9) { transition-delay: 0.34s; }
.partners-grid.reveal-stagger > *:nth-child(10) { transition-delay: 0.38s; }
.partners-grid.reveal-stagger > *:nth-child(11) { transition-delay: 0.40s; }
.partners-grid.reveal-stagger > *:nth-child(12) { transition-delay: 0.41s; }

/* Tablet */
@media (max-width: 1024px) {
  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 860px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .partners-section {
    padding: 70px 0;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .partner-card {
    padding: 22px 12px;
    min-height: 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .partners-section,
  .partner-particle,
  .partner-blur-circle,
  .partner-logo-wrap,
  .partner-card::after {
    animation: none !important;
  }
}

/* ==========================================================================
   32. HERO — fixed-layout, zero-CLS across service tab switches
   The right-hand demo card gets a hard height (not min-height) so its
   varying per-service markup (chat window, EQ bars, carousel, forms of
   different lengths) never resizes the box; overflow scrolls internally
   instead. Combined with the min-heights on .hero-main-title,
   .hero-paragraph, .service-illustration-box and .snippet-logos (styles.css)
   and the min-height on .hero-grid, the whole section holds one constant
   size while GSAP only fades/slides opacity + transform inside it.
   ========================================================================== */
.widget-card {
  height: 600px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
}

.widget-card::-webkit-scrollbar {
  width: 6px;
}

.widget-card::-webkit-scrollbar-thumb {
  background: rgba(20, 80, 163, 0.18);
  border-radius: 6px;
}

@media (max-width: 1024px) {
  .hero-grid {
    min-height: 0;
  }

  .hero-widget-block {
    margin-top: 8px;
  }

  .widget-card {
    height: 560px;
  }
}

@media (max-width: 640px) {
  .hero-main-title {
    min-height: 3.6em;
  }

  .hero-paragraph {
    min-height: 6em;
  }

  .widget-card {
    height: 520px;
  }
}
