/* ===============================================================
   SPLICEIT SUPPORT SERVICES — MASTER STYLESHEET
   Ultra-premium, animation-heavy CSS with glassmorphism & neon
   =============================================================== */

/* ===========================
   1. CSS CUSTOM PROPERTIES
   =========================== */
:root {
  /* Azure Blue Palette */
  --blue-900: #002244;
  --blue-800: #003e77;
  --blue-700: #005a9e;
  --blue-600: #0078d4;
  --blue-500: #2b88d8;
  --blue-400: #71afe5;
  --blue-300: #a9d1f5;
  --blue-200: #c8e1f8;
  --blue-100: #deecf9;
  --blue-50:  #eff6fc;

  /* Accent Colors */
  --cyan-glow:    #00d4ff;
  --purple-accent:#7c3aed;
  --success:      #10b981;
  --warning:      #f59e0b;
  --danger:       #ef4444;

  /* Dark Theme */
  --dark-bg:      #0a0e1a;
  --dark-surface:  #111827;
  --dark-card:     #1a2035;
  --dark-border:   rgba(255, 255, 255, 0.06);

  /* Neutrals */
  --white:    #ffffff;
  --gray-900: #1a1a1a;
  --gray-800: #2d2d2d;
  --gray-700: #404040;
  --gray-600: #595959;
  --gray-500: #6b6b6b;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50:  #f8fafc;

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(0, 0, 0, 0.07);
  --shadow-md:  0 4px 16px rgba(0, 0, 0, 0.10);
  --shadow-lg:  0 8px 32px rgba(0, 0, 0, 0.13);
  --shadow-xl:  0 16px 48px rgba(0, 0, 0, 0.18);
  --shadow-glow:0 0 20px rgba(0, 120, 212, 0.3);
  --shadow-neon:0 0 15px rgba(0, 212, 255, 0.4), 0 0 40px rgba(0, 212, 255, 0.15);

  /* Borders & Radii */
  --radius:    8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl:24px;

  /* Transitions */
  --transition:      0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast:  0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:  0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring:0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out-expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-back:cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Font */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Glassmorphism */
  --glass-bg:     rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.25);
  --glass-blur:   12px;

  /* Card spotlight (set by JS) */
  --spotlight-x: 50%;
  --spotlight-y: 50%;
  --mouse-x: 0px;
  --mouse-y: 0px;
}


/* ===========================
   2. RESET & BASE
   =========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: default;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--blue-600);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--blue-700); }

ul { list-style: none; }

::selection {
  background: var(--blue-600);
  color: var(--white);
}


/* ===========================
   3. CUSTOM SCROLLBAR
   =========================== */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--dark-bg);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--blue-600), var(--purple-accent));
  border-radius: 10px;
  border: 2px solid var(--dark-bg);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--blue-500), var(--cyan-glow));
}

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--blue-600) var(--dark-bg);
}


/* ===========================
   4. CUSTOM CURSOR
   =========================== */
#custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--blue-600);
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-out-expo),
              height 0.25s var(--ease-out-expo),
              background 0.25s var(--ease-out-expo),
              border-color 0.25s var(--ease-out-expo),
              opacity 0.25s ease;
  mix-blend-mode: difference;
  opacity: 0;
}
#custom-cursor.visible {
  opacity: 1;
}
#custom-cursor.hover {
  width: 50px;
  height: 50px;
  background: rgba(0, 120, 212, 0.1);
  border-color: var(--cyan-glow);
}
#custom-cursor.click {
  width: 14px;
  height: 14px;
  background: var(--blue-600);
}


/* ===========================
   5. PAGE LOADER
   =========================== */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}
#page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#page-loader .loader-spinner {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid rgba(0, 120, 212, 0.15);
  border-top-color: var(--cyan-glow);
  animation: loaderSpin 0.8s linear infinite;
}
#page-loader .loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
#page-loader .loader-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  animation: loaderPulse 1.5s ease-in-out infinite;
}


/* ===========================
   6. SCROLL PROGRESS BAR
   =========================== */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-glow), var(--purple-accent));
  z-index: 10001;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5), 0 0 20px rgba(0, 212, 255, 0.2);
}


/* ===========================
   7. TYPOGRAPHY
   =========================== */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
  font-weight: 600;
  color: var(--gray-900);
}
h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  letter-spacing: -0.02em;
}
h3 { font-size: clamp(1.05rem, 1.5vw, 1.2rem); }
h4 { font-size: 1rem; }
p { color: var(--gray-600); }

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-glow), var(--purple-accent));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientTextShift 4s ease infinite;
}

/* Typing Cursor */
.typing-cursor::after {
  content: '|';
  display: inline-block;
  color: var(--cyan-glow);
  font-weight: 300;
  animation: typingBlink 0.75s step-end infinite;
  margin-left: 2px;
}
.hero .typing-cursor::after {
  -webkit-text-fill-color: var(--cyan-glow);
}


/* ===========================
   8. LAYOUT
   =========================== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
}
.section-alt {
  background: var(--gray-50);
}
.section-dark {
  background: var(--dark-bg);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}
.section-dark p {
  color: rgba(255, 255, 255, 0.65);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p {
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  max-width: 580px;
  margin: 0 auto;
  color: var(--gray-500);
}

.section-label {
  display: inline-block;
  background: var(--blue-50);
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}
.section-label::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 120, 212, 0.15), transparent);
  animation: shimmerSlide 3s ease-in-out infinite;
}

.section-dark .section-label {
  background: rgba(0, 120, 212, 0.15);
  color: var(--cyan-glow);
}

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }


/* ===========================
   9. NAVIGATION (Glassmorphism)
   =========================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s var(--ease-out-expo);
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  border-bottom-color: rgba(0, 120, 212, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 8px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-900);
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 16px;
  transition: transform var(--transition);
}
.nav-logo:hover {
  transform: scale(1.03);
  color: var(--gray-900);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-sub {
  display: block;
  font-size: 0.55rem;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 1px;
}
.logo-mark {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-glow));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0, 120, 212, 0.3);
}
.logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 50%;
  transition: transform 0.4s var(--ease-out-expo);
}
.logo-img:hover {
  transform: rotate(10deg) scale(1.08);
}
.footer-logo .logo-img {
  width: 60px;
  height: 60px;
}

/* Nav Links with Animated Underlines */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav-links a {
  color: var(--gray-700);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-glow));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out-expo);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--blue-600);
  background: rgba(0, 120, 212, 0.05);
}

.nav-cta { flex-shrink: 0; margin-left: 12px; }
.nav-cta-mobile { display: none; }

/* Nav Toggle (Mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  position: relative;
  z-index: 10;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out-expo);
  transform-origin: center;
}
/* Hamburger to X animation */
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ===========================
   10. BUTTONS (Neon Glow + Ripple)
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease-out-expo);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Ripple Effect */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: rippleExpand 0.6s ease-out;
  pointer-events: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  color: white;
  border-color: var(--blue-600);
  box-shadow: 0 2px 10px rgba(0, 120, 212, 0.25),
              0 0 0 0 rgba(0, 120, 212, 0);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  border-color: var(--blue-700);
  color: white;
  box-shadow: 0 4px 20px rgba(0, 120, 212, 0.4),
              0 0 30px rgba(0, 212, 255, 0.15);
  transform: translateY(-2px);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 120, 212, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--blue-600);
  border-color: var(--blue-600);
}
.btn-outline:hover {
  background: var(--blue-600);
  color: white;
  box-shadow: 0 4px 20px rgba(0, 120, 212, 0.3);
  transform: translateY(-2px);
}

.btn-ghost {
  background: white;
  color: var(--blue-600);
  border-color: white;
}
.btn-ghost:hover {
  background: var(--blue-50);
  color: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

/* Neon Glow Button */
.glow {
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3),
              0 0 30px rgba(0, 212, 255, 0.1),
              inset 0 0 15px rgba(0, 212, 255, 0.05);
}
.glow:hover {
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.5),
              0 0 50px rgba(0, 212, 255, 0.2),
              inset 0 0 20px rgba(0, 212, 255, 0.1);
}

/* Download Button */
.btn-download {
  background: linear-gradient(135deg, var(--blue-600), var(--purple-accent));
  color: white;
  border-color: transparent;
  position: relative;
}
.btn-download::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--blue-600), var(--purple-accent), var(--cyan-glow));
  z-index: -1;
  animation: pulseRing 2s ease-in-out infinite;
  opacity: 0.5;
}
.btn-download:hover {
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
}

/* Pay Button (green glow) */
.btn-pay {
  background: linear-gradient(135deg, var(--success), #059669);
  color: white;
  border-color: transparent;
  box-shadow: 0 2px 12px rgba(16, 185, 129, 0.3);
}
.btn-pay:hover {
  background: linear-gradient(135deg, #059669, #047857);
  color: white;
  box-shadow: 0 4px 25px rgba(16, 185, 129, 0.4),
              0 0 30px rgba(16, 185, 129, 0.15);
  transform: translateY(-2px);
}

/* Magnetic Button */
.magnetic-btn {
  transition: transform 0.3s var(--ease-out-expo);
  transform: translate(var(--mouse-x, 0), var(--mouse-y, 0));
}


/* ===========================
   11. HERO SECTION
   =========================== */
.hero {
  background: linear-gradient(135deg,
    #001a33 0%,
    #002244 15%,
    #003e77 35%,
    #0078d4 55%,
    #005a9e 75%,
    #002244 100%
  );
  background-size: 400% 400%;
  animation: gradientShift 12s ease infinite;
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 110px) 0 clamp(90px, 12vw, 120px);
  color: white;
}

/* Grid Lines Background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
  animation: gridSlide 20s linear infinite;
}

/* Decorative Gradient Orb */
.hero::after {
  content: '';
  position: absolute;
  right: -150px;
  top: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, rgba(124, 58, 237, 0.06) 40%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

/* Background grain */
.hero .grain,
.section-dark .grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 212, 255, 0.08), transparent 60%);
  transition: background 0.3s ease;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--cyan-glow);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: 24px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  animation: fadeInDown 0.8s var(--ease-out-expo) both;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--cyan-glow);
  border-radius: 50%;
  animation: badgeDotPulse 2s ease-in-out infinite;
  box-shadow: 0 0 6px var(--cyan-glow);
}

.hero h1 {
  color: white;
  margin-bottom: 18px;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.15s both;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.7;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.3s both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.45s both;
}

/* Floating Orbs */
.float-orb,
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(1px);
}
.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.float-orb:nth-child(1),
.hero-orb:nth-child(1) {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15), transparent);
  top: 20%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}
.float-orb:nth-child(2),
.hero-orb:nth-child(2) {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1), transparent);
  bottom: 15%;
  right: 25%;
  animation: float 8s ease-in-out infinite 2s;
}
.float-orb:nth-child(3),
.hero-orb:nth-child(3) {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(0, 120, 212, 0.15), transparent);
  top: 60%;
  right: 5%;
  animation: float 7s ease-in-out infinite 1s;
}

/* Blob Morphing Shape */
.blob {
  position: absolute;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(124, 58, 237, 0.08));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: blobMorph 10s ease-in-out infinite;
  pointer-events: none;
  filter: blur(40px);
}


/* ===========================
   12. WAVE DIVIDERS
   =========================== */
.wave-divider {
  position: relative;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
  color: var(--gray-50);
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 50px;
}
.wave-divider.flip {
  transform: rotate(180deg);
}
.wave-divider.wave-white { color: var(--white); }
.wave-divider.wave-dark { color: var(--dark-bg); }

/* Section divider shimmer */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-400), var(--cyan-glow), var(--blue-400), transparent);
  background-size: 200% 100%;
  animation: shimmerSlide 3s linear infinite;
  margin: 0;
  border: none;
  opacity: 0.5;
}


/* ===========================
   13. TRUST BAR
   =========================== */
.trust-bar {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-900));
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.trust-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(0, 212, 255, 0.06), transparent 70%);
  pointer-events: none;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  position: relative;
}
.trust-stat {
  position: relative;
  padding: 12px;
}
.trust-stat::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}
.trust-stat:last-child::after { display: none; }

.trust-stat h3 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
  background: linear-gradient(135deg, var(--white), var(--cyan-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.trust-stat p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}


/* ===========================
   14. CARDS & FEATURES
   =========================== */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

/* Card Spotlight Hover Effect */
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    350px circle at var(--spotlight-x, 50%) var(--spotlight-y, 50%),
    rgba(0, 120, 212, 0.06),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.card:hover::before { opacity: 1; }

.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 120, 212, 0.2);
  transform: translateY(-4px);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--blue-50), rgba(0, 212, 255, 0.08));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--blue-600);
  transition: all 0.4s var(--ease-out-expo);
}
.card:hover .card-icon {
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-glow));
  color: white;
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 4px 15px rgba(0, 120, 212, 0.3);
}

.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.92rem; color: var(--gray-500); line-height: 1.7; }

/* 3D Tilt Card */
.tilt-card {
  transform-style: preserve-3d;
  perspective: 800px;
  transition: transform 0.5s var(--ease-out-expo);
}
.tilt-card:hover {
  transform: perspective(800px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateZ(10px);
}

/* Feature cards */
.feature-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

/* Animated gradient border on feature cards */
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-glow), var(--purple-accent), var(--blue-600));
  background-size: 300% 300%;
  -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.4s ease;
  animation: borderRotate 4s linear infinite;
}
.feature-card:hover::before { opacity: 1; }

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

.feature-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: 0 4px 12px rgba(0, 120, 212, 0.25);
}
.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 6px 20px rgba(0, 120, 212, 0.35);
  background: linear-gradient(135deg, var(--blue-500), var(--cyan-glow));
}

.feature-card h3 { margin-bottom: 10px; }
.feature-card p { font-size: 0.92rem; color: var(--gray-500); line-height: 1.7; }

/* Feature list */
.feature-list { margin-top: 16px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-700);
  padding: 6px 0;
  transition: transform 0.2s ease;
}
.feature-list li:hover {
  transform: translateX(4px);
}
.feature-list li::before {
  content: '\2713';
  color: var(--blue-600);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Counter Box */
.counter-box {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
}
.counter-box::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-glow));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.4;
  transition: opacity 0.4s ease;
}
.counter-box:hover::before { opacity: 1; }
.counter-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.1);
}

/* Glass Panel */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
}

/* Badge / Pill */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  animation: badgePulse 3s ease-in-out infinite;
}
.badge-blue {
  background: rgba(0, 120, 212, 0.1);
  color: var(--blue-600);
}
.badge-cyan {
  background: rgba(0, 212, 255, 0.1);
  color: var(--cyan-glow);
}
.badge-purple {
  background: rgba(124, 58, 237, 0.1);
  color: var(--purple-accent);
}


/* ===========================
   15. STEPS / TIMELINE
   =========================== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  counter-reset: step;
  position: relative;
}
/* Timeline connecting line */
.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--blue-400) 0,
    var(--blue-400) 8px,
    transparent 8px,
    transparent 16px
  );
  opacity: 0.3;
  animation: dashSlide 2s linear infinite;
}

.step {
  text-align: center;
  position: relative;
  padding-top: 16px;
}
.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 120, 212, 0.3);
  transition: all 0.4s var(--ease-out-expo);
}
.step-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(0, 120, 212, 0.2);
  animation: stepPulse 2.5s ease-in-out infinite;
}
.step:hover .step-number {
  transform: scale(1.15);
  box-shadow: 0 6px 25px rgba(0, 120, 212, 0.4),
              0 0 20px rgba(0, 212, 255, 0.2);
  background: linear-gradient(135deg, var(--blue-500), var(--cyan-glow));
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: var(--gray-500); max-width: 240px; margin: 0 auto; }

/* Timeline variant */
.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(
    180deg,
    var(--blue-400) 0,
    var(--blue-400) 8px,
    transparent 8px,
    transparent 16px
  );
  animation: dashSlideVertical 2s linear infinite;
}


/* ===========================
   16. PRICING CARDS
   =========================== */
.adhoc-section {
  background: linear-gradient(135deg, var(--blue-50), rgba(0, 212, 255, 0.03));
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-2xl);
  padding: clamp(28px, 4vw, 44px);
  margin-bottom: 64px;
  position: relative;
  overflow: hidden;
}
.adhoc-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 120, 212, 0.05), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.adhoc-section h2 { margin-bottom: 8px; }
.adhoc-section > p { margin-bottom: 28px; }

.adhoc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.adhoc-item {
  background: white;
  border-radius: var(--radius-lg);
  padding: 26px;
  text-align: center;
  border: 1px solid var(--blue-100);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.adhoc-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-400);
}
.adhoc-item .adhoc-price {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--blue-600);
  margin: 10px 0 6px;
  line-height: 1;
}
.adhoc-item .adhoc-label {
  font-size: 0.88rem;
  color: var(--gray-500);
  font-weight: 500;
}
.adhoc-item .adhoc-name {
  font-size: 0.78rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* Managed Plans */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.pricing-card {
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: 38px 30px;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-600), var(--blue-400));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.pricing-card:hover::before { opacity: 1; }

.pricing-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
  border-color: rgba(0, 120, 212, 0.15);
}

/* Featured / Most Popular Card */
.pricing-card.featured {
  border-color: var(--blue-600);
  box-shadow: 0 8px 40px rgba(0, 120, 212, 0.15);
  position: relative;
  z-index: 2;
  transform: scale(1.03);
  padding-top: 54px;
}
.pricing-card.featured::before {
  opacity: 1;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-glow), var(--purple-accent));
  background-size: 200% 100%;
  animation: shimmerSlide 3s linear infinite;
}
.pricing-card.featured::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, rgba(0, 120, 212, 0.1), rgba(0, 212, 255, 0.05));
  z-index: -1;
  pointer-events: none;
}
.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
  box-shadow: 0 12px 50px rgba(0, 120, 212, 0.2),
              0 0 40px rgba(0, 212, 255, 0.08);
}

.pricing-badge {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-glow));
  color: white;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 120, 212, 0.3);
  animation: badgePulse 3s ease-in-out infinite;
}

.pricing-name {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}
.pricing-amount {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--blue-600);
  line-height: 1;
}
.pricing-period {
  font-size: 0.83rem;
  color: var(--gray-500);
  margin-bottom: 6px;
}
.pricing-desc {
  font-size: 0.86rem;
  color: var(--gray-500);
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--gray-200);
}
.pricing-features { margin-bottom: 28px; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray-700);
  padding: 7px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: transform 0.2s ease, color 0.2s ease;
}
.pricing-features li:hover {
  transform: translateX(3px);
  color: var(--blue-600);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: '\2713';
  color: var(--blue-600);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-note {
  background: linear-gradient(135deg, var(--gray-50), rgba(0, 120, 212, 0.02));
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 28px;
  margin-top: 48px;
  text-align: center;
  transition: border-color 0.3s ease;
}
.pricing-note:hover {
  border-color: var(--blue-400);
}
.pricing-note p { font-size: 0.92rem; margin-bottom: 4px; }


/* ===========================
   17. SERVICES SECTIONS
   =========================== */
.service-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
}
.service-section:last-child { border-bottom: none; }

.service-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-section-inner.reverse { direction: rtl; }
.service-section-inner.reverse > * { direction: ltr; }

.service-visual {
  background: linear-gradient(135deg, var(--blue-50) 0%, rgba(0, 212, 255, 0.05) 100%);
  border-radius: var(--radius-2xl);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
}
.service-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(0, 120, 212, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-visual:hover::before { opacity: 1; }
.service-visual:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}
.service-visual svg { opacity: 0.7; transition: all 0.4s ease; }
.service-visual:hover svg { opacity: 0.9; transform: scale(1.05); }

.service-text .service-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-50);
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.service-text h2 { margin-bottom: 12px; }
.service-text p { margin-bottom: 20px; line-height: 1.7; }

.service-category {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.service-category-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 4px 12px;
  background: var(--blue-50);
  color: var(--blue-600);
  border-radius: 20px;
  border: 1px solid var(--blue-100);
  transition: all 0.3s ease;
}
.service-category-tag:hover {
  background: var(--blue-600);
  color: white;
  border-color: var(--blue-600);
  transform: translateY(-1px);
}


/* ===========================
   18. PAGE HERO (Inner Pages)
   =========================== */
.page-hero {
  background: linear-gradient(135deg, #001a33 0%, #003e77 40%, #0078d4 100%);
  background-size: 300% 300%;
  animation: gradientShift 10s ease infinite;
  padding: 65px 0;
  color: white;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  color: white;
  margin-bottom: 10px;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  animation: fadeInUp 0.6s var(--ease-out-expo) both;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  animation: fadeInUp 0.6s var(--ease-out-expo) 0.1s both;
}

.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
  animation: fadeInDown 0.6s var(--ease-out-expo) both;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}
.breadcrumb a:hover { color: white; }
.breadcrumb span { margin: 0 6px; }


/* ===========================
   19. ABOUT / VALUES
   =========================== */
.about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-mission-visual {
  background: linear-gradient(135deg, var(--blue-50), rgba(0, 212, 255, 0.05));
  border-radius: var(--radius-2xl);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  position: relative;
  overflow: hidden;
}
.about-mission-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(0, 212, 255, 0.08), transparent 50%);
  animation: float 8s ease-in-out infinite;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.value-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px 26px;
  text-align: center;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-glow));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out-expo);
}
.value-card:hover::before { transform: scaleX(1); }
.value-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(0, 120, 212, 0.15);
}
.value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--blue-50), rgba(0, 212, 255, 0.08));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--blue-600);
  transition: all 0.4s var(--ease-out-expo);
}
.value-card:hover .value-icon {
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-glow));
  color: white;
  transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 4px 18px rgba(0, 120, 212, 0.3);
}
.value-card h3 { margin-bottom: 10px; }
.value-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; }

/* Who We Serve Cards */
.who-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px 26px;
  text-align: center;
  transition: all 0.4s var(--ease-out-expo);
}
.who-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(0, 120, 212, 0.15);
}
.who-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--blue-50), rgba(0, 212, 255, 0.08));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--blue-600);
  transition: all 0.4s var(--ease-out-expo);
}
.who-card:hover .who-icon {
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-glow));
  color: white;
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 120, 212, 0.3);
}
.who-card h3 { margin-bottom: 8px; }
.who-card p { font-size: 0.9rem; color: var(--gray-500); }


/* ===========================
   20. CONTACT / FORMS
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all 0.3s var(--ease-out-expo);
}
.contact-item:hover {
  border-color: var(--blue-400);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  transition: all 0.3s var(--ease-out-expo);
}
.contact-item:hover .contact-item-icon {
  background: linear-gradient(135deg, var(--blue-500), var(--cyan-glow));
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 120, 212, 0.3);
}
.contact-item-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-item-link {
  font-weight: 500;
  color: var(--gray-800);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.contact-item-link:hover {
  color: var(--blue-600);
}

/* Form Card */
.form-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 40px);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-glow), var(--purple-accent));
  background-size: 200% 100%;
  animation: shimmerSlide 3s linear infinite;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
  transition: color 0.3s ease;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  transition: all 0.3s var(--ease-out-expo);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.12),
              0 0 15px rgba(0, 120, 212, 0.06);
}
.form-group input:focus + label,
.form-group textarea:focus + label {
  color: var(--blue-600);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

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

.form-message {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 16px;
  animation: fadeInUp 0.4s var(--ease-out-expo);
}
.form-message.success {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--success);
}
.form-message.error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: var(--danger);
}

/* Payment Form */
.payment-form {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-md);
}
.payment-card {
  background: linear-gradient(135deg, var(--dark-bg), #1a2744);
  border-radius: var(--radius-xl);
  padding: 28px;
  color: white;
  position: relative;
  overflow: hidden;
}
.payment-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.1), transparent 50%);
  pointer-events: none;
}


/* ===========================
   21. DOWNLOAD BOX
   =========================== */
.download-box {
  background: linear-gradient(135deg, var(--blue-50), rgba(0, 212, 255, 0.04));
  border: 2px solid var(--blue-100);
  border-radius: var(--radius-2xl);
  padding: clamp(28px, 4vw, 44px);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
}
.download-box:hover {
  border-color: var(--blue-400);
  box-shadow: var(--shadow-lg);
}
.download-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0, 120, 212, 0.06), transparent 60%);
  pointer-events: none;
}
.download-box-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-glow));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  box-shadow: 0 4px 20px rgba(0, 120, 212, 0.3);
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
}
.download-box-icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(0, 120, 212, 0.2);
  animation: pulseRing 2s ease-in-out infinite;
}
.download-box:hover .download-box-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(0, 120, 212, 0.4);
}

.reassurance-box {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 28px;
  margin-top: 32px;
}
.reassurance-box-title {
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 12px;
  font-size: 1rem;
}
.reassurance-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-600);
  padding: 5px 0;
}
.reassurance-list li::before {
  content: '\2713';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}


/* ===========================
   22. TRUST STRIP
   =========================== */
.trust-strip {
  padding: 32px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.trust-strip-grid {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 3vw, 48px);
  flex-wrap: wrap;
}
.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray-600);
  font-weight: 500;
  transition: color 0.2s ease;
}
.trust-strip-item:hover {
  color: var(--blue-600);
}
.trust-strip-item svg {
  color: var(--blue-600);
  flex-shrink: 0;
}


/* ===========================
   23. HELP NOW BANNER
   =========================== */
.help-now-banner {
  background: linear-gradient(135deg, var(--warning), #d97706);
  border-radius: var(--radius-xl);
  padding: clamp(20px, 3vw, 32px);
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  animation: subtlePulse 3s ease-in-out infinite;
}
.help-now-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  background-size: 200% 100%;
  animation: shimmerSlide 3s linear infinite;
}
.help-now-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: helpIconPulse 1.5s ease-in-out infinite;
}
.help-now-content {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.help-now-text {
  flex: 1;
  min-width: 200px;
}
.help-now-text h2 {
  font-weight: 600;
  color: white;
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.help-now-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
}
.help-now-actions {
  flex-shrink: 0;
}
.help-now-email {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 8px;
}
.help-now-email a {
  color: white;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.help-now-email a:hover {
  color: white;
  text-decoration-thickness: 2px;
}


/* ===========================
   24. CTA SECTION
   =========================== */
.cta-section {
  background: linear-gradient(135deg,
    #001a33 0%,
    #003e77 40%,
    #0078d4 70%,
    #005a9e 100%
  );
  background-size: 300% 300%;
  animation: gradientShift 10s ease infinite;
  padding: clamp(60px, 8vw, 90px) 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  left: -200px;
  bottom: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 10s ease-in-out infinite;
}
.cta-section h2 { color: white; margin-bottom: 14px; }
.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}


/* ===========================
   25. TESTIMONIALS
   =========================== */
.testimonials {
  position: relative;
}
.testimonials-slider {
  overflow: hidden;
  position: relative;
}
.testimonial-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  transition: all 0.4s var(--ease-out-expo);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--blue-100);
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(0, 120, 212, 0.15);
}
.testimonial-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}
.testimonial-card .author {
  font-weight: 600;
  font-style: normal;
  color: var(--gray-900);
  font-size: 0.9rem;
}
.testimonial-card .role {
  font-style: normal;
  color: var(--gray-400);
  font-size: 0.82rem;
}

/* Testimonials in dark sections */
.section-dark .testimonial-card {
  background: var(--dark-card);
  border-color: var(--dark-border);
}
.section-dark .testimonial-card::before {
  color: rgba(0, 212, 255, 0.15);
}
.section-dark .testimonial-card p {
  color: rgba(255, 255, 255, 0.8);
}
.section-dark .testimonial-card .author,
.section-dark .testimonial-author strong {
  color: var(--white);
}
.section-dark .testimonial-card .role,
.section-dark .testimonial-author span {
  color: rgba(255, 255, 255, 0.5);
}
.section-dark .testimonial-card:hover {
  border-color: rgba(0, 212, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-glow));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--gray-900);
}
.testimonial-author span {
  display: block;
  font-size: 0.82rem;
  color: var(--gray-400);
  font-style: normal;
}
.section-dark .testimonial-dot {
  border-color: rgba(0, 212, 255, 0.5) !important;
}
.section-dark .testimonial-dot[style*="background: #0078d4"] {
  background: var(--cyan-glow) !important;
}


/* ===========================
   26. FAQ ACCORDION
   =========================== */
.faq-accordion {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover {
  border-color: var(--blue-400);
}
.faq-item.active {
  border-color: var(--blue-600);
  box-shadow: 0 2px 12px rgba(0, 120, 212, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 22px;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-800);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease, background 0.2s ease;
}
.faq-question:hover {
  color: var(--blue-600);
  background: var(--gray-50);
}
.faq-arrow {
  transition: transform 0.35s var(--ease-out-expo);
  flex-shrink: 0;
  margin-left: auto;
  color: var(--gray-400);
  display: inline-flex;
}
.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--blue-600);
}
.faq-item.active .faq-question {
  color: var(--blue-600);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo), padding 0.4s ease;
  padding: 0 22px;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 22px 18px;
}
.faq-answer p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-600);
}


/* ===========================
   27. FOOTER (Animated Gradient Mesh)
   =========================== */
.footer {
  background: linear-gradient(135deg, #0a0e1a 0%, #111827 40%, #0a1628 70%, #0a0e1a 100%);
  background-size: 400% 400%;
  animation: footerGradient 15s ease infinite;
  color: rgba(255, 255, 255, 0.65);
  padding: clamp(50px, 6vw, 80px) 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-800), var(--cyan-glow), var(--blue-800), transparent);
  opacity: 0.3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
  text-decoration: none;
}
.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
  font-weight: 500;
}
.footer-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

.footer h4 {
  color: white;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  position: relative;
}
.footer h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-glow));
  border-radius: 2px;
}

.footer-links-list li { margin-bottom: 10px; }
.footer-links-list a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  transition: all 0.3s ease;
  position: relative;
}
.footer-links-list a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cyan-glow);
  transition: width 0.3s var(--ease-out-expo);
}
.footer-links-list a:hover {
  color: var(--cyan-glow);
}
.footer-links-list a:hover::before {
  width: 100%;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
}
.footer-contact-list a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
}
.footer-contact-list a:hover { color: var(--cyan-glow); }
.fc-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
  margin-top: 10px;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}
.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
}


/* ===========================
   28. BACK TO TOP
   =========================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.6) translateY(20px);
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: 0 4px 15px rgba(0, 120, 212, 0.3);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
}
.back-to-top:hover {
  background: linear-gradient(135deg, var(--blue-500), var(--cyan-glow));
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 120, 212, 0.4),
              0 0 20px rgba(0, 212, 255, 0.15);
}
.back-to-top svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.back-to-top:hover svg {
  transform: translateY(-2px);
}


/* ===========================
   29. COOKIE BANNER
   =========================== */
.cookie-banner {
  position: fixed;
  bottom: -200px;
  left: 20px;
  right: 20px;
  max-width: 480px;
  background: var(--dark-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 24px;
  z-index: 9998;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
  transition: bottom 0.5s var(--ease-out-expo);
  backdrop-filter: blur(20px);
}
.cookie-banner.visible {
  bottom: 20px;
}
.cookie-banner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.cookie-banner a {
  color: var(--cyan-glow);
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 10px;
}


/* ===========================
   30. TOAST NOTIFICATIONS
   =========================== */
.toast {
  position: fixed;
  bottom: 30px;
  right: -400px;
  max-width: 360px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: right 0.5s var(--ease-out-expo);
}
.toast.visible {
  right: 30px;
}
.toast::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-glow));
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  animation: toastProgress 5s linear forwards;
}
.toast-success { border-left: 4px solid var(--success); }
.toast-error { border-left: 4px solid var(--danger); }
.toast-info { border-left: 4px solid var(--blue-600); }
.toast-warning { border-left: 4px solid var(--warning); }

.toast p {
  font-size: 0.88rem;
  color: var(--gray-700);
  line-height: 1.5;
}
.toast .toast-title {
  font-weight: 600;
  color: var(--gray-900);
  font-size: 0.9rem;
  margin-bottom: 2px;
}


/* ===========================
   31. SCROLL REVEAL ANIMATIONS
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(4px);
  transition: opacity 0.7s var(--ease-out-expo),
              transform 0.7s var(--ease-out-expo),
              filter 0.7s var(--ease-out-expo);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  filter: blur(4px);
  transition: opacity 0.7s var(--ease-out-expo),
              transform 0.7s var(--ease-out-expo),
              filter 0.7s var(--ease-out-expo);
}
.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  filter: blur(4px);
  transition: opacity 0.7s var(--ease-out-expo),
              transform 0.7s var(--ease-out-expo),
              filter 0.7s var(--ease-out-expo);
}
.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  filter: blur(4px);
  transition: opacity 0.7s var(--ease-out-expo),
              transform 0.7s var(--ease-out-expo),
              filter 0.7s var(--ease-out-expo);
}
.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

/* Staggered children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s var(--ease-out-expo),
              transform 0.5s var(--ease-out-expo);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s;  opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.2s;  opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.3s;  opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.4s;  opacity: 1; transform: translateY(0); }

/* Shimmer / Skeleton Loading */
.shimmer {
  background: linear-gradient(90deg,
    var(--gray-100) 25%,
    var(--gray-50) 50%,
    var(--gray-100) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius);
}


/* ===========================
   32. ALL @KEYFRAMES
   =========================== */

/* Gradient Shift (Hero, CTA, Page Hero) */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  25%  { background-position: 50% 100%; }
  50%  { background-position: 100% 50%; }
  75%  { background-position: 50% 0%; }
  100% { background-position: 0% 50%; }
}

/* Footer gradient */
@keyframes footerGradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Gradient text */
@keyframes gradientTextShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Float animation */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%      { transform: translateY(-15px) rotate(1deg); }
  50%      { transform: translateY(-8px) rotate(-1deg); }
  75%      { transform: translateY(-20px) rotate(0.5deg); }
}

/* Blob morph */
@keyframes blobMorph {
  0%   { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  25%  { border-radius: 58% 42% 35% 65% / 55% 65% 35% 45%; }
  50%  { border-radius: 45% 55% 65% 35% / 40% 60% 40% 60%; }
  75%  { border-radius: 65% 35% 42% 58% / 70% 30% 70% 30%; }
  100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

/* Ripple expand */
@keyframes rippleExpand {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Shimmer slide */
@keyframes shimmerSlide {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Shimmer skeleton */
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Loader & form spinner */
@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}
.spin {
  animation: loaderSpin 0.8s linear infinite;
}
@keyframes loaderPulse {
  0%, 100% { opacity: 0.5; }
  50%      { opacity: 1; }
}

/* Pulse ring (download icon, step dots) */
@keyframes pulseRing {
  0%   { transform: scale(1); opacity: 0.5; }
  50%  { transform: scale(1.08); opacity: 0.2; }
  100% { transform: scale(1); opacity: 0.5; }
}

/* Step number pulse */
@keyframes stepPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50%      { transform: scale(1.15); opacity: 0; }
}

/* Badge pulse */
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 120, 212, 0.2); }
  50%      { box-shadow: 0 0 0 6px rgba(0, 120, 212, 0); }
}

/* Badge dot pulse (hero badge) */
@keyframes badgeDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.7); }
}

/* Subtle section pulse (help now banner) */
@keyframes subtlePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
  50%      { box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1); }
}

/* Help icon pulse */
@keyframes helpIconPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.08); }
}

/* Fade in up */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Fade in down */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Grid lines slide */
@keyframes gridSlide {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(52px, 52px); }
}

/* Dash slide (timeline) */
@keyframes dashSlide {
  0%   { background-position: 0 0; }
  100% { background-position: 32px 0; }
}
@keyframes dashSlideVertical {
  0%   { background-position: 0 0; }
  100% { background-position: 0 32px; }
}

/* Toast progress bar */
@keyframes toastProgress {
  from { width: 100%; }
  to   { width: 0%; }
}

/* Typing cursor blink */
@keyframes typingBlink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0; }
}

/* Border rotate (animated gradient borders) */
@keyframes borderRotate {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/* ===========================
   33. MEDIA QUERIES (Responsive)
   =========================== */

/* Large tablets & small desktops */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
  .service-section-inner {
    gap: 40px;
  }
  .about-mission {
    gap: 40px;
  }
}

/* Tablets */
@media (max-width: 900px) {
  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-card.featured {
    transform: none;
  }
  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }
  .adhoc-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
  .service-section-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service-section-inner.reverse {
    direction: ltr;
  }
  .service-visual {
    height: 220px;
  }
  .about-mission {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-mission-visual {
    height: 240px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 16px 24px 20px;
    gap: 4px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    animation: navSlideDown 0.3s var(--ease-out-expo);
  }
  @keyframes navSlideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    width: 100%;
    padding: 10px 14px;
    font-size: 0.95rem;
  }
  .nav-links a::after { display: none; }
  .nav-cta {
    display: none;
  }
  .nav-links .nav-cta-mobile {
    display: block;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-200);
  }
  .nav-links .nav-cta-mobile a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    background: var(--blue-600);
    color: white;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
  }
  .nav-links .nav-cta-mobile a:hover {
    background: var(--blue-700);
    color: white;
  }
  .nav-toggle { display: flex; }

  .hero {
    padding: clamp(64px, 8vw, 80px) 0;
    text-align: center;
  }
  .hero-content { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }

  .trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .trust-stat::after { display: none; }

  .steps::before { display: none; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .help-now-banner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Hide custom cursor on touch */
  #custom-cursor { display: none; }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    max-width: 100%;
    padding: 18px;
  }

  .toast {
    bottom: auto;
    top: 80px;
    right: -400px;
    left: auto;
    max-width: calc(100vw - 40px);
  }
  .toast.visible {
    right: 20px;
  }

  .download-box {
    padding: 24px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .grid-4 { grid-template-columns: 1fr; }

  .hero {
    padding: 56px 0 64px;
  }
  .hero h1 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn { width: 100%; }

  .page-hero { padding: 40px 0; }

  .section {
    padding: clamp(40px, 6vw, 60px) 0;
  }
  .section-header { margin-bottom: 36px; }

  .pricing-card { padding: 28px 20px; }
  .adhoc-section { padding: 24px; }

  .trust-bar-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .form-card { padding: 20px; }
}


/* ===========================
   34. REDUCED MOTION
   =========================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .hero {
    background-size: 100% 100%;
  }

  #scroll-progress {
    box-shadow: none;
  }

  .float-orb,
  .blob {
    animation: none;
  }
}
