/* === GLOBAL MOBILE OVERFLOW FIX === */
html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ============================================================
   GREYOPS.IO — STYLESHEET v2
   Fonts: Libre Baskerville (headings) + Inter (body)
   ============================================================ */

/* === VARIABLES === */
:root {
  --bg: #f8f7f5;
  --surface: #ffffff;
  --surface-2: #f0efed;
  --accent: #996d1a; /* warm cream/stone — replaces gold */
  --accent-dim: rgba(184, 134, 45, 0.08);
  --accent-border: rgba(153, 109, 26, 0.3);
  --text: #1a1a1a;
  --text-muted: #5a5856;
  --text-subtle: #b0ada8;
  --border: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(0, 0, 0, 0.15);
  --font-serif: "Plus Jakarta Sans", -apple-system, sans-serif;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --max-w: 1240px;
  --radius: 1px;
  --transition: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.18s ease;
}

/* === RESET === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}
h1 {
  font-size: clamp(2.4rem, 4.8vw, 4.6rem);
}
h2 {
  font-size: clamp(1.9rem, 3.5vw, 3.2rem);
}
h3 {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}
h4 {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}
em {
  font-style: italic;
}
p {
  font-size: clamp(0.875rem, 1.1vw, 0.95rem);
  color: var(--text-muted);
  line-height: 1.9;
}

/* === LAYOUT === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.section {
  padding: 7rem 0;
}
.section--dark {
  background: var(--surface);
}
.section__header {
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section__header h2 {
  margin-top: 0.6rem;
}
.section__subhead {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-subtle);
  font-style: italic;
}

/* === UTILITIES === */
.label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}
.divider {
  width: 32px;
  height: 1px;
  background: var(--accent);
  margin: 1.5rem 0;
  opacity: 0.6;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.78rem 1.7rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  transition: var(--transition);
  border-radius: var(--radius);
  white-space: nowrap;
}
.btn--primary {
  background: var(--text);
  color: var(--bg);
  font-weight: 600;
}
.btn--primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 255, 255, 0.08);
}
.btn--ghost {
  border: 1px solid var(--border-hover);
  color: var(--text-muted);
}
.btn--ghost:hover {
  border-color: var(--accent-border);
  color: var(--accent);
}
.btn--outline {
  border: 1px solid var(--border-hover);
  color: var(--text-muted);
}
.btn--outline:hover {
  border-color: var(--accent-border);
  color: var(--text);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 2rem 0;
  transition:
    background 0.5s ease,
    padding 0.4s ease,
    border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.1rem 0;
  border-bottom-color: var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo-text {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  color: var(--text);
}
.nav__logo-img {
  height: 46px;
  width: auto;
  display: block;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav__link {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.55);
  transition: color var(--transition-fast);
  font-weight: 400;
}
.nav__link:hover,
.nav__link.active {
  color: var(--text);
}
.nav__cta {
  margin-left: 0.4rem;
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  position: relative;
  z-index: 101;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: var(--transition-fast);
}
.nav__hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 6rem;
  overflow: hidden;
  background: var(--bg);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("../images/hero-bg.jpg") center 35% / cover no-repeat;
  filter: brightness(0.4) saturate(0);
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(8, 8, 8, 0.1) 0%,
    rgba(8, 8, 8, 0.3) 38%,
    rgba(8, 8, 8, 0.75) 65%,
    rgba(8, 8, 8, 0.95) 88%,
    rgba(8, 8, 8, 1) 100%
  );
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__content {
  max-width: 720px;
  /* Intentionally left-aligned, not centred */
}

.hero__title {
  font-size: clamp(1.7rem, 2.6vw, 2.9rem);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
  margin-top: 0.5rem;
  max-width: 640px;
}

.hero__title em {
  font-style: italic;
  color: var(--accent);
}

.hero__sub {
  font-size: clamp(0.82rem, 1.1vw, 0.93rem);
  color: rgba(140, 136, 130, 0.9);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.88;
}

.hero__actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero__scroll-cue {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-muted);
  opacity: 0.5;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 36px;
  background: currentColor;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(0.5);
    opacity: 0.9;
  }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0;
}
.stats__grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.stats__item {
  padding: 3rem 5vw;
  text-align: center;
  border-right: 1px solid var(--border);
  flex: 0 1 auto;
}
.stats__item:last-child {
  border-right: none;
}

.stats__value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
  margin-bottom: 0.6rem;
}
.stats__pre,
.stats__suffix {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  color: var(--accent);
  font-weight: 400;
  line-height: 1;
  align-self: flex-end;
  padding-bottom: 0.12em;
}
.stats__pre {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-right: 0.05em;
}
.stats__num {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  color: var(--text);
  font-weight: 400;
  line-height: 1;
  display: inline-block;
}
.stats__label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--font-sans);
  line-height: 1.5;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--bg);
  padding: 3rem 2.5rem;
  transition: background var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  background: var(--surface);
}
.service-card--featured {
  background: var(--surface);
}
.service-card--featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  opacity: 0.4;
}
.service-card__number {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--text-subtle);
  margin-bottom: 2rem;
}
.service-card__title {
  font-size: clamp(1.15rem, 1.7vw, 1.6rem);
  margin-bottom: 1rem;
  font-weight: 400;
}
.service-card__body {
  font-size: 0.86rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  flex: 1;
}
.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.8rem;
}
.service-card__tags span {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
  border: 1px solid var(--border);
  padding: 0.28rem 0.65rem;
}
.service-card:hover .service-card__tags span {
  border-color: var(--accent-border);
  color: var(--text-muted);
}
.service-card__link {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-fast);
  margin-top: auto;
}
.service-card:hover .service-card__link,
.service-card__link:hover {
  color: var(--accent);
  gap: 0.7rem;
}

/* ============================================================
   DIFFERENTIATOR
   ============================================================ */
.differentiator {
  position: relative;
  padding: 9rem 0;
  overflow: hidden;
}
.differentiator__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 90% at 15% 50%,
      rgba(200, 195, 187, 0.03) 0%,
      transparent 70%
    ),
    var(--surface-2);
  z-index: 0;
}
.differentiator__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.differentiator__title {
  font-size: clamp(1.9rem, 3.8vw, 3.8rem);
  line-height: 1.14;
  margin-bottom: 1.8rem;
  font-weight: 400;
  margin-top: 0.6rem;
}
.differentiator__title em {
  font-style: italic;
  color: var(--accent);
}
.differentiator__body {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.95;
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.industry-card {
  background: var(--bg);
  padding: 2.5rem 1.8rem 2rem;
  transition: background var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
}
.industry-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}
.industry-card:hover::after {
  transform: scaleX(1);
  opacity: 0.4;
}
.industry-card:hover {
  background: var(--surface);
}
.industry-card__num {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--text-subtle);
  display: block;
  margin-bottom: 0.8rem;
}
.industry-card h4 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 0.4rem;
}
.industry-card p {
  font-size: 0.8rem;
  line-height: 1.8;
  color: var(--text-muted);
  flex: 1;
}
.industry-card__link {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-subtle);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.8rem;
  transition: var(--transition-fast);
}
.industry-card:hover .industry-card__link {
  color: var(--accent);
  gap: 0.6rem;
}

/* ============================================================
   TRACK RECORD
   ============================================================ */
.track-record {
  overflow: hidden;
}

.cases-swiper {
  position: relative;
  overflow: hidden;
  padding-bottom: 4.5rem !important;
}
.case-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 3rem 2.8rem;
  height: 100%;
  transition: border-color var(--transition);
}
.case-card:hover {
  border-color: var(--accent-border);
}
.case-card__sector {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.case-card__value {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--text);
  line-height: 1;
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.03em;
}
.case-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 2rem;
}
.case-card__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.case-card__metrics span {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4a4845;
  border: 1px solid #222220;
  padding: 0.28rem 0.65rem;
}

/* Swiper overrides */
.cases-swiper .swiper-pagination {
  bottom: 0;
}
.cases-swiper .swiper-pagination-bullet {
  background: var(--text-subtle);
  opacity: 1;
  width: 5px;
  height: 5px;
}
.cases-swiper .swiper-pagination-bullet-active {
  background: var(--accent);
  width: 20px;
  border-radius: 3px;
}
.cases-swiper .swiper-button-prev,
.cases-swiper .swiper-button-next {
  color: var(--text-muted);
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  top: auto;
  bottom: 0;
  right: 0;
  left: auto;
  border-radius: 0;
  transition: var(--transition-fast);
}
.cases-swiper .swiper-button-prev {
  right: 44px;
}
.cases-swiper .swiper-button-prev:hover,
.cases-swiper .swiper-button-next:hover {
  border-color: var(--accent-border);
  color: var(--accent);
}
.cases-swiper .swiper-button-prev::after,
.cases-swiper .swiper-button-next::after {
  font-size: 0.8rem;
  font-weight: 700;
}

/* ============================================================
   STORY
   ============================================================ */
.story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}
.story__text h2 {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.story__text p {
  margin-bottom: 1.1rem;
}
.story__text p:last-child {
  margin-bottom: 0;
}

.story__blockquote {
  position: relative;
  padding: 3rem 3rem 2.5rem;
  background: var(--surface);
  border-left: 1px solid var(--accent);
  border-left-width: 1px;
}
.story__quote-mark {
  font-family: var(--font-serif);
  font-size: 7rem;
  color: var(--accent);
  opacity: 0.1;
  position: absolute;
  top: -1.5rem;
  left: 1.5rem;
  line-height: 1;
  font-weight: 400;
  pointer-events: none;
}
.story__blockquote p {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  color: var(--text);
  line-height: 1.4;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.story__blockquote cite {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-style: normal;
  text-transform: uppercase;
}

/* ============================================================
   LEADERSHIP
   ============================================================ */
.leadership__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.team-card {
  background: var(--surface);
  padding: 2.2rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: background var(--transition);
}
.team-card:hover {
  background: var(--surface-2);
}
.team-card__avatar {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border-hover);
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card__name {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
  font-family: var(--font-serif);
  letter-spacing: -0.01em;
}
.team-card__title {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   GLOBAL OFFICES
   ============================================================ */
.offices__grid {
  padding: 0;
}
.office-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
  transition: background var(--transition);
  position: relative;
}
.office-card:hover {
  background: var(--surface);
}
.office-card__region {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 1.2rem;
}
.office-card__city {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 400;
  margin-bottom: 0.3rem;
  color: var(--text);
}
.office-card__country {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.5;
}
.office-card__tz {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
}

/* ============================================================
   INSIGHTS
   ============================================================ */
.insights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.insight-card {
  background: var(--surface);
  padding: 2.8rem 2.5rem;
  transition: background var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.insight-card:hover {
  background: var(--surface-2);
}
.insight-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}
.insight-card__category {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.insight-card__date {
  font-size: 0.68rem;
  color: var(--text-subtle);
}
.insight-card__title {
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  line-height: 1.35;
  margin-bottom: 1rem;
  font-weight: 400;
  font-family: var(--font-serif);
}
.insight-card__excerpt {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.9;
  flex: 1;
  margin-bottom: 1.5rem;
}
.insight-card__link {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-fast);
  margin-top: auto;
}
.insight-card__link:hover {
  gap: 0.7rem;
}

/* ============================================================
   CAREERS
   ============================================================ */
.careers__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
}
.careers__text h2 {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.careers__text p {
  margin-bottom: 1.1rem;
}
.careers__text p:last-child {
  margin-bottom: 0;
}

.careers__values {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.careers__value {
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--border);
}
.careers__value:first-child {
  border-top: 1px solid var(--border);
}
.careers__value-title {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.careers__value p {
  font-size: 0.84rem;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 50% 50%,
    rgba(200, 195, 187, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.cta-band__title {
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  margin-bottom: 1.2rem;
  margin-top: 0.5rem;
  letter-spacing: -0.025em;
}
.cta-band__sub {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 460px;
  margin: 0 auto 2.5rem;
  line-height: 1.9;
}
.cta-band__actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 4rem 0 3rem;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.footer__logo {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  display: block;
  margin-bottom: 0.5rem;
}
.footer__tagline {
  font-size: 0.72rem;
  color: var(--text-subtle);
  letter-spacing: 0.06em;
}
.footer__nav {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
  align-items: center;
}
.footer__nav a {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}
.footer__nav a:hover {
  color: var(--text);
}
.footer__social {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.footer__social a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
}
.footer__social a:hover {
  color: var(--accent);
}
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer__disclaimer {
  font-size: 0.7rem;
  color: var(--text-subtle);
  line-height: 1.7;
  max-width: 680px;
}
.footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__copy {
  font-size: 0.7rem;
  color: var(--text-subtle);
}
.footer__legal-links {
  display: flex;
  gap: 1.5rem;
}
.footer__legal-links a {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-subtle);
  transition: color var(--transition-fast);
}
.footer__legal-links a:hover {
  color: var(--text-muted);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .industries__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .offices__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .section {
    padding: 5rem 0;
  }
  .services__grid {
    grid-template-columns: 1fr;
  }
  .leadership__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .insights__grid {
    grid-template-columns: 1fr;
  }
  .story__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .careers__inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats__item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .stats__item:nth-child(2n) {
    border-right: none;
  }
  .stats__item:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.2rem;
  }
  /* Nav mobile */
  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(248, 247, 245, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 99;
  }
  .nav__links.open {
    display: flex;
  }
  .nav__link {
    font-size: 1.1rem;
    letter-spacing: 0.15em;
  }
  .nav__hamburger {
    display: flex;
  }
  /* Hero */
  .hero {
    padding-bottom: 4.5rem;
    padding-top: 0;
    align-items: flex-end;
  }
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero__scroll-cue {
    display: none;
  }
  /* Industries */
  .industries__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Leadership */
  .leadership__grid {
    grid-template-columns: 1fr;
  }
  /* Footer */
  .footer__top {
    flex-direction: column;
    gap: 1.8rem;
  }
  .footer__legal {
    flex-direction: column;
    align-items: flex-start;
  }
  /* Offices */
  .offices__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  .stats__grid {
    grid-template-columns: 1fr 1fr;
  }
  .industries__grid {
    grid-template-columns: 1fr;
  }
  .offices__grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 4rem 0;
  }
  .differentiator {
    padding: 5rem 0;
  }
  .cta-band {
    padding: 5rem 0;
  }
  .cases-swiper .swiper-button-prev,
  .cases-swiper .swiper-button-next {
    display: none;
  }
}

/* ============================================================
   AOS OVERRIDES
   ============================================================ */
[data-aos] {
  pointer-events: none;
}
[data-aos].aos-animate {
  pointer-events: auto;
}

/* ============================================================
   ARTICLE / INNER PAGE BASE
   ============================================================ */
.page-header {
  padding: 9rem 0 5rem;
  border-bottom: 1px solid var(--border);
}
.page-header__back {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  transition: color var(--transition-fast);
}
.page-header__back:hover {
  color: var(--accent);
}
.page-header__meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.page-header__cat {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.page-header__date {
  font-size: 0.72rem;
  color: var(--text-subtle);
}
.page-header h1 {
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  line-height: 1.2;
  max-width: 760px;
  margin-bottom: 1.2rem;
}
.page-header__lead {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.85;
}
.article-body {
  padding: 5rem 0 7rem;
  max-width: 720px;
}
.article-body h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  margin: 3rem 0 1rem;
  font-weight: 400;
}
.article-body h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  margin: 2rem 0 0.8rem;
}
.article-body p {
  margin-bottom: 1.4rem;
  font-size: 0.95rem;
  line-height: 1.95;
}
.article-body ul,
.article-body ol {
  margin: 1rem 0 1.4rem 1.2rem;
}
.article-body li {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
}
.article-body ul li {
  list-style: disc;
}
.article-body ol li {
  list-style: decimal;
}
.article-cta {
  margin-top: 4rem;
  padding: 3rem;
  background: var(--surface);
  border-left: 1px solid var(--accent);
  border-left-width: 1px;
  opacity: 0.7;
}
.article-cta p {
  margin-bottom: 1.2rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  padding: 5rem 0 7rem;
  align-items: start;
}
.contact-info h3 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  margin-bottom: 1rem;
}
.contact-info p {
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
}
.contact-detail {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-detail__item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.contact-detail__label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-subtle);
}
.contact-detail__value {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.contact-covers {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.contact-covers h4 {
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}
.contact-covers__list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.contact-covers__list li {
  font-size: 0.84rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}
.contact-covers__list li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  min-width: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
  margin-top: 0.55em;
}
.contact-embed {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2.5rem;
  min-height: 500px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ============================================================
   CAREERS PAGE
   ============================================================ */
.careers-page-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  padding: 5rem 0 4rem;
}
.careers-page-intro p {
  margin-bottom: 1.1rem;
  font-size: 0.9rem;
}
.roles-section {
  padding: 4rem 0 7rem;
}
.roles-section h2 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  margin-bottom: 2.5rem;
}
.no-roles {
  padding: 4rem 3rem;
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: center;
}
.no-roles p {
  max-width: 420px;
  margin: 0 auto 1.5rem;
  font-size: 0.88rem;
}

@media (max-width: 768px) {
  .careers-page-intro {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ============================================================
   NAVIGATION — HOVER DROPDOWNS
   ============================================================ */
.nav__group {
  position: relative;
  display: flex;
  align-items: center;
}
.nav__group-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.55);
  transition: color 0.18s ease;
  font-weight: 400;
  cursor: default;
  padding: 0.5rem 0;
}
.nav__group:hover .nav__group-label {
  color: var(--text);
}

.nav__sub {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  display: flex;
  gap: 1.2rem;
  padding: 0.75rem 1.4rem;
  background: rgba(248, 247, 245, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
  white-space: nowrap;
  z-index: 200;
}
.nav__group:hover .nav__sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__sub a {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(120, 116, 112, 0.9);
  transition: color 0.18s ease;
  padding: 0.3rem 0;
}
.nav__sub a:hover {
  color: var(--accent);
}

/* Mobile nav groups */
@media (max-width: 768px) {
  .nav__group {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
  .nav__group-label {
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 0.6rem;
    color: var(--text);
  }
  .nav__sub {
    position: static;
    transform: none;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    padding: 0 0 1.5rem;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav__sub a {
    font-size: 0.85rem;
    color: rgba(26, 26, 26, 0.45);
  }
}

/* ============================================================
   FOOTER — EXPANDED MULTI-COLUMN
   ============================================================ */
.footer__columns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer__col-title {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  display: block;
  font-family: var(--font-sans);
  font-weight: 500;
}
.footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__col-links a {
  font-size: 0.75rem;
  color: var(--text-subtle);
  transition: color 0.18s ease;
  letter-spacing: 0.02em;
}
.footer__col-links a:hover {
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .footer__columns {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .footer__columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* ============================================================
   DEFAULT BUTTON FALLBACK — plain .btn gets primary styling
   ============================================================ */
a.btn:not(.btn--primary):not(.btn--outline):not(.btn--ghost):not(.nav__cta) {
  background: var(--text);
  color: var(--bg);
  font-weight: 600;
}
a.btn:not(.btn--primary):not(.btn--outline):not(.btn--ghost):not(
    .nav__cta
  ):hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 255, 255, 0.08);
}

/* ============================================================
   LABEL ALIASES — service/industry hero labels
   ============================================================ */
.service-hero__label,
.industry-hero__label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

/* ============================================================
   SERVICE PAGE
   ============================================================ */
.service-hero {
  padding: 10rem 0 5rem;
  border-bottom: 1px solid var(--border);
}
.service-hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin-bottom: 1.5rem;
}
.service-hero__lead {
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.service-body {
  padding: 6rem 0;
}
.service-body h2 {
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-family: var(--font-serif);
  font-weight: 600;
  margin-bottom: 2rem;
  margin-top: 0.5rem;
}
.service-body p {
  margin-bottom: 1.4rem;
  font-size: 0.93rem;
  line-height: 1.95;
  color: var(--text-muted);
  max-width: 700px;
}

/* Capabilities grid — section wraps container wraps cards */
section.capabilities-grid {
  padding: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
section.capabilities-grid > .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 2px;
}
section.capabilities-grid .capability-card {
  background: var(--bg);
  padding: 3rem 2.8rem;
  transition: background 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
section.capabilities-grid .capability-card:hover {
  background: var(--surface);
}
.capability-card__num {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: var(--text-subtle);
  margin-bottom: 1.5rem;
  display: block;
}
.capability-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.capability-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.9;
}

/* Process section */
.process-section {
  padding: 6rem 0;
}
.process-section h2 {
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-family: var(--font-serif);
  font-weight: 600;
  margin-bottom: 3rem;
  margin-top: 0.5rem;
}
.process-steps {
  max-width: 700px;
}
.process-step {
  display: flex;
  gap: 2rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--border);
}
.process-step:first-child {
  border-top: 1px solid var(--border);
}
.process-step__num {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  min-width: 2rem;
  padding-top: 0.3rem;
}
.process-step__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.7rem;
  line-height: 1.3;
}
.process-step p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.9;
}

/* ============================================================
   INDUSTRY PAGE
   ============================================================ */
.industry-hero {
  padding: 10rem 0 5rem;
  border-bottom: 1px solid var(--border);
}
.industry-hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  max-width: 700px;
  margin-bottom: 1.5rem;
}
.industry-hero__lead {
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.industry-body {
  padding: 6rem 0;
}
.industry-body h2 {
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-family: var(--font-serif);
  font-weight: 600;
  margin-bottom: 2rem;
}
.industry-body p {
  margin-bottom: 1.4rem;
  font-size: 0.93rem;
  line-height: 1.95;
  color: var(--text-muted);
  max-width: 700px;
}
.industry-body__content p {
  margin-bottom: 1.4rem;
  font-size: 0.93rem;
  line-height: 1.95;
  color: var(--text-muted);
  max-width: 700px;
}

/* Challenge grid */
.challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 2.5rem;
}
.challenge-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  transition: background 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.challenge-card:hover {
  background: var(--surface-2);
}
.challenge-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.challenge-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.85;
}

/* Industry case study */
.industry-case {
  padding: 3.5rem;
  background: var(--surface);
  border: 1px solid rgba(200, 195, 187, 0.1);
  transition: border-color 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-top: 1rem;
}
.industry-case:hover {
  border-color: rgba(200, 195, 187, 0.16);
}
.industry-case__sector {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: block;
}
.industry-case__value {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--accent);
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.industry-case__description,
.industry-case p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 620px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  padding: 10rem 0 5rem;
  border-bottom: 1px solid var(--border);
}
.about-hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  max-width: 700px;
  margin-bottom: 1.5rem;
}
.about-hero__lead {
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.9;
}

.about-section {
  padding: 6rem 0;
}
.about-section h2 {
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-family: var(--font-serif);
  font-weight: 600;
  margin-bottom: 2rem;
  margin-top: 0.5rem;
}
.about-section p {
  margin-bottom: 1.4rem;
  font-size: 0.93rem;
  line-height: 1.95;
  color: var(--text-muted);
  max-width: 700px;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 2.5rem;
}
.value-card {
  background: var(--surface);
  padding: 2.8rem 2.5rem;
  transition: background 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.value-card:hover {
  background: var(--surface-2);
}
.value-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.value-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.85;
}

/* About explore links */
.about-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 1.5rem;
}
.about-link-card {
  background: var(--surface);
  padding: 2.8rem 2.2rem;
  transition: background 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.about-link-card:hover {
  background: var(--surface-2);
}
.about-link-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
}
.about-link-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0;
}
.about-link-card a {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  transition: gap 0.18s ease;
}
.about-link-card a:hover {
  gap: 0.7rem;
}

/* ============================================================
   LEADERSHIP PAGE
   ============================================================ */
.leader-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 3rem 0;
}
.leader-card {
  background: var(--bg);
  padding: 3rem 2.8rem;
  transition: background 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.leader-card:hover {
  background: var(--surface);
}
.leader-card__header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}
.leader-card__avatar {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.leader-card__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
  color: var(--text);
}
.leader-card__title {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
}
.leader-card__bio {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.9;
}

/* ============================================================
   INSIGHTS HUB
   ============================================================ */
.insights-hub {
  padding: 5rem 0 7rem;
}
.insights-tabs {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}
.insights-tab {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -1.08rem;
  transition:
    color 0.18s ease,
    border-color 0.18s ease;
  background: none;
}
.insights-tab:hover {
  color: var(--text);
}
.insights-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.insights-hub__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

/* ============================================================
   OFFICES PAGE
   ============================================================ */
.offices-hero {
  padding: 10rem 0 5rem;
  border-bottom: 1px solid var(--border);
}
.offices-hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  max-width: 700px;
  margin-bottom: 1.5rem;
}
.offices-hero__lead {
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.9;
}

/* ============================================================
   RESPONSIVE — NEW PAGES
   ============================================================ */
@media (max-width: 900px) {
  section.capabilities-grid > .container {
    grid-template-columns: 1fr;
  }
  .challenge-grid {
    grid-template-columns: 1fr;
  }
  .insights-hub__grid {
    grid-template-columns: 1fr;
  }
  .leader-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .service-hero,
  .industry-hero,
  .about-hero,
  .offices-hero {
    padding: 8rem 0 3.5rem;
  }
  .service-body,
  .industry-body,
  .about-section,
  .process-section {
    padding: 4rem 0;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .about-links {
    grid-template-columns: 1fr;
  }
  .process-step {
    flex-direction: column;
    gap: 0.8rem;
  }
  section.capabilities-grid > .container {
    grid-template-columns: 1fr;
  }
  section.capabilities-grid .capability-card {
    padding: 2.2rem 1.5rem;
  }
}

/* ============================================================
   NAV HOVER BRIDGE FIX — prevents hover gap
   ============================================================ */
.nav__group {
  padding-bottom: 1rem;
  margin-bottom: -1rem;
}
.nav__group::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px;
}

/* ============================================================
   EDITORIAL BAND — full-bleed quote section
   ============================================================ */
.editorial-band {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
.editorial-band__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(200, 195, 187, 0.04) 0%,
    rgba(200, 195, 187, 0.01) 100%
  );
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.editorial-band__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.editorial-band__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  line-height: 1.65;
  color: var(--text);
  letter-spacing: -0.01em;
}
.editorial-band__quote em {
  font-style: italic;
}
.editorial-band__cite {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: normal;
}

/* ============================================================
   RESULTS COMPARISON GRID
   ============================================================ */
.results-compare__grid {
  margin-top: 3rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.compare-row:last-child {
  border-bottom: none;
}
.compare-row--header {
  background: var(--surface);
}
.compare-row--header > div {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 1rem 1.5rem;
  text-align: center;
}
.compare-row--header > .compare-row__metric {
  text-align: left;
}
.compare-row:not(.compare-row--header) {
  transition: background var(--transition-fast);
}
.compare-row:not(.compare-row--header):hover {
  background: var(--accent-dim);
}
.compare-row:not(.compare-row--header):nth-child(even) {
  background: rgba(255, 255, 255, 0.015);
}
.compare-row:not(.compare-row--header):nth-child(even):hover {
  background: var(--accent-dim);
}
.compare-row__metric {
  padding: 1.2rem 1.5rem;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--text);
}
.compare-row__greyops {
  padding: 1.2rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent);
  text-align: center;
}
.compare-row__industry {
  padding: 1.2rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}
.compare-row__delta {
  padding: 1.2rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
}
.compare-row__delta--up {
  color: #6ecf91;
}
.compare-num {
  font-variant-numeric: tabular-nums;
}

@media (max-width: 700px) {
  .compare-row {
    grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
  }
  .compare-row--header > div,
  .compare-row__metric,
  .compare-row__greyops,
  .compare-row__industry,
  .compare-row__delta {
    padding: 0.9rem 0.8rem;
    font-size: 0.78rem;
  }
  .compare-row__greyops {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .compare-row {
    grid-template-columns: 1fr 1fr;
    row-gap: 0;
  }
  .compare-row--header .compare-row__industry,
  .compare-row--header .compare-row__delta {
    display: none;
  }
  .compare-row__industry,
  .compare-row__delta {
    display: none;
  }
}

/* ============================================================
   FOOTER INTERACTIVE LOGO
   ============================================================ */
.footer__logo--interactive {
  display: inline-flex;
  gap: 0;
  cursor: default;
}
.footer__logo-letter {
  position: relative;
  display: inline-block;
  transition: color var(--transition-fast);
}
.footer__logo-letter::after {
  content: attr(data-meaning);
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%) translateY(4px);
  font-family: var(--font-sans);
  font-size: 0.52rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  opacity: 0;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  pointer-events: none;
}
.footer__logo-letter:hover {
  color: var(--accent);
}
.footer__logo-letter:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(8px);
}
.footer__logo--reveal .footer__logo-letter::after {
  opacity: 1;
  transform: translateX(-50%) translateY(8px);
}

/* Offices cards grid fix */
.offices__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (max-width: 900px) {
  .offices__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .offices__cards {
    grid-template-columns: 1fr;
  }
}
/* ============================================================


/* ============================================================
   ADDITIONAL VARIABLES
   ============================================================ */
:root {
  --bg-alt: #f0efed;
  --surface-alt: #f8f7f5;
  --tag-border: var(--border);
  --tag-text: var(--text-subtle);
  --metric-text: #8a8785;
  --metric-border: #e0dfdd;
}

/* ============================================================
   SECTION--LIGHT: Alternate-shade sections
   ============================================================ */
.section--light {
  background: var(--bg-alt);
}
.section--light h2,
.section--light h3,
.section--light h4 {
  color: var(--text);
}
.section--light p {
  color: var(--text-muted);
}
.section--light em {
  color: var(--accent);
}
.section--light .label--dark {
  color: var(--accent);
}

/* ============================================================
   PROCESS FLOW (How We Work)
   ============================================================ */
.how-we-work .process-step {
  border: none;
  gap: 0;
}
.process-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.process-step {
  background: var(--bg-alt);
  padding: 3rem 2.5rem;
  transition: background 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.process-step:hover {
  background: var(--surface-alt);
}
.process-step--featured {
  background: var(--surface-alt);
}
.process-step--featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  opacity: 0.4;
}
.process-step__number {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--text-subtle);
  margin-bottom: 2rem;
}
.process-step__title {
  font-size: clamp(1.15rem, 1.7vw, 1.6rem);
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text);
}
.process-step__body {
  font-size: 0.86rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  flex: 1;
}
.process-step__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
}
.process-step__tags span {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tag-text);
  border: 1px solid var(--tag-border);
  padding: 0.28rem 0.65rem;
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
}
.process-step:hover .process-step__tags span {
  border-color: var(--accent-border);
  color: var(--text-muted);
}

/* ============================================================
   INDUSTRIES INLINE
   ============================================================ */
.industries-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1rem;
}
.industry-tag {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--tag-border);
  padding: 0.65rem 1.4rem;
  transition:
    border-color 0.3s ease,
    color 0.3s ease,
    background 0.3s ease;
}
.industry-tag:hover {
  border-color: var(--accent-border);
  color: var(--text);
  background: var(--surface);
}

/* ============================================================
   CASES GRID (Track Record)
   ============================================================ */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.case-card--light {
  background: var(--surface-alt);
  border: none;
}
.case-card--light:hover {
  background: var(--surface);
}
.case-card--light .case-card__sector {
  color: var(--accent);
}
.case-card--light .case-card__value {
  color: var(--text);
}
.case-card--light .case-card__desc {
  color: var(--text-muted);
}
.case-card--light .case-card__metrics span {
  color: var(--metric-text);
  border-color: var(--metric-border);
}
.track-record__disclaimer {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-subtle);
  font-style: italic;
  margin-top: 2.5rem;
}

/* ============================================================
   FOOTER LOCATION
   ============================================================ */
.footer__location {
  font-size: 0.72rem;
  color: var(--text-subtle);
  letter-spacing: 0.06em;
  margin-top: 0.3rem;
}

/* ============================================================
   RESPONSIVE -- New components
   ============================================================ */
@media (max-width: 900px) {
  .process-flow {
    grid-template-columns: 1fr;
  }
  .cases-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .industries-inline {
    gap: 0.5rem;
  }
  .industry-tag {
    font-size: 0.65rem;
    padding: 0.5rem 1rem;
  }
}

/* ============================================================
   LOGO TICKER
   ============================================================ */
.ticker {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}
.ticker__label {
  position: absolute;
  left: 2rem;
  z-index: 2;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-subtle);
  background: var(--bg);
  padding-right: 2rem;
}
.ticker__track {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
}
.ticker__inner {
  display: flex;
  gap: 3rem;
  animation: ticker-scroll 25s linear infinite;
  width: max-content;
}
.ticker__item {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  white-space: nowrap;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.ticker__item:hover {
  opacity: 1;
}
@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial-section {
  background: var(--surface);
}
.testimonial {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.testimonial__stars {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 2rem;
}
.testimonial__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 2rem;
}
.testimonial__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--accent);
}
.testimonial__name {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
}
.testimonial__role {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: left;
}

/* ============================================================
   BUTTON GLOW EFFECT
   ============================================================ */
.btn--glow {
  position: relative;
  overflow: visible;
}
.btn--glow::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: radial-gradient(
    ellipse at center,
    rgba(236, 234, 228, 0.15) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  filter: blur(12px);
}
.btn--glow:hover::before {
  opacity: 1;
}
.btn--primary {
  transition:
    background 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.3s ease;
}
.btn--primary:hover {
  transform: translateY(-1px);
}
.btn--primary:active {
  transform: translateY(0);
}

/* ============================================================
   PROCESS STEP HOVER EFFECTS
   ============================================================ */
.process-step {
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.process-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}
.process-step--featured {
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.process-step--featured::before {
  transition: opacity 0.3s ease;
}
.process-step--featured:hover::before {
  opacity: 0.8;
}
.process-step__number {
  transition: color 0.3s ease;
}
.process-step:hover .process-step__number {
  color: var(--accent);
}

/* ============================================================
   CASE CARD HOVER EFFECTS
   ============================================================ */
.case-card--light {
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.case-card--light:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}
.case-card__value {
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}
.case-card--light:hover .case-card__value {
  color: var(--accent) !important;
  transform: scale(1.02);
}

/* ============================================================
   INDUSTRY TAG HOVER UPGRADE
   ============================================================ */
.industry-tag {
  transition:
    border-color 0.3s ease,
    color 0.3s ease,
    background 0.3s ease,
    transform 0.2s ease;
}
.industry-tag:hover {
  transform: translateY(-1px);
}

/* ============================================================
   CTA BAND UPGRADE
   ============================================================ */
.cta-band__title {
  transition: opacity 0.3s ease;
}

/* ============================================================
   RESPONSIVE — TICKER
   ============================================================ */
@media (max-width: 768px) {
  .ticker__label {
    display: none;
  }
  .ticker__track {
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 5%,
      black 95%,
      transparent 100%
    );
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 5%,
      black 95%,
      transparent 100%
    );
  }
}

/* ============================================================
   COLOR ACCENTS — Warm amber energy
   ============================================================ */

/* Hero primary CTA — amber background */
.hero .btn--primary {
  background: #c9963b;
  color: #0a0a0a;
  font-weight: 500;
}
.hero .btn--primary:hover {
  background: #d4a854;
  box-shadow: 0 10px 35px rgba(201, 150, 59, 0.25);
}

/* All primary buttons — amber tint on hover */
.btn--primary:hover {
  box-shadow: 0 10px 28px rgba(201, 150, 59, 0.12);
}

/* Glow effect — amber */
.btn--glow::before {
  background: radial-gradient(
    ellipse at center,
    rgba(201, 150, 59, 0.2) 0%,
    transparent 70%
  );
}

/* Stats numbers — subtle amber */
.stats__pre {
  color: #8b6914;
}

/* Process step featured bar — amber */
.process-step--featured::before {
  background: #c9963b;
  opacity: 0.6;
}
.process-step:hover .process-step__number {
  color: #8b6914;
}

/* Case card hover — amber value */
.case-card--light:hover .case-card__value {
  color: #c9963b !important;
}

/* Testimonial stars — amber */
.testimonial__stars svg {
  fill: #c9963b;
}

/* Ticker hover — amber */
.ticker__item:hover {
  color: #8b6914;
  opacity: 1;
}

/* Industry tag hover — amber border */
.industry-tag:hover {
  border-color: rgba(201, 150, 59, 0.35);
  color: #8b6914;
}

/* CTA band — amber primary button */
.cta-band .btn--primary {
  background: #c9963b;
  color: #0a0a0a;
  font-weight: 500;
}
.cta-band .btn--primary:hover {
  background: #d4a854;
  box-shadow: 0 10px 35px rgba(201, 150, 59, 0.3);
}

/* Nav CTA — amber outline */
.nav__cta.btn--outline {
  border-color: rgba(139, 105, 20, 0.4);
  color: rgba(201, 150, 59, 0.8);
}
.nav__cta.btn--outline:hover {
  border-color: #8b6914;
  color: #8b6914;
  background: rgba(201, 150, 59, 0.06);
}

/* Nav scrolled CTA */
.nav.scrolled .nav__cta.btn--outline {
  border-color: rgba(139, 105, 20, 0.4);
  color: rgba(201, 150, 59, 0.8);
}
.nav.scrolled .nav__cta.btn--outline:hover {
  border-color: #8b6914;
  color: #8b6914;
}

/* Subtle amber gradient on CTA band */
.cta-band::before {
  background: radial-gradient(
    ellipse 60% 80% at 50% 50%,
    rgba(201, 150, 59, 0.06) 0%,
    transparent 70%
  );
}

/* Section labels — amber */
.label {
  color: #8b6914;
}
.label--dark {
  color: #8b6914;
}

/* Footer logo letter hover — amber */
.footer__logo-letter:hover {
  color: #8b6914;
}

/* Scroll cue — amber */
.hero__scroll-cue {
  color: rgba(201, 150, 59, 0.5);
}
.hero__scroll-line {
  background: rgba(201, 150, 59, 0.3);
}

/* Testimonial avatar — amber */
.testimonial__avatar {
  background: rgba(201, 150, 59, 0.1);
  border-color: rgba(184, 134, 45, 0.25);
  color: #8b6914;
}

/* Case card sector label — amber */
.case-card--light .case-card__sector {
  color: #8b6914;
}

/* Divider — amber */
.divider {
  background: rgba(201, 150, 59, 0.3);
}

/* ============================================================
   CASES GRID — 6 cards (2 rows of 3)
   ============================================================ */
.cases-grid--six {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .cases-grid--six {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .cases-grid--six {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   WHY GREYOPS
   ============================================================ */
.why-section {
  border-top: 1px solid rgba(10, 10, 10, 0.06);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.why-card {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.why-card__number {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: #8b6914;
  line-height: 1;
}
.why-card__unit {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.45);
  margin-top: 0.3rem;
  margin-bottom: 1.2rem;
}
.why-card__title {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.8rem;
}
.why-card__desc {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.55);
}
@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ============================================================
   CLIENTS SECTION
   ============================================================ */
.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin-top: 2.5rem;
}
.client-name {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #1a1a1a;
  opacity: 0.55;
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 100px;
  margin: 0.3rem;
  transition:
    opacity 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
  white-space: nowrap;
}
.client-name:hover {
  opacity: 1;
  border-color: rgba(139, 105, 20, 0.4);
  color: #8b6914;
}

/* ============================================================
   STATS BENCHMARK LABEL
   ============================================================ */
.stats__benchmark {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8b6914;
  margin-top: 0.2rem;
  opacity: 0.8;
}

/* ============================================================
   REPLIES TICKER — slower scroll
   ============================================================ */
.ticker--replies {
  border-top: 1px solid var(--border);
  border-bottom: none;
}
.ticker__inner--slow {
  animation: ticker-scroll 40s linear infinite;
}

/* ============================================================
   CLIENTS SECTION — force dark bg + light text
   ============================================================ */
.clients-section {
  background: #f8f7f5;
}
.clients-section .section__header h2 {
  color: #1a1a1a;
}
.clients-section .label {
  color: #8b6914;
}

/* ============================================================
   TRUSTPILOT BADGE
   ============================================================ */
.trustpilot-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 0.6rem 1.2rem;
  margin-top: 1.5rem;
  text-decoration: none;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}
.trustpilot-badge:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}
.trustpilot-badge__stars {
  display: flex;
  gap: 3px;
}
.tp-star {
  width: 22px;
  height: 22px;
  background: #00b67a;
  border-radius: 3px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tp-star::after {
  content: "";
  width: 12px;
  height: 12px;
  background: white;
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}
.tp-star--partial {
  background: #dcdce6;
  overflow: hidden;
}
.tp-star--partial .tp-star__fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: #00b67a;
  z-index: 0;
}
.tp-star--partial::after {
  z-index: 1;
  position: relative;
}
.trustpilot-badge__text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.trustpilot-badge__text strong {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1a1a;
}
.trustpilot-badge__text span {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  color: rgba(26, 26, 26, 0.45);
}

/* ============================================================
   TESTIMONIAL TICKER (Rolodex)
   ============================================================ */
.testimonial-ticker {
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  margin-top: 2rem;
}
.testimonial-ticker__track {
  overflow: hidden;
}
.testimonial-ticker__inner {
  display: flex;
  gap: 1.5rem;
  animation: testimonial-scroll 45s linear infinite;
  width: max-content;
}
.testimonial-ticker__inner:hover {
  animation-play-state: paused;
}
@keyframes testimonial-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.testimonial-card {
  flex-shrink: 0;
  width: 360px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 1.8rem;
  transition: border-color 0.3s ease;
}
.testimonial-card:hover {
  border-color: rgba(184, 134, 45, 0.25);
}
.testimonial-card__stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 1rem;
}
.testimonial-card__stars svg {
  fill: #c9963b;
}
.testimonial-card__quote {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.85);
  margin-bottom: 1.2rem;
}
.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.testimonial-card__name {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: #1a1a1a;
}
.testimonial-card__role {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  color: rgba(26, 26, 26, 0.45);
}

/* ============================================================
   TESTIMONIAL SECTION — dark bg
   ============================================================ */
.testimonial-section {
  background: #f8f7f5;
}
.testimonial-section .label {
  color: #8b6914;
}

@media (max-width: 580px) {
  .testimonial-card {
    width: 280px;
    padding: 1.4rem;
  }
}

/* ============================================================
   COMPANIES WE'VE BOOKED FOR
   ============================================================ */
.booked-section {
  background: #f8f7f5;
}
.booked-section .section__header h2 {
  color: #1a1a1a;
}
.booked-section .section__sub {
  color: rgba(26, 26, 26, 0.45);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}
.booked-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.booked-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.2rem 0.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
}
.booked-logo:hover {
  border-color: rgba(184, 134, 45, 0.25);
  background: rgba(201, 150, 59, 0.04);
  transform: translateY(-2px);
}
.booked-logo__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(236, 234, 228, 0.7);
}
.booked-logo:hover .booked-logo__icon {
  background: rgba(201, 150, 59, 0.12);
  color: #8b6914;
}
.booked-logo__name {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(26, 26, 26, 0.55);
  text-align: center;
  white-space: nowrap;
}
.booked-logo:hover .booked-logo__name {
  color: #1a1a1a;
}
@media (max-width: 900px) {
  .booked-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 580px) {
  .booked-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   ACTUAL RESULTS — INBOX GUI
   ============================================================ */
.results-section {
  background: #f8f7f5;
}
.results-section .section__header h2 {
  color: #1a1a1a;
}
.results-section .section__sub {
  color: rgba(26, 26, 26, 0.45);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  margin-top: 0.5rem;
}
.inbox {
  max-width: 720px;
  margin: 2.5rem auto 0;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}
.inbox__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}
.inbox__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.inbox__dot--red {
  background: #ff5f57;
}
.inbox__dot--yellow {
  background: #febc2e;
}
.inbox__dot--green {
  background: #28c840;
}
.inbox__title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(236, 234, 228, 0.7);
  margin-left: 0.5rem;
}
.inbox__count {
  margin-left: auto;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  color: #8b6914;
  font-weight: 500;
}
.inbox__scroll {
  max-height: 520px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}
.inbox__scroll::-webkit-scrollbar {
  width: 4px;
}
.inbox__scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
.inbox__email {
  display: flex;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
  cursor: default;
}
.inbox__email:last-child {
  border-bottom: none;
}
.inbox__email:hover {
  background: rgba(255, 255, 255, 0.03);
}
.inbox__email--unread {
  background: rgba(201, 150, 59, 0.03);
  border-left: 2px solid #c9963b;
}
.inbox__avatar {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}
.inbox__content {
  flex: 1;
  min-width: 0;
}
.inbox__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.35rem;
}
.inbox__sender {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: #1a1a1a;
}
.inbox__date {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  color: rgba(236, 234, 228, 0.35);
  white-space: nowrap;
  margin-left: 1rem;
}
.inbox__preview {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.55);
  font-style: italic;
  margin-bottom: 0.5rem;
}
.inbox__tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}
.inbox__tag--booked {
  background: rgba(0, 182, 122, 0.12);
  color: #00b67a;
}
.inbox__tag--reply {
  background: rgba(201, 150, 59, 0.12);
  color: #8b6914;
}

/* ============================================================
   CAPABILITIES SECTION
   ============================================================ */
.capabilities .section__header h2 em {
  font-style: normal;
  color: #8b6914;
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.cap-card {
  background: #fafaf8;
  border: 1px solid rgba(10, 10, 10, 0.06);
  border-radius: 14px;
  padding: 2rem 1.8rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
}
.cap-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.cap-card--featured {
  background: #f8f7f5;
  border-color: rgba(201, 150, 59, 0.2);
}
.cap-card--featured .cap-card__phase,
.cap-card--featured .cap-card__title {
  color: #1a1a1a;
}
.cap-card--featured .cap-card__desc,
.cap-card--featured .cap-card__list li {
  color: rgba(26, 26, 26, 0.55);
}
.cap-card--featured .cap-card__icon {
  color: #8b6914;
}
.cap-card__icon {
  color: #8b6914;
  margin-bottom: 1rem;
}
.cap-card__phase {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8b6914;
  margin-bottom: 0.5rem;
  display: block;
}
.cap-card__title {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.cap-card__desc {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(10, 10, 10, 0.6);
  margin-bottom: 1.2rem;
}
.cap-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cap-card__list li {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(10, 10, 10, 0.5);
  padding: 0.35rem 0;
  border-top: 1px solid rgba(10, 10, 10, 0.05);
  padding-left: 1rem;
  position: relative;
}
.cap-card--featured .cap-card__list li {
  border-top-color: rgba(255, 255, 255, 0.06);
}
.cap-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c9963b;
  transform: translateY(-50%);
}

@media (max-width: 900px) {
  .cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .cap-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  background: #f8f7f5;
  border-top: 1px solid var(--border);
}
.faq-section .section__header h2 {
  color: #1a1a1a;
}
.faq-list {
  max-width: 720px;
  margin: 2.5rem auto 0;
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.4rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq-item__q span {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: #1a1a1a;
  transition: color 0.3s ease;
}
.faq-item__q:hover span {
  color: #8b6914;
}
.faq-item__icon {
  flex-shrink: 0;
  color: rgba(236, 234, 228, 0.4);
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}
.faq-item--open .faq-item__icon {
  transform: rotate(180deg);
  color: #8b6914;
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
}
.faq-item--open .faq-item__a {
  max-height: 300px;
  padding-bottom: 1.2rem;
}
.faq-item__a p {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(236, 234, 228, 0.55);
}

/* ============================================================
   SECTION SUB — reusable
   ============================================================ */
.section__sub {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: rgba(26, 26, 26, 0.45);
  margin-top: 0.5rem;
}

/* ============================================================
   INBOX RESPONSIVE
   ============================================================ */
@media (max-width: 580px) {
  .inbox__email {
    flex-direction: column;
    gap: 0.6rem;
    padding: 1rem;
  }
  .inbox__avatar {
    width: 32px;
    height: 32px;
    font-size: 0.55rem;
  }
  .inbox__sender {
    font-size: 0.72rem;
  }
  .inbox__preview {
    font-size: 0.72rem;
  }
}

/* ============================================================
   CAPABILITIES — Visual scroll layout (alternating rows)
   ============================================================ */
.cap-scroll {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.cap-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.cap-row--reverse {
  direction: rtl;
}
.cap-row--reverse > * {
  direction: ltr;
}
.cap-row__visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.cap-row__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  filter: brightness(0.85) saturate(0.9);
}
.cap-row:hover .cap-row__visual img {
  transform: scale(1.04);
}
.cap-row__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #c9963b;
  color: #0a0a0a;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 6px;
}
.cap-row__text {
  padding: 1rem 0;
}
.cap-row__phase {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8b6914;
  display: block;
  margin-bottom: 0.6rem;
}
.cap-row__title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.cap-row__desc {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(10, 10, 10, 0.6);
  margin-bottom: 1.5rem;
}
.cap-row__items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cap-row__item {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(10, 10, 10, 0.5);
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(10, 10, 10, 0.1);
  border-radius: 100px;
  transition:
    border-color 0.3s ease,
    color 0.3s ease;
}
.cap-row__item:hover {
  border-color: rgba(139, 105, 20, 0.4);
  color: #8b6914;
}

@media (max-width: 768px) {
  .cap-row,
  .cap-row--reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    direction: ltr;
  }
  .cap-scroll {
    gap: 3rem;
  }
  .cap-row__visual {
    aspect-ratio: 16/9;
  }
}

/* ============================================================
   SECTION SUB DARK variant
   ============================================================ */
.section__sub--dark {
  color: rgba(10, 10, 10, 0.5);
}

/* ============================================================
   BOOKED LOGOS — real images
   ============================================================ */
.booked-logo__img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  padding: 6px;
  transition: transform 0.3s ease;
}
.booked-logo:hover .booked-logo__img {
  transform: scale(1.1);
}
.booked-logo__fallback {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.04);
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(236, 234, 228, 0.7);
}

/* ============================================================
   CUSTOM ILLUSTRATIONS — floating card style
   ============================================================ */
.illus {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  gap: 0.8rem;
}
.illus__circle {
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  top: 15%;
  left: 15%;
  pointer-events: none;
}
.illus__diamond {
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(201, 150, 59, 0.1);
  transform: rotate(45deg);
  top: 15%;
  left: calc(50% - 60px);
  pointer-events: none;
}

/* Floating cards */
.illus__card {
  position: relative;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  width: 75%;
  max-width: 260px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  z-index: 2;
}
.illus__card--top {
  align-self: flex-end;
  margin-right: 5%;
}
.illus__card--bottom {
  align-self: flex-start;
  margin-left: 5%;
}
.illus__card--center {
  align-self: center;
}
.illus__card-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.illus__card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.illus__card-row:last-child {
  border-bottom: none;
}
.illus__card-row span {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  color: #666;
}
.illus__card-row strong {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  color: #1a1a1a;
}

/* Badges */
.illus__badge {
  position: absolute;
  z-index: 3;
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  background: rgba(201, 150, 59, 0.15);
  color: #8b6914;
  white-space: nowrap;
}
.illus__badge--tl {
  top: 1.2rem;
  left: 1.2rem;
}
.illus__badge--tr {
  top: 1.2rem;
  right: 1.2rem;
}
.illus__badge--bl {
  bottom: 1.2rem;
  left: 1.2rem;
}
.illus__badge--br {
  bottom: 1.2rem;
  right: 1.2rem;
}

/* Pill rows */
.illus__pill-row {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 2;
  position: relative;
}
.illus__pill {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(236, 234, 228, 0.8);
  white-space: nowrap;
}
.illus__pill--amber {
  background: rgba(201, 150, 59, 0.15);
  color: #8b6914;
}

/* Email card inside illustration */
.illus__email-card {
  position: relative;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 10px;
  padding: 0;
  width: 88%;
  max-width: 320px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  z-index: 2;
  overflow: hidden;
}
.illus__email-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(0, 0, 0, 0.02);
}
.illus__email-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(201, 150, 59, 0.15);
  color: #8b6914;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.52rem;
  font-weight: 700;
  flex-shrink: 0;
}
.illus__email-header strong {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  color: #1a1a1a;
}
.illus__email-meta {
  font-family: var(--font-sans);
  font-size: 0.5rem;
  color: #999;
  display: block;
}
.illus__email-date {
  margin-left: auto;
  font-family: var(--font-sans);
  font-size: 0.5rem;
  color: #999;
  white-space: nowrap;
}
.illus__email-body {
  padding: 0.8rem 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  line-height: 1.6;
  color: #333;
}

/* Bar chart */
.illus__bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
  z-index: 2;
  position: relative;
  margin-top: 0.5rem;
}
.illus__bar {
  width: 24px;
  border-radius: 4px 4px 0 0;
  transition: height 0.6s ease;
}

/* Growth arrow */
.illus__growth-arrow {
  z-index: 2;
  position: relative;
  margin: 0.5rem 0;
}

/* Remove old visual image styles */
.cap-row__visual img {
  display: none;
}
.cap-row__badge {
  display: none;
}

/* Illustration hover */
.cap-row:hover .illus__card {
  transform: translateY(-2px);
  transition: transform 0.3s ease;
}
.cap-row:hover .illus__badge {
  background: rgba(201, 150, 59, 0.25);
  transition: background 0.3s ease;
}

@media (max-width: 580px) {
  .illus {
    aspect-ratio: 1/1;
    padding: 1.2rem 1rem;
  }
  .illus__card {
    width: 85%;
    padding: 0.8rem 1rem;
  }
  .illus__email-card {
    width: 95%;
  }
}

/* ============================================================
   LOGO WALL — large, prominent (like img 19)
   ============================================================ */
.logo-wall {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: 3rem;
}
.logo-wall__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.8rem 2.2rem;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  opacity: 0.55;
}
.logo-wall__item:hover {
  opacity: 1;
  transform: scale(1.08);
}
.logo-wall__item img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.logo-wall__item:hover img {
  filter: grayscale(0%);
}
.logo-wall__item span {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(10, 10, 10, 0.4);
  margin-top: 0.5rem;
  transition: color 0.3s ease;
}
.logo-wall__item:hover span {
  color: rgba(10, 10, 10, 0.8);
}

@media (max-width: 768px) {
  .logo-wall__item {
    padding: 1.2rem 1.4rem;
  }
  .logo-wall__item img {
    width: 40px;
    height: 40px;
  }
}

/* ============================================================
   RESOURCES SECTION
   ============================================================ */
.resources-section {
  background: #f8f7f5;
  border-top: 1px solid var(--border);
}
.resources-section .section__header h2 {
  color: #1a1a1a;
}
.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.resource-card {
  display: block;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 2rem;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.resource-card:hover {
  border-color: rgba(139, 105, 20, 0.5);
  background: #fffdf8;
  transform: translateY(-3px);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.1),
    0 2px 6px rgba(139, 105, 20, 0.08);
}
.resource-card:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.resource-card__icon {
  color: #8b6914;
  margin-bottom: 1.2rem;
}
.resource-card__title {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.6rem;
}
.resource-card__desc {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.45);
  margin-bottom: 1.2rem;
}
.resource-card__cta {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: #8b6914;
  transition: color 0.3s ease;
}
.resource-card:hover .resource-card__cta {
  color: #d4a854;
}

@media (max-width: 580px) {
  .resources-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   CONTACT PAGE — centered single column
   ============================================================ */
.contact-page {
  padding: 8rem 0 4rem;
}
.contact-hero {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.contact-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.contact-hero__sub {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(236, 234, 228, 0.55);
  margin-bottom: 1.5rem;
}
.contact-hero__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.contact-pill {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(26, 26, 26, 0.55);
  padding: 0.4rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 100px;
}
.contact-cal {
  max-width: 560px;
  margin: 0 auto 2rem;
}
.contact-cal__note {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: #8b6914;
  text-align: center;
  margin-bottom: 1rem;
}
.contact-cal__embed {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
  padding: 0.5rem;
}
.contact-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.5rem 0;
}
.contact-fallback p {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(26, 26, 26, 0.45);
  margin: 0;
}
.contact-fallback a {
  color: rgba(236, 234, 228, 0.65);
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-fallback a:hover {
  color: #8b6914;
}
.contact-fallback__sep {
  color: rgba(236, 234, 228, 0.2);
}

/* Footer logo image */
.footer__logo-img {
  height: 46px;
  max-height: 46px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.footer__logo-img:hover {
  opacity: 1;
}

/* ============================================================
   VISIBILITY FIXES
   ============================================================ */

/* Capability pill tags — white text, gold hover */
.cap-row__item {
  color: rgba(255, 255, 255, 0.6) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}
.cap-row__item:hover {
  color: #c9963b !important;
  border-color: rgba(201, 150, 59, 0.3) !important;
}

/* Track record disclaimer — white */
.track-record__disclaimer {
  color: rgba(255, 255, 255, 0.4) !important;
}

/* Logo wall names — white text */
.logo-wall__item span {
  color: rgba(255, 255, 255, 0.4) !important;
}
.logo-wall__item:hover span {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Logo wall images — remove grayscale on dark bg */
.logo-wall__item img {
  filter: brightness(1) !important;
}
.logo-wall__item:hover img {
  filter: brightness(1.1) !important;
}

/* Booked section on dark bg */
.booked-section .section__header h2 {
  color: #eceae4 !important;
}

/* ============================================================
   MOBILE OPTIMISATION — added 2026-04-04
   ============================================================ */

/* --- Hero mobile --- */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 7rem 0 3.5rem;
  }
  .hero__title {
    font-size: 1.9rem;
    line-height: 1.2;
  }
  .hero__sub {
    font-size: 0.88rem;
    line-height: 1.7;
  }
  .hero__actions {
    gap: 0.8rem;
  }
  .hero__actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .trustpilot-badge {
    margin-top: 1.2rem;
  }
}

/* --- Stats bar mobile --- */
@media (max-width: 768px) {
  .stats {
    overflow: hidden;
    width: 100%;
  }
  .stats__grid {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .stats__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .stats__item:last-child {
    border-bottom: none;
  }
  .stats__value {
    justify-content: flex-start;
    flex-wrap: nowrap;
    margin-bottom: 0;
    order: 1;
  }
  .stats__num {
    font-size: 2rem;
  }
  .stats__pre {
    font-size: 1.2rem;
    padding-bottom: 0.1em;
  }
  .stats__suffix {
    font-size: 1rem;
    padding-bottom: 0.1em;
  }
  .stats__label {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-align: right;
    order: 2;
  }
  .stats__benchmark {
    display: none;
  }
}

/* --- Logo wall mobile --- */
@media (max-width: 768px) {
  .logo-wall {
    gap: 0.8rem;
  }
  .logo-wall__item {
    width: calc(33.33% - 0.6rem);
  }
  .logo-wall__item img {
    width: 32px;
    height: 32px;
  }
  .logo-wall__item span {
    font-size: 0.55rem;
  }
}
@media (max-width: 480px) {
  .logo-wall__item {
    width: calc(25% - 0.6rem);
  }
}

/* --- Capabilities cards mobile --- */
@media (max-width: 580px) {
  .cap-row__visual {
    aspect-ratio: 1/1;
    min-height: 260px;
  }
  .cap-row__text {
    padding: 0.5rem 0;
  }
  .cap-row__title {
    font-size: 1.3rem;
  }
  .cap-row__desc {
    font-size: 0.84rem;
  }
  .cap-row__items {
    gap: 0.4rem;
  }
  .cap-row__item {
    font-size: 0.65rem;
    padding: 0.35rem 0.7rem;
  }
  .cap-scroll {
    gap: 2.5rem;
  }
  .section__sub--dark {
    font-size: 0.85rem;
  }
}

/* --- Illustration cards inside cap-row mobile --- */
@media (max-width: 768px) {
  .illus {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
  }
  .illus__card {
    position: relative;
    padding: 0.6rem 0.8rem;
    min-width: auto;
    width: 85%;
    max-width: 280px;
  }
  .illus__card--top,
  .illus__card--bottom,
  .illus__card--center {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
  }
  .illus__card-label {
    font-size: 0.55rem;
    margin-bottom: 0.3rem;
  }
  .illus__card-row {
    font-size: 0.62rem;
    padding: 0.2rem 0;
  }
  .illus__card-row span {
    font-size: 0.6rem;
  }
  .illus__card-row strong {
    font-size: 0.62rem;
  }
  .illus__badge {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    font-size: 0.5rem;
    padding: 0.2rem 0.5rem;
    display: inline-block;
    margin-top: 0.3rem;
  }
  .illus__circle {
    display: none;
  }
  .illus__diamond {
    display: none;
  }
  .illus__pill-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3rem;
  }
  .illus__pill {
    font-size: 0.5rem;
    padding: 0.18rem 0.45rem;
  }
  .illus__email-card {
    width: 90%;
    max-width: 300px;
    font-size: 0.68rem;
  }
  .illus__email-header {
    gap: 0.4rem;
    flex-wrap: wrap;
  }
  .illus__email-avatar {
    width: 24px;
    height: 24px;
    min-width: 24px;
    font-size: 0.5rem;
  }
  .illus__email-meta {
    font-size: 0.5rem;
  }
  .illus__email-date {
    font-size: 0.5rem;
  }
  .illus__email-body {
    font-size: 0.65rem;
    line-height: 1.45;
  }
  .illus__bar-chart {
    height: 50px;
    gap: 0.3rem;
  }
  .illus__growth-arrow {
    display: none;
  }
  .cap-row__visual {
    aspect-ratio: 4/3;
    min-height: 220px;
  }
}

/* --- Why cards mobile --- */
@media (max-width: 580px) {
  .why-card {
    padding: 2rem 1.5rem;
  }
  .why-card__number {
    font-size: 2rem;
  }
  .why-card__desc {
    font-size: 0.78rem;
  }
}

/* --- Case studies grid mobile --- */
@media (max-width: 580px) {
  .case-card--light {
    padding: 1.8rem 1.4rem;
  }
  .case-card__value {
    font-size: 1.8rem;
  }
  .case-card__desc {
    font-size: 0.82rem;
  }
  .case-card__metrics {
    gap: 0.4rem;
  }
  .case-card__metrics span {
    font-size: 0.58rem;
    padding: 0.25rem 0.55rem;
  }
}

/* --- Clients pills mobile --- */
@media (max-width: 580px) {
  .client-name {
    font-size: 0.72rem;
    padding: 0.45rem 1rem;
  }
}

/* --- Testimonial cards mobile --- */
@media (max-width: 480px) {
  .testimonial-card {
    width: 260px;
    padding: 1.2rem;
  }
  .testimonial-card__quote {
    font-size: 0.8rem;
    line-height: 1.6;
  }
  .testimonial-card__name {
    font-size: 0.72rem;
  }
  .testimonial-card__role {
    font-size: 0.62rem;
  }
}

/* --- Inbox / replies section mobile --- */
@media (max-width: 580px) {
  .inbox {
    border-radius: 8px;
  }
  .inbox__email {
    padding: 1rem;
    gap: 0.8rem;
  }
  .inbox__avatar {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 0.55rem;
  }
  .inbox__sender {
    font-size: 0.72rem;
  }
  .inbox__date {
    font-size: 0.58rem;
  }
  .inbox__preview {
    font-size: 0.76rem;
    line-height: 1.5;
    -webkit-line-clamp: 3;
  }
  .inbox__tag {
    font-size: 0.55rem;
    padding: 0.2rem 0.5rem;
  }
}

/* --- CTA band mobile --- */
@media (max-width: 580px) {
  .cta-band {
    padding: 4rem 0;
  }
  .cta-band__title {
    font-size: 1.5rem;
  }
  .cta-band__sub {
    font-size: 0.85rem;
  }
  .cta-band__actions {
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
  }
  .cta-band__actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* --- Resources grid mobile --- */
@media (max-width: 580px) {
  .resources-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .resource-card {
    padding: 1.5rem;
  }
}

/* --- FAQ mobile --- */
@media (max-width: 580px) {
  .faq-item__q {
    padding: 1.2rem 0;
    font-size: 0.88rem;
  }
  .faq-item__a p {
    font-size: 0.82rem;
    line-height: 1.7;
  }
}

/* --- Footer mobile --- */
@media (max-width: 580px) {
  .footer__columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer__compliance {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
  .footer__compliance-tags {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .footer__legal-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* --- Industries tags mobile --- */
@media (max-width: 480px) {
  .industries-inline {
    gap: 0.4rem;
  }
  .industry-tag {
    font-size: 0.6rem;
    padding: 0.45rem 0.8rem;
  }
}

/* --- Section spacing mobile --- */
@media (max-width: 580px) {
  .section {
    padding: 3.5rem 0;
  }
  .section__header h2 {
    font-size: 1.5rem;
  }
  .section__sub {
    font-size: 0.82rem;
  }
  h2 {
    font-size: 1.5rem;
  }
}

/* --- Booked grid mobile --- */
@media (max-width: 580px) {
  .booked-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
  }
}
@media (max-width: 400px) {
  .booked-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- Hero full width mobile --- */
@media (max-width: 768px) {
  .hero {
    width: 100%;
    overflow: hidden;
  }
  .hero__bg,
  .hero__overlay {
    width: 100%;
  }
}

/* --- All sections full width mobile --- */
@media (max-width: 768px) {
  section,
  .stats,
  .footer,
  footer,
  nav {
    max-width: 100vw;
    overflow-x: hidden;
  }
  .container {
    max-width: 100%;
    overflow: hidden;
  }
  .testimonial-ticker,
  .testimonial-ticker__track,
  .testimonial-ticker__inner {
    max-width: 100vw;
  }
  .logo-wall {
    max-width: 100%;
    overflow: hidden;
  }
  .inbox {
    max-width: 100%;
    overflow: hidden;
  }
  .inbox__scroll {
    max-width: 100%;
  }
}

/* --- Illus overflow prevention --- */
@media (max-width: 768px) {
  .cap-row__visual {
    max-width: 100%;
    overflow: hidden;
  }
  .illus {
    max-width: 100%;
    overflow: hidden;
  }
}

/* Why cards - dark cards on light bg */
.why-card {
  background: #1a1a1a !important;
}
.why-card__number {
  color: #996d1a !important;
}
.why-card__unit {
  color: rgba(255, 255, 255, 0.5) !important;
}
.why-card__title {
  color: #eceae4 !important;
}
.why-card__desc {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* Hero - keep dark for impact on light theme */
.hero {
  background: #0a0a0a !important;
  color: #eceae4 !important;
}
.hero__title {
  color: #eceae4 !important;
}
.hero__sub {
  color: rgba(236, 234, 228, 0.65) !important;
}
.hero .label {
  color: #996d1a !important;
}
.hero .trustpilot-badge__text strong {
  color: #eceae4 !important;
}
.hero .trustpilot-badge__text span {
  color: rgba(236, 234, 228, 0.5) !important;
}
.hero .trustpilot-badge {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Stats bar - dark */
.stats {
  background: #0a0a0a !important;
}
.stats__item {
  border-color: rgba(255, 255, 255, 0.055) !important;
}
.stats__num {
  color: #eceae4 !important;
}
.stats__label {
  color: #787470 !important;
}
.stats__pre,
.stats__suffix {
  color: #996d1a !important;
}

/* CTA band - dark */
.cta-band {
  background: #0a0a0a !important;
  color: #eceae4 !important;
}
.cta-band__title {
  color: #eceae4 !important;
}
.cta-band__sub {
  color: rgba(236, 234, 228, 0.6) !important;
}
.cta-band .label {
  color: #996d1a !important;
}

/* Booked section - dark */
.booked-section {
  background: #0a0a0a !important;
}
.booked-section h2 {
  color: #eceae4 !important;
}
.booked-section .label {
  color: #996d1a !important;
}

/* Logo wall text */
.logo-wall__item span {
  color: rgba(236, 234, 228, 0.6) !important;
}

/* Testimonial section */
.testimonial-section {
  background: #0a0a0a !important;
}
.testimonial-section .label {
  color: #996d1a !important;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}
.testimonial-card__quote {
  color: rgba(236, 234, 228, 0.85) !important;
}
.testimonial-card__name {
  color: #eceae4 !important;
}
.testimonial-card__role {
  color: rgba(236, 234, 228, 0.45) !important;
}

/* Clients section */
.clients-section {
  background: #0a0a0a !important;
}
.clients-section h2 {
  color: #eceae4 !important;
}
.clients-section .label {
  color: #996d1a !important;
}
.client-name {
  color: #eceae4 !important;
  border-color: rgba(236, 234, 228, 0.12) !important;
}

/* Results section - dark */
.results-section {
  background: #0a0a0a !important;
}
.results-section .label {
  color: #996d1a !important;
}
.results-section h2 {
  color: #eceae4 !important;
}
.results-section .section__sub {
  color: rgba(236, 234, 228, 0.5) !important;
}

/* Footer - dark */
.footer {
  background: #0a0a0a !important;
}
.footer__tagline {
  color: rgba(236, 234, 228, 0.5) !important;
}
.footer__location {
  color: rgba(236, 234, 228, 0.35) !important;
}
.footer__col-title {
  color: #787470 !important;
}
.footer__col-links a {
  color: rgba(236, 234, 228, 0.5) !important;
}
.footer__copy {
  color: rgba(236, 234, 228, 0.3) !important;
}
.footer__legal-links a {
  color: rgba(236, 234, 228, 0.3) !important;
}
.footer__social a {
  color: rgba(236, 234, 228, 0.4) !important;
}

/* Nav - keep dark */
.nav {
  background: transparent !important;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.92) !important;
  border-color: rgba(255, 255, 255, 0.055) !important;
}
.nav__link {
  color: rgba(236, 234, 228, 0.6) !important;
}
.nav__cta {
  color: #eceae4 !important;
  border-color: rgba(236, 234, 228, 0.25) !important;
}

/* Resources section */
.resources-section {
  background: #0a0a0a !important;
}
.resources-section .label {
  color: #996d1a !important;
}
.resources-section h2 {
  color: #eceae4 !important;
}
.resource-card {
  background: #101012 !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}
.resource-card__title {
  color: #eceae4 !important;
}
.resource-card__desc {
  color: #787470 !important;
}
.resource-card__cta {
  color: #996d1a !important;
}
.resource-card__icon {
  color: #996d1a !important;
}
.resource-card__icon svg {
  stroke: #996d1a !important;
}

/* Inbox stays dark */
.inbox {
  background: #101012 !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}
.inbox__header {
  background: #0a0a0a !important;
  border-color: rgba(255, 255, 255, 0.06) !important;
}
.inbox__title,
.inbox__count {
  color: rgba(236, 234, 228, 0.6) !important;
}
.inbox__email {
  border-color: rgba(255, 255, 255, 0.04) !important;
}
.inbox__sender {
  color: #eceae4 !important;
}
.inbox__date {
  color: rgba(236, 234, 228, 0.4) !important;
}
.inbox__preview {
  color: rgba(236, 234, 228, 0.65) !important;
}

/* FAQ section - light bg, dark text */
.faq-section {
  background: #f8f7f5 !important;
}
.faq-section .label {
  color: #996d1a !important;
}
.faq-section h2 {
  color: #1a1a1a !important;
}
.faq-item__q span {
  color: #1a1a1a !important;
}
.faq-item__q svg {
  stroke: #1a1a1a !important;
}
.faq-item__a p {
  color: #5a5856 !important;
}
.faq-item {
  border-color: rgba(0, 0, 0, 0.08) !important;
}

/* ============================================================
   UPDATES 2026-04-05
   ============================================================ */

/* --- Cap-row item tags: black text on light bg --- */
.cap-row__item {
  color: #1a1a1a !important;
  border-color: rgba(0, 0, 0, 0.15) !important;
}
.cap-row__item:hover {
  border-color: rgba(153, 109, 26, 0.4) !important;
  color: #8b6914 !important;
}

/* --- Industry tags: black text, gold on hover --- */
.industry-tag {
  color: #1a1a1a !important;
  border-color: rgba(0, 0, 0, 0.15) !important;
  background: transparent !important;
}
.industry-tag:hover {
  border-color: #996d1a !important;
  color: #996d1a !important;
  background: rgba(153, 109, 26, 0.06) !important;
}

/* --- Testimonial company badges --- */
.testimonial-card__company-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #c9963b;
  margin-bottom: 0.5rem;
}
.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

/* --- Testimonial section: subtle gold glow --- */
.testimonial-section {
  position: relative;
  overflow: hidden;
}
.testimonial-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(201, 150, 59, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}
.testimonial-section > .container {
  position: relative;
  z-index: 1;
}

/* --- Book a Call glow: brighter --- */
.btn--glow::before {
  background: rgba(201, 150, 59, 0.35) !important;
  filter: blur(20px) !important;
}
.btn--glow:hover::before {
  background: rgba(201, 150, 59, 0.5) !important;
  filter: blur(25px) !important;
}
.btn--primary {
  box-shadow: 0 4px 20px rgba(201, 150, 59, 0.3) !important;
}
.btn--primary:hover {
  box-shadow: 0 6px 30px rgba(201, 150, 59, 0.45) !important;
}

/* --- Resources section: extend dark area --- */
.resources-section {
  padding: 5rem 0 6rem !important;
  margin-bottom: 0 !important;
}

/* v3 resources section: fix subtext visibility + card clickability on dark bg */
.resources-section .section__sub {
  color: rgba(255, 255, 255, 0.8) !important;
  max-width: 720px;
  margin: 1rem auto 0 !important;
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.65;
}
.resources-section .resource-card {
  cursor: pointer !important;
  position: relative !important;
  z-index: 2 !important;
  background: rgba(255, 255, 255, 0.045) !important;
  border: 1px solid rgba(201, 150, 59, 0.35) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}
.resources-section .resource-card:hover {
  background: rgba(201, 150, 59, 0.08) !important;
  border-color: rgba(201, 150, 59, 0.65) !important;
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(201, 150, 59, 0.35) !important;
  transform: translateY(-4px) !important;
}
.resources-section .resource-card:active {
  transform: translateY(-1px) !important;
}
.resources-section .resource-card__title {
  color: #ffffff !important;
  font-size: 1.05rem !important;
}
.resources-section .resource-card__desc {
  color: rgba(255, 255, 255, 0.68) !important;
}
.resources-section .resource-card__cta {
  color: #c9963b !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
}
.resources-section .resource-card:hover .resource-card__cta {
  color: #e4b558 !important;
}
.resources-section .resources-grid {
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* --- Capability illustrations: hover animation --- */
.cap-row__visual .illus {
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
}
.cap-row:hover .cap-row__visual .illus {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
.illus__card {
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.cap-row:hover .illus__card {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.illus__badge {
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}
.cap-row:hover .illus__badge {
  transform: scale(1.05);
}
.illus__pill {
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}
.cap-row:hover .illus__pill {
  transform: translateY(-2px);
}

/* --- Track record cards: hover animation --- */
.case-card--light {
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}
.case-card--light:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.case-card__value {
  transition: transform 0.3s ease;
}
.case-card--light:hover .case-card__value {
  transform: scale(1.03);
}

/* --- Cap row phase/title/desc on light bg: ensure readable --- */
.cap-row__phase {
  color: #996d1a !important;
}
.cap-row__title {
  color: #1a1a1a !important;
}
.cap-row__desc {
  color: rgba(26, 26, 26, 0.6) !important;
}

/* --- Testimonial company logos --- */
.testimonial-card__company-logo {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.95);
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 0.5rem;
}

/* --- Footer location styling --- */
.footer__location {
  line-height: 1.6 !important;
}
