@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&family=Outfit:wght@600;700;800&display=swap');

/* ══════════════════════════════════════════════════════
   Design Tokens
   ══════════════════════════════════════════════════════ */
:root {
  --bg-base:    #030712;
  --bg-deep:    #060d1a;
  --bg-card:    rgba(9, 18, 34, 0.85);
  --bg-card-alt: rgba(14, 24, 44, 0.9);

  --blue-300:   #93c5fd;
  --blue-400:   #60a5fa;
  --blue-500:   #3b82f6;
  --blue-600:   #2563eb;
  --blue-700:   #1d4ed8;

  --cyan-300:   #67e8f9;
  --cyan-400:   #22d3ee;
  --cyan-500:   #06b6d4;

  --indigo-400: #818cf8;

  --glow-blue:  rgba(37, 99, 235, 0.22);
  --glow-cyan:  rgba(6, 182, 212, 0.14);

  --text-100:   #f8fafc;
  --text-300:   #cbd5e1;
  --text-400:   #94a3b8;
  --text-500:   #64748b;

  --border-s:   rgba(148, 163, 184, 0.07);
  --border-m:   rgba(148, 163, 184, 0.12);
  --border-l:   rgba(148, 163, 184, 0.22);

  --radius-card: 16px;
  --radius-sm:    8px;
  --radius-pill: 100px;
}

/* ══════════════════════════════════════════════════════
   Base
   ══════════════════════════════════════════════════════ */
html { scroll-behavior: smooth; }

body {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  background: var(--bg-base);
  color: var(--text-300);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  line-height: 1.08;
  color: var(--text-100);
}

a { text-decoration: none; }

.site-shell {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding-left: clamp(1.5rem, 3vw, 2.5rem);
  padding-right: clamp(1.5rem, 3vw, 2.5rem);
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: #1e3a5f; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue-600); }

/* ══════════════════════════════════════════════════════
   Design Utilities
   ══════════════════════════════════════════════════════ */

/* Gradient text */
.gradient-text {
  background: linear-gradient(130deg, var(--blue-400) 10%, var(--cyan-400) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section label pill */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-400);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 0.28rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.1rem;
}

/* Gradient divider */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(59, 130, 246, 0.35) 30%,
    rgba(34, 211, 238, 0.35) 70%,
    transparent 100%
  );
  position: relative;
}
.section-divider::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--cyan-400));
  filter: blur(4px);
  border-radius: 4px;
}

/* ══════════════════════════════════════════════════════
   Buttons
   ══════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.1rem;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-600) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.45), 0 0 0 0 rgba(37, 99, 235, 0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.6), 0 0 24px rgba(37, 99, 235, 0.2);
}
.btn-primary svg { width: 16px; height: 16px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.1rem;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-300);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-m);
  border-radius: var(--radius-sm);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.07);
  border-color: var(--border-l);
  color: var(--text-100);
}

/* Read-more link */
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-400);
  transition: color 0.2s, gap 0.2s;
}
.read-more:hover { color: var(--cyan-400); gap: 0.55rem; }
.read-more svg { width: 14px; height: 14px; }

/* ══════════════════════════════════════════════════════
   Navbar
   ══════════════════════════════════════════════════════ */
header {
  background: transparent !important;
  box-shadow: none;
  transition: transform 0.35s ease, background-color 0.35s ease, backdrop-filter 0.35s ease;
}
.navbar-scrolled {
  background: rgba(3, 7, 18, 0.88) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid var(--border-s);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.navbar-hidden { transform: translateY(-100%); }

.brand-link { display: inline-flex; align-items: center; }
.brand-text {
  font-family: "Outfit", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--blue-400);
  padding: 0.42rem 0.72rem;
  border-radius: 8px;
  background: rgba(9, 18, 34, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(96, 165, 250, 0.18);
  text-shadow: 0 0 14px rgba(96, 165, 250, 0.5);
  white-space: nowrap;
  line-height: 1;
}

.nav-link {
  font-family: "DM Sans", sans-serif;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text-300);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--blue-400); }

.mobile-nav {
  display: none;
  padding: 0 1.5rem 1.25rem;
  background: rgba(3, 7, 18, 0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-s);
}
.mobile-nav.is-open { display: flex; flex-direction: column; gap: 1rem; }
.mobile-nav-link { display: block; padding: 0.25rem 0; }

@media (min-width: 768px) {
  .mobile-nav, .mobile-nav.is-open { display: none; }
}

/* ══════════════════════════════════════════════════════
   HOME PAGE
   ══════════════════════════════════════════════════════ */
.home-page { overflow-x: hidden; }
.home-page section { scroll-margin-top: 80px; }

/* ── Hero ──────────────────────────────────────────────── */
.home-page .hero-shell {
  display: flex;
  align-items: center;
  min-height: 100%;
}
.home-page .hero-copy { width: min(60rem, 100%); }

/* Animated mesh overlay */
.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 12;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 88% 15%, rgba(37, 99, 235, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 8%  88%, rgba(6, 182, 212, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 65%);
  animation: mesh-breathe 14s ease-in-out infinite alternate;
}
@keyframes mesh-breathe {
  from { opacity: 0.7;  transform: scale(1);    }
  to   { opacity: 1;    transform: scale(1.04) translate(-0.5%, 0.8%); }
}

/* Ambient orbs */
.hero-orb-1, .hero-orb-2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 13;
}
.hero-orb-1 {
  width: 750px; height: 750px;
  top: -200px;  right: -150px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 65%);
  animation: orb-float 12s ease-in-out infinite;
}
.hero-orb-2 {
  width: 550px; height: 550px;
  bottom: -80px; left: 2%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.09) 0%, transparent 65%);
  animation: orb-float 15s ease-in-out infinite reverse;
}
@keyframes orb-float {
  0%, 100% { transform: translateY(0)    scale(1); }
  50%       { transform: translateY(-38px) scale(1.06); }
}

/* Badge */
.home-page .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0.32rem 1rem;
  background: rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(96, 165, 250, 0.24);
  border-radius: var(--radius-pill);
  font-family: "DM Sans", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-300);
  margin-bottom: 1.75rem;
}
.home-page .hero-badge::before {
  content: '';
  width: 6px;  height: 6px;
  min-width: 6px;
  background: var(--blue-400);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(96, 165, 250, 0.9);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1);   }
  50%       { opacity: 0.4; transform: scale(1.6); }
}

/* Hero title */
.home-page .hero-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--text-100);
  margin-bottom: 1.6rem;
}

.home-page .hero-copy > p {
  max-width: 46rem;
  font-size: 1.07rem;
  color: var(--text-400);
  line-height: 1.8;
  margin-bottom: 2.75rem;
}
.home-page .hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}
.scroll-mouse {
  width: 24px; height: 40px;
  border: 2px solid rgba(148, 163, 184, 0.28);
  border-radius: 12px;
  position: relative;
}
.scroll-mouse::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 7px;
  background: rgba(148, 163, 184, 0.5);
  border-radius: 2px;
  animation: scroll-bounce 2.4s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%   { transform: translateX(-50%) translateY(0);    opacity: 1; }
  70%  { transform: translateX(-50%) translateY(14px); opacity: 0; }
  100% { transform: translateX(-50%) translateY(0);    opacity: 0; }
}

/* ── Stats strip ───────────────────────────────────────── */
.stats-strip {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-s);
  border-bottom: 1px solid var(--border-s);
  padding: 2.75rem 0;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.75rem 1rem;
  border-right: 1px solid var(--border-s);
  position: relative;
  transition: background 0.3s ease;
}
.stat-item:last-child { border-right: none; }
.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue-500), var(--cyan-400));
  border-radius: 2px;
  transition: width 0.35s ease;
}
.stat-item:hover::after { width: 60px; }

.stat-number {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(130deg, var(--blue-400), var(--cyan-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 16px rgba(96, 165, 250, 0.4));
}
.stat-label {
  font-family: "DM Sans", sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-500);
}

/* ── Industry cards (homepage) ─────────────────────────── */
.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border-s);
  border-radius: var(--radius-card);
  padding: 2rem;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.industry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 80% 20%, rgba(37, 99, 235, 0.07) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.industry-card:hover {
  border-color: rgba(96, 165, 250, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(96, 165, 250, 0.08);
}
.industry-card:hover::before { opacity: 1; }

.industry-icon {
  width: 3.25rem; height: 3.25rem;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-400);
  margin-bottom: 1.4rem;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.industry-icon svg { width: 22px; height: 22px; }
.industry-card:hover .industry-icon {
  background: rgba(37, 99, 235, 0.18);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.2);
}

/* ── Service cards ─────────────────────────────────────── */
.service-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 2rem;
  height: 100%;
  border: 1px solid var(--border-s);
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
/* Top gradient line */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-500), var(--cyan-500));
  opacity: 0;
  transition: opacity 0.3s ease;
}
/* Inner glow */
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.06) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45), 0 0 32px rgba(37, 99, 235, 0.08);
  border-color: rgba(96, 165, 250, 0.22);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after  { opacity: 1; }
.service-card:hover .service-icon {
  background: rgba(37, 99, 235, 0.18);
  border-color: rgba(96, 165, 250, 0.3);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.2);
}

.service-icon {
  width: 2.75rem; height: 2.75rem;
  background: rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(96, 165, 250, 0.16);
  color: var(--blue-400);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.service-icon svg { width: 20px; height: 20px; }

.service-title {
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: var(--text-100);
}
.service-description {
  font-size: 0.875rem;
  color: var(--text-400);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ── Why ExD section ───────────────────────────────────── */
.why-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-base);
}
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.018) 1px, transparent 1px);
  background-size: 68px 68px;
  pointer-events: none;
}
.why-section::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.07) 0%, transparent 68%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-s);
  border-left: 2px solid transparent;
  border-radius: var(--radius-card);
  padding: 1.85rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.why-card:hover {
  border-color: var(--border-s);
  border-left-color: var(--blue-500);
  background: var(--bg-card-alt);
  transform: translateX(4px);
}
.why-icon {
  flex-shrink: 0;
  width: 2.7rem; height: 2.7rem;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.09);
  border: 1px solid rgba(96, 165, 250, 0.16);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-400);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.why-icon svg { width: 18px; height: 18px; }
.why-card:hover .why-icon {
  background: rgba(37, 99, 235, 0.18);
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.2);
}
.why-card h3 {
  font-family: "Outfit", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 0.5rem;
}
.why-card p {
  font-size: 0.875rem;
  color: var(--text-400);
  line-height: 1.7;
}

/* ── Contact ───────────────────────────────────────────── */
.contact-section {
  background: linear-gradient(180deg, #050c18 0%, #020811 100%);
}
.contact-heading { color: var(--text-100); }

.contact-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-m);
  background: rgba(8, 16, 30, 0.9);
  box-shadow: 0 32px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(96, 165, 250, 0.06);
  backdrop-filter: blur(12px);
}
.contact-left {
  background: linear-gradient(155deg, #0c1a30 0%, #111f38 100%);
  color: var(--text-300);
  position: relative;
  overflow: hidden;
}
.contact-left::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.14) 0%, transparent 70%);
  pointer-events: none;
}
.contact-left h3 { color: var(--text-100); font-family: "Outfit", sans-serif; }
.contact-left h4 {
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 4px;
}
.contact-left p { color: var(--text-400); font-size: 0.9rem; line-height: 1.7; }

.contact-item { gap: 0.6rem; align-items: flex-start; }
.contact-item > div { flex: 1; }
.contact-icon {
  color: var(--cyan-400);
  width: 20px; height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-right {
  background: rgba(10, 18, 32, 0.95);
  color: var(--text-300);
}
.contact-right h3 { color: var(--text-100); font-family: "Outfit", sans-serif; }
.contact-right label {
  display: block;
  margin-bottom: 6px;
  color: var(--text-300);
  font-size: 0.82rem;
  font-weight: 500;
}
.contact-input {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.12);
  color: var(--text-100);
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.contact-input:focus {
  border-color: var(--cyan-400);
  outline: none;
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.1);
}
.contact-input::placeholder { color: var(--text-500); }

.contact-button {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
}
.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.6);
}

#form-success {
  color: #34d399;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  padding: 0.75rem;
}

/* ── Site Footer ───────────────────────────────────────── */
.site-footer {
  background: var(--bg-base);
  border-top: 1px solid var(--border-s);
  padding: 4rem 0 2.25rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%; max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.4), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}
.footer-brand-text {
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(130deg, var(--blue-400), var(--cyan-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.85rem;
  display: inline-block;
}
.footer-tagline {
  font-size: 0.86rem;
  color: var(--text-500);
  line-height: 1.7;
  max-width: 28rem;
}
.footer-col-title {
  font-family: "DM Sans", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-400);
  margin-bottom: 1.1rem;
}
.footer-link-list { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-link-item { font-size: 0.875rem; color: var(--text-500); transition: color 0.2s ease; }
.footer-link-item:hover { color: var(--blue-400); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.8rem;
}
.footer-contact-item svg { width: 14px; height: 14px; color: var(--blue-400); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span { font-size: 0.85rem; color: var(--text-500); line-height: 1.5; }

.footer-bottom {
  border-top: 1px solid var(--border-s);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.78rem; color: var(--text-500); }
.footer-legal { display: flex; gap: 1.75rem; }
.footer-legal a { font-size: 0.78rem; color: var(--text-500); transition: color 0.2s ease; }
.footer-legal a:hover { color: var(--blue-400); }

/* ══════════════════════════════════════════════════════
   INDUSTRIES PAGE
   ══════════════════════════════════════════════════════ */
.industries-page {
  background: var(--bg-base);
  color: var(--text-300);
  overflow-x: hidden;
}

.industries-page .hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  background-image: url("../images/image.png");
  background-size: cover;
  background-position: center;
}
.industries-page .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 50% at 85% 15%, rgba(37, 99, 235, 0.18) 0%, transparent 58%),
    linear-gradient(160deg, rgba(3, 7, 18, 0.78) 0%, rgba(3, 7, 18, 0.9) 100%);
}
.industries-page .hero > * { position: relative; z-index: 1; }

.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-500);
  margin-bottom: 1.5rem;
}
.hero-breadcrumb a { color: var(--blue-400); }
.hero-breadcrumb a:hover { color: var(--cyan-400); }
.hero-breadcrumb svg { width: 13px; height: 13px; opacity: 0.5; }

/* Industry sections */
.industry-section {
  padding: 5.5rem 0;
  border-bottom: 1px solid var(--border-s);
}
.industry-section:last-of-type { border-bottom: none; }

.industry-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
  margin-top: 2.75rem;
}
.industry-desc p {
  font-size: 0.94rem;
  color: var(--text-400);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.industry-services-title {
  font-family: "DM Sans", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-400);
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-s);
}
.service-list { list-style: none; padding: 0; margin: 0; }
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.7rem 0;
  font-size: 0.875rem;
  color: var(--text-300);
  border-bottom: 1px solid rgba(148, 163, 184, 0.04);
  line-height: 1.55;
}
.service-list li:last-child { border-bottom: none; }
.service-list-icon {
  width: 16px !important;
  height: 16px !important;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--cyan-400);
  stroke: var(--cyan-400);
}

/* Project image cards */
.project-card-image {
  position: relative;
  height: 340px;
  border-radius: var(--radius-card);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--border-s);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.project-card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(3, 7, 18, 0.95) 0%,
    rgba(3, 7, 18, 0.55) 40%,
    transparent 75%
  );
  z-index: 1;
}
.project-card-image:hover {
  transform: translateY(-7px);
  box-shadow: 0 32px 60px rgba(0,0,0,0.6);
  border-color: rgba(96, 165, 250, 0.3);
}
.project-card-overlay { position: relative; z-index: 2; padding: 1.5rem; }
.project-card-overlay h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-100);
  line-height: 1.4;
}
.project-card-overlay p {
  margin-top: 6px;
  font-size: 0.7rem;
  color: var(--cyan-400);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

/* ══════════════════════════════════════════════════════
   Responsive
   ══════════════════════════════════════════════════════ */
@media (max-width: 1023px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .industry-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 767px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border-s); }
  .stat-item:nth-child(odd)  { border-right: 1px solid var(--border-s); }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4)    { border-bottom: none; }

  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .hero-orb-1 { width: 400px; height: 400px; }
  .hero-orb-2 { display: none; }

  .industries-page .hero { min-height: 65vh; }
  .project-card-image { height: 280px; }
  .industry-section { padding: 3.5rem 0; }
}

/* ══════════════════════════════════════════════════════
   SERVICE DETAIL PAGE  (exd-industries.html)
   ══════════════════════════════════════════════════════ */

/* Hero */
.svc-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: min(72vh, 760px);
  padding: 10rem 0 6rem;
  background: var(--bg-base);
  isolation: isolate;
}
.svc-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
.svc-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: linear-gradient(135deg, rgba(2, 6, 23, 0.9) 0%, rgba(15, 23, 42, 0.72) 46%, rgba(2, 6, 23, 0.88) 100%);
}
.svc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 12;
  background:
    radial-gradient(ellipse 65% 55% at 85% 25%, rgba(37, 99, 235, 0.15) 0%, transparent 58%),
    radial-gradient(ellipse 45% 50% at 10% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 55%);
  pointer-events: none;
}
.svc-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 14;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.02) 1px, transparent 1px);
  background-size: 68px 68px;
  pointer-events: none;
}
.svc-hero .site-shell { position: relative; z-index: 20; }
.svc-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text-100);
  margin: 0.85rem 0 1.25rem;
}
.svc-hero-desc {
  max-width: 44rem;
  font-size: 1rem;
  color: var(--text-400);
  line-height: 1.8;
}

/* Group header */
.svc-group-header {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 3.5rem;
  background: var(--bg-deep);
  border-top: 1px solid var(--border-s);
  border-bottom: 1px solid var(--border-s);
}
.svc-group-ghost {
  position: absolute;
  right: clamp(1rem, 3vw, 3rem);
  top: 50%;
  transform: translateY(-50%);
  font-family: "Outfit", sans-serif;
  font-size: clamp(5rem, 11vw, 10rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, rgba(96, 165, 250, 0.1) 0%, transparent 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  user-select: none;
  pointer-events: none;
}
.svc-group-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.svc-group-index {
  font-family: "Outfit", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text-500);
  background: rgba(148, 163, 184, 0.06);
  border: 1px solid var(--border-m);
  padding: 0.22rem 0.65rem;
  border-radius: 4px;
}
.svc-group-title {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-100);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.svc-group-desc {
  font-size: 0.92rem;
  color: var(--text-400);
  max-width: 44rem;
  line-height: 1.75;
}

/* Individual service row */
.svc-detail {
  padding: 5.5rem 0;
  border-bottom: 1px solid var(--border-s);
  background: var(--bg-base);
}
.svc-detail:nth-child(even) { background: var(--bg-deep); }
.svc-detail:last-of-type { border-bottom: none; }

.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Reverse: image left, text right */
.svc-alt .svc-image   { order: 1; }
.svc-alt .svc-content { order: 2; }

/* Text content */
.svc-num {
  font-family: "DM Sans", sans-serif;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan-400);
  margin-bottom: 0.85rem;
}
.svc-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 800;
  color: var(--text-100);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
}
.svc-desc {
  font-size: 0.93rem;
  color: var(--text-400);
  line-height: 1.88;
  margin-bottom: 2rem;
}
.svc-points { list-style: none; padding: 0; margin: 0; }
.svc-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.65rem 0;
  font-size: 0.875rem;
  color: var(--text-300);
  border-bottom: 1px solid var(--border-s);
  line-height: 1.5;
}
.svc-points li:last-child { border-bottom: none; }
.svc-dot {
  flex-shrink: 0;
  width: 6px; height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--cyan-400));
  margin-top: 5px;
  box-shadow: 0 0 7px rgba(34, 211, 238, 0.5);
}

/* Image */
.svc-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border-m);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.5);
}
.svc-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}
.svc-detail:hover .svc-image img { transform: scale(1.04); }
.svc-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, transparent 55%);
  pointer-events: none;
}

/* Responsive */
@media (max-width: 1023px) {
  .svc-row { gap: 3rem; }
}
@media (max-width: 767px) {
  .svc-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .svc-alt .svc-image   { order: 1; }
  .svc-alt .svc-content { order: 2; }
  .svc-detail { padding: 3.5rem 0; }
  .svc-group-ghost { display: none; }
  .svc-hero {
    min-height: 60vh;
    padding: 8rem 0 4rem;
  }
  .svc-hero-image { object-position: 62% center; }
}
