/* ═══════════════════════════════════════════════════════════════
   GCAS NETWORK — APPLE-CLEAN AESTHETIC · FEDERAL NAVY ACCENT
   Light theme, generous whitespace, refined typography
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Color system */
  --white: #ffffff;
  --off-white: #fbfbfd;
  --soft-gray: #f5f5f7;
  --light-gray: #eaeaee;
  --mid-gray: #86868b;
  --dark-gray: #424248;
  --near-black: #1d1d1f;
  --black: #000000;

  /* Federal navy accent system */
  --navy: #0a2540;
  --navy-dark: #061829;
  --navy-mid: #1a3a5f;
  --navy-light: #2c5282;
  --navy-tint: #e8eef5;
  --navy-glow: rgba(10, 37, 64, 0.08);

  /* Semantic */
  --color-text: var(--near-black);
  --color-text-soft: var(--mid-gray);
  --color-bg: var(--white);
  --color-bg-soft: var(--off-white);
  --color-bg-mute: var(--soft-gray);
  --color-border: var(--light-gray);
  --color-accent: var(--navy);

  /* Type */
  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;

  /* Spacing scale */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;
  --s-11: 192px;

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Transitions */
  --t-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --t-med: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --content-max: 1280px;
  --content-narrow: 920px;
  --nav-h: 64px;
}

/* ─── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; margin: 0; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
::selection { background: var(--navy); color: var(--white); }

/* ─── Typography scale ─────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 var(--s-4);
}
.eyebrow.on-dark { color: rgba(255,255,255,0.85); }

.display-xl {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0;
  color: var(--near-black);
}
.display-xl em {
  font-style: italic;
  font-weight: 400;
  color: var(--navy);
}

.display-lg {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--near-black);
}
.display-lg em {
  font-style: italic;
  font-weight: 400;
  color: var(--navy);
}

.display-md {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0;
}
.display-md em { font-style: italic; font-weight: 400; color: var(--navy); }

.display-sm {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

.lead {
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.4;
  font-weight: 400;
  color: var(--dark-gray);
  margin: 0;
}

.body-lg { font-size: 19px; line-height: 1.55; color: var(--dark-gray); }
.body { font-size: 17px; line-height: 1.55; color: var(--dark-gray); }
.body-sm { font-size: 15px; line-height: 1.55; color: var(--mid-gray); }

/* ─── Layout primitives ────────────────────────────────────── */
.wrap { max-width: var(--content-max); margin: 0 auto; padding: 0 var(--s-4); }
.wrap-narrow { max-width: var(--content-narrow); margin: 0 auto; padding: 0 var(--s-4); }

.section { padding: var(--s-10) 0; }
.section-tight { padding: var(--s-9) 0; }
.section-loose { padding: var(--s-11) 0; }

.section-bg-soft { background: var(--off-white); }
.section-bg-mute { background: var(--soft-gray); }
.section-bg-navy {
  background: var(--navy);
  color: var(--white);
}
.section-bg-navy .lead,
.section-bg-navy .body,
.section-bg-navy .body-lg { color: rgba(255,255,255,0.78); }
.section-bg-navy .display-xl,
.section-bg-navy .display-lg,
.section-bg-navy .display-md,
.section-bg-navy .display-sm { color: var(--white); }
.section-bg-navy .display-xl em,
.section-bg-navy .display-lg em,
.section-bg-navy .display-md em { color: rgba(255,255,255,0.72); }

.section-header { max-width: 820px; margin: 0 auto var(--s-9); text-align: center; }
.section-header.left { text-align: center; margin-left: 0; margin-right: auto; }

/* ═══════════════════════════════════════════════════════════════
   NAV — Apple-style, blurred sticky bar
   ═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  z-index: 1000;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.nav.scrolled { background: rgba(255, 255, 255, 0.88); }

.nav-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--s-4);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  flex-shrink: 0;
}
.logo svg { flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-primary {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--near-black);
}
.logo-sub {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--mid-gray);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s-6);
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark-gray);
  transition: color var(--t-fast);
  white-space: nowrap;
  letter-spacing: 0.005em;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); font-weight: 600; }
.nav-links .nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-weight: 500;
  transition: background var(--t-fast), transform var(--t-fast);
}
.nav-links .nav-cta:hover { background: var(--navy-mid); transform: translateY(-1px); }

/* Hamburger — hidden on desktop */
.nav-hamburger {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  border-radius: var(--r-sm);
  flex-shrink: 0;
}
.nav-hamburger span {
  position: absolute;
  left: 10px;
  width: 20px;
  height: 1.5px;
  background: var(--near-black);
  border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast), top var(--t-fast);
}
.nav-hamburger span:nth-child(1) { top: 14px; }
.nav-hamburger span:nth-child(2) { top: 19px; }
.nav-hamburger span:nth-child(3) { top: 24px; }
.nav-hamburger.is-active span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-hamburger.is-active span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-active span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* Mobile menu — full screen overlay */
.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  padding: var(--s-7) var(--s-6);
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--t-med), opacity var(--t-med);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--near-black);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--color-border);
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.mobile-menu a:hover { color: var(--navy); padding-left: var(--s-2); }
.mobile-menu a.mobile-cta {
  margin-top: var(--s-5);
  background: var(--navy);
  color: var(--white);
  padding: var(--s-5);
  border: none;
  border-radius: var(--r-md);
  text-align: center;
  font-size: 17px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0;
}
.mobile-menu a.mobile-cta:hover { background: var(--navy-mid); padding-left: var(--s-5); }

body.nav-locked { overflow: hidden; }

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  transition: all var(--t-fast);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(10, 37, 64, 0.2);
}
.btn-ghost:hover { background: var(--navy-tint); border-color: var(--navy); }

.btn-light {
  background: var(--white);
  color: var(--navy);
}
.btn-light:hover { background: var(--soft-gray); transform: translateY(-1px); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* Pill link — Apple-style underline arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-weight: 500;
  font-size: 17px;
  transition: gap var(--t-fast);
}
.link-arrow::after {
  content: '→';
  transition: transform var(--t-fast);
}
.link-arrow:hover { gap: 10px; }
.link-arrow:hover::after { transform: translateX(2px); }

/* ═══════════════════════════════════════════════════════════════
   HERO — Apple product-page style
   ═══════════════════════════════════════════════════════════════ */
.hero {
  padding-top: calc(var(--nav-h) + var(--s-10));
  padding-bottom: var(--s-9);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(10, 37, 64, 0.04), transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(10, 37, 64, 0.03), transparent 50%);
  pointer-events: none;
}
.hero-inner { position: relative; }
.hero h1 { margin: 0 auto var(--s-5); max-width: 14ch; }
.hero .lead { margin: 0 auto var(--s-7); max-width: 640px; }
.hero-actions {
  display: flex;
  gap: var(--s-3);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--s-9);
}
.hero-image-wrap {
  margin-top: var(--s-7);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow:
    0 10px 30px -8px rgba(10, 37, 64, 0.18),
    0 30px 60px -20px rgba(10, 37, 64, 0.12);
  position: relative;
}
.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 37, 64, 0.18));
  pointer-events: none;
}
.hero-image-wrap img {
  width: 100%;
  height: clamp(400px, 60vh, 720px);
  object-fit: cover;
  object-position: center;
}

/* Hero — interior pages (smaller, no full image) */
.page-hero {
  padding-top: calc(var(--nav-h) + var(--s-9));
  padding-bottom: var(--s-9);
  text-align: center;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(10, 37, 64, 0.05), transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; max-width: 880px; margin: 0 auto; padding: 0 var(--s-4); }
.page-hero h1 { margin: 0 0 var(--s-5); }
.page-hero .lead { margin: 0 auto; max-width: 680px; }

/* ═══════════════════════════════════════════════════════════════
   STATS — Apple "by the numbers" band
   ═══════════════════════════════════════════════════════════════ */
.stats-band {
  padding: var(--s-9) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--off-white);
}
.stats-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--s-4);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin-bottom: var(--s-3);
}
.stat-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

/* ═══════════════════════════════════════════════════════════════
   FEATURE CARDS (homepage section teasers)
   ═══════════════════════════════════════════════════════════════ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
}
.feature-grid.three { grid-template-columns: repeat(3, 1fr); }

.feature-card {
  background: var(--off-white);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  display: flex;
  flex-direction: column;
  min-height: 460px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -16px rgba(10, 37, 64, 0.12);
}
.feature-card-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 var(--s-4);
}
.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 var(--s-4);
}
.feature-card h3 em { font-style: italic; font-weight: 400; color: var(--navy); }
.feature-card p {
  font-size: 17px;
  line-height: 1.5;
  color: var(--dark-gray);
  margin: 0 0 var(--s-5);
  flex: 1;
}
.feature-card .link-arrow { margin-top: auto; }

.feature-card.dark {
  background: var(--navy);
  color: var(--white);
}
.feature-card.dark h3 { color: var(--white); }
.feature-card.dark h3 em { color: rgba(255,255,255,0.72); }
.feature-card.dark p { color: rgba(255,255,255,0.78); }
.feature-card.dark .feature-card-eyebrow { color: rgba(255,255,255,0.7); }
.feature-card.dark .link-arrow { color: var(--white); }

.feature-card.image-card {
  padding: 0;
  min-height: 520px;
  position: relative;
}
.feature-card.image-card .image-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.feature-card.image-card .image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-card.image-card .image-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 37, 64, 0.15) 0%, rgba(10, 37, 64, 0.85) 100%);
}
.feature-card.image-card .image-content {
  position: relative;
  z-index: 1;
  padding: var(--s-8);
  display: flex;
  flex-direction: column;
  height: 100%;
  color: var(--white);
}
.feature-card.image-card .image-content h3 { color: var(--white); }
.feature-card.image-card .image-content h3 em { color: rgba(255,255,255,0.85); }
.feature-card.image-card .image-content p { color: rgba(255,255,255,0.85); }
.feature-card.image-card .image-content .feature-card-eyebrow { color: rgba(255,255,255,0.85); }
.feature-card.image-card .image-content .link-arrow { color: var(--white); margin-top: auto; }

.feature-card.span-2 { grid-column: span 2; min-height: 380px; }

/* ═══════════════════════════════════════════════════════════════
   BIG CONTENT BLOCKS (interior pages)
   ═══════════════════════════════════════════════════════════════ */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-9);
  align-items: center;
}
.content-block.reverse > :first-child { order: 2; }
.content-block-image {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(10, 37, 64, 0.18);
}
.content-block-image img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}
.content-block-text h2 { margin-bottom: var(--s-5); }
.content-block-text p { margin: 0 0 var(--s-4); }

/* Big quote block */
.big-quote-block {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  padding: var(--s-9) 0;
}
.big-quote-block blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--near-black);
}
.big-quote-block cite {
  display: block;
  margin-top: var(--s-6);
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

/* ═══════════════════════════════════════════════════════════════
   STEP / NUMBERED LISTS
   ═══════════════════════════════════════════════════════════════ */
.steps {
  display: grid;
  gap: var(--s-6);
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--s-6);
  padding-bottom: var(--s-7);
  border-bottom: 1px solid var(--color-border);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 var(--s-3);
}
.step p { margin: 0 0 var(--s-3); font-size: 17px; line-height: 1.55; color: var(--dark-gray); }
.step-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--navy-tint);
  padding: 4px 10px;
  border-radius: var(--r-pill);
}

/* ═══════════════════════════════════════════════════════════════
   ICON GRID (network experts, designations, etc.)
   ═══════════════════════════════════════════════════════════════ */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
.icon-card {
  padding: var(--s-7);
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.icon-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -12px rgba(10, 37, 64, 0.12);
  border-color: rgba(10, 37, 64, 0.15);
}
.icon-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: var(--navy-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-5);
}
.icon-card-icon svg { width: 28px; height: 28px; color: var(--navy); }
.icon-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 var(--s-3);
}
.icon-card p { font-size: 16px; line-height: 1.5; color: var(--dark-gray); margin: 0; }

/* ═══════════════════════════════════════════════════════════════
   CHECKLIST
   ═══════════════════════════════════════════════════════════════ */
.checklist {
  display: grid;
  gap: var(--s-6);
  margin: var(--s-5) 0;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  font-size: 17px;
  line-height: 1.5;
  color: var(--dark-gray);
}
.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}
.checklist strong { color: var(--near-black); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════
   DESIGNATION CARDS (SBA page)
   ═══════════════════════════════════════════════════════════════ */
.designation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
}
.designation-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: var(--s-7);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.designation-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -16px rgba(10, 37, 64, 0.14);
  border-color: var(--navy);
}
.designation-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--s-4);
  gap: var(--s-6);
}
.designation-abbr {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--navy);
}
.designation-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--navy-tint);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.designation-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 var(--s-3);
  color: var(--near-black);
}
.designation-card p { font-size: 16px; line-height: 1.55; color: var(--dark-gray); margin: 0 0 var(--s-3); }
.designation-card .qual {
  font-size: 14px;
  color: var(--mid-gray);
  border-top: 1px solid var(--color-border);
  padding-top: var(--s-3);
  margin-top: var(--s-3);
}
.designation-card .qual strong { color: var(--navy); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════
   CONTRACT VEHICLE LIST (consultants page)
   ═══════════════════════════════════════════════════════════════ */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.vehicle-card {
  background: var(--off-white);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  transition: transform var(--t-med), background var(--t-med);
}
.vehicle-card:hover {
  transform: translateY(-3px);
  background: var(--white);
  box-shadow: 0 12px 30px -12px rgba(10, 37, 64, 0.12);
}
.vehicle-abbr {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: var(--s-3);
  display: block;
}
.vehicle-card h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  margin: 0 0 var(--s-3);
  color: var(--near-black);
}
.vehicle-card p { font-size: 14px; line-height: 1.5; color: var(--dark-gray); margin: 0; }

/* ═══════════════════════════════════════════════════════════════
   CTA BAND (recurring across pages)
   ═══════════════════════════════════════════════════════════════ */
.cta-band {
  background: var(--navy);
  color: var(--white);
  padding: var(--s-10) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(255,255,255,0.08), transparent 60%);
  pointer-events: none;
}
.cta-band-inner { position: relative; max-width: 760px; margin: 0 auto; padding: 0 var(--s-4); }
.cta-band h2 { color: var(--white); margin: 0 0 var(--s-5); }
.cta-band h2 em { color: rgba(255,255,255,0.72); }
.cta-band p { font-size: 19px; line-height: 1.5; color: rgba(255,255,255,0.78); margin: 0 0 var(--s-7); }
.cta-band .btn-row { display: flex; gap: var(--s-3); justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════
   STORIES — testimonial cards
   ═══════════════════════════════════════════════════════════════ */
.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
}
.story-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: var(--s-7);
  display: flex;
  flex-direction: column;
}
.story-result {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 var(--s-5);
}
.story-card blockquote {
  margin: 0 0 var(--s-5);
  font-size: 17px;
  line-height: 1.55;
  color: var(--dark-gray);
  flex: 1;
}
.story-author {
  display: flex;
  align-items: center;
  gap: var(--s-6);
  border-top: 1px solid var(--color-border);
  padding-top: var(--s-4);
}
.story-initial {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
}
.story-author strong { display: block; font-weight: 600; color: var(--near-black); font-size: 15px; }
.story-author span { display: block; font-size: 13px; color: var(--mid-gray); }

/* ═══════════════════════════════════════════════════════════════
   FORMS — Apple-style refined
   ═══════════════════════════════════════════════════════════════ */
.form-tabs {
  display: flex;
  gap: var(--s-2);
  margin-bottom: var(--s-7);
  background: var(--soft-gray);
  padding: 4px;
  border-radius: var(--r-pill);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.form-tab {
  padding: 10px 22px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 500;
  color: var(--mid-gray);
  transition: all var(--t-fast);
  white-space: nowrap;
}
.form-tab.active {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 2px 8px -2px rgba(10, 37, 64, 0.1);
}
.form-tab:hover:not(.active) { color: var(--dark-gray); }

.form-panel { display: none; }
.form-panel.active { display: block; }

.form-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  padding: clamp(var(--s-6), 5vw, var(--s-9));
}
.form-intro {
  font-size: 19px;
  line-height: 1.5;
  color: var(--dark-gray);
  margin: 0 0 var(--s-7);
  text-align: center;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
}
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: var(--s-2);
}
.form-field .required { color: var(--navy); }
.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  background: var(--white);
  font-size: 16px;
  color: var(--near-black);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(10, 37, 64, 0.08);
}
.form-field textarea { min-height: 120px; resize: vertical; font-family: inherit; }

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
}
.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 15px;
  color: var(--dark-gray);
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.checkbox-grid label:hover { border-color: var(--navy); background: var(--navy-tint); }
.checkbox-grid input[type="checkbox"] { accent-color: var(--navy); }

.form-actions { margin-top: var(--s-7); text-align: center; }
.form-submit {
  background: var(--navy);
  color: var(--white);
  padding: 16px 36px;
  border-radius: var(--r-pill);
  font-size: 16px;
  font-weight: 500;
  transition: all var(--t-fast);
}
.form-submit:hover { background: var(--navy-mid); transform: translateY(-1px); }
.form-fine { font-size: 13px; color: var(--mid-gray); margin: var(--s-4) 0 0; line-height: 1.5; }

.form-success {
  display: none;
  text-align: center;
  padding: var(--s-9) var(--s-6);
}
.form-success.visible { display: block; }
.check-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto var(--s-5);
}
.form-success h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 var(--s-4);
}
.form-success p { color: var(--dark-gray); margin: 0 0 var(--s-3); }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--off-white);
  border-top: 1px solid var(--color-border);
  padding: var(--s-9) 0 var(--s-7);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: var(--s-8);
  align-items: start;
}
.footer-logo { display: flex; align-items: flex-start; gap: var(--s-3); }
.footer-brand {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--near-black);
}
.footer-tagline {
  display: block;
  font-size: 12px;
  color: var(--mid-gray);
  margin-top: 2px;
  line-height: 1.4;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.footer-col h5 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin: 0 0 var(--s-4);
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--dark-gray);
  padding: 4px 0;
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--navy); }
.footer-bottom {
  margin-top: var(--s-7);
  padding-top: var(--s-5);
  border-top: 1px solid var(--color-border);
  font-size: 12px;
  color: var(--mid-gray);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.98);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-scale { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; align-items: center; justify-content: center; }

  .feature-grid, .feature-grid.three { grid-template-columns: 1fr; }
  .feature-card.span-2 { grid-column: span 1; }
  .icon-grid, .vehicle-grid { grid-template-columns: repeat(2, 1fr); }
  .designation-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-6); }
  .content-block { grid-template-columns: 1fr; gap: var(--s-6); }
  .content-block.reverse > :first-child { order: 0; }
  .content-block-image img { min-height: 320px; max-height: 420px; }

  .footer-inner { grid-template-columns: 1fr; gap: var(--s-6); }
}

@media (max-width: 640px) {
  :root {
    --s-9: 64px;
    --s-10: 80px;
    --s-11: 100px;
  }
  .wrap, .wrap-narrow { padding: 0 var(--s-5); }
  .hero { padding-top: calc(var(--nav-h) + var(--s-7)); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-image-wrap img { height: 380px; }

  .stats-grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .icon-grid, .vehicle-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }

  .step { grid-template-columns: 1fr; gap: var(--s-3); }
  .step-num { font-size: 40px; }

  .logo-sub { display: none; }

  .mobile-menu a { font-size: 22px; padding: var(--s-3) 0; }
}

/* Force logo subtitle onto two lines */
.logo .logo-sub {
    display: block;
    max-width: 180px;
    line-height: 1.3;
    word-wrap: break-word;
}

/* Make nav taller to fit logo */
.nav {
    padding: 8px 0;
}

.nav-inner {
    min-height: 100px;
}

.nav .logo img {
    max-height: 80px;
    width: auto;
}

/* Balance header logo and text alignment */
.nav .logo {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
}

.nav .logo img {
    flex-shrink: 0;
}

.nav .logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 10px;
}

.logo-primary {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Center footer logo */
.footer-logo {
    text-align: center;
}

.footer-logo img {
    display: inline-block;
}

/* Footer text styling */
.footer-logo {
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo img {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-tagline-new {
    text-align: center;
    margin-top: 20px;
}

.footer-mission {
    font-size: 16px;
    font-weight: 500;
    color: #0A2540;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.footer-since {
    font-size: 14px;
    font-weight: 400;
    color: #4a5b6e;
    margin-top: 5px;
}

/* Footer text styling */
.footer-since {
    font-size: 14px;
    color: #4a5b6e;
    margin-top: 10px;
}

.footer-since br {
    display: block;
}

/* Footer Layout - Logo on left, menu on right */
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-left {
    flex: 1;
    text-align: center;
}

.footer-logo-img {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
}

.footer-since {
    font-size: 14px;
    color: #4a5b6e;
    line-height: 1.4;
    margin: 0;
}

.footer-right {
    flex: 2;
}

.footer-cols {
    display: flex;
    justify-content: flex-end;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-col {
    min-width: 160px;
}

.footer-col h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #0A2540;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: #4a5b6e;
    text-decoration: none;
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: #0A2540;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid #e2e8f0;
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
    }
    .footer-left {
        text-align: center;
    }
    .footer-cols {
        justify-content: center;
        text-align: center;
    }
}

/* Center text under footer logo */
.footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-since {
    text-align: center;
    font-size: 14px;
    color: #4a5b6e;
    line-height: 1.4;
    margin-top: 10px;
}

/* Force footer logo size - make it large */
.footer-logo-img {
    max-width: 600px !important;
    width: 100% !important;
    height: auto !important;
    display: block;
    margin: 0 auto 20px auto;
}

/* Force footer logo size - critical override */
.footer-logo-img {
    width: 600px !important;
    max-width: 600px !important;
    height: auto !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* On mobile, make it responsive */
@media (max-width: 768px) {
    .footer-logo-img {
        width: 80% !important;
        max-width: 300px !important;
    }
}

/* Sticky header with blur effect */
.nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Ensure text remains readable */
.nav .logo-text {
    background: transparent;
}

.logo-primary, .logo-sub {
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Enhance text readability on scroll */
.nav .logo-text {
    background: rgba(255, 255, 255, 0.6);
    padding: 4px 8px;
    border-radius: 8px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Force footer logo to exactly 500px */
.footer-logo-img {
    width: 500px !important;
    max-width: 500px !important;
    height: auto !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

@media (max-width: 768px) {
    .footer-logo-img {
        width: 80% !important;
        max-width: 300px !important;
    }
}

/* Force footer logo size - critical override */
.footer-logo-img {
    width: 300px !important;
    max-width: 300px !important;
    min-width: 300px !important;
    height: auto !important;
}

/* ========== MOBILE ONLY FIXES - No desktop changes ========== */
@media (max-width: 768px) {
    
    /* Fix: Make header responsive so hamburger doesn't get pushed off screen */
    .nav-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 10px 15px;
        box-sizing: border-box;
    }
    
    /* Fix: Ensure logo doesn't take too much space */
    .nav .logo {
        flex: 1;
        min-width: 0;
    }
    
    /* Fix: Make logo image smaller on mobile */
    .nav .logo img {
        height: 50px !important;
        width: auto;
    }
    
    /* Fix: Logo text smaller on mobile */
    .logo-primary {
        font-size: 12px;
    }
    
    .logo-sub {
        font-size: 8px;
    }
    
    /* Fix: Hamburger button - ensure it's visible and clickable */
    .nav-hamburger {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }
    
    .nav-hamburger span {
        width: 25px;
        height: 3px;
        background: #0A2540;
        border-radius: 3px;
        transition: all 0.3s;
    }
    
    /* Fix: Mobile menu - hidden by default, shows when open */
    .mobile-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 1000;
        flex-direction: column;
        gap: 15px;
    }
    
    .mobile-menu.open {
        display: flex;
    }
    
    .mobile-menu a {
        padding: 10px;
        text-decoration: none;
        color: #0A2540;
        font-weight: 500;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .mobile-menu a:last-child {
        border-bottom: none;
    }
    
    /* Fix: Footer layout - center logo and text */
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-left {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-logo-img {
        display: inline-block;
        margin: 0 auto 15px auto;
    }
    
    .footer-cols {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-col {
        text-align: center;
    }
}

/* ========== MOBILE MENU TEXT FIX - NO DESKTOP CHANGE ========== */
@media (max-width: 768px) {
    /* Prevent text truncation in mobile menu */
    .mobile-menu a {
        white-space: normal !important;
        word-break: keep-all !important;
        overflow: visible !important;
        font-size: 16px !important;
        padding: 12px 15px !important;
        display: block !important;
        width: 100% !important;
    }
}

/* ========== FOOTER CENTERING - MOBILE ONLY ========== */
@media (max-width: 768px) {
    .footer {
        text-align: center !important;
    }
    
    .footer-inner {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .footer-left {
        align-items: center !important;
        text-align: center !important;
    }
    
    .footer-logo-img {
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
    }
    
    .footer-cols {
        align-items: center !important;
        text-align: center !important;
    }
    
    .footer-col {
        text-align: center !important;
    }
}

/* ========== SERVICES & FEES PAGE - MOBILE ONLY ========== */
@media (max-width: 768px) {
    /* Make images full width on mobile */
    .services-fees-page img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        margin-bottom: 20px !important;
    }
    
    /* Reorder each section so image appears above text */
    .services-fees-page .feature-grid,
    .services-fees-page .section {
        display: flex !important;
        flex-direction: column !important;
    }
    
    /* Force image to be first in each section */
    .services-fees-page .feature-grid .reveal,
    .services-fees-page .section .reveal {
        display: flex !important;
        flex-direction: column !important;
    }
    
    /* Make sure image comes before text */
    .services-fees-page .feature-grid .reveal img {
        order: -1 !important;
    }
}

/* ========== SERVICES & FEES PAGE - MOBILE IMAGE ORDER ========== */
@media (max-width: 768px) {
    /* Target each section individually */
    body.services-fees-page .feature-grid-two,
    body.services-fees-page .section .wrap > div,
    body.services-fees-page .feature-grid {
        display: flex !important;
        flex-direction: column !important;
    }
    
    /* Move image before text in each content block */
    body.services-fees-page .feature-grid-two img,
    body.services-fees-page .section .wrap img,
    body.services-fees-page .feature-grid img {
        order: -1 !important;
        width: 100% !important;
        margin-bottom: 20px !important;
    }
    
    /* Ensure text containers don't interfere */
    body.services-fees-page .feature-grid-two > div,
    body.services-fees-page .section .wrap > div {
        flex-direction: column !important;
        display: flex !important;
    }
}

/* ========== FIX STRETCHED LOGO ON SERVICES & FEES PAGE - MOBILE ONLY ========== */
@media (max-width: 768px) {
    /* Target only the main logo on services-fees page */
    body.services-fees-page .nav .logo img {
        height: 50px !important;
        width: auto !important;
        max-width: none !important;
    }
    
    /* Also ensure the logo-text stays properly sized */
    body.services-fees-page .logo-primary {
        font-size: 12px !important;
    }
    
    body.services-fees-page .logo-sub {
        font-size: 8px !important;
    }
}

/* ========== REMOVE STRAY 'n' FROM CONTACT PAGE FOOTER - MOBILE ONLY ========== */
@media (max-width: 768px) {
    /* Hide any stray 'n' that might appear in footer on mobile */
    .footer {
        word-break: normal;
    }
    
    /* If there's a specific element with just 'n', hide it */
    .footer span:only-child,
    .footer div:empty {
        display: none;
    }
}

/* ========== SERVICES & FEES PAGE - MOBILE ONLY ========== */
@media (max-width: 768px) {
    /* Target only the Services & Fees page content images */
    body.services-fees-page .section .wrap img:not(.nav img) {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        margin-bottom: 20px !important;
    }
    
    /* Make sections stack vertically on mobile only */
    body.services-fees-page .feature-grid-two,
    body.services-fees-page .section .wrap > div {
        display: flex !important;
        flex-direction: column !important;
    }
    
    /* Force images before text */
    body.services-fees-page .feature-grid-two img,
    body.services-fees-page .section .wrap img {
        order: -1 !important;
    }
}

/* ========== SERVICES & FEES PAGE - MOBILE ONLY ========== */
@media (max-width: 768px) {
    /* Make images full width */
    body.services-fees-page .section .wrap img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        margin-bottom: 20px !important;
    }
    
    /* Stack sections vertically */
    body.services-fees-page .feature-grid-two,
    body.services-fees-page .section .wrap > div {
        display: flex !important;
        flex-direction: column !important;
    }
    
    /* Move images before text */
    body.services-fees-page .feature-grid-two img,
    body.services-fees-page .section .wrap img {
        order: -1 !important;
    }
    
    /* Logo unchanged */
    body.services-fees-page .nav .logo img {
        height: auto !important;
        width: auto !important;
        max-width: 120px !important;
    }
}

/* Homepage: trade list */
.trade-list {
  list-style: none; padding: 0; margin: 40px 0 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--color-border);
}
.trade-list li {
  padding: 20px 4px; border-bottom: 1px solid var(--color-border);
  font-family: var(--font-display); font-size: 22px; color: var(--navy);
}
@media (max-width: 900px) { .trade-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .trade-list { grid-template-columns: 1fr; } }
