/* ─────────────────────────────────────────────
   RESET & CUSTOM PROPERTIES
───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand */
  --navy:       #0D1B2A;
  --navy-2:     #14263B;
  --blue:       #1D4ED8;
  --blue-hover: #1E40AF;
  --blue-lt:    #DBEAFE;
  --blue-pale:  #EFF6FF;
  --teal:       #0891B2;
  --teal-lt:    #E0F7FA;
  --indigo:     #4338CA;
  --indigo-lt:  #EEF2FF;
  --green:      #059669;
  --green-lt:   #ECFDF5;

  /* Neutrals */
  --white:    #FFFFFF;
  --gray-50:  #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;

  /* Typography */
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'DM Serif Display', Georgia, serif;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow:    0 4px 16px rgba(0,0,0,.07);
  --shadow-md: 0 8px 30px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12);

  /* Layout */
  --max-w: 1160px;
  --radius: 12px;
  --radius-lg: 20px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ─────────────────────────────────────────────
   UTILITIES
───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 9px;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1;
  border: 1.5px solid transparent;
  transition: background .2s, color .2s, border-color .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  box-shadow: 0 6px 20px rgba(29,78,216,.35);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--gray-700);
  border-color: var(--gray-300);
}
.btn-outline:hover {
  background: var(--gray-100);
  border-color: var(--gray-400);
  transform: translateY(-1px);
}

.btn-full { width: 100%; }

/* ─────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow .25s;
}
#navbar.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.nav-brand img {
  height: 44px;
  width: auto;
}

#nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
#nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray-500);
  padding: 7px 13px;
  border-radius: 7px;
  transition: background .15s, color .15s;
}
#nav-links a:hover {
  background: var(--gray-100);
  color: var(--gray-900);
}
.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  margin-left: 8px;
}
.nav-cta:hover {
  background: var(--blue-hover) !important;
}

#menu-btn {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--gray-200);
  border-radius: 7px;
  width: 38px;
  height: 38px;
  padding: 0;
}
#menu-btn span {
  display: block;
  width: 17px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: .2s;
}
#menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#menu-btn.open span:nth-child(2) { opacity: 0; }
#menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--gray-100);
  padding: 12px 0 16px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 11px 24px;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-nav a:last-child {
  border-bottom: none;
  color: var(--blue);
  font-weight: 600;
  margin-top: 4px;
}

/* ─────────────────────────────────────────────
   HERO  — light / modern-tech
───────────────────────────────────────────── */
.hero {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Fine grid lines */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29,78,216,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,78,216,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

/* Soft colour wash */
.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at -5% 50%,  rgba(219,234,254,.65) 0%, transparent 65%),
    radial-gradient(ellipse 55% 45% at 108% 55%, rgba(224,247,250,.55) 0%, transparent 65%),
    radial-gradient(ellipse 45% 35% at 50% -8%,  rgba(238,242,255,.55) 0%, transparent 60%);
  pointer-events: none;
}

/* Two-column split */
.hero-body {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* LEFT */
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-logo {
  height: 68px;
  width: auto;
  margin-bottom: 32px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid rgba(29,78,216,.18);
  background: rgba(29,78,216,.05);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -.02em;
  margin-bottom: 18px;
  max-width: 500px;
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(120deg, var(--blue) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: .975rem;
  color: var(--gray-500);
  line-height: 1.78;
  max-width: 450px;
  margin-bottom: 32px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* RIGHT — dashboard visual */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 24px 60px rgba(29,78,216,.10), 0 4px 16px rgba(0,0,0,.06);
  width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 2;
}

.dash-titlebar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
}
.dot-r { width: 10px; height: 10px; border-radius: 50%; background: #FF5F56; }
.dot-y { width: 10px; height: 10px; border-radius: 50%; background: #FFBD2E; }
.dot-g { width: 10px; height: 10px; border-radius: 50%; background: #27C93F; }
.dash-title-text {
  margin-left: 8px;
  font-size: .76rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: .04em;
}

.dash-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.kpi {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 9px;
  padding: 10px 10px 8px;
}
.kpi-label { font-size: .65rem; font-weight: 600; color: var(--gray-400); display: block; margin-bottom: 4px; letter-spacing: .03em; }
.kpi-val   { font-family: var(--font-display); font-size: 1.05rem; font-weight: 400; }
.kpi-val.up   { color: var(--green); }
.kpi-val.down { color: var(--blue); }

.dash-chart-area {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 16px;
  overflow: hidden;
}
.dash-chart-area svg { width: 100%; height: auto; display: block; }

.dash-bars { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.dbar-row  { display: flex; align-items: center; gap: 10px; }
.dbar-lbl  { font-size: .65rem; font-weight: 700; color: var(--gray-400); width: 18px; }
.dbar-track { flex: 1; height: 6px; background: var(--gray-100); border-radius: 99px; overflow: hidden; }
.dbar-fill  { height: 100%; border-radius: 99px; background: var(--blue); opacity: .65; transition: width 1.4s cubic-bezier(.23,1,.32,1); }
.dbar-fill.hi { background: var(--green); opacity: 1; }
.dbar-pct  { font-size: .65rem; font-weight: 600; color: var(--gray-400); width: 28px; text-align: right; }

.dash-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.dash-pills span {
  font-size: .66rem;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-pale);
  border: 1px solid rgba(29,78,216,.14);
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: .03em;
}

/* Floating accent cards */
.float-chip {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 8px 28px rgba(0,0,0,.10);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}
.float-chip-1 { top: -18px;  right: -20px; animation: chipFloat 4s ease-in-out infinite; }
.float-chip-2 { bottom: 10px; left: -22px;  animation: chipFloat 4s ease-in-out infinite 2s; }
@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}
.chip-icon { font-size: 1.1rem; }
.chip-val  { font-family: var(--font-display); font-size: .95rem; color: var(--navy); line-height: 1.2; }
.chip-sub  { font-size: .65rem; color: var(--gray-400); font-weight: 500; }

/* Stats bar — light */
.hero-stats-bar {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--gray-200);
  background: var(--gray-50);
}
.stats-inner {
  display: flex;
  align-items: center;
  padding: 22px 24px;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 16px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--gray-400);
}
.stat-divider {
  width: 1px;
  height: 38px;
  background: var(--gray-200);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   SECTION COMMONS
───────────────────────────────────────────── */
.section { padding: 96px 0; }
.section-alt { background: var(--gray-50); }

.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  border: 1px solid rgba(29,78,216,.12);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-label.light {
  color: #93C5FD;
  background: rgba(147,197,253,.08);
  border-color: rgba(147,197,253,.2);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -.01em;
  margin-bottom: 14px;
}
.section-title.light { color: var(--white); }

.section-sub {
  font-size: .975rem;
  color: var(--gray-500);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 56px;
}
.section-sub.light { color: rgba(255,255,255,.58); }

/* ─────────────────────────────────────────────
   SERVICES
───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--gray-300);
}

.svc-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.svc-icon.blue   { background: var(--blue-pale);  color: var(--blue); }
.svc-icon.teal   { background: var(--teal-lt);    color: var(--teal); }
.svc-icon.indigo { background: var(--indigo-lt);  color: var(--indigo); }
.svc-icon.green  { background: var(--green-lt);   color: var(--green); }

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.service-card > p {
  font-size: .875rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 18px;
}
.svc-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.svc-list li {
  font-size: .8rem;
  font-weight: 500;
  color: var(--gray-600);
  padding-left: 16px;
  position: relative;
}
.svc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  opacity: .5;
}

/* ─────────────────────────────────────────────
   EXPERTISE
───────────────────────────────────────────── */
.expertise-list {
  display: flex;
  flex-direction: column;
}

.exp-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-200);
}
.exp-item:last-child { border-bottom: none; }

.exp-number {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--blue);
  background: var(--blue-pale);
  border: 1px solid rgba(29,78,216,.12);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .03em;
  flex-shrink: 0;
  margin-top: 2px;
}

.exp-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.exp-body p {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 18px;
  max-width: 620px;
}
.exp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.exp-tags span {
  font-size: .73rem;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-pale);
  border: 1px solid rgba(29,78,216,.12);
  padding: 4px 12px;
  border-radius: 50px;
}

/* ─────────────────────────────────────────────
   CASE STUDIES
───────────────────────────────────────────── */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.case-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow .25s, transform .25s;
}
.case-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.case-featured {
  background: linear-gradient(155deg, var(--navy) 0%, #1a3158 100%);
  border-color: rgba(29,78,216,.35);
  color: var(--white);
}
.case-featured:hover { box-shadow: 0 20px 50px rgba(13,27,42,.5); }

.case-badge {
  position: absolute;
  top: 18px; right: 18px;
  background: #22D3EE;
  color: var(--navy);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
}

.case-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.case-num {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--gray-400);
}

.case-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.01em;
  line-height: 1.3;
}
.case-featured h3 { color: var(--white); }

.case-desc {
  font-size: .85rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.case-highlight {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.highlight-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 1;
  color: var(--green);
}
.highlight-label {
  font-size: .78rem;
  font-weight: 500;
  color: var(--gray-500);
}

.case-outcomes { display: flex; flex-direction: column; gap: 7px; }
.outcome-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--gray-600);
}

/* ─────────────────────────────────────────────
   TEAM
───────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: box-shadow .25s, transform .25s;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.team-avatar {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  letter-spacing: .03em;
}

.team-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.team-role {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--blue);
  margin-bottom: 10px;
}
.team-bio {
  font-size: .83rem;
  color: var(--gray-500);
  line-height: 1.65;
}

.team-note {
  background: var(--blue-pale);
  border: 1px solid rgba(29,78,216,.1);
  border-radius: var(--radius);
  padding: 22px 28px;
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.7;
}
.team-note strong { color: var(--navy); font-weight: 600; }

/* ─────────────────────────────────────────────
   VALUES
───────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 26px 20px;
  transition: box-shadow .25s, transform .25s;
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.value-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-pale);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 14px;
}
.value-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.value-card p {
  font-size: .8rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ─────────────────────────────────────────────
   CONTACT
───────────────────────────────────────────── */
.section-contact {
  background: linear-gradient(155deg, #0D1B2A 0%, #122040 55%, #0e2038 100%);
  position: relative;
  overflow: hidden;
}
.section-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.section-contact::after {
  content: '';
  position: absolute;
  bottom: -120px; right: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(8,145,178,.1) 0%, transparent 65%);
  pointer-events: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.contact-items {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  transition: background .2s;
}
a.contact-item:hover { background: rgba(255,255,255,.05); }

.ci-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.32);
  margin-bottom: 3px;
}
.ci-val {
  font-size: .95rem;
  font-weight: 500;
  color: var(--white);
}

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 32px 80px rgba(0,0,0,.35);
}
.contact-form h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -.01em;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--gray-800);
  background: var(--gray-50);
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(29,78,216,.1);
}
.form-note {
  font-size: .73rem;
  color: var(--gray-400);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}
.form-success {
  display: none;
  margin-top: 12px;
  background: var(--green-lt);
  color: #065F46;
  border: 1px solid #A7F3D0;
  border-radius: 8px;
  padding: 11px 16px;
  font-size: .875rem;
  font-weight: 500;
}
.form-success.show { display: block; }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
#footer {
  background: #070F1C;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 72px;
  padding-top: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-logo {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  line-height: 1.65;
  max-width: 230px;
  margin-bottom: 16px;
}
.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}
.footer-contact-line a { transition: color .2s; }
.footer-contact-line a:hover { color: rgba(255,255,255,.75); }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 4px;
}
.footer-col h4 {
  font-size: .71rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: rgba(255,255,255,.65);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: .85rem;
  color: rgba(255,255,255,.35);
  margin-bottom: 10px;
  transition: color .2s;
}
.footer-col a:hover { color: rgba(255,255,255,.75); }

.footer-bottom {
  background: #040A12;
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .78rem;
  color: rgba(255,255,255,.25);
}

/* ─────────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { gap: 48px; }
}

@media (max-width: 860px) {
  #nav-links { display: none; }
  #menu-btn  { display: flex; }

  .hero-body { grid-template-columns: 1fr; gap: 40px; padding-top: 56px; }
  .hero-right { display: none; }
  .hero-left { align-items: center; text-align: center; }
  .hero h1 { max-width: 100%; }
  .hero-lead { max-width: 100%; }
  .hero-btns { justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }
  .cases-grid    { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner   { grid-template-columns: 1fr; gap: 40px; }

  .stats-inner { justify-content: center; }
  .stat-divider { display: none; }
  .stat-item { min-width: 140px; }

  .section-contact .section-title,
  .section-contact .section-sub { max-width: 100%; }
}

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

  .hero h1 { font-size: 2rem; }
  .hero-logo { height: 70px; }
  .hero-body { padding-top: 64px; padding-bottom: 48px; }

  .exp-item { grid-template-columns: 1fr; gap: 14px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }

  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .values-grid { grid-template-columns: 1fr; }
  .team-card { flex-direction: column; }
}
