/* =====================================================================
   FUTUREADY MEDIA SITE CSS
   Components, layout, page-specific styles
   Depends on brand.css tokens
   ===================================================================== */

/* =======================================================
   NAVBAR
   ======================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem var(--gutter);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: padding var(--dur) var(--ease), background var(--dur) var(--ease), border var(--dur) var(--ease);
}
.nav.is-scrolled { padding: 1rem var(--gutter); background: rgba(255, 255, 255, 0.96); border-bottom-color: var(--rule); }
.nav.is-dark { background: rgba(13, 32, 58, 0.92); border-bottom-color: rgba(255, 255, 255, 0.05); }
.nav.is-dark.is-scrolled { background: rgba(8, 22, 40, 0.96); }

.nav:not(.is-dark) .nav__logo img {
  filter: invert(1) brightness(0.15);
}
.nav__logo {
  display: flex;
  align-items: center;
  height: 36px;
}
.nav__logo img { height: 32px; width: auto; object-fit: contain; display: block; }

/* Dark nav (default, hero pages) → show white logo, hide color logo */
.nav.is-dark  .nav__logo-white { display: block; }
.nav.is-dark  .nav__logo-color { display: none;  }

/* Light nav (scrolled on light pages) → show color logo, hide white logo */
.nav:not(.is-dark) .nav__logo-white { display: none;  }
.nav:not(.is-dark) .nav__logo-color { display: block; }

.nav__links {
  display: none;
  align-items: center;
  gap: 2.2rem;
}
.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  position: relative;
  background: none;
  border: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav__link:hover,
.nav__link.is-active { color: var(--brand-midnight); font-weight: 700; }

.nav.is-dark .nav__link        { color: rgba(255, 255, 255, 0.6); }
.nav.is-dark .nav__link:hover,
.nav.is-dark .nav__link.is-active { color: var(--white); }

.nav__cta {
  display: none;
  padding: 0.6rem 1.3rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid var(--brand-midnight);
  color: var(--brand-midnight);
  background: transparent;
  transition: all var(--dur-fast) var(--ease);
}
.nav__cta:hover { background: var(--brand-midnight); color: var(--white); }
.nav.is-dark .nav__cta { border-color: rgba(255, 255, 255, 0.4); color: var(--white); }
.nav.is-dark .nav__cta:hover { background: var(--white); color: var(--brand-midnight); }

/* Dropdown */
.nav__dropdown-wrap { position: relative; }
.nav__dropdown-wrap::after {
  /* Invisible hover bridge so cursor doesn't "drop" the menu */
  content: '';
  position: absolute;
  top: 100%;
  left: -2rem;
  right: -2rem;
  height: 1rem;
}
.nav__caret { transition: transform var(--dur-fast) var(--ease); }
.nav__dropdown-wrap:hover .nav__caret { transform: rotate(180deg); }

.nav__dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  width: 300px;
  background: var(--white);
  border: 1px solid var(--rule);
  box-shadow: 0 20px 60px rgba(13, 32, 58, 0.12);
  padding: 0.5rem 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.nav__dropdown-wrap:hover .nav__dropdown,
.nav__dropdown-wrap:focus-within .nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav.is-dark .nav__dropdown {
  background: var(--brand-midnight-ink);
  border-color: rgba(255, 255, 255, 0.1);
}
.nav__dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-dim);
  border-bottom: 1px solid var(--rule);
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.nav__dropdown-item:last-child { border-bottom: none; }
.nav__dropdown-item:hover { background: var(--cream); color: var(--brand-midnight); }
.nav__dropdown-item .arrow { color: var(--brand-orange); font-size: 0.7rem; }

.nav.is-dark .nav__dropdown-item        { color: rgba(255, 255, 255, 0.55); border-bottom-color: rgba(255, 255, 255, 0.05); }
.nav.is-dark .nav__dropdown-item:hover  { background: rgba(255, 255, 255, 0.04); color: var(--white); }

/* Hamburger */
.nav__burger {
  background: none;
  border: none;
  padding: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
}
.nav__burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--brand-midnight);
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}
.nav.is-dark .nav__burger span { background: var(--white); }
.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 999;
  padding: 5rem var(--gutter) 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--dur) var(--ease);
}
.nav__mobile.is-open { transform: translateX(0); }
.nav.is-dark + .nav__mobile { background: var(--brand-midnight); }

.nav__mobile-link {
  display: block;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-midnight);
}
.nav.is-dark + .nav__mobile .nav__mobile-link {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.nav__mobile-sub {
  display: none;
  padding-left: 1rem;
}
.nav__mobile-sub.is-open { display: block; }
.nav__mobile-sub a {
  display: block;
  padding: 0.8rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dim);
  border-bottom: 1px solid var(--rule);
}
.nav.is-dark + .nav__mobile .nav__mobile-sub a {
  color: rgba(255, 255, 255, 0.5);
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.nav__mobile-cta {
  display: block;
  margin-top: 2rem;
  padding: 1rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--brand-orange);
  color: var(--white);
}

@media (min-width: 1024px) {
  .nav__links    { display: flex; }
  .nav__cta      { display: inline-flex; }
  .nav__burger   { display: none; }
  .nav__mobile   { display: none; }
}

/* =======================================================
   FOOTER
   ======================================================= */
.footer {
  background: var(--brand-midnight-ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem var(--gutter) 2rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 768px) {
  .footer__top { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2rem; }
}
.footer__logo { height: 32px; width: auto; margin-bottom: 1.5rem; }
.footer__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 340px;
  color: #fff;
}
.footer__col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-consumer);
  margin-bottom: 1.5rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.8rem; }
.footer__col a {
  font-size: 0.88rem;
  color: #fff;
  transition: color var(--dur-fast) var(--ease);
}
.footer__col a:hover { color: var(--brand-consumer); }
.footer__col address {
  font-style: normal;
  font-size: 0.82rem;
  line-height: 1.6;
  color: #fff;
}
.footer__col address strong {
  display: block;
  color: var(--brand-consumer);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.15rem;
}
/* Location service CTA buttons in the footer Services column */
.footer__cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__cta-group .footer__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.7rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  text-decoration: none;
  transform: none;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.footer__cta-group .footer__cta-btn:hover {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: #fff;
  transform: none;
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.78rem;
  color: #fff;
}
.footer__social { display: flex; gap: 1rem; align-items: center; }
.footer__social a { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.65); transition: background 0.2s, color 0.2s; }
.footer__social a:hover { background: var(--brand-blue); color: #fff; }
.footer__social a svg { width: 16px; height: 16px; flex-shrink: 0; }

.footer__legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer__legal a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--dur-fast) var(--ease);
}
.footer__legal a:hover { color: var(--brand-blue); }

/* =======================================================
   MAIN WRAPPER offset for fixed nav
   ======================================================= */
.page { padding-top: 0; }
.page.has-light-nav { padding-top: 0; } /* Hero pages overlap nav */

/* =======================================================
   HERO HOME
   ======================================================= */
.hero-home {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100vh;
  padding: 6rem var(--gutter) 3rem;
  background: var(--brand-midnight);
  overflow: hidden;
  color: var(--white);
}
.hero-home__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: auto;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-home__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.hero-home__chip .abc-pattern { width: 20px; gap: 2px; }
.hero-home__chip .abc-pattern span { height: 1.5px; }

.hero-home__meta {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  text-align: right;
}

.hero-home__headline {
  margin: 3rem 0;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
}
.hero-home__headline .line {
  display: block;
  color: var(--white);
}
.hero-home__headline .line.blue   { color: var(--brand-blue); font-style: italic; }
.hero-home__headline .line.faint  { color: rgba(255, 255, 255, 0.25); }
/* Emphasis on the final "Grow." line punchline of the typographic system */
.hero-home__headline .line:last-child {
  color: var(--white);
  position: relative;
}

.hero-home__bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .hero-home__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 3rem;
  }
}
.hero-home__intro {
  max-width: 550px;
  width: 100%;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}
.hero-home__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* =======================================================
   CLIENTS MARQUEE
   ======================================================= */
.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--brand-midnight);
  padding: 1.5rem 0;
}
.marquee__track {
  display: flex;
  gap: 3.5rem;
  white-space: nowrap;
  animation: marquee 10s linear infinite;
  padding-left: 3.5rem;  /* Ensure first item doesn't stick to edge */
}
.marquee__item {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
  padding-right: 1rem;  /* Fallback spacing if gap unsupported */
}
/* Logo marquee (client logos instead of text) */
.marquee-logos { padding: 2.75rem 0; }
/* Seamless loop: spacing via per-item margin (not gap) so translateX(-50%)
   lands the duplicate set exactly on the original start = no jump. */
.marquee-logos .marquee__track {
  gap: 0;
  padding-left: 0;
  align-items: center;
  animation-duration: 22s;
  will-change: transform;
}
.marquee__logo { display: inline-flex; align-items: center; margin-right: 2.5rem; padding-right: 0; flex-shrink: 0; }
.marquee__logo img {
  height: 72px;
  width: auto;
  max-width: 290px;
  object-fit: contain;
  filter: brightness(0) invert(1);   /* render pure white */
  opacity: 0.85;
  transition: opacity 0.25s ease;
}
.marquee__logo img:hover { opacity: 1; }
@media (max-width: 640px) {
  .marquee__logo { margin-right: 1.75rem; }
  .marquee__logo img { height: 54px; max-width: 220px; }
}

.marquee-big { border: none; background: transparent; padding: 3rem 0; }
.marquee-big .marquee__track { animation-duration: 16s; }
.marquee-big .marquee__item {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--brand-midnight);
  letter-spacing: -0.02em;
}
.marquee-big .marquee__sep { color: var(--brand-orange); margin: 0 1.5rem; }

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

/* =======================================================
   WORK GRID
   ======================================================= */
.work-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: var(--section-pad) var(--gutter) 2rem;
}
.work-intro__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-midnight);
}
.work-intro__cta .arrow { color: var(--brand-orange); }
.work-intro__cta:hover .arrow { transform: translateX(4px); transition: transform var(--dur-fast) var(--ease); }

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 380px 380px;
  gap: 3px;
  background: var(--brand-midnight);
}
.work-grid__cell--lg { grid-row: unset; }
@media (max-width: 700px) {
  .work-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
}
.work-grid__cell {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}
.work-grid__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.work-grid__cell:hover img { transform: scale(1.04); }
.work-grid__cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 22, 40, 0.85), transparent 55%);
  pointer-events: none;
}
.work-grid__info {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  color: var(--white);
}
.work-grid__info .client {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-consumer);
  margin-bottom: 0.5rem;
}
.work-grid__info .title {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 700;
  line-height: 1.3;
}

/* =======================================================
   STATS ROW
   ======================================================= */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 768px) { .stats { grid-template-columns: repeat(4, 1fr); } }

.stat {
  padding: 3rem var(--gutter);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.stat:last-child { border-right: none; }
@media (min-width: 768px) {
  .stat { border-bottom: none; }
  .stat:nth-child(4) { border-right: none; }
}
.stat__num {
  display: flex;
  align-items: flex-start;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--brand-midnight);
  letter-spacing: -0.03em;
}
.stat__unit {
  font-size: 0.5em;
  color: var(--brand-orange);
  margin-left: 0.1em;
}
.stat__desc {
  margin-top: 1rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-dim);
}

/* =======================================================
   SERVICES LIST (home)
   ======================================================= */
.services-list { border-top: 1px solid var(--rule); }
.svc-row {
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--rule);
  transition: padding var(--dur-fast) var(--ease);
}
.svc-row:hover { padding-left: 1.5rem; }
.svc-row__num {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--brand-orange);
}
.svc-row__name {
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  font-weight: 700;
  color: var(--brand-midnight);
  letter-spacing: -0.02em;
}
.svc-row__arrow {
  width: 32px;
  height: 32px;
  color: var(--text-dim);
  transition: color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.svc-row:hover .svc-row__arrow { color: var(--brand-orange); transform: translateX(6px); }

/* =======================================================
   TESTIMONIAL
   ======================================================= */
.testimonial {
  background: var(--brand-midnight);
  color: var(--white);
  padding: 5rem var(--gutter);
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 768px) { .testimonial { grid-template-columns: 1fr 2fr; gap: 5rem; } }
.testimonial__quote {
  font-size: clamp(1.3rem, 2.2vw, 2.2rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
}
.testimonial__attr {
  margin-top: 2rem;
}
.testimonial__attr .name  { font-size: 0.9rem; font-weight: 700; color: rgba(255, 255, 255, 0.85); }
.testimonial__attr .role  { font-size: 0.8rem; color: rgba(255, 255, 255, 0.5); }
.testimonial__img {
  height: 360px;
  overflow: hidden;
}
.testimonial__img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(20%);
}

/* =======================================================
   CTA BLOCK (home bottom)
   ======================================================= */
.cta-block {
  background: var(--brand-blue);
  color: var(--white);
  padding: 5rem var(--gutter);
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 768px) { .cta-block { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.cta-block__headline {
  font-size: clamp(2.2rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.cta-block__headline em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.4);
  display: block;
}

/* Inline form (home) */
.inline-form { display: flex; flex-direction: column; gap: 0; }
.inline-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.inline-form__field label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
}
.inline-form__field input,
.inline-form__field select {
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  padding: 0.2rem 0;
}
.inline-form__field input::placeholder { color: rgba(255, 255, 255, 0.85); }
.inline-form__field select option { background: var(--brand-midnight); color: var(--white); }
.inline-form button {
  align-self: flex-start;
  margin-top: 2rem;
  background: var(--white);
  color: var(--brand-blue);
  border: none;
  padding: 1rem 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.inline-form button:hover { background: var(--brand-midnight); color: var(--white); }

/* =======================================================
   SERVICE PAGE
   ======================================================= */
.svc-hero {
  background: var(--brand-midnight);
  color: var(--white);
  padding: 9rem var(--gutter) 5rem;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}
.svc-hero__label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-title);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}
.svc-hero__label::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 2px;
  background: #c84727;
  flex-shrink: 0;
}
.svc-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.svc-hero__title .em {
  color: var(--brand-blue);
  font-style: italic;
}
.svc-hero__desc {
  max-width: 640px;
  margin-top: 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #fff;
}
/* White breadcrumbs on the service hero */
/* (service-hero breadcrumbs now inherit the global white .crumbs styling) */
.svc-hero__stats {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.svc-hero__stat .val {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--brand-consumer);
  letter-spacing: -0.02em;
  line-height: 1;
}
.svc-hero__stat .key {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.svc-badges {
  padding: 3rem var(--gutter);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  background: var(--cream);
}
.svc-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--rule);
  background: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-midnight);
}

.svc-approach {
  padding: var(--section-pad) var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .svc-approach { grid-template-columns: 1fr 1.5fr; gap: 5rem; }
}
.svc-approach h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--brand-midnight);
}
.svc-approach p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}
.svc-approach__meta {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.svc-approach__meta .k {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 0.5rem;
}
.svc-approach__meta .v { font-size: 0.85rem; color: var(--brand-midnight); }

/* Process steps */
.svc-process {
  background: var(--brand-midnight);
  color: var(--white);
  padding: var(--section-pad) var(--gutter);
}
.svc-process h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4rem;
  max-width: 700px;
  line-height: 1;
  letter-spacing: -0.03em;
}
.svc-process__list { display: flex; flex-direction: column; }
.svc-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.svc-step:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.svc-step__num {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-consumer);
  letter-spacing: 0.08em;
}
.svc-step__title {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.svc-step__desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 720px;
}

/* Case study block */
.svc-case {
  background: var(--brand-orange);
  color: var(--white);
  padding: 5rem var(--gutter);
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.svc-case__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}
.svc-case__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 800px;
  margin-bottom: 3rem;
}
.svc-case__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) { .svc-case__grid { grid-template-columns: repeat(4, 1fr); } }
.svc-case__stat .val {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}
.svc-case__stat .unit { color: var(--white); }
.svc-case__stat .key {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

/* FAQs */
.svc-faqs { padding: var(--section-pad) var(--gutter); background: var(--cream); }
.svc-faqs h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--brand-midnight);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 3rem;
}
.faq {
  border-top: 1px solid var(--rule);
  padding: 1.5rem 0;
}
.faq:last-child { border-bottom: 1px solid var(--rule); }
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-midnight);
}
.faq__icon {
  flex: 0 0 24px;
  height: 24px;
  position: relative;
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  width: 100%;
  height: 2px;
  background: var(--brand-orange);
  transition: transform var(--dur-fast) var(--ease);
}
.faq__icon::after { transform: rotate(90deg); }
.faq.is-open .faq__icon::after { transform: rotate(0); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur) var(--ease);
}
.faq.is-open .faq__a { max-height: 500px; }
.faq__a p {
  padding-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-dim);
}

/* Service CTA */
.svc-cta {
  background: var(--brand-midnight);
  color: var(--white);
  padding: var(--section-pad) var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .svc-cta { flex-direction: row; justify-content: space-between; align-items: center; }
}
.svc-cta h2 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.svc-cta h2 em {
  font-style: italic;
  color: var(--brand-blue);
}

/* =======================================================
   CONTACT PAGE
   ======================================================= */
.contact-hero {
  background: var(--brand-midnight);
  color: var(--white);
  padding: 10rem var(--gutter) 5rem;
  min-height: 60vh;
}
.contact-hero__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-consumer);
  margin-bottom: 1.5rem;
}
.contact-hero__title {
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 800px;
}
.contact-hero__title em { color: var(--brand-blue); font-style: italic; }

.contact-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  padding: var(--section-pad) var(--gutter);
  background: var(--cream);
}
@media (min-width: 768px) { .contact-body { grid-template-columns: 1fr 1.5fr; gap: 5rem; } }

.contact-info h3 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 1rem;
}
.contact-info dt {
  margin-top: 2rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}
.contact-info dd {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brand-midnight);
}
.contact-info dd a:hover { color: var(--brand-orange); }

/* Form (contact page) */
.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form__field { display: flex; flex-direction: column; gap: 0.4rem; }
.form__field label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.form__field input,
.form__field select,
.form__field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.9rem 1rem;
  background: var(--white);
  border: 1px solid var(--rule);
  color: var(--brand-midnight);
  transition: border var(--dur-fast) var(--ease);
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--brand-orange);
}
.form__field textarea { min-height: 140px; resize: vertical; }
.form__row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form__submit {
  align-self: flex-start;
  background: var(--brand-orange);
  color: var(--white);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background var(--dur-fast) var(--ease);
}
.form__submit:hover { background: var(--brand-midnight); }

.form__alert {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-left: 3px solid;
}
.form__alert--ok  { background: #E8F5E9; color: #1B5E20; border-color: #2E7D32; }
.form__alert--err { background: #FDECEA; color: #B71C1C; border-color: #C62828; }

/* =======================================================
   ABOUT PAGE
   ======================================================= */
.about-hero {
  padding: 11rem var(--gutter) 5rem;
}
.about-hero__title {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 1rem 0 2.5rem;
  max-width: 1000px;
}
.about-hero__title em { color: var(--brand-blue); font-style: italic; }
.about-hero__desc {
  max-width: 620px;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  color: var(--text-dim);
}

.about-story {
  padding: var(--section-pad) var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) {
  .about-story { grid-template-columns: 1fr 1fr; gap: 5rem; }
}
.about-story__col h2 { margin: 1rem 0 2rem; }
.about-story__col p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.milestones { margin-top: 1rem; }
.milestone {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: flex-start;
}
.milestone:last-child { border-bottom: none; }
.milestone__year {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--brand-blue);
  padding-top: 0.15rem;
}
.milestone__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink);
}

.about-banner {
  height: clamp(280px, 50vw, 480px);
  overflow: hidden;
}
.about-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7);
}

/* Values section dark bg */
.about-values {
  background: var(--brand-midnight);
  color: var(--white);
  padding: var(--section-pad) var(--gutter);
}
.about-values__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 1rem 0 3.5rem;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

.value {
  background: var(--brand-midnight);
  padding: 2.5rem 2rem;
  transition: background var(--dur-fast) var(--ease);
}
.value:hover { background: rgba(42, 133, 190, 0.08); }
.value__num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--brand-blue);
  margin-bottom: 1rem;
}
.value__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.value__desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Team */
.about-team { padding: var(--section-pad) var(--gutter); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }

.team-card__photo {
  aspect-ratio: 1;
  background: var(--brand-midnight);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  overflow: hidden;
  position: relative;
  transition: background var(--dur-fast) var(--ease);
}
.team-card:hover .team-card__photo { background: var(--brand-blue); }
.team-card__initials {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.15);
  letter-spacing: -0.02em;
  transition: color var(--dur-fast) var(--ease);
}
.team-card:hover .team-card__initials { color: rgba(255, 255, 255, 0.5); }
.team-card__name {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}
.team-card__role {
  font-size: 0.82rem;
  color: var(--brand-orange);
  margin-top: 0.25rem;
}

/* CTA strip (reusable across pages) */
.cta-strip {
  background: var(--brand-midnight);
  color: var(--white);
  padding: 4rem var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}
@media (min-width: 768px) {
  .cta-strip { flex-direction: row; align-items: center; padding: 5rem var(--gutter); }
}
.cta-strip h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}
.cta-strip h2 em {
  font-style: italic;
  color: var(--brand-blue);
}

/* =======================================================
   WORK PAGE
   ======================================================= */
.page-work { background: var(--brand-midnight-ink); }
.page-work .footer { background: #000; }

.work-hero {
  padding: 10rem var(--gutter) 4rem;
  background: var(--brand-midnight-ink);
  color: var(--white);
}
.work-hero__title {
  font-size: clamp(2.5rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 1rem 0 2rem;
}
.work-hero__title em { color: var(--brand-blue); font-style: italic; }
.work-hero__title .d-block { display: block; }
.work-hero__desc {
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

/* Filter bar (sticky) industry dropdown only */
.work-filter {
  position: sticky;
  top: 60px;
  z-index: 50;
  background: rgba(8, 22, 40, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.work-filter__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  padding: 1.1rem var(--gutter);
}

.work-filter__industry-label {
  font-family: var(--font-title);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.work-filter__select {
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.7rem 2.5rem 0.7rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%232A85BE' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  transition: all var(--dur-fast) var(--ease);
  min-width: 200px;
}
.work-filter__select:hover {
  border-color: var(--brand-blue);
  background-color: rgba(42, 133, 190, 0.12);
}
.work-filter__select:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(42, 133, 190, 0.15);
}
.work-filter__select option {
  background: var(--brand-midnight-ink);
  color: var(--white);
  font-family: var(--font-title);
  padding: 0.5rem;
}

.work-filter__count {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin-left: auto;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media (max-width: 640px) {
  .work-filter__count { margin-left: 0; width: 100%; }
}

/* Empty state */
.work-empty {
  padding: 4rem var(--gutter);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}
.work-empty__reset {
  color: var(--brand-blue);
  font-weight: 600;
  text-decoration: underline;
}
.work-empty__reset:hover { color: var(--white); }

/* Work grid */
.work-section { padding: 3rem var(--gutter) 5rem; background: var(--brand-midnight-ink); }
.work-big-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
}
@media (min-width: 640px) { .work-big-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .work-big-grid { grid-template-columns: repeat(3, 1fr); } }

.work-big-cell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  min-height: 240px;
  display: block;
}
.work-big-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
  transition: transform 0.9s var(--ease), filter var(--dur) var(--ease);
}
.work-big-cell:hover img { transform: scale(1.04); filter: saturate(1); }
.work-big-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 22, 40, 0.88) 0%, transparent 55%);
  pointer-events: none;
}
.work-big-cell__info {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem 2rem;
  color: var(--white);
}
.work-big-cell__info .client {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.4rem;
}
.work-big-cell__info .title {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}
.work-big-cell__info .cat {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-blue);
}

/* CTA strip blue variant */
.cta-strip--blue {
  background: var(--brand-blue);
}
.cta-strip--blue h2 em { color: rgba(255, 255, 255, 0.5); }

/* =======================================================
   SERVICES INDEX PAGE
   ======================================================= */
.services-hero {
  padding: 11rem var(--gutter) 5rem;
}
.services-hero__title {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 1rem 0 2.5rem;
  max-width: 1000px;
}
.services-hero__title em { color: var(--brand-blue); font-style: italic; }
.services-hero__desc {
  max-width: 620px;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  color: var(--text-dim);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  transition: background var(--dur-fast) var(--ease);
  min-height: 340px;
  position: relative;
}
.service-card:hover { background: var(--brand-midnight); color: var(--white); }
.service-card__num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--brand-orange);
  margin-bottom: 1rem;
}
.service-card:hover .service-card__num { color: var(--brand-blue); }
.service-card__title {
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1rem;
}
.service-card__title span {
  display: block;
  color: var(--brand-blue);
  font-style: italic;
}
.service-card:hover .service-card__title { color: var(--white); }
.service-card__desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-dim);
  margin: 0 0 1.25rem;
  flex: 1;
}
.service-card:hover .service-card__desc { color: rgba(255, 255, 255, 0.65); }
.service-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.service-card__tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  background: var(--cream);
  color: var(--ink);
}
.service-card:hover .service-card__tag {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
}
.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-top: auto;
}
.service-card:hover .service-card__cta { color: var(--brand-blue); }
.service-card__cta svg { transition: transform var(--dur-fast) var(--ease); }
.service-card:hover .service-card__cta svg { transform: translateX(5px); }

/* =======================================================
   CAREERS PAGE
   ======================================================= */
.careers-hero {
  padding: 11rem var(--gutter) 5rem;
  background: #060e1e;
}
.careers-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 1rem 0 2rem;
  color: #fff;
}
.careers-hero__title em { color: var(--brand-blue); font-style: italic; }
.careers-hero__desc {
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}

.careers-positions {
  padding: 4rem var(--gutter) 6rem;
}
.positions-list {
  margin-top: 1.5rem;
  border-top: 1px solid var(--rule);
}
.position {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  transition: padding-left var(--dur-fast) var(--ease);
  align-items: center;
}
@media (min-width: 768px) {
  .position {
    grid-template-columns: 1fr auto auto;
    gap: 2rem;
    padding: 1.75rem 0;
  }
}
.position:hover { padding-left: 1.5rem; }
.position__title {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}
.position__dept {
  font-size: 0.78rem;
  color: var(--brand-orange);
  margin-top: 0.25rem;
  font-weight: 600;
}
.position__meta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}
.position__loc {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 500;
}
.position__type {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--rule);
  padding: 0.3rem 0.65rem;
  color: var(--text-dim);
  white-space: nowrap;
}
.position__arrow {
  font-size: 1rem;
  color: var(--brand-blue);
  font-weight: 700;
  justify-self: end;
  transition: transform var(--dur-fast) var(--ease);
}
.position:hover .position__arrow { transform: translateX(6px); }

/* =======================================================
   IDEAS / BLOG PAGE (shell)
   ======================================================= */
.ideas-hero {
  padding: 11rem var(--gutter) 5rem;
}
.ideas-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 1rem 0 2rem;
}
.ideas-hero__title em { color: var(--brand-blue); font-style: italic; }

.ideas-placeholder {
  padding: 4rem var(--gutter) 8rem;
  text-align: center;
}
.ideas-placeholder__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  border: 2px solid var(--brand-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  font-size: 2rem;
  font-weight: 800;
}
.ideas-placeholder__title {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.ideas-placeholder__desc {
  max-width: 500px;
  margin: 0 auto 2rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* =======================================================
   LOCATION / SEO LANDING PAGE (template)
   ======================================================= */
.loc-hero {
  padding: 11rem var(--gutter) 5rem;
  background: var(--brand-midnight);
  color: var(--white);
  position: relative;
}
.loc-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
}
.loc-hero__title {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 1000px;
  margin-bottom: 2rem;
}
.loc-hero__title em { color: var(--brand-blue); font-style: italic; }
.loc-hero__desc {
  max-width: 620px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2.5rem;
}
.loc-hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.loc-section {
  padding: var(--section-pad) var(--gutter);
}
.loc-section--dark {
  background: var(--brand-midnight);
  color: var(--white);
}
.loc-section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 1rem 0 2.5rem;
  max-width: 900px;
}
.loc-section--dark h2 { color: var(--white); }
.loc-section h2 em { color: var(--brand-blue); font-style: italic; }

.loc-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
@media (min-width: 768px) { .loc-grid-3 { grid-template-columns: repeat(3, 1fr); } }

.loc-point {
  padding: 2rem;
  border: 1px solid var(--rule);
  background: var(--white);
}
.loc-section--dark .loc-point {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}
.loc-point__num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--brand-orange);
  margin-bottom: 1rem;
}
.loc-section--dark .loc-point__num { color: var(--brand-blue); }
.loc-point__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.loc-section--dark .loc-point__title { color: var(--white); }
.loc-point__desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-dim);
  margin: 0;
}
.loc-section--dark .loc-point__desc { color: rgba(255, 255, 255, 0.55); }

.loc-services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 640px) { .loc-services-list { grid-template-columns: repeat(2, 1fr); } }
.loc-service-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--cream);
  color: var(--ink);
  transition: all var(--dur-fast) var(--ease);
}
.loc-service-pill:hover {
  background: var(--brand-midnight);
  color: var(--white);
}
.loc-service-pill .name {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
}
.loc-service-pill .arrow { color: var(--brand-blue); font-weight: 700; }
.loc-service-pill:hover .arrow { transform: translateX(4px); transition: transform var(--dur-fast) var(--ease); }

/* =======================================================
   CASE STUDY DETAIL PAGE
   ======================================================= */
.page-work-detail { background: var(--white); }

.cs-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  min-height: 80vh;
  background: #060e1e;
  padding: 11rem var(--gutter) 0;
  color: var(--white);
}
.cs-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: grayscale(1);
  z-index: 0;
}
.cs-hero__inner { position: relative; z-index: 2; }

.cs-hero__breadcrumbs {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.cs-hero__back, .cs-hero__cat {
  font-family: var(--font-title);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.65);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  transition: all var(--dur-fast) var(--ease);
}
.cs-hero__back:hover {
  border-color: var(--brand-blue);
  color: var(--white);
  background: rgba(42, 133, 190, 0.1);
}

.cs-hero__title {
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 0;
}
.cs-hero__tagline {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--brand-blue);
  font-style: italic;
  margin: 0.75rem 0 0;
  font-weight: 500;
}

.cs-hero__results {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: rgba(255, 255, 255, 0.06);
  margin-top: 4rem;
  margin-left: calc(-1 * var(--gutter));
  margin-right: calc(-1 * var(--gutter));
}
@media (min-width: 768px) {
  .cs-hero__results { grid-template-columns: repeat(var(--results-cols, 4), 1fr); }
}
.cs-hero__result {
  padding: 2.25rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.cs-hero__result:last-child { border-right: none; }
@media (min-width: 768px) {
  .cs-hero__result { padding: 2.5rem 2rem; border-bottom: none; }
}
.cs-hero__result-val {
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.cs-hero__result-key {
  font-family: var(--font-title);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.6rem;
  line-height: 1.4;
}

/* Overview */
.cs-overview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 5rem var(--gutter);
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 900px) {
  .cs-overview { grid-template-columns: 280px 1fr; gap: 5rem; align-items: flex-start; }
}
.cs-meta-row { margin-bottom: 1.5rem; }
.cs-meta-row__lbl {
  font-family: var(--font-title);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 0.4rem;
}
.cs-meta-row__val {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
}

.cs-section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 1rem 0 1.5rem;
}
.cs-section-title em { color: var(--brand-blue); font-style: italic; }
.cs-section-title.on-dark { color: var(--white); }
.cs-section-title--sm { font-size: clamp(1.6rem, 3vw, 2.2rem); }

.cs-body-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}
.cs-body-text:last-child { margin-bottom: 0; }

/* Challenge */
.cs-challenge {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: var(--section-pad) var(--gutter);
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 900px) {
  .cs-challenge { grid-template-columns: 1fr 1fr; gap: 5rem; }
}
.cs-challenge__row {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: flex-start;
}
.cs-challenge__row:last-child { border-bottom: none; }
.cs-challenge__num {
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--brand-blue);
  padding-top: 0.2rem;
}
.cs-challenge__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-dim);
}

/* Approach (dark) */
.cs-approach {
  background: var(--brand-midnight);
  color: var(--white);
  padding: var(--section-pad) var(--gutter);
}
.cs-step {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-items: flex-start;
}
.cs-step:last-child { border-bottom: none; }
@media (min-width: 768px) { .cs-step { grid-template-columns: 6rem 1fr; gap: 3rem; } }

.cs-step__num {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-blue);
  letter-spacing: -0.02em;
  line-height: 1;
}
@media (min-width: 768px) { .cs-step__num { font-size: 2rem; } }
.cs-step__title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.cs-step__desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

/* Results */
/* Case study banner image (after hero) */
.cs-banner { padding: 3rem var(--gutter) 0; }
.cs-banner img {
  display: block;
  width: 100%;
  max-width: var(--container, 1200px);
  margin: 0 auto;
  height: clamp(220px, 34vw, 440px);
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--rule);
}
/* These case studies only have 1280px-wide source banners; cap them at their
   native width so they are not upscaled (which caused the pixelation). */
.page-work-adf-soul-foods .cs-banner img,
.page-work-fab-habitat .cs-banner img,
.page-work-iwuman .cs-banner img,
.page-work-military-marvels .cs-banner img,
.page-work-ruhkaari .cs-banner img,
.page-work-sapana-carpet-mats .cs-banner img {
  max-width: 1280px;
  image-rendering: auto;
}

/* Case study gallery ("In Action") */
.cs-gallery { padding: var(--section-pad) var(--gutter); }
.cs-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.cs-gallery__item { margin: 0; overflow: hidden; border-radius: 12px; }
.cs-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--rule);
  border-radius: 12px;
  transition: transform 0.4s var(--ease);
}
.cs-gallery__item:hover img { transform: scale(1.03); }
@media (max-width: 640px) { .cs-gallery__grid { grid-template-columns: 1fr; } }

/* Case study videos ("See it in motion") */
.cs-videos { padding: var(--section-pad) var(--gutter); }
.cs-videos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.cs-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: #000;
}
.cs-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.cs-videos__grid .cs-video:only-child {
  grid-column: 1 / -1;
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 640px) { .cs-videos__grid { grid-template-columns: 1fr; } }

.cs-results { padding: var(--section-pad) var(--gutter); }
.cs-results__intro { max-width: 600px; margin-bottom: 3rem; }
.cs-results__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (min-width: 768px) { .cs-results__grid { grid-template-columns: repeat(4, 1fr); } }
.cs-result-cell {
  background: var(--white);
  padding: 2rem 1.5rem;
}
.cs-result-cell__val {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--brand-blue);
  line-height: 1;
  letter-spacing: -0.02em;
}
.cs-result-cell__key {
  font-family: var(--font-title);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 0.75rem;
  line-height: 1.4;
}

/* Testimonial */
.cs-testimonial {
  margin-top: 4rem;
  padding: 2.5rem;
  background: var(--brand-midnight);
  max-width: 700px;
  border-left: 4px solid var(--brand-blue);
}
.cs-testimonial__lbl {
  font-family: var(--font-title);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}
.cs-testimonial__quote {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.6;
  font-style: italic;
  margin: 0 0 1.25rem;
}
.cs-testimonial__attr {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

/* Why Futuready */
.cs-why { padding: var(--section-pad) var(--gutter); border-top: 1px solid var(--rule); }
.cs-why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 2rem;
}
@media (min-width: 900px) { .cs-why__grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

/* FAQ */
.cs-faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: var(--section-pad) var(--gutter);
  border-top: 1px solid var(--rule);
}
@media (min-width: 900px) { .cs-faq { grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: flex-start; } }

.cs-faq__list { display: flex; flex-direction: column; }
.cs-faq__item { border-bottom: 1px solid #e1e8f0; }
.cs-faq__item:first-child { border-top: 1px solid #e1e8f0; }
.cs-faq__item[open] { background: transparent; }
.cs-faq__q {
  list-style: none;
  padding: 1.2rem 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0d203a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
  transition: color 0.2s ease;
}
.cs-faq__q::-webkit-details-marker { display: none; }
.cs-faq__q:hover { color: var(--brand-blue); }
.cs-faq__icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--brand-blue);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s ease;
}
.cs-faq__item[open] .cs-faq__icon {
  transform: none;
  font-size: 1.4rem;
  content: "−";
}
.cs-faq__a {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-dim);
  padding: 0 2.5rem 1.2rem 0;
  margin: 0;
}

/* Related work */
.cs-related {
  padding: var(--section-pad) var(--gutter);
  border-top: 1px solid var(--rule);
}
.cs-related__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
  margin-top: 2rem;
}
@media (min-width: 768px) { .cs-related__grid { grid-template-columns: repeat(3, 1fr); } }

.cs-related__cell {
  position: relative;
  display: block;
  height: 280px;
  overflow: hidden;
}
.cs-related__cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
  transition: transform 0.9s var(--ease), filter var(--dur) var(--ease);
}
.cs-related__cell:hover img { transform: scale(1.04); filter: saturate(1); }
.cs-related__cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 22, 40, 0.85) 0%, transparent 55%);
  pointer-events: none;
}
.cs-related__info {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem 2rem;
  color: var(--white);
}
.cs-related__client {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.4rem;
}
.cs-related__title {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
}

/* =======================================================
   CAREER DETAIL PAGE
   ======================================================= */
.cd-hero {
  padding: 11rem var(--gutter) 4rem;
  border-bottom: 1px solid var(--rule);
}
.cd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.cd-breadcrumb a { color: var(--text-dim); }
.cd-breadcrumb a:hover { color: var(--brand-blue); }
.cd-breadcrumb span:not(.cd-breadcrumb__sep) { color: var(--ink); font-weight: 600; }
.cd-breadcrumb__sep { color: rgba(0, 0, 0, 0.2); margin: 0 0.25rem; }

.cd-hero__chips {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.cd-chip {
  font-family: var(--font-title);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
}
.cd-chip--blue { background: var(--brand-blue); color: var(--white); }
.cd-chip--bordered { border: 1px solid var(--rule); color: var(--text-dim); }
.cd-chip--plain { color: var(--text-dim); padding: 0.4rem 0; letter-spacing: 0.05em; font-weight: 500; text-transform: none; font-size: 0.85rem; }

.cd-hero__title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0;
  max-width: 900px;
}

.cd-section {
  padding: 4rem var(--gutter);
  border-bottom: 1px solid var(--rule);
  max-width: 900px;
}
.cd-section--apply { border-bottom: none; padding-bottom: 6rem; }
.cd-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-dim);
  margin-top: 1.5rem;
  max-width: 720px;
}
.cd-link {
  color: var(--brand-blue);
  font-weight: 600;
  text-decoration: underline;
}
.cd-link:hover { color: var(--brand-orange); }

.cd-reqs { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.cd-req {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.6;
}
.cd-req:last-child { border-bottom: none; }
.cd-req__bullet {
  color: var(--brand-blue);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1.2rem;
  line-height: 1.4;
}

/* =======================================================
   BLOG LISTING PAGE (/ideas)
   ======================================================= */
.blog-filter {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: #fff;
}
.blog-filter__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem var(--gutter);
  flex-wrap: nowrap;
}
.blog-filter__label {
  font-family: var(--font-title);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
  flex-shrink: 0;
}
.blog-filter__select-wrap {
  position: relative;
  display: inline-block;
}
.blog-filter__select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 0.7rem 2.75rem 0.7rem 1.15rem;
  min-width: 240px;
  cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.blog-filter__select:hover,
.blog-filter__select:focus {
  border-color: var(--brand-blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(42, 133, 190, 0.12);
}
.blog-filter__chevron {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--brand-blue);
  font-size: 0.9rem;
}
.blog-filter__count-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-left: auto;
  white-space: nowrap;
  flex-shrink: 0;
}
.blog-filter__count-label strong {
  color: var(--ink);
  font-weight: 700;
}

.blog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 4rem var(--gutter) 6rem;
  width: 100%;
}
@media (min-width: 600px)  { .blog-list { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.75rem; } }
@media (min-width: 900px)  { .blog-list { grid-template-columns: repeat(3, 1fr); gap: 2.5rem 1.75rem; } }
@media (min-width: 1200px) { .blog-list { grid-template-columns: repeat(4, 1fr); gap: 2.5rem 1.5rem; } }

.blog-card {
  display: flex;
  flex-direction: column;
}
.blog-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: var(--ink);
  transition: transform var(--dur-fast) var(--ease);
}
.blog-card:hover .blog-card__link { transform: translateY(-4px); }

.blog-card__image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cream);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.blog-card:hover .blog-card__image img { transform: scale(1.06); }

.blog-card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card__meta {
  display: flex;
  gap: 0.5rem 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
}
.blog-card__cat {
  font-family: var(--font-title);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-orange);
}
.blog-card__date,
.blog-card__read {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 500;
}
.blog-card__date {
  margin-left: auto;
}

.blog-card__title {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 0.75rem;
  transition: color var(--dur-fast) var(--ease);
}
.blog-card:hover .blog-card__title { color: var(--brand-blue); }

.blog-card__excerpt {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--text-dim);
  margin: 0 0 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--rule);
}
.blog-card__arrow {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-blue);
  transition: transform var(--dur-fast) var(--ease);
}
.blog-card:hover .blog-card__arrow { transform: translateX(4px); }
.blog-card__read {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-weight: 500;
  white-space: nowrap;
}

.blog-empty {
  padding: 6rem var(--gutter);
  text-align: center;
  color: var(--text-dim);
  font-size: 0.95rem;
}
.blog-empty a { color: var(--brand-blue); text-decoration: underline; }

/* Load More */
.blog-loadmore {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2.5rem var(--gutter) 3rem;
}
.blog-loadmore__btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  background: var(--brand-navy);
  color: #fff;
  border: none;
  padding: 0.9rem 2.5rem;
  border-radius: 4px;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease);
}
.blog-loadmore__btn:hover { background: var(--brand-blue); }
.blog-loadmore__count {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  opacity: 0.7;
}

/* Footer offices */
.footer__offices {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
.footer__office strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 0.25rem;
}
.footer__office address {
  font-style: normal;
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
}
.footer__contact-links {
  margin-bottom: 0.5rem;
}

/* Contact page offices */
.contact-hero__sub {
  max-width: 680px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin: 1.25rem 0 0;
}
.contact-offices {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--rule);
}
.contact-office h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-navy);
  margin: 0 0 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-office__hq {
  font-size: 0.65rem;
  background: var(--brand-blue);
  color: #fff;
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  letter-spacing: 0.1em;
}
.contact-office address {
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-dim);
}

/* =======================================================
   BLOG POST (SINGLE) /ideas/<slug>
   ======================================================= */
.page-blog-post { background: #fff; }

/* ── Blog post article wrapper ──────────────────────── */
.blog-post {
  width: 100%;
}

/* ── Hero: clean dark header, no image ──────────────── */
.blog-post__hero {
  background: #060e1e;
  padding: 0;
}
.blog-post__hero-inner {
  padding: 8rem var(--gutter) 3.5rem;
  max-width: 75%;
}

/* ── Breadcrumbs ─────────────────────────────────────── */
.blog-post__crumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.blog-post__crumbs a { color: rgba(255,255,255,0.45); text-decoration: none; }
.blog-post__crumbs a:hover { color: rgba(255,255,255,0.85); }
.blog-post__crumbs .sep { margin: 0 0.2rem; opacity: 0.3; }
.blog-post__crumbs span:not(.sep) { color: rgba(255,255,255,0.7); font-weight: 600; }

/* =====================================================================
   GLOBAL BREADCRUMBS (.crumbs) — used across all pages via breadcrumbs()
   Default colours suit dark heroes; .crumbs--light suits light backgrounds.
   ===================================================================== */
.crumbs { margin: 0 0 1.5rem; }
.crumbs__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  font-size: 0.75rem;
  letter-spacing: 0.01em;
}
.crumbs__item { display: inline-flex; align-items: center; }
.crumbs__link { color: #fff; text-decoration: none; transition: color 0.2s ease; }
.crumbs__link:hover { color: var(--brand-blue); }
.crumbs__sep { color: #fff; }
.crumbs__current { color: #fff; font-weight: 600; }
/* Light-background pages */
.crumbs--light .crumbs__link { color: rgba(13,32,58,0.55); }
.crumbs--light .crumbs__link:hover { color: var(--brand-orange); }
.crumbs--light .crumbs__sep { color: rgba(13,32,58,0.3); }
.crumbs--light .crumbs__current { color: rgba(13,32,58,0.85); }

/* ── Category tag ────────────────────────────────────── */
.blog-post__cat {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2a85be;
  margin-bottom: 1rem;
}

/* ── Title ───────────────────────────────────────────── */
.blog-post__title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 1.5rem;
}

/* ── Meta row ────────────────────────────────────────── */
.blog-post__meta {
  display: flex;
  gap: 0.5rem 0.6rem;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.blog-post__author { display: inline-flex; gap: 0.4rem; align-items: baseline; }
.blog-post__author strong { color: rgba(255,255,255,0.85); font-weight: 700; }
.blog-post__author-role { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.blog-post__dot { opacity: 0.35; color: #fff; }
.blog-post__date, .blog-post__read { color: rgba(255,255,255,0.55); }

/* ── Cover image hidden (banner removed) ───────────── */
.blog-post__cover { display: none; }

/* ── Post content container ──────────────────────────── */
.blog-post__container {
  padding: 0 var(--gutter);
  max-width: 75%;
}

/* ── Body ────────────────────────────────────────────── */
.blog-post__body {
  font-size: 1rem;
  line-height: 1.8;
  color: #1a2332;
  padding: 3rem 0 2rem;
}
.blog-post__body p {
  margin: 0 0 1.5rem;
}
.blog-post__body p.lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #1a2332;
  font-weight: 500;
  border-left: 3px solid #2a85be;
  padding-left: 1.25rem;
  margin: 0 0 2rem;
}
.blog-post__body h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: #060e1e;
  margin: 2.5rem 0 1rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.blog-post__body h3 {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #060e1e;
  margin: 2rem 0 0.75rem;
  line-height: 1.3;
}
.blog-post__body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #060e1e;
  margin: 1.5rem 0 0.5rem;
}
.blog-post__body ul,
.blog-post__body ol {
  margin: 0 0 1.5rem 0;
  padding-left: 1.5rem;
}
.blog-post__body ul { list-style: disc; }
.blog-post__body ol { list-style: decimal; }
.blog-post__body li { margin-bottom: 0.5rem; line-height: 1.7; }
.blog-post__body li::marker { color: #2a85be; }
.blog-post__body strong { font-weight: 700; color: #060e1e; }
.blog-post__body em { font-style: italic; }
.blog-post__body blockquote {
  border-left: 3px solid #2a85be;
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: #f4f7fb;
  border-radius: 0 6px 6px 0;
  font-style: italic;
  color: #374151;
}
.blog-post__body a { color: #2a85be; text-decoration: none; border-bottom: 1px solid rgba(42,133,190,0.3); }

/* ---- Rich in-content blocks (stat grids, callouts, tables) ---- */
.blog-post__body .blog-stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin: 2.25rem 0;
}
.blog-post__body .blog-stat-card {
  background: #0d203a;
  color: #fff;
  border-radius: 10px;
  padding: 1.75rem 1.25rem;
  text-align: center;
}
.blog-post__body .stat-number { display: block; font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 800; line-height: 1; letter-spacing: -0.02em; }
.blog-post__body .stat-label { display: block; margin-top: 0.6rem; font-size: 0.8rem; color: rgba(255,255,255,0.8); line-height: 1.4; }

.blog-post__body .blog-pull-quote {
  border-left: 4px solid var(--brand-orange);
  background: #f4f7fb;
  padding: 1.5rem 1.75rem;
  margin: 2.25rem 0;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #0d203a;
  border-radius: 0 8px 8px 0;
}

.blog-post__body .blog-case-callout {
  background: #f4f7fb;
  border: 1px solid #e1e8f0;
  border-radius: 10px;
  padding: 1.5rem 1.75rem;
  margin: 2.25rem 0;
}
.blog-post__body .blog-case-callout h3, .blog-post__body .blog-case-callout h4 { margin: 0 0 0.6rem; color: #0d203a; }
.blog-post__body .blog-case-callout strong { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: #0d203a; font-weight: 700; margin-bottom: 0.6rem; }
.blog-post__body .blog-case-callout p { margin: 0; }

.blog-post__body .blog-cta-box {
  background: #0d203a;
  color: #fff;
  border-radius: 10px;
  padding: 2.25rem 2rem;
  text-align: center;
  margin: 2.5rem 0;
}
.blog-post__body .blog-cta-box h3, .blog-post__body .blog-cta-box h4 { color: #fff; margin: 0 0 0.6rem; font-size: 1.4rem; }
.blog-post__body .blog-cta-box p { color: rgba(255,255,255,0.85); margin: 0; }
.blog-post__body .blog-cta-box a { color: #fff; border-bottom-color: rgba(255,255,255,0.5); }

.blog-post__body .blog-comparison-table { width: 100%; border-collapse: collapse; margin: 2.25rem 0; font-size: 0.9rem; }
.blog-post__body .blog-comparison-table th { background: #0d203a; color: #fff; padding: 0.8rem 1rem; text-align: left; font-weight: 700; }
.blog-post__body .blog-comparison-table td { padding: 0.7rem 1rem; border-bottom: 1px solid #e1e8f0; }
.blog-post__body .blog-comparison-table tr:nth-child(even) td { background: #f9fbfd; }
.blog-post__body a:hover { color: #c84727; border-bottom-color: #c84727; }
.blog-post__body img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 1.5rem 0;
  display: block;
}
.blog-post__body code {
  font-family: 'SF Mono', Consolas, monospace;
  font-size: 0.88em;
  background: #f4f7fb;
  padding: 0.15em 0.4em;
  border-radius: 3px;
  color: #c84727;
}
.blog-post__body hr {
  border: none;
  border-top: 1px solid #e1e8f0;
  margin: 3rem 0;
}

/* ── Tags ────────────────────────────────────────────── */
.blog-post__tags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  border-top: 1px solid #e1e8f0;
  margin-top: 1rem;
}
.blog-post__tags-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6b7280;
}
.blog-post__tag {
  background: #f4f7fb;
  border: 1px solid #e1e8f0;
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #374151;
}

/* ── Related posts ───────────────────────────────────── */
.blog-related {
  padding: 3.5rem var(--gutter) 4rem;
  border-top: 1px solid #e1e8f0;
  background: #f4f7fb;
}
.blog-related .label-row { margin-bottom: 2rem; max-width: 860px; }
.blog-related__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1100px) { .blog-related__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .blog-related__grid { grid-template-columns: 1fr; } }
.blog-related__card {
  display: block;
  color: var(--ink);
  text-decoration: none;
  background: #fff;
  border: 1px solid #e1e8f0;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.blog-related__card:hover {
  box-shadow: 0 6px 20px rgba(13,32,58,0.1);
  transform: translateY(-3px);
}
.blog-related__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e8edf2;
}
.blog-related__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.blog-related__card:hover .blog-related__image img { transform: scale(1.04); }
.blog-related__body { padding: 1rem 1.1rem 1.25rem; }
.blog-related__cat {
  font-family: var(--font-title);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c84727;
  margin-bottom: 0.4rem;
}
.blog-related__title {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0d203a;
  margin: 0 0 0.4rem;
}
.blog-related__excerpt {
  font-size: 0.8rem;
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =======================================================
   LEGAL PAGES (Privacy, Terms, Cookie Policy)
   ======================================================= */
.page-legal { background: var(--white); }

.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.legal__hero {
  padding: 9rem 0 3rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 3rem;
}
.legal__title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 1rem 0 1rem;
}
.legal__updated {
  font-size: 0.82rem;
  color: var(--text-dim);
  font-weight: 500;
  margin: 0;
}

.legal__body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-dim);
  padding-bottom: 5rem;
}
.legal__lead {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--ink);
  font-weight: 500;
  border-left: 4px solid var(--brand-blue);
  padding-left: 1.5rem;
  margin: 0 0 2.5rem;
}
.legal__body p {
  margin: 0 0 1.25rem;
}
.legal__body h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 2.75rem 0 1rem;
}
.legal__body h3 {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin: 2rem 0 0.75rem;
}
.legal__body ul, .legal__body ol {
  margin: 0 0 1.5rem;
  padding-left: 1.5rem;
}
.legal__body li {
  margin-bottom: 0.6rem;
  line-height: 1.7;
}
.legal__body li::marker { color: var(--brand-blue); }
.legal__body strong { color: var(--ink); font-weight: 700; }
.legal__body a {
  color: var(--brand-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal__body a:hover { color: var(--brand-orange); }

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0 1.75rem;
  font-size: 0.92rem;
}
.legal-table thead {
  background: var(--cream);
}
.legal-table th {
  text-align: left;
  padding: 0.85rem 1rem;
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 2px solid var(--rule);
}
.legal-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
  color: var(--text-dim);
  line-height: 1.5;
}
.legal-table tr:last-child td { border-bottom: none; }

/* =======================================================
   THANK-YOU PAGE
   ======================================================= */
.thankyou-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 10rem var(--gutter) 4rem;
  background: var(--white);
}
.thankyou-hero__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.thankyou-hero__icon {
  color: var(--brand-blue);
  margin: 0 auto 2rem;
  display: inline-block;
}
.thankyou-hero__icon svg {
  animation: thankyou-pulse 2s ease-in-out infinite;
}
@keyframes thankyou-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.9; }
}
.thankyou-hero .label-row { justify-content: center; }
.thankyou-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 1rem 0 1.5rem;
}
.thankyou-hero__title em { color: var(--brand-blue); font-style: italic; }
.thankyou-hero__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto;
}

.thankyou-next {
  padding: 5rem var(--gutter);
  border-top: 1px solid var(--rule);
}
.thankyou-next__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 768px) { .thankyou-next__grid { grid-template-columns: repeat(3, 1fr); } }

.thankyou-next__card {
  display: block;
  padding: 2rem 1.75rem;
  border: 1px solid var(--rule);
  color: var(--ink);
  transition: all var(--dur-fast) var(--ease);
}
.thankyou-next__card:hover {
  border-color: var(--brand-blue);
  background: rgba(42, 133, 190, 0.04);
  transform: translateY(-3px);
}
.thankyou-next__num {
  font-family: var(--font-title);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--brand-orange);
  margin-bottom: 1rem;
}
.thankyou-next__card h3 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.thankyou-next__card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-dim);
  margin: 0 0 1.25rem;
}
.thankyou-next__card .arrow {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-blue);
  transition: transform var(--dur-fast) var(--ease);
}
.thankyou-next__card:hover .arrow { transform: translateX(4px); }

/* =======================================================
   RESPONSIVE
   ======================================================= */
@media (max-width: 640px) {
  :root { --section-pad: 4rem; }
  .hero-home__headline { margin: 2rem 0; }
  .stat { padding: 2rem 1.25rem; }
  .stat__num { font-size: 2.4rem; }
}

/* =======================================================
   PRINT
   ======================================================= */
@media print {
  .nav, .footer, .cta-block, .marquee { display: none; }
  * { color: #000 !important; background: #fff !important; }
}

/* =======================================================

/* =======================================================
   HOMEPAGE NEW SECTIONS
   ======================================================= */

/* 1. H1 SIZE reduce hero headline */
.hero-home__headline--sm .line {
  font-size: clamp(1.8rem, 4.5vw, 3.5rem) !important;
  line-height: 1.1 !important;
}

/* 2. ABOUT SECTION */
.about-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 5rem var(--gutter);
  background: var(--white);
}
.about-home__img {
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
}
.about-home__img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}
.about-home__content .label-row { margin-bottom: 1rem; }
.about-home__content h2 { margin-bottom: 0; }
.about-home__desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-dim);
  margin: 1.25rem 0 1.5rem;
}
.about-home__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.about-home__list li {
  font-size: 0.9rem;
  color: #0d203a;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.5;
}
.about-home__list li::before {
  content: "✓";
  color: #0d203a;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.btn-primary {
  display: inline-block !important;
  background: var(--brand-navy);
  color: #fff !important;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none !important;
  border: 2px solid var(--brand-navy);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.btn-primary:hover { background: var(--brand-blue); border-color: var(--brand-blue); }
@media (max-width: 860px) {
  .about-home {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-home__img img { height: 280px; }
}

/* 3. INDUSTRIES WE SERVE */
.industries {
  background: #f4f7fb;
  padding: 5rem var(--gutter);
}
.industries__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.industries__sub {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-dim);
  margin-top: 1rem;
}
.industry-card {
  display: flex !important;
  align-items: center;
  gap: 0.65rem;
  background: #fff;
  border: 1px solid #e1e8f0;
  border-radius: 8px;
  padding: 1rem 1.1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.industry-card:hover {
  border-color: var(--brand-blue);
  box-shadow: 0 4px 14px rgba(42,133,190,0.12);
}
.industry-card__icon { font-size: 1.25rem; flex-shrink: 0; }
.industry-card__name {
  font-size: 0.83rem;
  font-weight: 600;
  color: #0d203a;
  line-height: 1.3;
}

/* 4. LATEST BLOGS */
.home-blogs {
  padding: 5rem var(--gutter);
  background: #fff;
}
.home-blogs__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 1rem;
  flex-wrap: wrap;
}
/* GRID explicit 4 columns */
.home-blogs__grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.home-blog-card {
  display: flex !important;
  flex-direction: column;
  border: 1px solid #e1e8f0;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  background: #fff;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.home-blog-card:hover {
  box-shadow: 0 8px 24px rgba(13,32,58,0.1);
  transform: translateY(-3px);
}
/* Image container: fixed aspect ratio */
.home-blog-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
  background: #f0f4f8;
}
.home-blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Text body */
.home-blog-card__body {
  padding: 1.1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.home-blog-card__cat {
  font-family: var(--font-title);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-orange);
}
.home-blog-card__title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0d203a;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-blog-card__date {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: auto;
  padding-top: 0.5rem;
}
@media (max-width: 1000px) {
  .home-blogs__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .home-blogs__grid { grid-template-columns: 1fr; }
}

/* 5. TESTIMONIALS SLIDER */
.testimonials-slider {
  background: #0d203a;
  padding: 5rem var(--gutter);
}
.testimonials-slider__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
/* Hide ALL slides by default */
.tslider__slide {
  display: none !important;
}
/* Show ONLY active slide */
.tslider__slide.is-active {
  display: block !important;
  text-align: center;
  animation: fadeInSlide 0.4s ease;
}
@keyframes fadeInSlide {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.tslider {
  max-width: 680px;
  margin: 0 auto;
}
.tslider__logo {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}
.tslider__quote {
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  font-style: italic;
  margin: 0 0 1.25rem;
}
.tslider__company {
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-blue);
}
.tslider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
.tslider__btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  line-height: 1;
}
.tslider__btn:hover { background: var(--brand-blue); border-color: var(--brand-blue); }
.tslider__dots { display: flex; gap: 0.45rem; align-items: center; }
.tslider__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.tslider__dot.is-active {
  background: var(--brand-blue);
  transform: scale(1.3);
}

/* 6. FAQs */
.faqs {
  padding: 5rem var(--gutter);
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 5rem;
  align-items: start;
}
.faqs__header { position: sticky; top: 6rem; }
.faqs__list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid #e1e8f0;
}
.faq-item:first-child { border-top: 1px solid #e1e8f0; }
.faq-item summary,
.faq-item__q {
  list-style: none;
  padding: 1.2rem 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0d203a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after,
.faq-item__q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--brand-blue);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] > summary::after { content: '−'; }
.faq-item__a,
.faq-item > p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-dim);
  padding: 0 2.5rem 1.2rem 0;
  margin: 0;
}
@media (max-width: 768px) {
  .faqs { grid-template-columns: 1fr; gap: 2rem; }
  .faqs__header { position: static; }
}

/* =======================================================
   CONTACT PAGE MAPS
   ======================================================= */
.contact-maps {
  padding: 5rem var(--gutter);
  background: #f4f7fb;
}
.contact-maps__header {
  max-width: 1200px;
  margin: 0 auto 3rem;
}
.contact-maps__header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #0d203a;
  margin-top: 0.5rem;
}
.contact-maps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-map-card {
  background: #fff;
  border: 1px solid #e1e8f0;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.contact-map-card__embed {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.contact-map-card__embed iframe {
  display: block;
  width: 100%;
  height: 260px; /* taller than container to push chrome below fold */
  border: 0;
  margin-top: 0;
  margin-bottom: -40px; /* hides the bottom bar with shortcuts/map data */
}
.contact-map-card__info {
  padding: 1rem 1.25rem 1.25rem;
}
.contact-map-card__label {
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0d203a;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}
.contact-map-card__address {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 900px) {
  .contact-maps__grid { grid-template-columns: 1fr; }
}

/* =======================================================
   CONTACT PAGE FAQs
   ======================================================= */
.contact-faqs {
  padding: 5rem var(--gutter);
  background: #fff;
}
.contact-faqs__inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 5rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-faqs__header { position: sticky; top: 6rem; }
.contact-faqs__header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #0d203a;
  margin-top: 0.5rem;
}
.contact-faqs__list {
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .contact-faqs__inner { grid-template-columns: 1fr; gap: 2rem; }
  .contact-faqs__header { position: static; }
}

/* =======================================================
   SERVICES PAGE
   ======================================================= */

/* Hero */
.services-hero {
  background: var(--brand-midnight, #060e1e);
  padding: 10rem var(--gutter) 5rem;
  color: #fff;
}
.services-hero__title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin: 1rem 0;
  color: #fff;
}
.services-hero__title em { color: var(--brand-blue, #2a85be); font-style: italic; }
.services-hero__desc {
  max-width: 640px;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* Intro strip */
.services-intro {
  background: #f4f7fb;
  padding: 5rem var(--gutter);
}
.services-intro__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
}
.services-intro__text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #0d203a;
  margin: 0 0 1.25rem;
  line-height: 1.15;
}
.services-intro__text h2 em { color: var(--brand-blue, #2a85be); font-style: italic; }
.services-intro__text p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-dim, #6b7280);
  margin: 0 0 1rem;
}
.services-intro__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.services-intro__stat {
  background: #fff;
  border: 1px solid #e1e8f0;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
}
.services-intro__stat-val {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0d203a;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.services-intro__stat-key {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dim, #6b7280);
  letter-spacing: 0.05em;
}
@media (max-width: 900px) {
  .services-intro__inner { grid-template-columns: 1fr; gap: 3rem; }
}

/* Services cards grid */
.services-cards-section {
  padding: 5rem var(--gutter);
  background: #fff;
}
.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  width: 100%;
}
.svc-card {
  background: #fff;
  border: 1px solid #e1e8f0;
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.svc-card:hover {
  border-color: var(--brand-blue, #2a85be);
  box-shadow: 0 8px 28px rgba(42,133,190,0.12);
  transform: translateY(-3px);
}
.svc-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.svc-card__icon { font-size: 2rem; line-height: 1; }
.svc-card__num {
  font-family: var(--font-title, 'Montserrat', sans-serif);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--brand-orange, #c84727);
}
.svc-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0d203a;
  margin: 0;
  line-height: 1.3;
}
.svc-card__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-dim, #6b7280);
  margin: 0;
  flex: 1;
}
.svc-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-top: 1px solid #f0f4f8;
  padding-top: 1rem;
}
.svc-card__list li {
  font-size: 0.8rem;
  color: #0d203a;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
}
.svc-card__list li::before {
  content: "→";
  color: var(--brand-blue, #2a85be);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.svc-card__link {
  display: inline-block;
  font-family: var(--font-title, 'Montserrat', sans-serif);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-blue, #2a85be);
  text-decoration: none;
  margin-top: auto;
  transition: color 0.2s ease;
}
.svc-card__link:hover { color: #0d203a; }
@media (max-width: 1000px) { .services-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .services-cards-grid { grid-template-columns: 1fr; } }

/* Industries */
.services-industries {
  background: #0d203a;
  padding: 4rem var(--gutter);
}
.services-industries__inner {
  width: 100%;
}
.services-industries .label-row .lbl { color: rgba(255,255,255,0.6); }
.services-industries .label-row .line { background: rgba(255,255,255,0.15); }
.services-industries__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.services-industry-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.services-industry-tag:hover {
  background: rgba(42,133,190,0.15);
  border-color: var(--brand-blue, #2a85be);
}

/* FAQs */
.services-faqs {
  padding: 5rem var(--gutter);
  background: #fff;
}
.services-faqs__inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 5rem;
  align-items: start;
  width: 100%;
}
.services-faqs__header { position: sticky; top: 6rem; }
.services-faqs__header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #0d203a;
  margin-top: 0.5rem;
  line-height: 1.2;
}
.services-faqs__header h2 em { color: var(--brand-blue, #2a85be); font-style: italic; }
.services-faqs__list { display: flex; flex-direction: column; }
@media (max-width: 768px) {
  .services-faqs__inner { grid-template-columns: 1fr; gap: 2rem; }
  .services-faqs__header { position: static; }
}

/* =======================================================
   ABOUT PAGE FAQ SECTION
   ======================================================= */
.about-faqs {
  padding: 5rem var(--gutter);
  background: #fff;
}
.about-faqs__inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 5rem;
  align-items: start;
}
.about-faqs__header { position: sticky; top: 6rem; }
.about-faqs__header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #0d203a;
  margin-top: 0.5rem;
  line-height: 1.2;
}
.about-faqs__header h2 em { color: var(--brand-blue); font-style: italic; }
.about-faqs__list { display: flex; flex-direction: column; }
@media (max-width: 768px) {
  .about-faqs__inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-faqs__header { position: static; }
}

/* =======================================================
   SERVICE PAGE WHAT IS? SECTION
   ======================================================= */
.svc-whatis {
  background: #f4f7fb;
  padding: 4rem var(--gutter);
}
.svc-whatis__inner {
  max-width: 860px;
}
.svc-whatis__block {
  padding-top: 2.5rem;
  margin-top: 2.5rem;
  border-top: 1px solid #e1e8f0;
}
.svc-whatis__block:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}
.svc-whatis__title {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: #0d203a;
  margin: 0 0 0.75rem;
  line-height: 1.3;
}
.svc-whatis__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 700;
  color: #0d203a;
  margin: 0 0 0.75rem;
  line-height: 1.3;
}
.svc-whatis__body {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #6b7280;
  margin: 0;
}
/* Scorecard (stats grid) inside the What Is section on inner service pages */
.svc-scorecard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.25rem;
}
.svc-scorecard__item {
  background: #fff;
  border: 1px solid #e1e8f0;
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  text-align: center;
}
.svc-scorecard__val {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #0d203a;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
}
.svc-scorecard__key {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b7280;
  line-height: 1.3;
}
@media (max-width: 720px) { .svc-scorecard { grid-template-columns: repeat(2, 1fr); } }

/* =======================================================
   SERVICE PAGE SERVICES LIST SECTION
   ======================================================= */
.svc-list-section {
  padding: 5rem var(--gutter);
  background: #fff;
}
.svc-list-section .label-row { margin-bottom: 3rem; }
.svc-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.svc-list-card {
  background: #f4f7fb;
  border: 1px solid #e1e8f0;
  border-radius: 10px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.svc-list-card:hover {
  border-color: #2a85be;
  box-shadow: 0 4px 18px rgba(42,133,190,0.1);
}
.svc-list-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #0d203a;
  margin: 0;
  line-height: 1.3;
}
.svc-list-card__desc {
  font-size: 0.85rem;
  line-height: 1.65;
  color: #6b7280;
  margin: 0;
}
.svc-list-card__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-top: 1px solid #e1e8f0;
  padding-top: 0.75rem;
}
.svc-list-card__bullets li {
  font-size: 0.78rem;
  color: #0d203a;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  line-height: 1.4;
}
.svc-list-card__bullets li::before {
  content: "→";
  color: #2a85be;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 2px;
}
@media (max-width: 900px)  { .svc-list-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px)  { .svc-list-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   INTERACTION & MOTION ENHANCEMENTS  (added 2026-06)
   Site-wide richer hover/focus interactions + scroll-reveal expansion.
   Everything here is disabled under prefers-reduced-motion (bottom).
   ===================================================================== */

/* ---- Scroll progress bar (top of viewport) ---- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-consumer));
  z-index: 1001; pointer-events: none; transition: width 0.1s linear;
}

/* ---- Buttons: lift + soft shadow + arrow nudge ---- */
.btn { transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(13, 32, 58, 0.18); }
.btn:active { transform: translateY(0); }
.work-intro__cta .arrow, .btn .arrow { display: inline-block; transition: transform var(--dur-fast) var(--ease); }
.work-intro__cta:hover .arrow, .btn:hover .arrow { transform: translateX(6px); }

/* ---- Nav links: animated underline ---- */
.nav__link { position: relative; }
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: -3px; width: 100%; height: 2px;
  background: var(--brand-orange); transform: scaleX(0); transform-origin: left center;
  transition: transform var(--dur) var(--ease);
}
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav.is-dark .nav__link::after { background: var(--brand-consumer); }

/* ---- Footer column links: slide + accent ---- */
.footer__col a { display: inline-block; transition: color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease); }
.footer__col a:hover { color: var(--brand-consumer); transform: translateX(4px); }

/* ---- Footer social icons: lift + accent ---- */
.footer__social a { transition: transform var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease); }
.footer__social a:hover { transform: translateY(-3px); color: var(--brand-consumer); }

/* ---- Home blog cards: image zoom on hover ---- */
.home-blog-card__img img { transition: transform 0.6s var(--ease); }
.home-blog-card:hover .home-blog-card__img img { transform: scale(1.06); }

/* ---- Value cards (About): lift + accent edge ---- */
.value { position: relative; transition: background var(--dur-fast) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.value:hover { transform: translateY(-5px); box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28); }
.value::before {
  content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 3px;
  background: var(--brand-orange); transform: scaleY(0); transform-origin: top;
  transition: transform var(--dur) var(--ease);
}
.value:hover::before { transform: scaleY(1); }

/* ---- Services cards: lift + shadow ---- */
.services-cards-grid > * { transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.services-cards-grid > *:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(13, 32, 58, 0.16); }

/* ---- Stat blocks: subtle pop ---- */
.stat { transition: transform var(--dur) var(--ease); }
.stat:hover { transform: translateY(-4px); }

/* ---- Section label rule: grows on section hover ---- */
.label-row .line { transition: flex-basis var(--dur) var(--ease), width var(--dur) var(--ease); }

/* ---- Reduced motion: honour user preference, disable all motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .sr { opacity: 1 !important; transform: none !important; }
  .scroll-progress { display: none !important; }
}

/* =====================================================================
   BLOG POST: prev/next navigation
   (FAQ section reuses the .svc-faqs / .faq component from service pages)
   ===================================================================== */
.blog-nav { max-width: var(--container); margin: 0 auto; padding: 2.5rem var(--gutter); display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.blog-nav__link { display: flex; flex-direction: column; gap: 0.4rem; padding: 1.25rem 1.5rem; border: 1px solid #e1e8f0; border-radius: 10px; text-decoration: none; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; }
.blog-nav__link:hover { border-color: var(--brand-blue); box-shadow: 0 8px 22px rgba(42,133,190,0.1); transform: translateY(-2px); }
.blog-nav__next { text-align: right; align-items: flex-end; }
.blog-nav__dir { font-family: var(--font-title); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand-orange); }
.blog-nav__title { font-size: 0.95rem; font-weight: 700; color: #0d203a; line-height: 1.4; }
@media (max-width: 600px) { .blog-nav { grid-template-columns: 1fr; } .blog-nav__next { text-align: left; align-items: flex-start; } }
