/* ==========================================================================
   ProElite Technologies — Consolidated Stylesheet
   Lightweight, vibrant, mobile-first design
   ========================================================================== */

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { min-height: 100vh; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; background: none; border: none; }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---- Design Tokens ---- */
:root {
  --navy:       #0B1120;
  --navy-mid:   #131D35;
  --navy-light: #1B2847;
  --accent:     #6366F1;      /* Vibrant indigo */
  --accent-2:   #8B5CF6;      /* Purple */
  --accent-3:   #06B6D4;      /* Cyan */
  --accent-4:   #F59E0B;      /* Amber */
  --accent-glow: rgba(99, 102, 241, 0.35);
  --gradient-1: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
  --gradient-2: linear-gradient(135deg, #0B1120 0%, #1e1b4b 50%, #312e81 100%);
  --gradient-3: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  --white:      #FFFFFF;
  --gray-50:    #F8FAFC;
  --gray-100:   #F1F5F9;
  --gray-400:   #94A3B8;
  --gray-500:   #64748B;
  --gray-600:   #475569;
  --gray-900:   #0F172A;
  --border:     rgba(255,255,255,0.08);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nav-h: 72px;
  --max-w: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.18);
  --shadow-glow: 0 8px 32px var(--accent-glow);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: var(--font);
  font-size: 16px;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
}

/* ---- Utilities ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.eyebrow { 
  font-size: 1.1rem; 
  font-weight: 600; 
  letter-spacing: 2px; 
  text-transform: uppercase; 
  background: linear-gradient(90deg, #6366f1, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 10px rgba(99, 102, 241, 0.3);
  margin-bottom: 12px;
  display: inline-block;
}
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 16px; }
.section-title p { font-size: 1.05rem; color: var(--gray-500); max-width: 580px; margin: 0 auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; font-size: 0.85rem; font-weight: 600; border-radius: 50px;
  transition: all 0.3s var(--ease); white-space: nowrap; line-height: 1;
}
.btn-primary {
  background: var(--gradient-1); color: var(--white); border: none;
  box-shadow: 0 4px 16px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); filter: brightness(1.1); }
.btn-ghost {
  background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover { background: var(--white); color: var(--navy); border-color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--navy); border: 2px solid var(--white); font-weight: 700; }
.btn-white:hover { background: transparent; color: var(--white); transform: translateY(-2px); }
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* =======================
   NAVBAR
   ======================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); display: flex; align-items: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); /* Dark shadow for depth */
  border-bottom: 1px solid transparent; 
  transition: all 0.4s ease;
}

/* Bottom Glow Border via pseudo-element */
.navbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2), transparent);
  box-shadow: 0 1px 8px rgba(139, 92, 246, 0.1);
  pointer-events: none;
}

.navbar.scrolled { 
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.navbar .container { 
  display: flex; align-items: center; justify-content: space-between; 
  width: 100%; height: 100%; 
  padding: 12px 40px; 
}
@media (max-width: 768px) {
  .navbar .container { padding: 8px 20px; }
}

.navbar__logo {
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 4px;
}

.navbar__logo img {
  height: auto;
  max-height: 60px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* Hover: Scale & Glow */
.navbar__logo:hover img {
  transform: scale(1.02);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.05));
}

.navbar__menu { display: none; align-items: center; gap: 32px; }
@media (min-width: 1025px) { .navbar__menu { display: flex; } }

.navbar__link {
  font-size: 0.88rem; font-weight: 500; color: #0f172a;
  padding: 24px 0; transition: color 0.3s ease; cursor: pointer;
  display: flex; align-items: center; gap: 4px;
}
.navbar__link:hover, .navbar__link[aria-expanded="true"] { 
  color: var(--accent); 
}
.navbar__link-arrow { width: 12px; height: 12px; transition: transform 0.2s; }
.navbar__link[aria-expanded="true"] .navbar__link-arrow { transform: rotate(180deg); }

/* ---- Mega Menu ---- */
.mega-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 20px; min-width: 600px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}
.mega-menu.active { opacity: 1; visibility: visible; pointer-events: all; transform: translateX(-50%) translateY(0); }
.mega-menu__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; }

.mega-menu__item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 12px; border-radius: var(--radius-sm); transition: background 0.15s;
}
.mega-menu__item:hover { background: var(--gray-50); }
.mega-menu__icon {
  width: 36px; height: 36px; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(139,92,246,0.1)); border-radius: 8px; color: var(--accent);
}
.mega-menu__icon svg { width: 18px; height: 18px; }
.mega-menu__text h4 { font-size: 0.85rem; font-weight: 600; color: var(--gray-900); }
.mega-menu__text p { font-size: 0.72rem; color: var(--gray-500); line-height: 1.4; margin-top: 1px; }

.navbar__cta { display: flex; align-items: center; gap: 12px; justify-content: flex-end; }
@media (max-width: 600px) {
  .navbar__cta { gap: 8px; }
  .navbar__cta .btn { padding: 8px 12px; font-size: 0.72rem; }
}
.navbar__cta .btn { padding: 9px 20px; font-size: 0.78rem; border-radius: 50px; }

.btn-navbar-contact {
  background: transparent;
  color: #0f172a;
  border: 1px solid #0f172a;
  transition: all 0.3s ease;
}
.btn-navbar-contact:hover {
  background: #f8fafc;
  color: #0f172a;
  border-color: #0f172a;
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.navbar__cta .btn-primary {
  transition: all 0.3s ease;
}
.navbar__cta .btn-primary:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

/* Hamburger */
.hamburger { display: flex; flex-direction: column; gap: 5px; width: 36px; height: 36px; justify-content: center; align-items: center; z-index: 1100; }
@media (min-width: 1025px) { .hamburger { display: none; } }
.hamburger__line { width: 22px; height: 2px; background: #0f172a; border-radius: 2px; transition: all 0.3s; transform-origin: center; }
.hamburger.active .hamburger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .hamburger__line:nth-child(2) { opacity: 0; }
.hamburger.active .hamburger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-drawer__overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 1040; opacity: 0; visibility: hidden; transition: all 0.3s; }
.mobile-drawer__overlay.active { opacity: 1; visibility: visible; }

.mobile-drawer {
  position: fixed; top: 0; right: 0; width: 100%; max-width: 360px; height: 100dvh;
  background: var(--navy); z-index: 1050; transform: translateX(100%); transition: transform 0.35s var(--ease);
  overflow-y: auto; padding: 88px 24px 32px;
}
.mobile-drawer.active { transform: translateX(0); }
.mobile-drawer__item { border-bottom: 1px solid var(--border); }
.mobile-drawer__link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; font-size: 1rem; font-weight: 500; color: rgba(255,255,255,0.85);
}
.mobile-drawer__arrow { width: 14px; height: 14px; transition: transform 0.2s; }
.mobile-drawer__link[aria-expanded="true"] .mobile-drawer__arrow { transform: rotate(180deg); }
.mobile-submenu { max-height: 0; overflow: hidden; transition: max-height 0.3s; }
.mobile-submenu.active { max-height: 500px; }
.mobile-submenu__link { display: block; padding: 8px 0 8px 20px; font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.mobile-submenu__link:hover { color: var(--accent); }
.mobile-drawer__cta { margin-top: 32px; display: flex; flex-direction: column; gap: 10px; }
.mobile-drawer__cta .btn { width: 100%; justify-content: center; }

/* =======================
   HERO
   ======================= */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--gradient-2); overflow: hidden; padding-top: var(--nav-h);
}

/* Background Slider Styles */
.hero__slider { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  opacity: 0; transition: opacity 0.8s ease-in-out;
}
.hero__slide.active { opacity: 1; }
.hero__slider-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}

.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 25% 50%, rgba(99,102,241,0.2) 0%, transparent 50%),
              radial-gradient(ellipse at 75% 20%, rgba(6,182,212,0.12) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 90%, rgba(139,92,246,0.1) 0%, transparent 50%);
  animation: meshMove 10s ease-in-out infinite alternate;
}
@keyframes meshMove {
  0% { opacity: 0.8; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.08); }
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(255,255,255,0.012) 60px, rgba(255,255,255,0.012) 61px);
}

.hero .container { position: relative; z-index: 2; display: flex; justify-content: center; align-items: center; padding-top: 40px; padding-bottom: 40px; text-align: center; }
.hero__content { flex: 1; max-width: 800px; display: flex; flex-direction: column; align-items: center; margin: 0 auto; }
.hero__eyebrow {
  margin-bottom: 14px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(10px, 1.5vw, 14px);
  font-weight: 500;
  letter-spacing: 2px;
}
.hero__title { color: #fff; margin-bottom: 20px; font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; }
.hero__title span { background: var(--gradient-3); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero__subtitle { font-size: 1.05rem; color: rgba(255, 255, 255, 0.9); font-weight: 500; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5); margin-bottom: 36px; max-width: 600px; line-height: 1.6; margin-inline: auto; }
.hero__content .btn-group { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.3); font-size: 0.7rem; letter-spacing: 0.12em;
  animation: bounce 2s ease-in-out infinite;
}
.hero__scroll svg { width: 18px; height: 18px; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
@media (max-width: 768px) { .hero__scroll { display: none; } }

/* Floating shapes */
.hero__float {
  position: absolute; border-radius: 12px;
  background: linear-gradient(135deg, rgba(99,102,241,0.08), rgba(6,182,212,0.06));
  border: 1px solid rgba(99,102,241,0.1);
}
.hero__float--1 { width: 70px; height: 70px; top: 12%; right: 8%; animation: float 7s ease-in-out infinite; }
.hero__float--2 { width: 45px; height: 45px; bottom: 22%; right: 18%; animation: float 5s ease-in-out infinite 1s; }
.hero__float--3 { width: 28px; height: 28px; top: 45%; right: 2%; animation: float 9s ease-in-out infinite 2s; }

/* =======================
   STATS
   ======================= */
/* =======================
   STATS
   ======================= */
.stats {
  background: linear-gradient(135deg, #ffffff, #f5f3ff, #e0f2fe);
  background-size: 200% 200%;
  animation: statsBgShift 12s ease infinite alternate;
  padding: 80px 0; 
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(139, 92, 246, 0.05); 
  border-bottom: 1px solid rgba(14, 165, 233, 0.05);
  z-index: 1;
}

@keyframes statsBgShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* Soft Glow Depth (Left and Right) */
.stats::before {
  content: ''; position: absolute; inset: -20%; z-index: -2; pointer-events: none;
  background: 
    radial-gradient(circle at 10% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 90% 50%, rgba(14, 165, 233, 0.15) 0%, transparent 40%);
  filter: blur(100px);
}



.stats__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; text-align: center; position: relative; z-index: 2; }
@media (min-width: 769px) { .stats__grid { grid-template-columns: repeat(4, 1fr); gap: 0; } }

.stats__item { position: relative; padding: 12px 0; }

/* Subtle Gradient Divider */
@media (min-width: 769px) {
  .stats__item:not(:last-child)::after {
    content: ''; position: absolute; right: 0; top: 15%; height: 70%; width: 1px;
    background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.2), rgba(14, 165, 233, 0.2), transparent);
  }
}

.stats__number {
  font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1;
  margin-bottom: 8px; color: #0f172a;
  text-shadow: 0 4px 15px rgba(15, 23, 42, 0.08);
}

.stats__label { 
  font-size: 0.85rem; 
  color: #64748b; 
  font-weight: 600; 
  letter-spacing: 0.05em; 
  text-transform: uppercase;
}

/* =======================
   SOLUTIONS (Services + Expertise merged)
   ======================= */
.solutions { 
  padding: 100px 0; 
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 40%, #dbeafe 100%);
  background-size: 200% 200%;
  animation: statsBgShift 12s ease infinite alternate;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-top: 1px solid rgba(139, 92, 246, 0.05);
  border-bottom: 1px solid rgba(14, 165, 233, 0.05);
}

/* Soft Blurred Glow Layer — matches Stats */
.solutions::before {
  content: '';
  position: absolute;
  inset: -20%;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 90% 50%, rgba(14, 165, 233, 0.1) 0%, transparent 40%);
  filter: blur(100px);
}

/* Subtle dot texture */
.solutions__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    radial-gradient(circle, rgba(148, 163, 184, 0.25) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(203, 213, 245, 0.2) 1px, transparent 1px);
  background-size: 90px 90px, 140px 140px;
  background-position: 0 0, 45px 45px;
}

.solutions .section-title .eyebrow {
  background: none;
  -webkit-text-fill-color: initial;
  color: #1a1a1a;
  text-shadow: none;
  font-weight: 600;
  letter-spacing: 1.5px;
}
.solutions .section-title h2 { 
  text-align: center;
  color: #111827;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-rendering: optimizeLegibility;
}
.solutions .section-title p { color: #475569; text-align: center; margin: 0 auto; max-width: 700px; }



.solutions__grid { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 32px; 
  max-width: 1100px; 
  margin: 0 auto; 
}
@media (min-width: 600px) { .solutions__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1025px) { .solutions__grid { grid-template-columns: repeat(3, 1fr); } }

.sol-card {
  background: linear-gradient(135deg, #1e293b 0%, #1e3a8a 100%);
  border-radius: 18px;
  padding: 32px 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), 0 5px 15px rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative; 
  overflow: hidden; 
  display: flex; 
  flex-direction: column;
  height: 100%;
}

.sol-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35), 0 8px 20px rgba(59, 130, 246, 0.2);
  border-color: rgba(99, 102, 241, 0.25);
}

.sol-card__icon {
  width: 60px; 
  height: 60px; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
  border-radius: 16px; 
  color: var(--accent); 
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(236, 72, 153, 0.3);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.sol-card__icon svg {
  width: 28px;
  height: 28px;
}

.sol-card h3 { 
  font-size: 1.15rem; 
  font-weight: 700; 
  margin-bottom: 12px; 
  color: #ffffff; 
  letter-spacing: 0.02em; 
}

.sol-card p { 
  font-size: 0.9rem; 
  color: #cbd5f5; 
  line-height: 1.6; 
  flex-grow: 1; 
  margin-bottom: 20px; 
}

.sol-card__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.88rem; font-weight: 600; color: #60a5fa; margin-top: auto;
  padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}
.sol-card__link svg { width: 14px; height: 14px; transition: transform 0.3s ease; }
.sol-card:hover .sol-card__link { color: #a5b4fc; }
.sol-card:hover .sol-card__link svg { transform: translateX(6px); }

/* ---- Why Choose Us (inline band) ---- */
.why-us {
  padding: 80px 0; background: var(--navy); position: relative; overflow: hidden;
}
.why-us::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(99,102,241,0.12) 0%, transparent 60%);
}
.why-us .container { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 40px; }
@media (min-width: 769px) { .why-us .container { flex-direction: row; align-items: center; } }

.why-us__visual { flex: 1; }
.why-us__img {
  width: 100%; aspect-ratio: 4/3; border-radius: var(--radius);
  background: var(--gradient-1); display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.why-us__img svg { width: 100px; height: 100px; color: rgba(255,255,255,0.12); }
.why-us__badge {
  position: absolute; bottom: -10px; right: -10px;
  background: var(--gradient-3); color: #fff; padding: 14px 20px; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}
.why-us__badge b { display: block; font-size: 1.8rem; font-weight: 800; line-height: 1; }
.why-us__badge small { font-size: 0.7rem; font-weight: 600; opacity: 0.9; }

.why-us__content { flex: 1; }
.why-us__content .eyebrow { color: var(--accent); margin-bottom: 12px; }
.why-us__content h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 14px; }
.why-us__content > p { color: var(--gray-400); font-size: 0.95rem; margin-bottom: 24px; }

.why-us__list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.why-us__item { display: flex; align-items: flex-start; gap: 10px; }
.why-us__check {
  width: 22px; height: 22px; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  background: var(--gradient-1); border-radius: 50%; margin-top: 1px;
}
.why-us__check svg { width: 12px; height: 12px; color: #fff; }
.why-us__item span { font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.8); }

/* =======================
   CLIENTS MARQUEE
   ======================= */
.clients { padding: 56px 0; overflow: hidden; background: var(--white); }
.clients h3 {
  text-align: center; color: var(--gray-500); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 32px;
}
.clients__track { display: flex; gap: 64px; animation: marquee 25s linear infinite; width: max-content; }
.clients__track:hover { animation-play-state: paused; }
.clients__logo { height: 32px; flex-shrink: 0; opacity: 0.3; filter: grayscale(1); transition: all 0.3s; }
.clients__logo:hover { opacity: 1; filter: grayscale(0); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* =======================
   TESTIMONIALS
   ======================= */
.testimonials { padding: 100px 0; background: var(--gradient-2); overflow: hidden; }
.testimonials .section-title h2 { color: #fff; }
.testimonials .section-title p { color: var(--gray-400); }
.testimonials .eyebrow { background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.testimonials__wrap { position: relative; overflow: hidden; margin-top: 48px; }
.testimonials__track { display: flex; transition: transform 0.5s var(--ease); }
.t-card { flex: 0 0 100%; padding: 0 8px; }
@media (min-width: 769px) { .t-card { flex: 0 0 50%; } }
@media (min-width: 1025px) { .t-card { flex: 0 0 33.333%; } }

.t-card__inner {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; height: 100%;
  display: flex; flex-direction: column; transition: background 0.3s;
}
.t-card__inner:hover { background: rgba(255,255,255,0.07); }
.t-card__quote { color: var(--accent); margin-bottom: 14px; }
.t-card__quote svg { width: 28px; height: 28px; }
.t-card__text { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.7; flex-grow: 1; margin-bottom: 18px; }
.t-card__author { display: flex; align-items: center; gap: 10px; padding-top: 14px; border-top: 1px solid var(--border); }
.t-card__avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--gradient-1); display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; color: #fff;
}
.t-card__name { font-size: 0.85rem; font-weight: 600; color: #fff; }
.t-card__role { font-size: 0.72rem; color: rgba(255,255,255,0.4); }

.testimonials__nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 36px; }
.testimonials__btn {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; color: #fff; transition: all 0.2s;
}
.testimonials__btn:hover { background: var(--accent); border-color: var(--accent); }
.testimonials__btn svg { width: 18px; height: 18px; }
.testimonials__dots { display: flex; gap: 6px; }
.testimonials__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.15); border: none; cursor: pointer; transition: all 0.2s; }
.testimonials__dot.active { background: var(--accent); width: 22px; border-radius: 4px; }

/* =======================
   CTA
   ======================= */
.cta-section {
  padding: 100px 0; text-align: center; position: relative; overflow: hidden;
  background: var(--gradient-1);
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(255,255,255,0.06) 0%, transparent 50%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; margin-bottom: 12px; }
.cta-section > .container > p { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 540px; margin: 0 auto 36px; }
.cta-section .btn-group { justify-content: center; margin-bottom: 48px; }

.cta-contact { display: flex; flex-direction: column; gap: 16px; align-items: center; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.15); }
@media (min-width: 769px) { .cta-contact { flex-direction: row; justify-content: center; gap: 40px; } }
.cta-contact__item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.8); font-size: 0.85rem; }
.cta-contact__item svg { width: 16px; height: 16px; flex-shrink: 0; }

/* =======================
   FOOTER
   ======================= */
.footer { background: var(--navy); padding: 64px 0 0; color: rgba(255,255,255,0.5); border-top: 1px solid var(--border); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
@media (min-width: 769px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-logo {
  display: inline-block;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.footer-logo:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}
.footer__brand img { max-width: 80px; height: auto; object-fit: contain; }
.footer__brand p { font-size: 0.82rem; max-width: 260px; margin-bottom: 16px; }
.footer__social { display: flex; gap: 8px; }
.footer__social-link {
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.5); transition: all 0.2s;
}
.footer__social-link:hover { background: var(--accent); color: #fff; }
.footer__social-link svg { width: 14px; height: 14px; }

.footer__col h4 { color: #fff; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__links a { font-size: 0.82rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer__links a:hover { color: var(--accent); }

.footer__contact-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px; font-size: 0.82rem; }
.footer__contact-item svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--accent); margin-top: 3px; }

.footer__bottom {
  margin-top: 48px; padding: 20px 0; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 8px; align-items: center; text-align: center;
}
@media (min-width: 769px) { .footer__bottom { flex-direction: row; justify-content: space-between; } }
.footer__bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.3); }
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a { font-size: 0.72rem; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer__bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ---- Featured Solutions (Agentic AI, NowAssist) ---- */
.sol-card--featured {
  border: 1px solid rgba(139, 92, 246, 0.15);
}
.sol-card__badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--gradient-3); color: #fff; font-size: 0.65rem; font-weight: 700;
  padding: 4px 10px; border-radius: 20px; letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(236,72,153,0.3);
}
.sol-card__icon--gradient {
  background: var(--gradient-3) !important; color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.4) !important;
}
.sol-card:hover .sol-card__icon--gradient {
  box-shadow: 0 12px 30px rgba(236, 72, 153, 0.6) !important;
}

/* ---- Integrations Grid ---- */
@media (min-width: 1025px) { .sol-card--wide { grid-column: 1 / -1; } }

/* =======================
   AGENTIC FLOWS
   ======================= */
.agentic { 
  padding: 100px 0; 
  background: var(--navy-mid); 
  position: relative; 
  overflow: hidden; 
  border-top: 1px solid var(--border); 
  z-index: 1;
}

.agentic .section-title h2 { 
  text-align: center; 
  background: linear-gradient(90deg, #818cf8, #c084fc, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 20px rgba(168, 85, 247, 0.2);
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}
.agentic .section-title h2:hover {
  filter: brightness(1.2);
  text-shadow: 0 4px 30px rgba(168, 85, 247, 0.4);
}
.agentic .section-title p { color: var(--gray-400); text-align: center; margin: 0 auto; max-width: 700px; }

.agentic__grid { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 24px; 
  max-width: 1100px; 
  margin: 0 auto;
  position: relative; 
  z-index: 2; 
}
@media (min-width: 600px) { .agentic__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1025px) { .agentic__grid { grid-template-columns: repeat(3, 1fr); } }

.agentic__card {
  background: linear-gradient(135deg, #ffffff, #f8fafc); 
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px; 
  padding: 32px 24px; 
  transition: all 0.3s ease;
  position: relative; 
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.agentic__card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 102, 241, 0.2);
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.15);
}

.agentic__step {
  font-size: 3.5rem; font-weight: 800; color: rgba(0, 0, 0, 0.03);
  position: absolute; top: 12px; right: 24px; line-height: 1;
  transition: all 0.3s ease;
}

.agentic__card h4 { color: #0f172a; font-size: 1.15rem; font-weight: 700; margin-bottom: 14px; position: relative; transition: all 0.3s ease; }
.agentic__card p { color: #475569; font-size: 0.95rem; line-height: 1.6; position: relative; transition: all 0.3s ease; }

/* ---- Why Us Logo Override ---- */
.why-us__img--logo {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
  padding: 40px; box-shadow: inset 0 0 40px rgba(0,0,0,0.2);
}
.why-us__logo-img { max-width: 70%; height: auto; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3)); }

/* =======================
   BACK TO TOP
   ======================= */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--navy-mid, #0b1a2b);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--navy-light, #1b2847);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

@media (max-width: 600px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    padding: 8px 12px;
    font-size: 0.8rem;
  }
}
