/* ============================================================
   ITD BİLİŞİM — Design System v4.0 — Ultra-Premium Redesign
   ============================================================ */

/* ═══════════════════════════════════════════════════════════════
   1. DESIGN TOKENS & RESET
   ═══════════════════════════════════════════════════════════════ */
:root {
  /* Brand palette — obsidian dark + electric blue/teal accent */
  --clr-bg:          #020810;
  --clr-bg-2:        #060e1c;
  --clr-bg-3:        #0a1224;
  --clr-surface:     #0d1630;

  --clr-primary:     #3b82f6;
  --clr-primary-d:   #2563eb;
  --clr-primary-l:   #60a5fa;
  --clr-accent:      #06d6a0;
  --clr-accent-2:    #8b5cf6;
  --clr-cyan:        #22d3ee;
  --clr-rose:        #f43f5e;
  --clr-amber:       #f59e0b;
  --clr-white:       #ffffff;
  --clr-text:        #c8d6e5;
  --clr-text-muted:  #5e7899;

  --clr-border:      rgba(59,130,246,0.12);
  --clr-border-glow: rgba(6,214,160,0.2);
  --clr-card:        rgba(6,14,28,0.7);
  --clr-glass:       rgba(255,255,255,0.03);
  --clr-glass-2:     rgba(255,255,255,0.06);
  --clr-glass-border: rgba(255,255,255,0.08);
  --clr-primary-glow: rgba(59,130,246,0.5);

  /* Gradients */
  --grad-primary:    linear-gradient(135deg, #3b82f6, #06d6a0);
  --grad-hero:       linear-gradient(135deg, #3b82f6 0%, #8b5cf6 40%, #06d6a0 100%);
  --grad-card-border: linear-gradient(135deg, rgba(59,130,246,0.4), rgba(6,214,160,0.2), rgba(139,92,246,0.3));
  --grad-mesh:       radial-gradient(ellipse 80% 50% at 50% -20%, rgba(59,130,246,0.12) 0%, transparent 70%);

  /* Radius */
  --radius-xs:  6px;
  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --radius-pill: 100px;

  /* Shadows */
  --shadow-xs:    0 1px 3px rgba(0,0,0,0.2);
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.3);
  --shadow-md:    0 12px 40px rgba(0,0,0,0.45);
  --shadow-lg:    0 24px 60px rgba(0,0,0,0.5);
  --shadow-glow:  0 0 40px rgba(59,130,246,0.2), 0 0 80px rgba(6,214,160,0.08);
  --shadow-card:  0 4px 24px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.04);

  /* Typography */
  --font-main:     'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-heading:  'Outfit', system-ui, -apple-system, sans-serif;

  --transition:    0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-height:    72px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-main);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Subtle noise texture for depth */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.018;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: overlay;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ═══════════════════════════════════════════════════════════════
   2. UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════ */
.container   { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section     { padding: 7rem 0; position: relative; }
.section-sm  { padding: 3.5rem 0; }
.text-center { text-align: center; }
.text-muted  { color: var(--clr-text-muted); }
.highlight   { color: var(--clr-primary); }
.accent      { color: var(--clr-accent); }

/* Animated section label pill */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: var(--clr-accent);
  margin-bottom: 1.25rem;
  padding: 0.5rem 1.2rem 0.5rem 1.4rem;
  background: linear-gradient(135deg, rgba(6,214,160,0.08), rgba(59,130,246,0.05));
  border: 1px solid rgba(6,214,160,0.18);
  border-radius: var(--radius-pill);
  position: relative;
  overflow: hidden;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--grad-primary);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--clr-white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.6px;
}
.section-title .grad {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  max-width: 600px;
  margin: 0 auto 3.5rem;
  line-height: 1.85;
}

/* ═══════════════════════════════════════════════════════════════
   3. BUTTONS — Premium with shimmer effect
   ═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.82rem 2rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.92rem;
  transition: all var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
/* Shimmer sweep on hover */
.btn::after {
  content: '';
  position: absolute;
  top: -50%; left: -75%;
  width: 50%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}
.btn:hover::after { left: 125%; }

.btn-primary {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-d));
  color: var(--clr-white);
  box-shadow: 0 4px 20px rgba(59,130,246,0.3), 0 0 0 0 rgba(59,130,246,0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(59,130,246,0.45), 0 0 60px rgba(59,130,246,0.15);
}

.btn-outline {
  background: transparent;
  color: var(--clr-white);
  border-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--clr-accent);
  color: var(--clr-accent);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(6,214,160,0.15);
}

.btn-accent {
  background: linear-gradient(135deg, var(--clr-accent), #059669);
  color: var(--clr-bg);
  border-color: transparent;
  font-weight: 800;
  box-shadow: 0 4px 24px rgba(6,214,160,0.3);
}
.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(6,214,160,0.45);
}

/* ═══════════════════════════════════════════════════════════════
   4. NAVBAR — Clean frosted glass
   ═══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(2, 8, 16, 0.88);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom-color: var(--clr-border);
}
.navbar:has(.nav-dropdown:hover),
.navbar.dropdown-open {
  background: rgba(2, 8, 16, 0.95) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--clr-border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo img {
  height: 42px;
  max-width: 170px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: opacity var(--transition);
}
.nav-logo img:hover { opacity: 0.8; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-links a {
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--clr-white); }
.nav-links a:hover::after,
.nav-links a.active::after { left: 0.85rem; right: 0.85rem; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(6, 14, 28, 0.96);
  backdrop-filter: blur(24px);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  min-width: 250px;
  padding: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.03);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  color: var(--clr-text-muted);
  transition: var(--transition);
}
.nav-dropdown-menu a:hover {
  background: rgba(59,130,246,0.06);
  color: var(--clr-white);
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu .drop-icon {
  font-size: 1rem;
  width: 28px;
  text-align: center;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-pill);
  overflow: hidden;
  padding: 2px;
}
.lang-btn {
  padding: 0.28rem 0.65rem;
  border: none;
  background: transparent;
  color: var(--clr-text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}
.lang-btn.active {
  background: var(--clr-primary);
  color: var(--clr-white);
  box-shadow: 0 2px 8px rgba(59,130,246,0.3);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: transparent;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(2, 8, 16, 0.97);
  backdrop-filter: blur(24px);
  padding: 1.5rem;
  border-bottom: 1px solid var(--clr-border);
  z-index: 999;
  flex-direction: column;
  gap: 0.25rem;
  transform: translateY(-100%);
  opacity: 0;
  transition: var(--transition);
}
.nav-mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
.nav-mobile-menu a {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--clr-text);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: var(--transition);
}
.nav-mobile-menu a:last-of-type { border-bottom: none; }
.nav-mobile-menu a:hover { background: rgba(59,130,246,0.06); color: var(--clr-white); }
.nav-mobile-lang {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ═══════════════════════════════════════════════════════════════
   5. HERO — Cinematic 3D Slider
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--clr-bg);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

/* Background art — mesh gradient + grid + glow */
.hero-bg-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(59,130,246,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 60% 50%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 60% 50%, black 30%, transparent 75%);
}
.hero-blob {
  position: absolute;
  filter: blur(140px);
  border-radius: 50%;
  opacity: 0.18;
  animation: blobAnim 16s infinite alternate ease-in-out;
}
.hero-blob.b1 {
  width: 55vw; height: 55vw;
  background: linear-gradient(135deg, var(--clr-primary-d), var(--clr-accent-2));
  top: -25%; right: -15%;
  mix-blend-mode: screen;
}
.hero-blob.b2 {
  width: 45vw; height: 45vw;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-cyan));
  bottom: -15%; left: -15%;
  animation-delay: -8s;
  opacity: 0.1;
}

/* Holographic ring */
.hero-bg-art::after {
  content: '';
  position: absolute;
  right: 3rem;
  top: 50%;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  border: 1px solid rgba(59,130,246,0.08);
  box-shadow: 0 0 80px rgba(59,130,246,0.06), inset 0 0 80px rgba(6,214,160,0.04);
  transform: translateY(-50%) rotateX(65deg) rotateZ(0deg);
  animation: techRing 50s linear infinite;
}
@keyframes techRing { 100% { transform: translateY(-50%) rotateX(65deg) rotateZ(360deg); } }
@keyframes blobAnim {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-8%, 8%); }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  width: 100%;
}

/* Hero Text */
.hero-text-container { padding-right: 1rem; }
.hero-text-slide {
  display: none;
  animation: heroTextReveal 0.9s var(--ease-out-expo) forwards;
}
.hero-text-slide.active { display: block; }
@keyframes heroTextReveal {
  from { opacity: 0; transform: translateY(25px); filter: blur(8px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--clr-accent);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-accent));
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.06;
  color: var(--clr-white);
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
}
.hero-title span {
  background: linear-gradient(135deg, var(--clr-primary-l), var(--clr-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(200,214,229,0.7);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.85;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-nav-classic {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.hero-dots { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.hero-dot {
  width: 28px; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,0.12);
  border: none; cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active {
  background: var(--clr-accent);
  width: 40px;
  box-shadow: 0 0 10px rgba(6,214,160,0.4);
}
.hero-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--clr-text-muted);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(5px);
}
.hero-arrow:hover {
  background: rgba(6,214,160,0.08);
  border-color: var(--clr-accent);
  color: var(--clr-accent);
}

/* 3D Carousel */
.hero-3d-wrapper {
  perspective: 2000px;
  width: 100%;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}
.hero-carousel {
  width: 320px;
  height: 460px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 1.2s var(--ease-out-expo);
  transform: rotateX(-6deg);
}
.hero-3d-card {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 1.75rem;
  text-align: center;
  background: rgba(2, 8, 16, 0.5);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  transition: opacity 1.2s, filter 1.2s, transform 1.2s, box-shadow 0.6s, border-color 0.6s;
  overflow: hidden;
  opacity: 0.12;
  filter: blur(6px) grayscale(100%);
  pointer-events: none;
}
.hero-3d-card.active-card {
  opacity: 1;
  filter: blur(0) grayscale(0%);
  border-color: rgba(6,214,160,0.35);
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 50px rgba(59,130,246,0.1), inset 0 0 30px rgba(59,130,246,0.08);
  pointer-events: auto;
}
/* Scanline for tech feel */
.hero-3d-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(0,0,0,0.15) 50%);
  background-size: 100% 4px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.25;
}
.hero-card-bg {
  position: absolute;
  inset: -20px;
  background-size: cover;
  background-position: center;
  transform: translateZ(-20px) scale(1.1);
  opacity: 0.35;
  transition: opacity 1.2s, transform 1.2s var(--ease-out-expo);
}
.hero-3d-card.active-card .hero-card-bg {
  opacity: 0.75;
  transform: translateZ(0) scale(1);
}
.hero-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(2,8,16,0.92) 0%, rgba(2,8,16,0.55) 100%);
  z-index: 1;
}
.hero-3d-card.active-card .hero-card-overlay {
  background: linear-gradient(160deg, rgba(2,8,16,0.8) 0%, rgba(59,130,246,0.2) 100%);
}
.hero-card-content {
  position: relative;
  z-index: 2;
  transform: translateZ(50px);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 1.2s var(--ease-out-expo);
}
.hero-3d-card.active-card .hero-card-content { transform: translateZ(70px); }

.hero-card-icon {
  width: 72px; height: 72px; border-radius: 20px;
  background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(6,214,160,0.05));
  backdrop-filter: blur(12px);
  border: 1px solid rgba(59,130,246,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  color: var(--clr-primary-l);
}
.hero-card-icon svg {
  width: 36px; height: 36px;
  stroke: var(--clr-primary-l);
  filter: drop-shadow(0 0 6px rgba(59,130,246,0.5));
}
.hero-card-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  text-shadow: 0 4px 16px rgba(0,0,0,0.8);
  letter-spacing: -0.3px;
}

/* ═══════════════════════════════════════════════════════════════
   6. STATS BAR — Gradient accent strip
   ═══════════════════════════════════════════════════════════════ */
.stats-bar {
  background: linear-gradient(90deg, #040c1a 0%, #0a1838 40%, #060e1c 100%);
  border-top: 1px solid rgba(59,130,246,0.1);
  border-bottom: 1px solid rgba(59,130,246,0.1);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(59,130,246,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.stat-item {
  padding: 0.75rem;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #fff 30%, var(--clr-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════
   7. SERVICE CARDS — Gradient-border premium cards
   ═══════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--clr-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
  box-shadow: var(--shadow-card);
}
/* Gradient top border on hover */
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59,130,246,0.25);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(59,130,246,0.08);
}
.service-card:hover::after { opacity: 1; }

.service-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out-expo);
}
.service-card:hover .service-card-img { transform: scale(1.04); }
.service-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(6,214,160,0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(59,130,246,0.15);
}
.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 0.5rem;
}
.service-card-desc {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  flex: 1;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-primary-l);
  margin-top: 1.25rem;
  transition: var(--transition);
}
.service-card:hover .service-card-link { gap: 0.7rem; color: var(--clr-accent); }

/* ═══════════════════════════════════════════════════════════════
   8. ABOUT SECTION
   ═══════════════════════════════════════════════════════════════ */
.about-section {
  background: var(--clr-bg-2);
  background-image: radial-gradient(ellipse 60% 40% at 0% 50%, rgba(59,130,246,0.04) 0%, transparent 60%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--clr-accent);
  margin-bottom: 0.75rem;
}
.about-text {
  font-size: 1rem;
  color: var(--clr-text-muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}
.about-chip {
  padding: 0.45rem 1rem;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.18);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-primary-l);
  transition: var(--transition);
}
.about-chip:hover {
  background: rgba(59,130,246,0.15);
  border-color: rgba(59,130,246,0.35);
}
.about-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 0.75rem;
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.04);
}
.about-img-tall { grid-row: 1 / 3; border-radius: var(--radius-lg); }

/* Partner Callout Box */
.partner-callout {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(59,130,246,0.06), rgba(6,214,160,0.03));
  border: 1px solid var(--clr-border);
  border-left: 3px solid var(--clr-accent);
  border-radius: var(--radius-md);
  margin: 1.5rem 0 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  backdrop-filter: blur(8px);
}
.partner-callout strong {
  color: var(--clr-white);
  font-size: 1.02rem;
  display: block;
  margin-bottom: 0.4rem;
}
.partner-callout p {
  margin-bottom: 0;
  color: var(--clr-text);
  line-height: 1.7;
  font-size: 0.93rem;
}

/* ═══════════════════════════════════════════════════════════════
   9. PARTNERS MARQUEE
   ═══════════════════════════════════════════════════════════════ */
.partners-section {
  background: var(--clr-bg-3);
  overflow: hidden;
}
.partners-marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.partners-marquee {
  display: flex;
  gap: 2rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.partners-marquee:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: 1.2rem 2.5rem;
  min-width: 190px; max-width: 280px;
  height: 88px;
  transition: var(--transition);
}
.partner-logo-item:hover {
  background: rgba(59,130,246,0.06);
  border-color: rgba(59,130,246,0.25);
}
.partner-logo-item img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.5);
  transition: all 0.4s ease;
}
.partner-logo-item:hover img {
  filter: grayscale(0) opacity(1);
  transform: scale(1.05);
}

/* ═══════════════════════════════════════════════════════════════
   10. REFERENCES / TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */
.references-section {
  background: var(--clr-bg-2);
  background-image: radial-gradient(ellipse 50% 40% at 80% 20%, rgba(139,92,246,0.05) 0%, transparent 60%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(59,130,246,0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
.testimonial-quote {
  font-size: 2.5rem;
  color: var(--clr-primary);
  line-height: 1;
  margin-bottom: 1rem;
  font-family: Georgia, serif;
  opacity: 0.6;
}
.testimonial-text {
  font-size: 0.93rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--clr-white);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.88rem; color: var(--clr-white); }
.testimonial-role { font-size: 0.76rem; color: var(--clr-text-muted); }

/* ═══════════════════════════════════════════════════════════════
   11. CTA BANNER
   ═══════════════════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, #071430 0%, #0d2260 40%, #071a3a 100%);
  border-top: 1px solid rgba(59,130,246,0.1);
  border-bottom: 1px solid rgba(59,130,246,0.1);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 60% at 20% 50%, rgba(6,214,160,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 40% 60% at 80% 50%, rgba(139,92,246,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.cta-banner .section-title { color: var(--clr-white); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-contact-items {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.93rem;
}

/* ═══════════════════════════════════════════════════════════════
   12. FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  background: #010509;
  border-top: 1px solid var(--clr-border);
  padding: 5rem 0 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--clr-primary) 30%, var(--clr-accent) 50%, var(--clr-primary) 70%, transparent 90%);
  opacity: 0.6;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-logo img {
  height: 32px;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}
.footer-brand-text {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: 0.5rem; }
.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
}
.footer-social-btn:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: var(--clr-white);
}
.footer-col-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--clr-white);
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
}
.footer-col ul li + li { margin-top: 0.5rem; }
.footer-col ul li a {
  font-size: 0.86rem;
  color: var(--clr-text-muted);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--clr-primary-l); padding-left: 4px; }
.footer-address p {
  font-size: 0.84rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.footer-address strong {
  color: var(--clr-white);
  font-size: 0.86rem;
  display: block;
  margin-bottom: 0.25rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   13. SPEED-DIAL FAB
   ═══════════════════════════════════════════════════════════════ */
.fab-container {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
}
.fab-options {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
  pointer-events: none;
}
.fab-option-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(10px) scale(0.85);
  transition: opacity 0.28s, transform 0.28s, visibility 0.28s;
  visibility: hidden;
}
.fab-option-item:nth-child(1) { transition-delay: 0.08s; }
.fab-option-item:nth-child(2) { transition-delay: 0.04s; }
.fab-option-item:nth-child(3) { transition-delay: 0s; }
.fab-container.open .fab-options { pointer-events: all; }
.fab-container.open .fab-option-item {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}
.fab-container.open .fab-option-item:nth-child(1) { transition-delay: 0s; }
.fab-container.open .fab-option-item:nth-child(2) { transition-delay: 0.04s; }
.fab-container.open .fab-option-item:nth-child(3) { transition-delay: 0.08s; }

.fab-label {
  background: rgba(2,8,16,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--clr-white);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.fab-action {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: transform 0.22s, box-shadow 0.22s;
  text-decoration: none;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.fab-action:hover { transform: scale(1.12); }
.fab-action svg { width: 22px; height: 22px; }
.fab-whatsapp-btn { background: linear-gradient(135deg, #25d366, #1aa54d); color: #fff; }
.fab-teamviewer-btn { background: linear-gradient(135deg, #0060ab, #004880); color: #fff; }
.fab-contact-btn  { background: var(--grad-primary); color: #fff; }

.fab-main {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad-primary);
  border: 2px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 8px 28px rgba(59,130,246,0.35), 0 0 0 0 rgba(59,130,246,0.3);
  animation: fabPulse 3s ease-in-out infinite;
  transition: box-shadow 0.22s, transform 0.22s;
  flex-shrink: 0;
  color: white;
}
.fab-main:hover { transform: scale(1.08); animation-play-state: paused; }
.fab-container.open .fab-main { animation-play-state: paused; }
@keyframes fabPulse {
  0%   { box-shadow: 0 8px 28px rgba(59,130,246,0.35), 0 0 0 0 rgba(59,130,246,0.3); }
  60%  { box-shadow: 0 8px 28px rgba(59,130,246,0.35), 0 0 0 14px rgba(59,130,246,0); }
  100% { box-shadow: 0 8px 28px rgba(59,130,246,0.35), 0 0 0 0 rgba(59,130,246,0); }
}
.fab-main-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s, transform 0.2s;
}
.fab-main-icon.fab-open-icon  { opacity: 0; transform: rotate(-90deg) scale(0.6); }
.fab-main-icon.fab-close-icon { opacity: 1; transform: rotate(0deg) scale(1); }
.fab-container.open .fab-main-icon.fab-open-icon  { opacity: 1; transform: rotate(0deg) scale(1); }
.fab-container.open .fab-main-icon.fab-close-icon { opacity: 0; transform: rotate(90deg) scale(0.6); }
.fab-main svg { width: 24px; height: 24px; }

/* WhatsApp standalone */
.fab-whatsapp-left {
  position: fixed;
  bottom: 1.75rem;
  left: 1.75rem;
  z-index: 900;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #1aa54d);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
  animation: waPulse 3s ease-in-out infinite;
  transition: transform 0.22s;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.15);
}
.fab-whatsapp-left:hover { transform: scale(1.1); animation-play-state: paused; }
.fab-whatsapp-left svg { width: 24px; height: 24px; }
@keyframes waPulse {
  0%   { box-shadow: 0 6px 20px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0.25); }
  60%  { box-shadow: 0 6px 20px rgba(37,211,102,0.35), 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 6px 20px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0); }
}

/* ═══════════════════════════════════════════════════════════════
   14. MODAL
   ═══════════════════════════════════════════════════════════════ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  z-index: 1100;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.active { display: flex; }
.modal-content {
  background: var(--clr-bg-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 520px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.support-modal-content { max-width: 600px; }
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--clr-text-muted);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: rgba(244,63,94,0.15); color: var(--clr-rose); }

/* ═══════════════════════════════════════════════════════════════
   15. FORMS
   ═══════════════════════════════════════════════════════════════ */
.support-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label { font-size: 0.84rem; font-weight: 600; color: var(--clr-text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.72rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  color: var(--clr-white);
  font-size: 0.9rem;
  font-family: inherit;
  transition: var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
  background: rgba(59,130,246,0.03);
}
.form-group select option { background: var(--clr-bg-2); }
.submit-btn {
  width: 100%;
  padding: 0.85rem;
  background: var(--clr-primary);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--clr-white);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.submit-btn:hover {
  background: var(--clr-primary-d);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(59,130,246,0.3);
}

/* ═══════════════════════════════════════════════════════════════
   16. SERVICE DETAIL PAGES
   ═══════════════════════════════════════════════════════════════ */
.service-hero {
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(2,8,16,0.88) 0%, rgba(2,8,16,0.96) 100%);
}
.service-hero-content { position: relative; z-index: 1; }
.service-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  margin-bottom: 1.5rem;
  justify-content: center;
}
.service-breadcrumb a { color: var(--clr-text-muted); transition: var(--transition); }
.service-breadcrumb a:hover { color: var(--clr-primary-l); }
.service-breadcrumb span { color: var(--clr-primary-l); font-weight: 600; }

.service-body { padding: 5rem 0; }
.service-body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.service-body-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,0.04);
}

.service-features {
  background: var(--clr-bg-2);
  padding: 4rem 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.feature-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.feature-item:hover {
  border-color: rgba(59,130,246,0.2);
  background: rgba(59,130,246,0.04);
  transform: translateY(-2px);
}
.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(59,130,246,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid rgba(59,130,246,0.15);
}
.feature-text h4 {
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--clr-white);
  margin-bottom: 0.3rem;
}
.feature-text p {
  font-size: 0.84rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}

/* Process Timeline */
.service-process { padding: 4rem 0; }
.process-timeline {
  display: flex;
  gap: 0;
  margin-top: 3rem;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 0; right: 0;
  height: 2px;
  background: var(--grad-primary);
}
.process-step { flex: 1; text-align: center; padding: 0 1rem; }
.process-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-primary);
  color: var(--clr-white);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border: 3px solid var(--clr-bg);
  z-index: 1;
  position: relative;
  box-shadow: 0 4px 12px rgba(59,130,246,0.3);
}
.process-step h4 { font-weight: 700; font-size: 0.93rem; color: var(--clr-white); margin-bottom: 0.35rem; }
.process-step p { font-size: 0.82rem; color: var(--clr-text-muted); line-height: 1.55; }

/* Service CTA Strip */
.service-cta {
  background: var(--grad-primary);
  padding: 4rem 0;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   17. PAGE-SPECIFIC SECTIONS
   ═══════════════════════════════════════════════════════════════ */

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59,130,246,0.25);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out-expo);
}
.blog-card:hover .blog-card-img { transform: scale(1.04); }
.blog-card-body { padding: 1.5rem; }
.blog-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--clr-accent);
  margin-bottom: 0.5rem;
}
.blog-card-title {
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--clr-white);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.blog-card-excerpt { font-size: 0.86rem; color: var(--clr-text-muted); line-height: 1.65; margin-bottom: 1rem; }
.blog-card-meta { font-size: 0.76rem; color: var(--clr-text-muted); }

/* Products Page */
.products-section { padding: 5rem 0; }
.product-partner-section { margin-bottom: 4rem; }
.product-partner-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.product-partner-logo img { height: 40px; width: auto; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.product-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--transition);
}
.product-card:hover {
  border-color: rgba(59,130,246,0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.product-card-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-accent);
  margin-bottom: 0.25rem;
}
.product-card-name { font-weight: 700; color: var(--clr-white); font-size: 0.93rem; }

/* References Page */
.references-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.reference-logo-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: 2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  transition: var(--transition);
}
.reference-logo-card:hover {
  border-color: rgba(59,130,246,0.25);
  background: rgba(59,130,246,0.04);
}

/* ═══════════════════════════════════════════════════════════════
   18. CONTACT PAGE
   ═══════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  margin-top: 3rem;
}
.office-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}
.office-card:hover { border-color: rgba(59,130,246,0.2); }
.office-card-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.office-card h4 { font-weight: 700; color: var(--clr-white); margin-bottom: 0.5rem; }
.office-card p { font-size: 0.86rem; color: var(--clr-text-muted); line-height: 1.65; }
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  margin-top: 1rem;
}
.map-embed iframe { width: 100%; height: 250px; border: none; display: block; }
.contact-form {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form .support-form-grid { grid-template-columns: 1fr 1fr; }

/* ═══════════════════════════════════════════════════════════════
   19. SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  filter: blur(6px);
  transition: opacity 0.8s var(--ease-out-expo),
              transform 0.8s var(--ease-out-expo),
              filter 0.8s var(--ease-out-expo);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-35px);
  filter: blur(5px);
  transition: opacity 0.8s var(--ease-out-expo),
              transform 0.8s var(--ease-out-expo),
              filter 0.8s var(--ease-out-expo);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); filter: blur(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(35px);
  filter: blur(5px);
  transition: opacity 0.8s var(--ease-out-expo),
              transform 0.8s var(--ease-out-expo),
              filter 0.8s var(--ease-out-expo);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); filter: blur(0); }

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════════════════
   20. RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid       { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero-text-container { padding-right: 0; }
  .hero-eyebrow    { justify-content: center; }
  .hero-cta        { justify-content: center; }
  .hero-nav-classic{ justify-content: center; }
  .hero-3d-wrapper { height: 380px; transform: scale(0.85); }
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-grid      { grid-template-columns: 1fr; gap: 3rem; }
  .products-grid   { grid-template-columns: repeat(2, 1fr); }
  .references-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid      { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .blog-grid       { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-height: 62px; }
  .container { padding: 0 1.25rem; }
  .section { padding: 4.5rem 0; }

  .nav-links,
  .nav-actions .btn { display: none; }
  .nav-hamburger { display: flex; }

  .hero { min-height: auto; padding: 110px 0 50px; }
  .hero-arrows { display: none; }
  .hero-title { font-size: 2rem; letter-spacing: -0.5px; }
  .hero-3d-wrapper { height: 300px; transform: scale(0.65); }

  .services-grid     { grid-template-columns: 1fr; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .blog-grid          { grid-template-columns: 1fr; }
  .features-grid      { grid-template-columns: 1fr; }
  .process-timeline   { flex-direction: column; }
  .process-timeline::before { display: none; }
  .service-body-grid  { grid-template-columns: 1fr; }
  .about-image-grid   { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .about-img-tall     { grid-row: auto; }
  .contact-grid       { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr; }
  .references-grid    { grid-template-columns: repeat(2, 1fr); }
  .products-grid      { grid-template-columns: 1fr 1fr; }
  .cta-contact-items  { flex-direction: column; gap: 0.75rem; }

  .support-form-grid  { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero { min-height: 100svh; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .references-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .stat-number { font-size: 2.4rem; }
}

/* ═══════════════════════════════════════════════════════════════
   21. LIVE DASHBOARD HERO WIDGET
   ═══════════════════════════════════════════════════════════════ */
.live-dashboard-widget {
  position: absolute;
  top: 20%;
  right: 2rem;
  background: rgba(6,14,28,0.6);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: 0 10px 36px rgba(0,0,0,0.4);
  z-index: 10;
  min-width: 200px; max-width: 280px;
  animation: floatUpDown 7s ease-in-out infinite;
}
@media (max-width: 768px) {
  .live-dashboard-widget { right: 5%; top: -5%; min-width: 150px; }
}
@keyframes floatUpDown {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}
.dash-item { display: flex; align-items: center; gap: 0.75rem; }
.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.dash-icon { font-size: 1.1rem; }
.dash-text { display: flex; flex-direction: column; }
.dash-text small {
  font-size: 0.68rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.dash-text strong {
  font-size: 1.05rem;
  color: var(--clr-white);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
   22. CALCULATOR UI
   ═══════════════════════════════════════════════════════════════ */
.calc-section {
  padding-block: 6rem;
  background: linear-gradient(180deg, var(--clr-bg) 0%, var(--clr-bg-2) 100%);
}
.calc-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 900px) { .calc-grid { grid-template-columns: 1fr; } }
.calc-controls {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.range-group label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--clr-white);
}
.styled-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  outline: none;
}
.styled-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--clr-primary);
  cursor: pointer;
  box-shadow: 0 0 12px var(--clr-primary-glow);
  transition: transform 0.2s;
}
.styled-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }

.toggle-group-list { display: flex; flex-direction: column; gap: 1.25rem; }
.toggle-group {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.04);
  transition: background 0.3s;
}
.toggle-group:hover { background: rgba(255,255,255,0.04); }

.switch-label {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.switch-label input { opacity: 0; width: 0; height: 0; }
.switch-label .slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: rgba(255,255,255,0.06);
  transition: .4s;
  border-radius: 24px;
}
.switch-label .slider:before {
  position: absolute;
  content: "";
  height: 18px; width: 18px;
  left: 3px; bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}
.switch-label input:checked + .slider {
  background-color: var(--clr-primary);
  box-shadow: 0 0 10px var(--clr-primary-glow);
}
.switch-label input:checked + .slider:before { transform: translateX(22px); }

.switch-track {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  transition: background 0.35s, box-shadow 0.35s;
}
.switch-track::before {
  content: '';
  position: absolute;
  height: 16px; width: 16px;
  left: 3px; top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 50%;
  transition: transform 0.35s;
}
.switch-label input:checked + .switch-track {
  background: var(--clr-primary);
  box-shadow: 0 0 10px var(--clr-primary-glow);
}
.switch-label input:checked + .switch-track::before { transform: translateY(-50%) translateX(22px); }

.toggle-text { display: flex; flex-direction: column; gap: 0.2rem; }
.toggle-text strong { font-size: 0.95rem; color: var(--clr-white); }
.toggle-text small { font-size: 0.83rem; color: var(--clr-text-muted); }

.calc-results {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.highlight-panel {
  background: linear-gradient(135deg, rgba(59,130,246,0.08) 0%, rgba(6,214,160,0.04) 100%);
  border: 1px solid rgba(59,130,246,0.2);
}
.result-score-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.score-circle {
  width: 115px;
  height: 115px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 800;
  color: #22c55e;
  background: rgba(34,197,94,0.08);
  border: 3px solid #22c55e;
  box-shadow: 0 0 25px rgba(34,197,94,0.2);
  transition: all 0.5s;
}
.score-label {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.result-details { width: 100%; display: flex; flex-direction: column; gap: 0.75rem; }
.res-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--clr-primary);
}
.res-item span { color: var(--clr-text-muted); font-size: 0.88rem; }
.res-item strong { font-size: 1rem; }

/* Glass Panel Utility */
.glass-panel {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
}

/* ═══════════════════════════════════════════════════════════════
   23. WHY ITD, INDUSTRIES, CERTIFICATIONS, STICKY BAR
   ═══════════════════════════════════════════════════════════════ */

/* --- Why ITD Section --- */
.why-itd-section {
  background: var(--clr-bg-2);
  background-image: radial-gradient(ellipse 50% 40% at 50% 0%, rgba(59,130,246,0.06) 0%, transparent 60%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  position: relative;
  transition: all 0.35s ease;
  z-index: 1;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
  border-color: rgba(6,214,160,0.2);
}
.why-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(6,214,160,0.05));
  color: var(--clr-primary-l);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.why-card-icon svg { width: 28px; height: 28px; }
.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--clr-white);
}
.why-card p {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.why-card-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(6,214,160,0.08);
  color: var(--clr-accent);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  border: 1px solid rgba(6,214,160,0.15);
}

/* --- Industry Verticals --- */
.industry-section {
  background: linear-gradient(to bottom, var(--clr-bg), var(--clr-bg-2));
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.industry-card {
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.industry-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--ind-color);
  opacity: 0.5;
  transition: opacity 0.3s;
}
.industry-card:hover {
  background: rgba(255,255,255,0.03);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.industry-card:hover::before { opacity: 1; }
.industry-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  color: var(--ind-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.industry-icon-wrap svg { width: 24px; height: 24px; }
.industry-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--clr-white);
}
.industry-card p {
  color: var(--clr-text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}
.industry-tags {
  list-style: none; padding: 0;
  display: flex; flex-wrap: wrap; gap: 0.4rem;
}
.industry-tags li {
  font-size: 0.72rem;
  padding: 0.22rem 0.55rem;
  background: rgba(255,255,255,0.05);
  color: var(--clr-text);
  border-radius: 4px;
}

/* --- Certifications Trust Strip --- */
.cert-section {
  padding: 3rem 0;
  background: var(--clr-bg-2);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.cert-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cert-left { flex: 0 0 280px; }
.cert-left h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--clr-white); }
.cert-left p { color: var(--clr-text-muted); font-size: 0.88rem; }
.cert-badges {
  flex: 1;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cert-badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  transition: all 0.3s;
}
.cert-badge:hover {
  background: rgba(59,130,246,0.06);
  border-color: rgba(59,130,246,0.2);
}
.cert-badge svg { color: var(--clr-primary-l); width: 18px; height: 18px; }
.cert-badge span { font-size: 0.82rem; font-weight: 600; color: var(--clr-text); }

/* --- Sticky Lead Bar --- */
.sticky-lead-bar {
  position: fixed;
  bottom: 0; left: 0; width: 100%;
  background: rgba(2,8,16,0.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(6,214,160,0.2);
  padding: 0.85rem 0;
  z-index: 900;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out-expo);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
}
.sticky-lead-bar.visible { transform: translateY(0); }
.sticky-lead-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.sticky-lead-inner p {
  margin: 0;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--clr-white);
}
.sticky-lead-btn { padding: 0.5rem 1.5rem; font-size: 0.88rem; }
.sticky-bar-close {
  background: none;
  border: none;
  color: var(--clr-text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.5rem;
}
.sticky-bar-close:hover { color: var(--clr-white); }

/* Responsive adjustments for new sections */
@media (max-width: 992px) {
  .cert-strip { flex-direction: column; align-items: flex-start; }
  .cert-badges { justify-content: flex-start; }
  .sticky-lead-inner { flex-direction: column; text-align: center; gap: 0.75rem; }
  .sticky-bar-close { top: 8px; right: 8px; transform: none; }
}

/* ═══════════════════════════════════════════════════════════════
   24. ANNOUNCEMENT BAR
   ═══════════════════════════════════════════════════════════════ */
.announcement-bar {
  width: 100%;
  background: linear-gradient(90deg, #071638 0%, #0d2050 40%, #071636 100%);
  border-bottom: 1px solid rgba(59,130,246,0.15);
  padding: 0.6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 1001;
  overflow: hidden;
}
.announcement-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(59,130,246,0.06) 30%,
    rgba(6,214,160,0.04) 60%,
    transparent 100%
  );
  animation: barShimmer 4s ease-in-out infinite;
}
@keyframes barShimmer {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}
.announcement-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}
.announcement-badge {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.announcement-text {
  font-size: 0.82rem;
  color: rgba(200,214,229,0.85);
  font-weight: 500;
}
.announcement-link {
  color: var(--clr-accent);
  font-weight: 600;
  transition: color var(--transition);
  text-decoration: none;
}
.announcement-link:hover { color: #fff; text-decoration: underline; }
.announcement-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--clr-text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0.25rem;
  transition: color var(--transition);
  z-index: 1;
}
.announcement-close:hover { color: var(--clr-white); }
@media (max-width: 600px) {
  .announcement-bar { padding: 0.5rem 2.5rem 0.5rem 1rem; }
  .announcement-text { font-size: 0.76rem; }
  .announcement-badge { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   25. NAV CTA BUTTON (compact)
   ═══════════════════════════════════════════════════════════════ */
.nav-cta-btn {
  padding: 0.5rem 1.2rem !important;
  font-size: 0.84rem !important;
}

/* ═══════════════════════════════════════════════════════════════
   26. SCROLLBAR STYLING
   ═══════════════════════════════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--clr-primary), var(--clr-accent));
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--clr-primary-l); }

/* ═══════════════════════════════════════════════════════════════
   27. SELECTION COLOR
   ═══════════════════════════════════════════════════════════════ */
::selection {
  background: rgba(59,130,246,0.35);
  color: var(--clr-white);
}

/* ═══════════════════════════════════════════════════════════════
   28. SECTION DIVIDER
   ═══════════════════════════════════════════════════════════════ */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(59,130,246,0.2) 25%,
    rgba(6,214,160,0.2) 50%,
    rgba(59,130,246,0.2) 75%,
    transparent 100%
  );
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   29. HERO TRUST BADGES (new element)
   ═══════════════════════════════════════════════════════════════ */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  font-weight: 500;
}
.hero-trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-accent);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   30. ENHANCED SECTION BACKGROUNDS
   ═══════════════════════════════════════════════════════════════ */
/* Alternating subtle gradient mesh for sections */
#services {
  background: linear-gradient(180deg, var(--clr-bg) 0%, var(--clr-bg-2) 100%);
}
#about {
  background: var(--clr-bg-2);
}
.references-section {
  background: var(--clr-bg);
}
.why-itd-section {
  background: var(--clr-bg-2);
}
.industry-section {
  background: linear-gradient(180deg, var(--clr-bg) 0%, var(--clr-bg-2) 50%, var(--clr-bg) 100%);
}
