/* ═══════════════════════════════════════════════
   JLD INFO TECH  |  style.css  v2.0
   Premium Indigo–Violet  |  Light + Dark Mode
═══════════════════════════════════════════════ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Inter:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ══════════════════════════════════════════════
   DESIGN TOKENS — LIGHT MODE
══════════════════════════════════════════════ */
:root {
  /* ── Base surfaces ── */
  --bg:           #FAFBFF;
  --bg-surface:   #F3F4FF;
  --bg-card:      #FFFFFF;
  --bg-card-alt:  #F0F1FF;

  /* ── Text ── */
  --text-primary:   #0D1120;
  --text-secondary: #4A5177;
  --text-muted:     #9298B8;

  /* ── Accent: Indigo core ── */
  --accent:         #4F46E5;
  --accent-hover:   #4338CA;
  --accent-light:   #818CF8;
  --accent-subtle:  rgba(79,70,229,0.07);
  --accent-border:  rgba(79,70,229,0.22);

  /* ── Violet companion ── */
  --violet:         #7C3AED;
  --violet-light:   #A78BFA;

  /* ── Gradient system ── */
  --gradient-primary:  linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
  --gradient-text:     linear-gradient(135deg, #4F46E5 0%, #7C3AED 60%, #C026D3 100%);
  --gradient-hero:     linear-gradient(135deg, #EEF0FF 0%, #F5F0FF 50%, #FAFBFF 100%);
  --gradient-card:     linear-gradient(145deg, rgba(79,70,229,0.04) 0%, rgba(255,255,255,0) 60%);

  /* ── Glass ── */
  --glass-bg:          rgba(255,255,255,0.72);
  --glass-border:      rgba(255,255,255,0.55);
  --glass-shadow:      0 8px 32px rgba(79,70,229,0.12), 0 2px 8px rgba(0,0,0,0.06);

  /* ── Shadows ── */
  --shadow-xs: 0 1px 3px rgba(13,17,32,0.05);
  --shadow-sm: 0 2px 10px rgba(13,17,32,0.08);
  --shadow-md: 0 6px 24px rgba(79,70,229,0.12), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 16px 48px rgba(79,70,229,0.18), 0 4px 16px rgba(0,0,0,0.08);
  --glow:      0 0 24px rgba(79,70,229,0.35);
  --glow-sm:   0 0 12px rgba(79,70,229,0.25);

  /* ── Borders ── */
  --border:         #E4E6F0;
  --border-hover:   rgba(79,70,229,0.3);

  /* ── Radii ── */
  --radius-sm:   8px;
  --radius:      12px;
  --radius-lg:   18px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  /* ── Motion ── */
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 70px;
}

/* ══════════════════════════════════════════════
   RESET
══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-feature-settings: "cv02","cv03","cv04","cv11";
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

/* ══════════════════════════════════════════════
   GRADIENT TEXT
══════════════════════════════════════════════ */
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* ══════════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════════ */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section { padding: 88px 0; position: relative; overflow: hidden; }

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gradient-primary);
  color: #fff;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.btn-primary:hover {
  box-shadow: var(--glow), 0 4px 16px rgba(79,70,229,0.3);
  transform: translateY(-2px) scale(1.02);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0) scale(0.99); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--accent);
  padding: 11px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  border: 1.5px solid var(--accent-border);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.btn-outline span, .btn-outline { position: relative; z-index: 1; }
.btn-outline:hover {
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--glow-sm);
}
.btn-outline:hover::before { opacity: 1; }

.btn-lg { padding: 14px 32px; font-size: 0.98rem; }
.btn-full { width: 100%; }

/* ══════════════════════════════════════════════
   SECTION HEADERS
══════════════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-subtle);
  color: var(--accent);
  border: 1px solid var(--accent-border);
  padding: 5px 16px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text-primary);
}
.section-subtitle {
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.75;
}

/* ══════════════════════════════════════════════
   NAVBAR — Glassmorphism
══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--glass-bg);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(79,70,229,0.1), 0 1px 0 rgba(79,70,229,0.15);
  background: rgba(255,255,255,0.88);
}
.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 4px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-right: 18px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.logo-icon { font-size: 1.15rem; filter: drop-shadow(0 0 6px rgba(79,70,229,0.5)); }
.logo-accent {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links { display: flex; gap: 2px; margin-left: auto; }
.nav-link {
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
}
.nav-link:hover {
  color: var(--accent);
  background: var(--accent-subtle);
}
.nav-link.active-nav {
  color: var(--accent);
  background: var(--accent-subtle);
}

/* Dropdown trigger */
.nav-drop-btn { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.chevron { font-size: 0.6rem; transition: transform 0.22s ease; display: inline-block; }
.nav-item.open .chevron { transform: rotate(180deg); }

/* Mega dropdown — glass card */
.nav-item { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--glass-shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 2000;
  min-width: 220px;
  white-space: nowrap;
  backdrop-filter: blur(20px);
}
.nav-item.open .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.core-dropdown, .brand-dropdown {
  display: flex;
  gap: 8px;
  min-width: 560px;
}
.dropdown-col { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.dropdown-heading {
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 4px 8px 9px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
.dropdown-link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.83rem;
  transition: var(--transition);
  line-height: 1.35;
}
.dropdown-link:hover { background: var(--accent-subtle); color: var(--accent); }
.dropdown-link .di { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.dropdown-link strong { display: block; font-weight: 600; color: var(--text-primary); font-size: 0.82rem; }
.dropdown-link small { color: var(--text-muted); font-size: 0.72rem; }
.dropdown-link.simple { align-items: center; font-weight: 500; }
.dropdown-link.highlight {
  color: var(--accent);
  font-weight: 600;
  border-top: 1px solid var(--border);
  margin-top: 4px;
  padding-top: 11px;
}

/* Industries dropdown */
.industries-dropdown {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  min-width: 320px;
  max-width: 360px;
}
.industry-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 6px 13px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}
.industry-pill:hover {
  background: var(--accent-subtle);
  border-color: var(--accent-border);
  color: var(--accent);
  transform: translateY(-1px);
}
.company-dropdown { min-width: 200px; display: flex; flex-direction: column; gap: 2px; }

.nav-cta { margin-left: 14px; font-size: 0.875rem; padding: 9px 20px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2.5px;
  background: var(--text-primary);
  border-radius: 4px;
  transition: var(--transition);
}

/* ══════════════════════════════════════════════
   HERO — Animated mesh blobs
══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
  background: var(--gradient-hero);
}

/* Grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79,70,229,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,70,229,0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
  z-index: 0;
}

/* Animated gradient blobs */
.hero-bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  display: block;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  display: block;
}
.orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(79,70,229,0.35) 0%, transparent 70%);
  top: -160px; left: -120px;
  animation: orb-drift-1 18s ease-in-out infinite alternate;
}
.orb-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(124,58,237,0.28) 0%, transparent 70%);
  bottom: -100px; right: -80px;
  animation: orb-drift-2 22s ease-in-out infinite alternate;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(192,38,211,0.2) 0%, transparent 70%);
  top: 40%; left: 60%;
  animation: orb-drift-3 16s ease-in-out infinite alternate;
}
@keyframes orb-drift-1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(60px, 40px) scale(1.12); }
}
@keyframes orb-drift-2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-50px, -40px) scale(1.08); }
}
@keyframes orb-drift-3 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 60px) scale(0.9); }
}

/* Particles */
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.particle {
  position: absolute;
  border-radius: 50%;
  animation: rise linear infinite;
}
@keyframes rise {
  from { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  to   { transform: translateY(-80px) rotate(360deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 28px;
}

/* Hero badge with shimmer */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-bg);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  padding: 7px 18px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 30px;
  animation: fadeDown 0.6s ease forwards;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(79,70,229,0.15);
}
.hero-badge::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  animation: shimmer-badge 3s ease 1.2s infinite;
}
@keyframes shimmer-badge {
  from { left: -100%; }
  to   { left: 200%; }
}

.badge-dot {
  width: 7px; height: 7px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(16,185,129,0.6);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); box-shadow: 0 0 8px rgba(16,185,129,0.6); }
  50%       { transform: scale(1.4); box-shadow: 0 0 14px rgba(16,185,129,0.9); }
}

.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  animation: fadeDown 0.7s ease 0.1s both;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.14rem);
  color: var(--text-secondary);
  max-width: 590px;
  margin: 0 auto 40px;
  line-height: 1.8;
  animation: fadeDown 0.7s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeDown 0.7s ease 0.3s both;
}

/* Stats bar — glass card */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 620px;
  margin: 0 auto;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--glass-shadow);
  overflow: hidden;
  animation: fadeDown 0.7s ease 0.4s both;
  backdrop-filter: blur(16px);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 20px 14px;
  transition: var(--transition);
}
.stat-item:hover { background: var(--accent-subtle); }
.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  font-weight: 600;
}
.stat-divider { width: 1px; height: 44px; background: var(--border); flex-shrink: 0; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.scroll-indicator {
  width: 22px; height: 36px;
  border: 1.5px solid var(--accent-border);
  border-radius: 12px;
  position: relative;
}
.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 8px;
  background: var(--gradient-primary);
  border-radius: 2px;
  animation: scroll-dot 2s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

/* ── Core fade animations ── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════════ */
.marquee-strip {
  background: linear-gradient(135deg, rgba(79,70,229,0.06) 0%, rgba(124,58,237,0.06) 100%);
  border-top: 1px solid var(--accent-border);
  border-bottom: 1px solid var(--accent-border);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}
.marquee-strip::before,
.marquee-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee-strip::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.marquee-strip::after  { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

.marquee-track {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  animation: marquee 36s linear infinite;
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.marquee-track .dot {
  -webkit-text-fill-color: rgba(124,58,237,0.35);
  color: rgba(124,58,237,0.35);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════
   SHIMMER HOVER — shared utility
══════════════════════════════════════════════ */
@keyframes shimmer-sweep {
  from { left: -100%; }
  to   { left: 200%; }
}

/* ══════════════════════════════════════════════
   SERVICE CARDS
══════════════════════════════════════════════ */
.services { background: var(--bg-surface); position: relative; }
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(79,70,229,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.brand-section { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  background-image: var(--gradient-card);
}
/* Shimmer line sweep on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  z-index: 1;
  pointer-events: none;
}
/* Top gradient bar */
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.service-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.service-card:hover::before { animation: shimmer-sweep 0.7s ease forwards; }
.service-card:hover::after  { opacity: 1; }

/* Priority cards */
.service-card--priority {
  border-color: var(--accent-border);
  background: linear-gradient(145deg, rgba(79,70,229,0.06) 0%, var(--bg-card) 60%);
}

.priority-label {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(79,70,229,0.3);
}

/* Wide card */
.service-card--wide { grid-column: 1 / -1; }
@media (min-width: 700px) {
  .service-card--wide {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto auto;
    column-gap: 22px;
  }
  .service-card--wide .service-icon-wrap { grid-row: 1 / 4; align-self: center; }
  .service-card--wide .service-title { align-self: end; }
  .service-card--wide .service-desc { grid-column: 2; }
  .service-card--wide .service-tags { grid-column: 2; }
  .service-card--wide .service-link { grid-column: 3; grid-row: 1 / 4; align-self: center; white-space: nowrap; }
}

/* Icon wrap — gradient */
.service-icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(79,70,229,0.12) 0%, rgba(124,58,237,0.10) 100%);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  flex-shrink: 0;
  transition: var(--transition);
  position: relative;
  z-index: 2;
}
.service-card:hover .service-icon-wrap {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--glow-sm);
  transform: scale(1.08) rotate(-3deg);
}
.service-icon-wrap svg { width: 22px; height: 22px; }

.service-title {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
  position: relative;
  z-index: 2;
}
.service-desc {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}
.service-tags span {
  background: var(--accent-subtle);
  color: var(--accent);
  border: 1px solid var(--accent-border);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.84rem;
  font-weight: 700;
  transition: var(--transition);
  position: relative;
  z-index: 2;
}
.service-link:hover { gap: 10px; }

/* ══════════════════════════════════════════════
   INDUSTRIES
══════════════════════════════════════════════ */
.industries { background: var(--bg-surface); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
  gap: 18px;
}

.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.industry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-card);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.industry-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.industry-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.industry-card:hover::before { opacity: 1; }
.industry-card:hover::after  { opacity: 1; }
.industry-card--wide { grid-column: 1 / -1; }

.industry-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  line-height: 1;
  display: inline-block;
  transition: transform 0.3s ease;
}
.industry-card:hover .industry-icon { transform: scale(1.15) rotate(-5deg); }
.industry-card h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 9px; color: var(--text-primary); }
.industry-card p  { color: var(--text-secondary); font-size: 0.875rem; line-height: 1.7; margin-bottom: 14px; }
.industry-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.industry-tags span {
  background: var(--accent-subtle);
  color: var(--accent);
  border: 1px solid var(--accent-border);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.71rem;
  font-weight: 600;
}

/* ══════════════════════════════════════════════
   WHY US
══════════════════════════════════════════════ */
.why-us {
  background: var(--bg);
  position: relative;
}
.why-us::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 600px; height: 400px;
  background: radial-gradient(ellipse at right bottom, rgba(124,58,237,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.why-bg { display: none; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.why-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.why-card:hover::before { transform: scaleX(1); }
.why-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.18;
  line-height: 1;
  margin-bottom: 14px;
  transition: opacity 0.3s ease;
}
.why-card:hover .why-number { opacity: 0.45; }
.why-card h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 9px; color: var(--text-primary); }
.why-card p  { color: var(--text-secondary); font-size: 0.875rem; line-height: 1.7; }

/* ══════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════ */
.pricing { background: var(--bg-surface); position: relative; }
.pricing::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(79,70,229,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.pricing-card--featured {
  border: 2px solid var(--accent);
  background: linear-gradient(160deg, rgba(79,70,229,0.06) 0%, var(--bg-card) 60%);
  transform: scale(1.04);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--accent-border);
  animation: glow-pulse 3s ease-in-out infinite;
}
.pricing-card--featured:hover { transform: scale(1.04) translateY(-6px); }

@keyframes glow-pulse {
  0%, 100% { box-shadow: var(--shadow-md), 0 0 0 1px var(--accent-border); }
  50%       { box-shadow: var(--shadow-lg), 0 0 24px rgba(79,70,229,0.25); }
}

.plan-popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #fff;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(79,70,229,0.35);
}
.plan-badge {
  display: inline-block;
  background: var(--accent-subtle);
  color: var(--accent);
  border: 1px solid var(--accent-border);
  padding: 4px 13px;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.plan-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  margin-bottom: 24px;
}
.price-currency {
  font-size: 1.2rem;
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 9px;
}
.price-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}
.price-period { color: var(--text-muted); font-size: 0.8rem; align-self: flex-end; margin-bottom: 8px; margin-left: 2px; }

.plan-features { text-align: left; margin-bottom: 24px; }
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.plan-features li:last-child { border-bottom: none; }
.feat-icon { font-size: 0.9rem; flex-shrink: 0; }

.plan-btn { width: 100%; }
.pricing-note { text-align: center; color: var(--text-muted); font-size: 0.82rem; margin-top: 32px; }

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.testimonials { background: var(--bg); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  gap: 18px;
}
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: -10px; right: 20px;
  font-family: 'Outfit', serif;
  font-size: 6rem;
  font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}
.testi-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.testi-stars { margin-bottom: 14px; letter-spacing: 2px; }
.testi-stars span {
  font-size: 0.95rem;
  background: linear-gradient(135deg, #F59E0B, #EF4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.testi-text { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.75; margin-bottom: 22px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.82rem; color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}
.testi-name { font-weight: 700; font-size: 0.9rem; color: var(--text-primary); }
.testi-role { color: var(--text-muted); font-size: 0.75rem; margin-top: 2px; }

/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
.contact { background: var(--bg-surface); overflow: hidden; position: relative; }
.contact::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(79,70,229,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.contact::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.contact-bg-orb { display: none; }

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.contact-info .section-tag { display: inline-flex; margin-bottom: 12px; }
.contact-info .section-title { text-align: left; margin-bottom: 14px; font-size: 2rem; }
.contact-info > p { color: var(--text-secondary); margin-bottom: 30px; font-size: 0.97rem; line-height: 1.75; }

.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: center; gap: 16px; }
.contact-item-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(79,70,229,0.1), rgba(124,58,237,0.08));
  border: 1px solid var(--accent-border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
  transition: var(--transition);
}
.contact-item:hover .contact-item-icon {
  background: var(--gradient-primary);
  transform: scale(1.08);
}
.contact-item-label { color: var(--text-muted); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.contact-item-value { font-weight: 700; font-size: 0.92rem; margin-top: 2px; color: var(--text-primary); }

/* Form — glass card */
.contact-form {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(16px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 0.78rem; font-weight: 700; color: var(--text-secondary); letter-spacing: 0.03em; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 16px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(79,70,229,0.1);
  background: var(--bg-card);
}
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 96px; }
.form-note { text-align: center; color: var(--text-muted); font-size: 0.77rem; margin-top: 12px; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: linear-gradient(160deg, #070B1A 0%, #0D1128 60%, #060B18 100%);
  color: #94A3B8;
  padding: 56px 0 28px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79,70,229,0.5), rgba(124,58,237,0.5), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 44px;
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
}
.footer-brand .logo { margin-bottom: 14px; display: inline-flex; color: #fff; }
.footer-tagline { color: #64748B; font-size: 0.875rem; margin-bottom: 22px; max-width: 270px; line-height: 1.7; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: #64748B;
  transition: var(--transition);
}
.social-link svg { width: 14px; height: 14px; }
.social-link:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(79,70,229,0.4);
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: #64748B; font-size: 0.875rem; transition: var(--transition); display: inline-flex; align-items: center; gap: 4px; }
.footer-col ul a:hover { color: #E2E8F0; padding-left: 4px; }

.newsletter-form { display: flex; gap: 8px; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1; min-width: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: #fff;
  font-size: 0.82rem;
  outline: none;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}
.newsletter-form input::placeholder { color: #475569; }
.newsletter-form input:focus {
  border-color: rgba(79,70,229,0.5);
  box-shadow: 0 0 0 3px rgba(79,70,229,0.15);
}
.newsletter-form .btn-primary { padding: 10px 18px; font-size: 0.82rem; border-radius: var(--radius-sm); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #475569;
  font-size: 0.8rem;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 44px; height: 44px;
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px) scale(0.9);
  transition: var(--transition);
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(79,70,229,0.4);
}
.back-to-top.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.back-to-top:hover { box-shadow: var(--glow); transform: translateY(-3px) scale(1.05); }

/* ══════════════════════════════════════════════
   SCROLL REVEAL SYSTEM
══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
  transition-delay: var(--stagger-delay, 0ms);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--stagger-delay, 0ms);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--stagger-delay, 0ms);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--stagger-delay, 0ms);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ══════════════════════════════════════════════
   THEME TOGGLE
══════════════════════════════════════════════ */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: var(--bg-surface);
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  margin-left: 8px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.theme-toggle:hover {
  border-color: var(--accent-border);
  background: var(--accent-subtle);
  transform: scale(1.08) rotate(15deg);
  box-shadow: var(--glow-sm);
}
.theme-icon { transition: opacity 0.2s ease, transform 0.2s ease; display: block; line-height: 1; }
.theme-icon--dark  { display: none; }
body.dark .theme-icon--light { display: none; }
body.dark .theme-icon--dark  { display: block; }

/* ══════════════════════════════════════════════
   DARK MODE TOKENS
══════════════════════════════════════════════ */
body.dark {
  --bg:           #060B18;
  --bg-surface:   #0A1025;
  --bg-card:      #0F1830;
  --bg-card-alt:  #141E38;

  --text-primary:   #EDF0FF;
  --text-secondary: #8B92B4;
  --text-muted:     #4A5272;

  --accent:         #6366F1;
  --accent-hover:   #4F46E5;
  --accent-light:   #818CF8;
  --accent-subtle:  rgba(99,102,241,0.1);
  --accent-border:  rgba(99,102,241,0.28);

  --violet:         #8B5CF6;
  --violet-light:   #A78BFA;

  --gradient-primary: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
  --gradient-text:    linear-gradient(135deg, #818CF8 0%, #A78BFA 55%, #C084FC 100%);
  --gradient-hero:    linear-gradient(135deg, #070D22 0%, #0A1025 60%, #060B18 100%);
  --gradient-card:    linear-gradient(145deg, rgba(99,102,241,0.07) 0%, transparent 60%);

  --glass-bg:          rgba(15,24,48,0.8);
  --glass-border:      rgba(255,255,255,0.06);
  --glass-shadow:      0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(99,102,241,0.1);

  --border:         rgba(255,255,255,0.07);
  --border-hover:   rgba(99,102,241,0.35);

  --shadow-xs: 0 1px 4px rgba(0,0,0,0.5);
  --shadow-sm: 0 3px 12px rgba(0,0,0,0.55);
  --shadow-md: 0 8px 28px rgba(0,0,0,0.65), 0 0 0 1px rgba(99,102,241,0.08);
  --shadow-lg: 0 16px 52px rgba(0,0,0,0.75), 0 0 0 1px rgba(99,102,241,0.12);
  --glow:      0 0 28px rgba(99,102,241,0.55);
  --glow-sm:   0 0 14px rgba(99,102,241,0.4);
}

/* ── Dark: Component-level overrides ── */
body.dark .navbar {
  background: rgba(6,11,24,0.9);
  border-bottom-color: rgba(255,255,255,0.05);
}
body.dark .navbar.scrolled {
  background: rgba(6,11,24,0.95);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5), 0 1px 0 rgba(99,102,241,0.2);
}
body.dark .hero { background: var(--gradient-hero); }
body.dark .hero::before {
  background-image:
    linear-gradient(rgba(99,102,241,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,0.07) 1px, transparent 1px);
}
body.dark .orb-1 {
  background: radial-gradient(circle, rgba(99,102,241,0.5) 0%, transparent 70%);
  opacity: 0.7;
}
body.dark .orb-2 {
  background: radial-gradient(circle, rgba(139,92,246,0.45) 0%, transparent 70%);
  opacity: 0.65;
}
body.dark .orb-3 {
  background: radial-gradient(circle, rgba(192,132,252,0.35) 0%, transparent 70%);
  opacity: 0.55;
}
body.dark .hero-stats { background: rgba(15,24,48,0.7); }
body.dark .dropdown {
  background: rgba(10,16,37,0.97);
  border-color: rgba(99,102,241,0.15);
}
body.dark .marquee-strip {
  background: linear-gradient(135deg, rgba(99,102,241,0.07) 0%, rgba(139,92,246,0.06) 100%);
  border-top-color:    rgba(99,102,241,0.18);
  border-bottom-color: rgba(99,102,241,0.18);
}
body.dark .marquee-strip::before { background: linear-gradient(to right, var(--bg), transparent); }
body.dark .marquee-strip::after  { background: linear-gradient(to left,  var(--bg), transparent); }
body.dark .service-card--priority {
  background: linear-gradient(145deg, rgba(99,102,241,0.12) 0%, var(--bg-card) 60%);
}
body.dark .pricing-card--featured {
  background: linear-gradient(160deg, rgba(99,102,241,0.12) 0%, var(--bg-card) 60%);
}
body.dark .contact-form { box-shadow: var(--glass-shadow); }
body.dark .footer {
  background: linear-gradient(160deg, #030712 0%, #040B1C 60%, #020508 100%);
}
body.dark .footer::before {
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.4), rgba(139,92,246,0.4), transparent);
}
body.dark .theme-toggle {
  border-color: rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}
body.dark .theme-toggle:hover {
  background: rgba(99,102,241,0.18);
  border-color: rgba(99,102,241,0.4);
}
body.dark .nav-links.open {
  background: rgba(6,11,24,0.98);
  border-bottom-color: rgba(255,255,255,0.06);
}
body.dark .hero-badge { background: rgba(15,24,48,0.85); }
body.dark .service-tags span {
  background: rgba(99,102,241,0.12);
  border-color: rgba(99,102,241,0.22);
}
body.dark .industry-tags span {
  background: rgba(99,102,241,0.12);
  border-color: rgba(99,102,241,0.22);
}

/* ══════════════════════════════════════════════
   CURSOR GLOW (desktop only)
══════════════════════════════════════════════ */
.cursor-glow {
  position: fixed;
  pointer-events: none;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,70,229,0.08) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: opacity 0.3s ease;
  opacity: 0;
}
body:hover .cursor-glow { opacity: 1; }

/* ══════════════════════════════════════════════
   SMOOTH THEME TRANSITION
══════════════════════════════════════════════ */
body, body * {
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease;
}
/* Keep interaction transitions fast */
a, button,
.service-card, .pricing-card, .industry-card,
.why-card, .testi-card, .back-to-top, .theme-toggle,
.service-icon-wrap, .industry-icon, .contact-item-icon,
.social-link, .btn-primary, .btn-outline {
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.25s cubic-bezier(0.4,0,0.2,1),
    opacity 0.25s ease,
    filter 0.25s ease;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }

  /* Navbar & Hamburger Alignment */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  
  .theme-toggle { margin-left: auto; }
  .hamburger { margin-left: 12px; }

  /* Hamburger Close X Animation */
  .hamburger.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  /* Mobile Nav Drawer */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height); left: 0; right: 0;
    background: rgba(250,251,255,0.98);
    backdrop-filter: blur(20px);
    padding: 18px 24px 28px;
    border-bottom: 1px solid var(--border);
    z-index: 999;
    gap: 4px;
    box-shadow: 0 8px 32px rgba(79,70,229,0.1);
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
  }
  .nav-links.open .nav-item {
    width: 100%;
  }
  .nav-links.open .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
  }

  /* Mobile Dropdowns (Accordion Style) */
  .dropdown {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    display: none !important;
    min-width: 100% !important;
    max-width: 100% !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    padding: 0 0 10px 16px !important;
    white-space: normal !important;
    backdrop-filter: none !important;
  }
  .nav-item.open .dropdown {
    display: flex !important;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
    border-left: 2px solid var(--accent-border) !important;
  }
  .core-dropdown, .brand-dropdown {
    min-width: 100% !important;
    flex-direction: column !important;
    gap: 16px !important;
  }
  .dropdown-col {
    width: 100% !important;
  }
  .dropdown-heading {
    border-bottom: 1px solid var(--border);
    margin-bottom: 8px;
    padding-bottom: 4px;
    padding-left: 0;
  }
  .dropdown-link {
    padding: 8px 0 !important;
    width: 100%;
  }
  .dropdown-link strong {
    font-size: 0.9rem !important;
  }
  .dropdown-link small {
    font-size: 0.78rem !important;
    display: block;
    white-space: normal;
  }
  .industries-dropdown {
    flex-wrap: wrap !important;
    gap: 8px !important;
    max-width: 100% !important;
  }

  /* Contact Form Padding */
  .contact-wrapper { grid-template-columns: 1fr; gap: 36px; }
  .contact-info .section-title { font-size: 1.65rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 22px 18px; }

  /* Footer Layout */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Featured Pricing Card */
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-6px); }

  /* Hero Stats Grid wrapping (2x2 Grid border gaps) */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    max-width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  .stat-item {
    background: var(--glass-bg);
    min-width: unset;
    padding: 16px 10px;
  }
  .stat-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .service-card--wide, .industry-card--wide { grid-column: 1; }
  .testi-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   FLOAT ANIMATION (used on icon wraps)
══════════════════════════════════════════════ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
@keyframes float-gentle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-4px) rotate(-2deg); }
  66%       { transform: translateY(-2px) rotate(2deg); }
}
