*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { color-scheme: light only; }

:root {
  --navy:       #0B1929;
  --navy-mid:   #132540;
  --blue:       #1B3A6B;
  --slate:      #4A6080;
  --slate-light:#7A95B0;
  --silver:     #C8D6E5;
  --mist:       #EEF3F8;
  --white:      #F8FAFB;
  --accent:     #2468CC;
  --accent-pale:#D6E4F7;

  --f-display: 'Cormorant', Georgia, serif;
  --f-body:    'DM Sans', sans-serif;

  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

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

/* ── NAV ──────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 100;
  padding: 0 5%;
  height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(11, 25, 41, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.nav-logo svg { flex-shrink: 0; }
.nav-logo-text {
  font-family: var(--f-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1.15;
}
.nav-logo-text .of { color: var(--accent); font-weight: 500; }

.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  text-decoration: none;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent);
  border: none;
  padding: 0.55rem 1.4rem;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: #1d57b0; transform: translateY(-1px); }

/* ── MOBILE NAV / DRAWER ──────────────────────────────── */
.nav-burger {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  margin-left: 0.25rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--silver);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 12, 22, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
  z-index: 200;
}
.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  height: 100dvh;
  width: min(340px, 82vw);
  background: var(--navy);
  border-left: 1px solid rgba(255,255,255,0.07);
  transform: translateX(100%);
  transition: transform 360ms cubic-bezier(0.32, 0.72, 0.24, 1);
  z-index: 201;
  display: flex;
  flex-direction: column;
  padding: 76px 2rem 2rem;
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-bottom: 1.75rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-drawer-brand svg { flex-shrink: 0; }
.mobile-drawer-brand-text {
  font-family: var(--f-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1.15;
}
.mobile-drawer-brand-text .of { color: var(--accent); font-weight: 500; }

.mobile-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}
.mobile-drawer-links li {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-drawer-links a {
  display: block;
  padding: 1.15rem 0;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  text-decoration: none;
  transition: color var(--transition);
}
.mobile-drawer-links a:hover,
.mobile-drawer-links a:focus { color: var(--white); }

.mobile-drawer-cta {
  display: block;
  text-align: center;
  margin-top: 2rem;
  padding: 0.95rem 1.4rem;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background var(--transition);
}
.mobile-drawer-cta:hover { background: #1d57b0; }

body.drawer-open { overflow: hidden; }

/* ── AURORA EFFECT ────────────────────────────────────── */
.aurora {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.a1 {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  mix-blend-mode: screen;
  filter: blur(4px);
  background: radial-gradient(circle, rgba(36,104,204,0.35) 0%, rgba(27,58,107,0.18) 50%, transparent 70%);
  top: -10%; left: -8%;
  animation: drift1 9s ease-in-out infinite alternate;
}
.a2 {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  mix-blend-mode: screen;
  filter: blur(3px);
  background: radial-gradient(circle, rgba(27,58,107,0.4) 0%, rgba(19,37,64,0.2) 50%, transparent 70%);
  top: 30%; right: -6%;
  animation: drift2 11s ease-in-out infinite alternate;
}
.a3 {
  position: absolute;
  width: 540px; height: 540px;
  border-radius: 50%;
  mix-blend-mode: screen;
  filter: blur(5px);
  background: radial-gradient(circle, rgba(36,104,204,0.3) 0%, rgba(11,25,41,0.15) 50%, transparent 70%);
  bottom: -15%; left: 25%;
  animation: drift3 13s ease-in-out infinite alternate;
}
.a4 {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  mix-blend-mode: screen;
  filter: blur(3px);
  background: radial-gradient(circle, rgba(74,96,128,0.38) 0%, rgba(19,37,64,0.18) 50%, transparent 70%);
  top: 15%; left: 45%;
  animation: drift4 8s ease-in-out infinite alternate;
}
.a5 {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  mix-blend-mode: screen;
  filter: blur(3px);
  background: radial-gradient(circle, rgba(27,58,107,0.32) 0%, rgba(19,37,64,0.14) 50%, transparent 70%);
  bottom: 10%; right: 15%;
  animation: drift5 10s ease-in-out infinite alternate;
}

@keyframes drift1 {
  0%   { transform: translate(0px,   0px);   }
  33%  { transform: translate(110px, 70px);  }
  66%  { transform: translate(50px,  150px); }
  100% { transform: translate(180px, 50px);  }
}
@keyframes drift2 {
  0%   { transform: translate(0px,    0px);   }
  33%  { transform: translate(-90px,  55px);  }
  66%  { transform: translate(-50px,  130px); }
  100% { transform: translate(-160px, 35px);  }
}
@keyframes drift3 {
  0%   { transform: translate(0px,   0px);    }
  33%  { transform: translate(-70px, -90px);  }
  66%  { transform: translate(90px,  -70px);  }
  100% { transform: translate(35px,  -150px); }
}
@keyframes drift4 {
  0%   { transform: translate(0px,    0px);   }
  33%  { transform: translate(70px,   90px);  }
  66%  { transform: translate(-55px,  70px);  }
  100% { transform: translate(-90px, -55px);  }
}
@keyframes drift5 {
  0%   { transform: translate(0px,    0px);   }
  33%  { transform: translate(-110px,-70px);  }
  66%  { transform: translate(70px,  -110px); }
  100% { transform: translate(-50px, -35px);  }
}

/* ── HERO ─────────────────────────────────────────────── */
#fluidCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  filter: blur(35px) saturate(1.8);
  opacity: 0.9;
  mix-blend-mode: screen;
}
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 5% 60px;
  position: relative;
  overflow: hidden;
}

/* Background subtle noise only — no grid */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(36,104,204,0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Glow orb */
.hero::after {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36,104,204,0.18) 0%, transparent 70%);
  top: -180px; right: -150px;
  pointer-events: none;
}

.hero-inner {
  max-width: 900px;
  position: relative; z-index: 3;
}

.hero-eyebrow {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.8rem;
  display: flex; align-items: center; gap: 0.8rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 32px; height: 1px; background: var(--accent);
}

.hero-headline {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.35s forwards;
}
.hero-headline em {
  font-style: italic;
  color: var(--silver);
}

.hero-sub {
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--slate-light);
  max-width: 560px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}

.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.65s forwards;
}

.btn-primary {
  display: inline-block;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white);
  background: var(--accent);
  padding: 0.85rem 2rem;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: #1d57b0;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(36,104,204,0.4);
}

.btn-ghost {
  display: inline-block;
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--silver);
  border: 1px solid rgba(200,214,229,0.3);
  padding: 0.85rem 2rem;
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}
.btn-ghost:hover { border-color: var(--silver); color: var(--white); transform: translateY(-2px); }

.hero-stats {
  position: absolute;
  bottom: 60px; right: 5%;
  display: flex; gap: 3rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s forwards;
  z-index: 3;
}
.hero-stat { text-align: right; }
.hero-stat-num {
  font-family: var(--f-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-top: 0.3rem;
}

/* ── MARQUEE ──────────────────────────────────────────── */
.marquee-strip {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  overflow: hidden; padding: 1rem 0;
}
.marquee-track {
  display: flex; gap: 3rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-light);
  white-space: nowrap;
  display: flex; align-items: center; gap: 1.2rem;
}
.marquee-item::after {
  content: '·'; color: var(--accent); font-size: 1.2rem;
}

/* ── SECTION BASE ─────────────────────────────────────── */
section { padding: 70px 5%; background: #E8EFF6; color: #0B1929; }

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2468CC;
  margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.section-label::before {
  content: ''; display: block;
  width: 24px; height: 1px; background: #2468CC;
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: #0B1929;
}
.section-title em { font-style: italic; color: #4A6080; }

.section-body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: #4A6080;
  max-width: 540px;
  margin-top: 1.2rem;
}

/* ── PROBLEM ──────────────────────────────────────────── */
.problem { background: #E8EFF6 !important; color: #0B1929; }
.problem .section-title { color: #0B1929; }
.problem .section-title em { color: #4A6080; }
.problem .section-label { color: #2468CC; }
.problem .section-label::before { background: #2468CC; }
.problem .section-body { color: #4A6080; }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 2.5rem;
  align-items: start;
}

.problem-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 0;
}
.problem-list li {
  display: flex; gap: 1.2rem; align-items: flex-start;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.65;
  color: #4A6080;
  padding: 1.6rem 0;
  border-bottom: 1px solid #C8D6E5;
}
.problem-list li:first-child { border-top: 1px solid #C8D6E5; }
.problem-list li:last-child { border-bottom: 1px solid #C8D6E5; }
.problem-list li .icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  background: transparent;
  border: 1.5px solid #C8D6E5;
  display: grid; place-items: center;
  border-radius: 2px;
}
.problem-list li .icon svg { stroke: #2468CC; width: 16px; height: 16px; }

.problem-quote {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 3rem;
  position: relative;
}
.problem-quote::before {
  content: '\201C';
  font-family: var(--f-display);
  font-size: 7rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.3;
  position: absolute; top: 1rem; left: 2rem;
}
.problem-quote blockquote {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
  color: var(--white);
  position: relative; z-index: 1;
}
.problem-quote cite {
  display: block;
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-top: 1.5rem;
}

/* ── SERVICES ─────────────────────────────────────────── */
#services { background: #0B1929 !important; color: #F8FAFB; }
#services .section-title { color: #F8FAFB; }
#services .section-title em { color: #7A95B0; }
#services .section-label { color: #2468CC; }
#services .section-label::before { background: #2468CC; }
#services .section-body { color: #7A95B0; }

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 2.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}

.service-card {
  background: #0B1929;
  padding: 2rem;
  transition: background var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: #2468CC;
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-card:hover { background: #132540; }
.service-card:hover::after { width: 100%; }

.service-icon {
  width: 44px; height: 44px;
  background: rgba(36,104,204,0.12);
  display: grid; place-items: center;
  margin-bottom: 1.5rem;
  transition: background var(--transition);
}
.service-card:hover .service-icon { background: rgba(36,104,204,0.22); }
.service-icon svg { width: 20px; height: 20px; stroke: #64B4FF; }

.service-name {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: #F8FAFB;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.service-desc {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
  color: #7A95B0;
}

.service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.2rem; }
.service-tag {
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #64B4FF;
  background: rgba(36,104,204,0.12);
  padding: 0.25rem 0.6rem;
}

/* ── OUR CLIENTS (light, bordered grid) ─────────────────── */
#clients { background: #F8FAFB !important; color: #0B1929; padding: 70px 5% 60px; }
#clients .section-label { color: #2468CC; }
#clients .section-label::before { background: #2468CC; }
#clients .section-title { color: #0B1929; }
#clients .section-title em { color: #4A6080; }
#clients .section-body { color: #4A6080; }

.clients-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3rem;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #C8D6E5;
  border-left: 1px solid #C8D6E5;
}

.client-card {
  background: transparent;
  border-right: 1px solid #C8D6E5;
  border-bottom: 1px solid #C8D6E5;
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  transition: background var(--transition);
}
.client-card:hover { background: rgba(36,104,204,0.04); }
.client-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  opacity: 0.9;
  transition: opacity var(--transition);
}
.client-card:hover a { opacity: 1; }
.client-card img {
  max-height: 70px;
  max-width: 100%;
  object-fit: contain;
}

/* ── IN THEIR WORDS (lifted navy, testimonial cards) ────── */
#testimonials { background: #132540 !important; color: #F8FAFB; }
#testimonials .section-label { color: #2468CC; }
#testimonials .section-label::before { background: #2468CC; }
#testimonials .section-title { color: #F8FAFB; }
#testimonials .section-title em { color: #7A95B0; }
#testimonials .section-body { color: #7A95B0; }

.testimonials-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.testimonial {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.testimonial::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: #2468CC;
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testimonial:hover {
  border-color: rgba(36,104,204,0.35);
  background: rgba(255,255,255,0.04);
  transform: translateY(-4px);
}
.testimonial:hover::after { width: 100%; }

.testimonial-quote {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.55;
  color: var(--white);
  flex: 1;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 0.2rem;
}
.testimonial-quote::before {
  content: '\201C';
  font-family: var(--f-display);
  font-size: 4rem;
  line-height: 0.8;
  color: var(--accent);
  opacity: 0.25;
  position: absolute; top: -1rem; left: -0.5rem;
  font-style: normal;
}

.testimonial-attr {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.2rem;
}
.testimonial-name {
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.testimonial-role {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-light);
}

/* ── HOW WE WORK ──────────────────────────────────────── */
.how { background: #E8EFF6 !important; }
.how .section-label { color: #2468CC; }
.how .section-label::before { background: #2468CC; }
.how .section-title { color: #0B1929 !important; }
.how .section-title em { color: #4A6080 !important; }
.how .section-body { color: #4A6080 !important; max-width: 100%; }

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 2.5rem;
  border: 1px solid #C8D6E5;
}

.how-step {
  padding: 2rem;
  border-right: 1px solid #C8D6E5;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.how-step::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: #2468CC;
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.how-step:hover { background: #DCE6F0; }
.how-step:hover::after { width: 100%; }
.how-step:last-child { border-right: none; }

.how-num {
  font-family: var(--f-display);
  font-size: 3rem;
  font-weight: 600;
  color: rgba(36,104,204,0.2);
  line-height: 1;
  margin-bottom: 1.2rem;
}
.how-title {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: #0B1929;
  margin-bottom: 0.8rem;
}
.how-body {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  color: #4A6080;
}

/* ── WHO WE SERVE ─────────────────────────────────────── */
.serve { background: #EEF3F8 !important; color: #0B1929; }

.serve-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.serve-card {
  background: #F8FAFB;
  padding: 2rem;
  border-top: 3px solid #C8D6E5;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.serve-card:hover {
  border-color: #2468CC;
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(11,25,41,0.1);
}

.serve-entity {
  font-family: var(--f-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: #0B1929;
  margin-bottom: 0.6rem;
}

.serve-name {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2468CC;
  margin-bottom: 1rem;
}

.serve-desc {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  color: #4A6080;
}

/* ── ABOUT ────────────────────────────────────────────── */
#about { background: #0B1929 !important; color: #F8FAFB; }
#about .section-label { color: #2468CC; }
#about .section-label::before { background: #2468CC; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.about-visual-box {
  width: 320px;
  aspect-ratio: 4/5;
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.about-monogram {
  font-family: var(--f-display);
  font-size: 8rem;
  font-weight: 600;
  color: rgba(36,104,204,0.25);
  line-height: 1;
  user-select: none;
}
.about-visual-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 60%; height: 60%;
  background: var(--accent-pale);
  z-index: -1;
}

.about-name {
  font-family: var(--f-display);
  font-size: 2.6rem;
  font-weight: 600;
  color: #F8FAFB;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}
.about-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #2468CC;
  margin-bottom: 1.8rem;
}
.about-bio {
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.85;
  color: #7A95B0;
}
.about-bio + .about-bio { margin-top: 1rem; }

.about-values { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
.about-value {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #C8D6E5;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.4rem 0.9rem;
  transition: border-color var(--transition), color var(--transition);
}
.about-value:hover { border-color: #2468CC; color: #2468CC; }

/* ── CONTACT ──────────────────────────────────────────── */
.contact { background: #E8EFF6 !important; color: #0B1929; }
.contact .section-label { color: #2468CC; }
.contact .section-label::before { background: #2468CC; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  margin-top: 2.5rem;
  align-items: start;
}

.contact-info .section-title { color: #0B1929 !important; }
.contact-info .section-title em { color: #4A6080 !important; }
.contact-body {
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.8;
  color: #4A6080;
  margin-top: 1rem;
  margin-bottom: 1.8rem;
}

.contact-detail {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: #0B1929;
  margin-bottom: 0.8rem;
}
.contact-detail svg { width: 16px; height: 16px; stroke: #2468CC; flex-shrink: 0; }

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: #4A6080;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--f-body);
  font-size: 0.9rem; font-weight: 300;
  color: #0B1929;
  background: #F4F7FB;
  border: 1px solid #C8D6E5;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none;
}
.form-group select option { background: #F4F7FB; color: #0B1929; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2468CC;
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  font-family: var(--f-body);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #F8FAFB;
  background: #2468CC;
  border: none;
  padding: 1rem 2.5rem;
  cursor: pointer;
  width: fit-content;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.form-submit:hover {
  background: #1d57b0;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(36,104,204,0.25);
}

.form-note {
  font-size: 0.75rem;
  color: var(--slate-light);
  margin-top: -0.4rem;
}

/* Success message */
.form-success {
  display: none;
  padding: 1.5rem;
  background: rgba(36,104,204,0.15);
  border: 1px solid rgba(36,104,204,0.4);
  color: #0B1929;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
}

/* ── FOOTER ───────────────────────────────────────────── */
footer {
  background: #070F1A;
  padding: 2rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-logo svg { flex-shrink: 0; }
.footer-logo-text {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1.15;
}
.footer-logo-text .of { color: var(--accent); font-weight: 500; }

.footer-links {
  display: flex; gap: 2rem; list-style: none;
}
.footer-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-light);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-copy {
  font-size: 0.72rem;
  color: var(--slate);
}

/* ── ANIMATIONS ───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.hidden {
  opacity: 0;
  transform: translateY(28px);
}
.reveal.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .how-step { border-bottom: 1px solid #C8D6E5; }
  .how-step:nth-child(even) { border-right: none; }
  .how-step:nth-last-child(-n+2) { border-bottom: none; }
  .serve-cards { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .clients-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .testimonials-header { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 768px) {
  nav { padding: 0 4%; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero { padding-top: 140px !important; }
  section { padding: 50px 5%; }
  .problem-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .how-step { border-right: none; border-bottom: 1px solid #C8D6E5; }
  .how-step:nth-last-child(-n+2) { border-bottom: 1px solid #C8D6E5; }
  .how-step:last-child { border-bottom: none; }
  .serve-cards { grid-template-columns: 1fr 1fr; }
  .hero-stats { position: static; flex-direction: row; margin-top: 3rem; }
  .hero-stat { text-align: left; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; align-items: flex-start; }
  .clients-grid { grid-template-columns: 1fr; }
  .client-card { min-height: 140px; padding: 2.5rem 1.5rem; }
  .client-card img { max-height: 55px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 480px) {
  .serve-cards { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 140px 5% 60px !important; }
}
