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

:root {
  --navy: #0f1d2e;
  --navy-dark: #070f18;
  --blue: #2b6cb0;
  --blue-hover: #1e4d7b;
  --blue-light: #e8eef4;
  --blue-soft: #63b3ed;
  --text: #0f1d2e;
  --text-muted: #5a6b7b;
  --bg: #f0f4f8;
  --bg-white: #ffffff;
  --border: #d1d9e0;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(15,29,46,.06);
  --shadow-lg: 0 12px 40px rgba(15,29,46,.10);
  --transition: all .25s cubic-bezier(.4,0,.2,1);
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -60px;
  left: 20px;
  background: var(--blue);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  z-index: 10000;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ── SCREEN-READER-ONLY TEXT ── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── HEADER / NAV ── */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(240,244,248,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

nav {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
}

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

.logo-svg { width: 36px; height: 36px; flex-shrink: 0; }

.logo-text {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

.nav-links a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: .88rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a:focus-visible { color: var(--blue); background: var(--blue-light); }
.nav-links a.active { color: var(--blue); background: var(--blue-light); }

.nav-cta {
  padding: 10px 20px !important;
  background: var(--blue) !important;
  color: #fff !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
}
.nav-cta:hover,
.nav-cta:focus-visible { background: var(--blue-hover) !important; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(43,108,176,.35) !important; }

/* ── NAV DROPDOWN ── */
.nav-links li { position: relative; }
.nav-links .has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-links .has-dropdown > a::after {
  content: '▾';
  font-size: .7em;
  line-height: 1;
}
.nav-links .dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(15,29,46,.12);
  padding: 6px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 200;
}
.nav-links .has-dropdown:hover .dropdown,
.nav-links .has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-links .dropdown a {
  display: block;
  padding: 8px 16px;
  border-radius: 0;
  white-space: nowrap;
}
.nav-links .dropdown a:hover,
.nav-links .dropdown a:focus-visible {
  background: var(--blue-light);
  color: var(--blue);
}

/* ── MOBILE MENU TOGGLE ── */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: var(--blue-light);
  border-color: var(--blue);
  color: var(--blue);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 12px;
    z-index: 999;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links li {
    position: relative;
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 12px 14px;
    font-size: 1rem;
    color: var(--text);
  }

  .nav-links a.active {
    background: var(--blue-light);
    color: var(--blue);
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  /* Mobile dropdown */
  .nav-links .dropdown {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--blue-light);
    border-radius: 0;
    padding: 4px 0 4px 12px;
    margin: 4px 0 4px 14px;
    background: transparent;
    min-width: auto;
  }

  .nav-links .has-dropdown.dropdown-open > .dropdown {
    display: block;
  }

  .nav-links .has-dropdown > a {
    justify-content: space-between;
  }

  .nav-links .has-dropdown > a::after {
    content: '+';
    font-size: 1.1rem;
    color: var(--blue);
  }

  .nav-links .has-dropdown.dropdown-open > a::after {
    content: '−';
  }
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font);
  font-weight: 600;
  font-size: .92rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}
.btn-primary:hover,
.btn-primary:focus-visible { background: var(--blue-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(43,108,176,.35); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: #fff;
  color: var(--text);
  font-family: var(--font);
  font-weight: 600;
  font-size: .92rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}
.btn-secondary:hover,
.btn-secondary:focus-visible { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font);
  font-weight: 600;
  font-size: .95rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}
.btn-cta:hover,
.btn-cta:focus-visible { background: var(--blue-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(43,108,176,.35); }

/* ── SECTION LABELS & HEADINGS ── */
.section-label {
  font-family: var(--font);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
  text-align: center;
}

/* ── HERO ── */
.hero {
  padding: 80px 40px 0;
  background: var(--bg);
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content { max-width: 560px; }

.hero-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-photo {
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  margin-left: auto;
}

.hero-image {
  max-width: var(--max-width);
  margin: 80px auto 0;
  padding: 0 40px;
}

.hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ── STATS ── */
.stats-section {
  padding: 48px 40px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ── SERVICES / CARDS ── */
.services-section {
  padding: 100px 40px;
  background: var(--bg);
}

.section-intro {
  max-width: var(--max-width);
  margin: 0 auto 56px;
}

.cards-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card h3 {
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}

.card p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.card-list {
  list-style: none;
}

.card-list li {
  position: relative;
  padding-left: 22px;
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.5;
}

.card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  background: var(--blue);
  border-radius: 2px;
  transform: rotate(45deg);
}

/* ── QUOTE ── */
.quote-section {
  padding: 80px 40px;
  background: var(--bg-white);
  text-align: center;
}

.quote-section blockquote {
  max-width: 720px;
  margin: 0 auto;
}

.quote-text {
  font-size: 1.35rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 20px;
}

.quote-author {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── WHY SECTION ── */
.why-section {
  padding: 100px 40px;
  background: var(--bg);
}

.why-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.why-item h3 {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.why-item p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── PROCESS ── */
.process-section {
  padding: 100px 40px;
  background: var(--bg-white);
}

.process-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.process-step .step-number {
  font-family: var(--font);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 12px;
  opacity: .7;
}

.process-step h3 {
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.process-step p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── DARK QUOTE / APPROACH ── */
.dark-section {
  padding: 100px 40px;
  background: var(--navy);
  color: #fff;
}

.dark-section .section-label { color: var(--blue-soft); }

.dark-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: center;
}

.dark-section .section-heading { color: #fff; }

.approach-quote {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255,255,255,.9);
}

.approach-author {
  display: block;
  margin-top: 20px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

/* ── TRUSTED BY ── */
.trust-section {
  padding: 60px 40px;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-section .section-label {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 36px 56px;
  max-width: var(--max-width);
  margin: 0 auto;
  list-style: none;
}

.logo-grid li {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-grid img {
  max-width: 120px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .65;
  transition: var(--transition);
}

.logo-grid li.logo-large img {
  max-width: 156px;
  max-height: 62px;
}

.logo-grid li.logo-xlarge img {
  max-width: 204px;
  max-height: 82px;
}

.logo-grid img:hover,
.logo-grid img:focus-visible {
  filter: grayscale(0%);
  opacity: 1;
}

/* ── TESTIMONIALS ── */
.testimonial-section { padding: 100px 40px; background: var(--bg); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.quote-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.quote-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 28px;
  flex-grow: 1;
}

.testimonial-author {
  font-weight: 700;
  font-size: .95rem;
  color: var(--text);
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── FAQ ── */
.faq-section { padding: 100px 40px; background: var(--bg-white); }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .2s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover,
.faq-item summary:focus-visible { background: var(--blue-light); }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--blue);
  line-height: 1;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item p {
  padding: 0 24px 20px;
  font-size: .96rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── CTA ── */
.cta-section {
  padding: 100px 40px;
  background: var(--bg);
  text-align: center;
}

.cta-box {
  max-width: 720px;
  margin: 0 auto;
}

.cta-box h2 {
  font-family: var(--font);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.cta-box p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 100px 40px;
  text-align: center;
}

.page-hero .section-label { color: var(--blue-soft); }
.page-hero .section-heading { color: #fff; margin-bottom: 14px; }
.page-hero .section-sub { color: rgba(255,255,255,.85); margin: 0 auto; }

/* ── CASE STUDIES & INSIGHTS ── */
.case-studies-section,
.insights-section { padding: 100px 40px; background: var(--bg); }

.case-study-card {
  max-width: 900px;
  margin: 0 auto 32px;
  background: var(--bg-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.case-study-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.case-study-header {
  padding: 28px 32px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.case-study-header h3 {
  font-family: var(--font);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.case-study-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 5px 12px;
  border-radius: 100px;
}

.case-study-logo {
  display: block;
  max-height: 56px;
  width: auto;
  max-width: 220px;
  margin: 24px 32px 0;
  object-fit: contain;
}

.case-study-body {
  padding: 28px 32px;
}

.case-study-body p {
  font-size: .96rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.case-study-body p:last-child { margin-bottom: 0; }

.case-study-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.case-study-result {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid var(--border);
}

.case-study-result strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 4px;
}

.case-study-result span {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.insight-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.insight-content { padding: 28px; display: flex; flex-direction: column; flex-grow: 1; }

.insight-tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.insight-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.insight-card p {
  font-size: .94rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
  flex-grow: 1;
}

.insight-meta {
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ── ABOUT PAGE ── */
.about-hero { background: var(--bg); padding: 100px 40px; text-align: center; }
.about-hero h1 { font-family: var(--font); font-size: clamp(2.2rem, 4vw, 3.4rem); color: var(--text); margin-bottom: 14px; }
.about-hero p { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.75; }

.about-mission { padding: 100px 40px; max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: center; }
.about-photo { width: 100%; border-radius: var(--radius); display: block; box-shadow: var(--shadow-lg); }
.about-content .section-label { text-align: left; }
.about-content h2 { font-family: var(--font); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--text); margin-bottom: 20px; line-height: 1.2; }
.about-content p { font-size: .97rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 16px; }
.about-content h3 { font-family: var(--font); font-size: 1.3rem; font-weight: 700; color: var(--text); margin: 32px 0 12px; }
.founder-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--blue-light); border: 1px solid var(--border); padding: 10px 18px; border-radius: 100px; font-size: .85rem; font-weight: 700; color: var(--blue); margin-top: 8px; }
.founder-badge svg { width: 16px; height: 16px; stroke: var(--blue); flex-shrink: 0; }

.values-section { padding: 100px 40px; background: var(--bg-white); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; max-width: var(--max-width); margin: 0 auto; }
.value-card { background: var(--bg); border-radius: var(--radius); padding: 28px 24px; text-align: center; border: 1.5px solid var(--border); transition: var(--transition); }
.value-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow); }
.value-icon { width: 52px; height: 52px; background: var(--blue-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.value-icon svg { width: 26px; height: 26px; stroke: var(--blue); }
.value-card h3 { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.value-card p { font-size: .87rem; color: var(--text-muted); line-height: 1.6; }

/* ── ASSOCIATES ── */
.associates-section { padding: 100px 40px; background: var(--bg); }
.associates-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; max-width: var(--max-width); margin: 0 auto; }
.associate-card { background: var(--bg-white); border-radius: var(--radius); padding: 32px; text-align: center; border: 1.5px solid var(--border); transition: var(--transition); }
.associate-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow); }
.associate-photo { width: 160px; height: 160px; object-fit: cover; border-radius: 50%; margin: 0 auto 20px; border: 3px solid var(--blue-light); }
.associate-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.associate-role { font-size: .9rem; font-weight: 600; color: var(--blue); margin-bottom: 16px; }
.associate-bio { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

@media (max-width: 768px) {
  .associates-section { padding: 72px 20px; }
  .associate-photo { width: 130px; height: 130px; }
}

/* ── SERVICES PAGE ── */
.services-hero { background: var(--navy); color: #fff; padding: 100px 40px; text-align: center; }
.services-hero .section-label { color: var(--blue-soft); }
.services-hero h1 { font-family: var(--font); font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 700; margin-bottom: 14px; }
.services-hero p { font-size: 1.1rem; opacity: .92; max-width: 580px; margin: 0 auto; line-height: 1.7; }

.services-tabs { display: flex; justify-content: center; gap: 12px; padding: 36px 40px 0; flex-wrap: wrap; max-width: var(--max-width); margin: 0 auto; }
.tab-btn { padding: 10px 24px; border-radius: 100px; border: 1.5px solid var(--border); background: #fff; color: var(--text-muted); font-weight: 700; font-size: .875rem; cursor: pointer; transition: var(--transition); font-family: var(--font); }
.tab-btn:hover, .tab-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.services-main { max-width: var(--max-width); margin: 0 auto; padding: 56px 40px 100px; }
.service-panel { display: none; }
.service-panel.active { display: block; animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.service-intro { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: start; margin-bottom: 48px; }
.service-intro-text h2 { font-family: var(--font); font-size: 2rem; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.service-intro-text p { font-size: .97rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 14px; }
.service-aside { background: var(--bg-white); border-radius: var(--radius); padding: 28px; border: 1.5px solid var(--border); position: sticky; top: 100px; }
.service-aside h3 { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 18px; }
.outcome-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: .88rem; color: var(--text); line-height: 1.55; }
.outcome-check { width: 18px; height: 18px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.outcome-check svg { width: 10px; height: 10px; stroke: #fff; stroke-width: 3; fill: none; }

.pillars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 8px; }
.pillar-card { background: var(--bg-white); border-radius: var(--radius); padding: 24px; border: 1.5px solid var(--border); transition: var(--transition); }
.pillar-card:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: var(--shadow); }
.pillar-icon { width: 44px; height: 44px; background: var(--blue-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.pillar-icon svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.pillar-card h4 { font-size: .95rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.pillar-card p { font-size: .87rem; line-height: 1.6; color: var(--text-muted); }

.consulting-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 24px; }
.consult-card { background: var(--bg-white); border-radius: var(--radius); padding: 24px; border: 1.5px solid var(--border); transition: var(--transition); display: flex; gap: 16px; align-items: flex-start; }
.consult-card:hover { border-color: var(--blue); background: var(--blue-light); transform: translateY(-2px); }
.consult-icon { width: 40px; height: 40px; background: var(--blue-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.consult-card:hover .consult-icon { background: #fff; }
.consult-icon svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.consult-text h4 { font-size: .95rem; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.consult-text p { font-size: .88rem; line-height: 1.6; color: var(--text-muted); }

.services-cta-band { background: var(--bg-white); border-radius: var(--radius); padding: 48px; text-align: center; border: 1.5px solid var(--border); margin-top: 48px; }
.services-cta-band h3 { font-family: var(--font); font-size: 1.8rem; color: var(--text); margin-bottom: 12px; }
.services-cta-band p { font-size: .97rem; color: var(--text-muted); margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ── CONTACT PAGE ── */
.contact-hero { background: var(--navy); color: #fff; text-align: center; padding: 100px 40px; }
.contact-hero .section-label { color: var(--blue-soft); }
.contact-hero h1 { font-family: var(--font); font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 700; margin-bottom: 14px; }
.contact-hero p { font-size: 1.1rem; opacity: .92; max-width: 520px; margin: 0 auto; line-height: 1.7; }
.contact-main { max-width: var(--max-width); margin: 0 auto; padding: 100px 40px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info h2 { font-family: var(--font); font-size: 1.9rem; color: var(--text); margin-bottom: 14px; }
.contact-info > p { font-size: .97rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 40px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-detail-icon { width: 44px; height: 44px; background: var(--blue-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-detail-text span { display: block; font-size: .75rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 3px; }
.contact-detail-text a, .contact-detail-text p { font-size: 1rem; font-weight: 600; color: var(--text); text-decoration: none; }
.contact-detail-text a { display: inline-block; padding: 2px 0; min-height: 24px; }
.contact-detail-text a:hover { color: var(--blue); text-decoration: underline; }

.contact-trust { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border); }
.contact-trust h4 { font-size: .78rem; font-weight: 700; color: var(--text-muted); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.trust-items { display: flex; flex-direction: column; gap: 12px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: var(--text-muted); }
.trust-check { width: 20px; height: 20px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-check svg { width: 11px; height: 11px; stroke: #fff; fill: none; stroke-width: 3; }

.contact-form-box { background: var(--bg-white); border-radius: var(--radius); padding: 44px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.contact-form-box h3 { font-family: var(--font); font-size: 1.5rem; color: var(--text); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .85rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.form-group input[aria-invalid="true"], .form-group textarea[aria-invalid="true"] { border-color: #dc2626; background: #fef2f2; }
.error-msg { display: block; color: #dc2626; font-size: .78rem; font-weight: 600; margin-top: 4px; min-height: 1em; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 8px; font-family: var(--font); font-size: .92rem; color: var(--text); background: var(--bg); transition: var(--transition); outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(43,108,176,.1); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 15px; background: var(--blue); color: #fff; font-family: var(--font); font-size: .95rem; font-weight: 700; border: none; border-radius: 8px; cursor: pointer; transition: var(--transition); margin-top: 8px; }
.form-submit:hover { background: var(--blue-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(43,108,176,.35); }
.form-note { font-size: .78rem; color: var(--text-muted); text-align: center; margin-top: 12px; }
#form-success { display: none; text-align: center; padding: 40px 20px; }
.success-icon { width: 64px; height: 64px; background: var(--blue-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.success-icon svg { width: 32px; height: 32px; stroke: var(--blue); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
#form-success h4 { font-family: var(--font); font-size: 1.5rem; color: var(--text); margin-bottom: 10px; }
#form-success p { font-size: .95rem; color: var(--text-muted); line-height: 1.65; }

.booking-section { padding: 100px 40px; background: var(--bg-white); text-align: center; }
.booking-box { max-width: 700px; margin: 0 auto; background: var(--bg); border-radius: var(--radius); padding: 48px; border: 1.5px solid var(--border); }
.booking-box h2 { font-size: 1.7rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.booking-box p { font-size: 1rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }
.calendly-placeholder { min-height: 320px; display: flex; align-items: center; justify-content: center; background: var(--blue-light); border-radius: var(--radius); border: 2px dashed rgba(43,108,176,.25); }
.calendly-placeholder p { color: var(--text-muted); font-size: .9rem; text-align: center; padding: 20px; margin: 0; }
.calendly-placeholder code { background: #fff; padding: 2px 6px; border-radius: 4px; font-size: .8rem; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 56px 40px 32px;
}

.footer-inner { max-width: var(--max-width); margin: 0 auto; }

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
  gap: 32px;
}

.footer-brand p {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  margin-top: 10px;
  max-width: 260px;
}

.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.footer-logo-text { font-size: 1.1rem; font-weight: 800; color: #fff; letter-spacing: .08em; text-transform: uppercase; }

.footer-links { display: flex; gap: 12px 24px; flex-wrap: wrap; }
.footer-links a { display: inline-block; color: rgba(255,255,255,.65); text-decoration: none; font-size: .88rem; font-weight: 500; transition: color .2s; padding: 4px 0; min-height: 24px; }
.footer-links a:hover,
.footer-links a:focus-visible { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.55); }

/* ── FOCUS & MOTION ── */
:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 3px;
  border-radius: 2px;
}

/* High-contrast focus for buttons and links on coloured backgrounds */
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-cta:focus-visible,
.nav-cta:focus-visible,
.form-submit:focus-visible {
  outline-color: currentColor;
  outline-offset: 4px;
}

/* Form inputs already have a custom focus style; keep it but add outline fallback */
.form-group input:focus-visible,
.form-group textarea:focus-visible,
.form-group select:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .hero { padding: 60px 20px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo { margin: 0 auto; max-width: 360px; }
  .hero-image { padding: 0 20px; margin-top: 48px; }
  .hero-image img { height: 280px; }
  .stats-grid { grid-template-columns: 1fr; gap: 24px; }
  .dark-inner { grid-template-columns: 1fr; gap: 32px; }
  .services-section, .why-section, .process-section, .testimonial-section,
  .faq-section, .cta-section, .case-studies-section, .insights-section,
  .page-hero, .booking-section, .quote-section, .trust-section,
  .about-hero, .about-mission, .values-section,
  .services-hero, .services-main, .services-tabs,
  .contact-hero, .contact-main { padding-left: 20px; padding-right: 20px; }
  .about-mission { grid-template-columns: 1fr; gap: 48px; }
  .service-intro { grid-template-columns: 1fr; }
  .service-aside { position: static; }
  .contact-main { grid-template-columns: 1fr; padding: 56px 20px; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-box { padding: 28px 20px; }
  footer { padding: 48px 20px 24px; }
  .footer-top { flex-direction: column; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; }
  .logo-grid { gap: 24px 32px; }
  .logo-grid img { max-width: 100px; max-height: 40px; }
  .logo-grid li.logo-large img { max-width: 130px; max-height: 52px; }
  .logo-grid li.logo-xlarge img { max-width: 170px; max-height: 68px; }
  .page-hero { padding-top: 72px; padding-bottom: 72px; }
  .section-heading { font-size: clamp(1.7rem, 7vw, 2.4rem); }
}

/* ── CARD LISTS & DETAIL PAGES ── */
.card-template,
.result-template,
.list-template,
.array-item-template { display: none; }

.case-studies-list {
  max-width: 900px;
  margin: 0 auto;
}

.case-study-card .read-more,
.insight-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-weight: 600;
  font-size: .92rem;
  color: var(--blue);
  text-decoration: none;
}

.case-study-card .read-more:hover,
.insight-card .read-more:hover { color: var(--blue-hover); text-decoration: underline; }

.insight-card .read-more { margin-top: auto; padding-top: 16px; }

.detail-article {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 40px 120px;
}

.detail-header {
  position: sticky;
  top: 72px;
  z-index: 900;
  background: var(--bg);
  padding: 24px 0;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.detail-logo {
  display: block;
  max-height: 56px;
  width: auto;
  max-width: 200px;
  margin-bottom: 14px;
  object-fit: contain;
}

.back-link {
  display: inline-block;
  margin-bottom: 20px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}

.back-link:hover { text-decoration: underline; }

.detail-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue);
  background: var(--blue-light);
  padding: 6px 12px;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.detail-header h1,
.detail-header h2 {
  font-size: 2.4rem;
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--text);
}

.detail-meta {
  font-size: .88rem;
  color: var(--text-muted);
  margin: 0;
}

.detail-body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.detail-section h2,
.detail-section h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin: 0 0 10px;
}

.detail-section p,
.detail-section .rich-text {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.detail-section .rich-text p {
  margin: 0 0 14px;
}

.detail-section .rich-text p:last-child {
  margin-bottom: 0;
}

.detail-section .rich-text ul,
.detail-section .rich-text ol {
  margin: 0 0 14px;
  padding-left: 24px;
}

.detail-section .rich-text li {
  margin-bottom: 8px;
}

.detail-section .rich-text strong,
.detail-section .rich-text b {
  color: var(--text);
}

.detail-section .rich-text u {
  text-underline-offset: 3px;
}

.detail-lead {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0 0 8px;
}

.detail-text p {
  margin: 0 0 18px;
  color: var(--text-muted);
  line-height: 1.7;
}

.detail-text p:last-child { margin-bottom: 0; }

.detail-text ul,
.detail-text ol {
  margin: 0 0 18px;
  padding-left: 24px;
  color: var(--text-muted);
  line-height: 1.7;
}

.detail-text li { margin-bottom: 8px; }

.detail-text strong,
.detail-text b { color: var(--text); }

.detail-text u { text-underline-offset: 3px; }

@media (max-width: 900px) {
  .detail-article { padding: 64px 20px 80px; }
  .detail-header h1 { font-size: 1.9rem; }
}
