:root {
  --navy-900: #0A1628;
  --navy-800: #0F2035;
  --navy-700: #132B47;
  --navy-600: #1A3A5C;
  --signal-500: #0066FF;
  --signal-400: #3385FF;
  --signal-300: #66A3FF;
  --cyan-500: #00D4FF;
  --cyan-400: #33DDFF;
  --cyan-300: #66E5FF;
  --green-500: #00C48C;
  --amber-500: #FFB800;
  --red-500: #FF3B5C;
  --slate-100: #F0F2F5;
  --slate-200: #D8DCE2;
  --slate-300: #B0B8C4;
  --slate-400: #8892A0;
  --slate-500: #606B7C;
  --slate-600: #3E4756;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy-900);
  color: var(--slate-100);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== CUSTOM CURSOR GLOW ===== */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(circle, rgba(0,102,255,0.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 22, 40, 0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s;
}

.navbar.scrolled {
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(24px);
  border-bottom-color: rgba(0, 212, 255, 0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 36px;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 3px;
  background: linear-gradient(135deg, #2878FF, #00C8F0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--slate-300);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--cyan-500); }

.nav-cta {
  padding: 10px 24px !important;
  background: var(--signal-500) !important;
  color: white !important;
  border-radius: 6px;
  font-family: var(--font-display) !important;
  font-weight: 600 !important;
  font-size: 12px !important;
  letter-spacing: 1px !important;
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: var(--signal-400) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
}

.nav-mobile-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 8px;
}

.nav-mobile-btn svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 48px 80px;
}

/* Animated grid background */
.hero-grid {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
  animation: gridFloat 20s ease-in-out infinite;
}

@keyframes gridFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, -20px); }
}

/* Gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
}

.hero-orb-1 {
  width: 600px; height: 600px;
  background: var(--signal-500);
  top: -200px; right: -100px;
  opacity: 0.08;
  animation: orbFloat1 15s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px; height: 400px;
  background: var(--cyan-500);
  bottom: -100px; left: 10%;
  opacity: 0.06;
  animation: orbFloat2 18s ease-in-out infinite;
}

.hero-orb-3 {
  width: 300px; height: 300px;
  background: var(--signal-500);
  top: 40%; left: 50%;
  opacity: 0.04;
  animation: orbFloat3 12s ease-in-out infinite;
}

@keyframes orbFloat1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-40px, 30px); } }
@keyframes orbFloat2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px, -40px); } }
@keyframes orbFloat3 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-20px, -30px); } }

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-left { max-width: 600px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--cyan-500);
  text-transform: uppercase;
  padding: 8px 16px;
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: 4px;
  margin-bottom: 32px;
  opacity: 0;
  animation: heroFadeUp 0.8s 0.2s forwards;
}

.hero-tag .pulse {
  width: 6px; height: 6px;
  background: var(--green-500);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 196, 140, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(0, 196, 140, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
  opacity: 0;
  animation: heroFadeUp 0.8s 0.4s forwards;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--signal-400), var(--cyan-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--slate-300);
  margin-bottom: 40px;
  max-width: 480px;
  opacity: 0;
  animation: heroFadeUp 0.8s 0.6s forwards;
}

.hero-btns {
  display: flex;
  gap: 16px;
  opacity: 0;
  animation: heroFadeUp 0.8s 0.8s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 16px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-primary {
  background: var(--signal-500);
  color: white;
}

.btn-primary:hover {
  background: var(--signal-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 102, 255, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--slate-200);
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-outline:hover {
  border-color: var(--cyan-500);
  color: var(--cyan-500);
  transform: translateY(-2px);
}

.btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Hero right: animated terminal */
.hero-right {
  opacity: 0;
  animation: heroFadeUp 1s 0.6s forwards;
}

.hero-terminal {
  background: rgba(10, 22, 40, 0.8);
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 32px 64px rgba(0,0,0,0.4),
    0 0 0 1px rgba(0, 212, 255, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.03);
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
  transition: transform 0.5s;
}

.hero-terminal:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.term-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.term-dot { width: 12px; height: 12px; border-radius: 50%; }
.term-dot.r { background: #FF5F57; }
.term-dot.y { background: #FFBD2E; }
.term-dot.g { background: #28C840; }

.term-title {
  flex: 1;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--slate-500);
}

.term-body {
  padding: 24px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 2;
  min-height: 320px;
}

.term-line { opacity: 0; animation: termLine 0.5s forwards; }
.term-line:nth-child(1) { animation-delay: 1.2s; }
.term-line:nth-child(2) { animation-delay: 1.6s; }
.term-line:nth-child(3) { animation-delay: 2.0s; }
.term-line:nth-child(4) { animation-delay: 2.4s; }
.term-line:nth-child(5) { animation-delay: 2.8s; }
.term-line:nth-child(6) { animation-delay: 3.2s; }
.term-line:nth-child(7) { animation-delay: 3.6s; }
.term-line:nth-child(8) { animation-delay: 4.0s; }
.term-line:nth-child(9) { animation-delay: 4.4s; }
.term-line:nth-child(10) { animation-delay: 4.8s; }

@keyframes termLine { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }

.t-prompt { color: var(--green-500); }
.t-cmd { color: var(--cyan-400); }
.t-comment { color: var(--slate-500); }
.t-output { color: var(--slate-300); }
.t-success { color: var(--green-500); }
.t-value { color: var(--amber-500); }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Content entrance animations per slide */
.hero-slider .hero-left > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slider .swiper-slide-active .hero-left > * {
  opacity: 1;
  transform: translateY(0);
}

.hero-slider .swiper-slide-active .hero-tag { transition-delay: 0.15s; }
.hero-slider .swiper-slide-active .hero-title { transition-delay: 0.25s; }
.hero-slider .swiper-slide-active .hero-desc { transition-delay: 0.4s; }
.hero-slider .swiper-slide-active .hero-btns { transition-delay: 0.55s; }

.hero-slider .hero-right {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slider .swiper-slide-active .hero-right {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* Override hero default keyframe animations — slider handles them */
.hero-slider .hero-tag,
.hero-slider .hero-title,
.hero-slider .hero-desc,
.hero-slider .hero-btns,
.hero-slider .hero-right {
  animation: none !important;
}

/* Hero slider navigation */
.hero-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  position: relative;
  z-index: 10;
}

.hero-slider-prev,
.hero-slider-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--slate-300);
  transition: all 0.3s;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
  border-color: var(--cyan-500);
  color: var(--cyan-500);
  background: rgba(0, 212, 255, 0.06);
}

.hero-slider-pagination {
  position: static !important;
  display: flex;
  gap: 8px;
  width: auto !important;
}

.hero-slider-pagination .swiper-pagination-bullet {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: var(--slate-600);
  opacity: 1;
  transition: all 0.3s;
}

.hero-slider-pagination .swiper-pagination-bullet-active {
  width: 48px;
  background: linear-gradient(90deg, var(--signal-500), var(--cyan-500));
}

/* ===== SOCIAL PROOF BAR ===== */
.proof-bar {
  padding: 48px;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  background: rgba(255,255,255,0.01);
}

.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
}

.proof-stat {
  text-align: center;
}

.proof-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--signal-400), var(--cyan-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.proof-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--slate-400);
  text-transform: uppercase;
  margin-top: 6px;
}

/* ===== SECTIONS COMMON ===== */
.section {
  padding: 140px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--cyan-500);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.1;
}

.section-desc {
  font-size: 17px;
  color: var(--slate-400);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 64px;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 40px 32px;
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--signal-500), var(--cyan-500));
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  border-color: rgba(0, 102, 255, 0.2);
  background: rgba(0, 102, 255, 0.04);
  transform: translateY(-4px);
}

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

.service-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(0, 102, 255, 0.08);
  border: 1px solid rgba(0, 102, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon svg {
  width: 24px; height: 24px;
  stroke: var(--cyan-500);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14px;
  color: var(--slate-400);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(0, 212, 255, 0.06);
  color: var(--cyan-400);
  border: 1px solid rgba(0, 212, 255, 0.1);
}

/* ===== EXPERTISE SECTION (dark panel) ===== */
.expertise-section {
  padding: 140px 48px;
  background: linear-gradient(180deg, var(--navy-900), var(--navy-800), var(--navy-900));
  position: relative;
  overflow: hidden;
}

.expertise-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    linear-gradient(rgba(0, 212, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, black, transparent);
}

.expertise-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 64px;
}

.expertise-card {
  padding: 36px;
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  gap: 24px;
  transition: all 0.3s;
}

.expertise-card:hover {
  border-color: rgba(0, 102, 255, 0.15);
  background: rgba(0, 102, 255, 0.03);
}

.expertise-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--signal-500), var(--cyan-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  min-width: 60px;
}

.expertise-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}

.expertise-content p {
  font-size: 14px;
  color: var(--slate-400);
  line-height: 1.7;
}

/* ===== PROCESS / METHODOLOGY ===== */
.process-track {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-track::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--signal-500), var(--cyan-500), transparent);
}

.process-step {
  display: flex;
  gap: 36px;
  padding: 36px 0;
  position: relative;
}

.process-dot {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: var(--navy-900);
  border: 2px solid var(--signal-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--cyan-500);
  z-index: 1;
  transition: all 0.3s;
}

.process-step:hover .process-dot {
  background: var(--signal-500);
  color: white;
  box-shadow: 0 0 24px rgba(0, 102, 255, 0.3);
}

.process-info h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
}

.process-info p {
  font-size: 14px;
  color: var(--slate-400);
  line-height: 1.7;
  max-width: 500px;
}

/* ===== MONITORING LIVE SECTION ===== */
.monitor-section {
  padding: 140px 48px;
  position: relative;
}

.monitor-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.monitor-dashboard {
  margin-top: 64px;
  border-radius: 20px;
  border: 1px solid rgba(0, 212, 255, 0.1);
  background: rgba(10, 22, 40, 0.6);
  backdrop-filter: blur(20px);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
}

.monitor-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.monitor-topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.monitor-live-dot {
  width: 8px; height: 8px;
  background: var(--green-500);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.monitor-topbar-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--slate-300);
  letter-spacing: 1px;
}

.monitor-topbar-time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--slate-500);
}

.monitor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.04);
}

.monitor-cell {
  padding: 28px 24px;
  background: var(--navy-900);
  text-align: center;
}

.monitor-cell-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--slate-500);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.monitor-cell-value {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
}

.monitor-cell-value.up { color: var(--green-500); }
.monitor-cell-value.warn { color: var(--amber-500); }
.monitor-cell-value.info { color: var(--cyan-500); }
.monitor-cell-value.neutral { color: var(--slate-100); }

.monitor-cell-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--slate-500);
  margin-top: 4px;
}

/* Services status rows */
.monitor-rows {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.monitor-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  transition: all 0.2s;
}

.monitor-row:hover { background: rgba(255,255,255,0.04); }

.monitor-row-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}

.status-dot.green { background: var(--green-500); box-shadow: 0 0 8px rgba(0, 196, 140, 0.4); }
.status-dot.amber { background: var(--amber-500); box-shadow: 0 0 8px rgba(255, 184, 0, 0.4); }

.monitor-row-name {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--slate-200);
}

.monitor-row-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.monitor-row-metric {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--slate-400);
}

.monitor-row-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.badge-up { background: rgba(0, 196, 140, 0.1); color: var(--green-500); border: 1px solid rgba(0, 196, 140, 0.2); }
.badge-warn { background: rgba(255, 184, 0, 0.1); color: var(--amber-500); border: 1px solid rgba(255, 184, 0, 0.2); }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 160px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 800px; height: 800px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 102, 255, 0.08), transparent 60%);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-desc {
  font-size: 17px;
  color: var(--slate-400);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.btn-large {
  padding: 20px 44px;
  font-size: 15px;
}

/* ===== MAP & ZONE D'INTERVENTION ===== */
.map-section {
  padding: 100px 48px 80px;
  background: var(--slate-900);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.map-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.map-section .section-tag {
  text-align: center;
}

.map-section .section-title {
  text-align: center;
  margin-bottom: 16px;
}

.map-section-desc {
  text-align: center;
  color: var(--slate-400);
  font-size: 16px;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 48px;
}

.map-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

.map-embed {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(0.3) contrast(1.1);
}

.map-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.map-hq {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px;
}

.map-hq-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--signal-400);
  margin-bottom: 12px;
}

.map-hq-city {
  font-size: 22px;
  font-weight: 700;
  color: var(--slate-100);
  margin-bottom: 6px;
}

.map-hq-address {
  color: var(--slate-400);
  font-size: 14px;
  line-height: 1.6;
}

.map-zones {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px;
}

.map-zones-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--slate-100);
  margin-bottom: 16px;
}

.zone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.zone-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 102, 255, 0.1);
  border: 1px solid rgba(0, 102, 255, 0.2);
  color: var(--signal-400);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
}

.zone-tag svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.zone-tag.zone-hq {
  background: rgba(0, 102, 255, 0.2);
  border-color: var(--signal-400);
  color: var(--slate-100);
}

.map-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(0,102,255,0.08), rgba(0,200,200,0.05));
  border: 1px solid rgba(0,102,255,0.15);
  border-radius: 12px;
}

.map-note svg {
  width: 20px;
  height: 20px;
  stroke: var(--signal-400);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.map-note p {
  color: var(--slate-300);
  font-size: 14px;
  line-height: 1.6;
}

.map-note strong {
  color: var(--slate-100);
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 80px 48px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
}

.footer-brand-logo img { height: 48px; margin-bottom: 16px; }

.footer-brand-desc {
  font-size: 14px;
  color: var(--slate-400);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: rgba(0, 102, 255, 0.1);
  border-color: rgba(0, 102, 255, 0.3);
}

.footer-social a svg {
  width: 16px; height: 16px;
  stroke: var(--slate-300);
  fill: none;
  stroke-width: 2;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--slate-400);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--slate-300);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--cyan-500); }

.footer-bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--slate-500);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--slate-500);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal a:hover { color: var(--slate-300); }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 140px 48px;
  background: linear-gradient(180deg, var(--navy-900), var(--navy-800), var(--navy-900));
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black, transparent);
}

.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonials-slider {
  margin-top: 48px;
  padding-bottom: 56px;
}

.testimonial-card {
  padding: 36px;
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  border-color: rgba(0, 102, 255, 0.15);
  background: rgba(0, 102, 255, 0.03);
  transform: translateY(-4px);
}

.testimonial-quote {
  margin-bottom: 20px;
  opacity: 0.7;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--slate-200);
  flex: 1;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--signal-500), var(--cyan-500));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: white;
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--slate-100);
}

.testimonial-role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--slate-500);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.testimonials-pagination {
  text-align: center;
  bottom: 0 !important;
}

.testimonials-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--slate-600);
  opacity: 1;
  transition: all 0.3s;
  margin: 0 4px !important;
}

.testimonials-pagination .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--signal-500), var(--cyan-500));
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { max-width: 600px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .expertise-grid { grid-template-columns: 1fr; }
  .monitor-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-mobile-btn { display: block; }
  .hero { padding: 100px 24px 60px; }
  .section { padding: 100px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .expertise-section { padding: 100px 24px; }
  .monitor-section { padding: 100px 24px; }
  .cta-section { padding: 120px 24px; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .footer { padding: 60px 24px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .proof-inner { gap: 32px; }
  .cursor-glow { display: none; }
  #zone > div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
  #zone iframe { height: 300px !important; }
  .testimonials-section { padding: 100px 24px; }
  .hero-slider-prev, .hero-slider-next { width: 36px; height: 36px; }
  .hero-slider-nav { gap: 12px; margin-top: 28px; }
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 140px 24px 80px;
  min-height: 100vh;
}
.legal-container {
  max-width: 800px;
  margin: 0 auto;
}
.legal-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #0066FF, #00D4FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.legal-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin-top: 36px;
  margin-bottom: 16px;
}
.legal-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-top: 24px;
  margin-bottom: 12px;
}
.legal-content p {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}
.legal-content ul li {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}
.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0066FF;
}
.legal-content a {
  color: #00D4FF;
  text-decoration: none;
  transition: color 0.2s;
}
.legal-content a:hover {
  color: #0066FF;
}
@media (max-width: 768px) {
  .legal-page { padding: 120px 16px 60px; }
  .legal-title { font-size: 1.8rem; }
}
