@import url('https://fonts.googleapis.com/css2?family=Sora:wght@600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --te-primary: #C4451E;
  --te-secondary: #F0AC3E;
  --te-accent: #B5601F;
  --te-dark: #14110E;
  --te-text: #6B6259;
  --te-text-muted: #867A67;
  --te-cream: #ECE6DA;
  --te-orange: #E8792C;
  --te-ink: #171512;
  --te-white: #FFFFFF;
  --te-hero-muted: #C9C0B4;
  --te-border: #DDD5C7;
  --te-radius: 16px;
  --te-radius-pill: 100px;
  --te-max: 1440px;
  --te-gutter: 64px;
  --te-font-body: 'Manrope', system-ui, sans-serif;
  --te-font-heading: 'Sora', system-ui, sans-serif;
}

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

.te-2026 {
  margin: 0;
  font-family: var(--te-font-body);
  color: var(--te-ink);
  background: var(--te-white);
  line-height: 1.6;
}

.te-2026 img:not(.te-logo__img):not(.te-partners-marquee__logo):not(.te-service-partners__img):not(.te-about-leader__photo):not(.te-about-culture__img):not(.te-about-presence__map):not(.te-insight-hero__img):not(.te-insights-featured__img):not(.te-article-card__img):not(.te-home-video__poster):not(.te-career-hero__media img):not(.te-career-job-card__logo):not(.te-career-job-card__cover img):not(.te-career-detail__cover img):not(.te-page-hero__img) {
  max-width: 100%;
  height: auto;
  display: block;
}

.te-2026 h1, .te-2026 h2, .te-2026 h3, .te-2026 h4 {
  font-family: var(--te-font-heading);
  font-weight: 700;
  margin: 0;
  line-height: 1.15;
}

.te-2026 a { color: var(--te-orange); text-decoration: none; transition: color 0.15s; }
.te-2026 a:hover { color: var(--te-primary); }

.te-container {
  width: 100%;
  max-width: var(--te-max);
  margin: 0 auto;
  padding-left: var(--te-gutter);
  padding-right: var(--te-gutter);
}

/* ---- Header ---- */
.te-header {
  border-bottom: 1px solid var(--te-cream);
  background: var(--te-white);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.te-header.is-scrolled {
  border-bottom-color: transparent;
  box-shadow: 0 4px 24px rgba(20, 17, 14, 0.08);
}

.te-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 22px var(--te-gutter);
  max-width: var(--te-max);
  margin: 0 auto;
}

.te-logo {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.te-header__actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* CTA in nav — mobile menu only; desktop uses te-header__cta on the right */
.te-nav__cta-mobile {
  display: none !important;
}
.te-logo:hover { opacity: 0.92; }

.te-logo .te-logo__img {
  width: auto;
  height: 32px;
  max-height: 32px;
  max-width: 96px;
  object-fit: contain;
  object-position: left center;
  display: block;
  flex-shrink: 0;
}

.te-logo--footer {
  display: inline-flex;
  margin-bottom: 20px;
}

.te-logo--footer .te-logo__img {
  height: 40px;
  max-height: 40px;
  max-width: 120px;
}

.te-nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--te-cream);
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
  color: var(--te-ink);
  font-size: 20px;
  line-height: 1;
}

.te-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 34px;
}

.te-nav a {
  color: var(--te-ink);
  font-weight: 600;
  font-size: 14.5px;
}
.te-nav a:hover,
.te-nav a.is-active { color: var(--te-primary); }

.te-btn,
.te-2026 a.te-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--te-secondary), var(--te-orange));
  color: var(--te-ink);
  font-weight: 700;
  font-size: 14.5px;
  padding: 12px 22px;
  border-radius: var(--te-radius-pill);
  border: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
  white-space: nowrap;
}
.te-btn:hover,
.te-2026 a.te-btn:hover { opacity: 0.92; color: var(--te-ink); transform: translateY(-1px); }
.te-btn:focus-visible { outline: 2px solid var(--te-primary); outline-offset: 2px; }

.te-btn--lg { font-size: 15px; padding: 15px 27px; }
.te-btn--ghost {
  background: transparent;
  color: var(--te-white);
  padding-left: 0;
  padding-right: 0;
}
.te-btn--ghost:hover { color: var(--te-secondary); opacity: 1; transform: none; }

.te-eyebrow {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--te-secondary);
}

.te-eyebrow--accent { color: var(--te-accent); }

.te-eyebrow--gold { color: var(--te-secondary); }

/* ---- Hero carousel (content + image slide together) ---- */
.te-hero-carousel {
  position: relative;
  background: var(--te-dark);
  overflow: hidden;
}

.te-hero-carousel__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.te-hero-carousel__track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.te-hero-carousel__slide {
  flex: 0 0 100%;
  display: flex;
  align-items: stretch;
  min-height: 520px;
  box-sizing: border-box;
}

.te-hero__content {
  flex: 0 0 54%;
  padding: 88px 56px 72px var(--te-gutter);
  display: flex;
  flex-direction: column;
  gap: 26px;
  z-index: 1;
}

.te-hero__content h1 {
  color: var(--te-white);
  font-size: clamp(32px, 4vw, 46px);
  max-width: 13ch;
  text-wrap: balance;
}

.te-hero__lead {
  color: var(--te-hero-muted);
  font-size: 17px;
  line-height: 1.65;
  max-width: 46ch;
}

.te-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 6px;
}

.te-hero__media {
  flex: 1 1 auto;
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.te-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.te-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 17, 14, 0.55), rgba(20, 17, 14, 0));
  pointer-events: none;
}

.te-hero-carousel__dots {
  position: absolute;
  bottom: 26px;
  left: var(--te-gutter);
  z-index: 10;
  display: flex;
  gap: 9px;
  pointer-events: auto;
}

.te-hero-carousel__dot {
  width: 26px;
  height: 28px;
  border: none;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
  transition: opacity 0.25s ease;
}

.te-hero-carousel__dot::before {
  content: '';
  display: block;
  width: 26px;
  height: 4px;
  border-radius: 2px;
  background: var(--te-secondary);
}

.te-hero-carousel__dot.is-active {
  opacity: 1;
}

.te-hero-carousel__dot:focus-visible {
  outline: 2px solid var(--te-secondary);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .te-hero-carousel__track {
    transition: none;
  }
}

/* ---- Stats ---- */
.te-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--te-cream);
  border-bottom: 1px solid var(--te-cream);
}

.te-stat {
  background: var(--te-white);
  padding: 34px 40px;
}

.te-stat__value {
  font-family: var(--te-font-heading);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--te-primary);
}

.te-stat__label {
  color: var(--te-text);
  font-size: 14px;
  margin-top: 6px;
}

/* ---- Sections ---- */
.te-section {
  padding: 88px var(--te-gutter);
}

.te-section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 44px;
}

.te-section__head h2 {
  font-size: clamp(26px, 3vw, 32px);
  max-width: 18ch;
}

.te-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.te-card {
  border: 1px solid var(--te-cream);
  border-radius: var(--te-radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.te-card:hover {
  border-color: var(--te-border);
  box-shadow: 0 8px 32px rgba(20,17,14,0.06);
}

.te-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FBEEDD;
}

.te-card h3 { font-size: 19px; }
.te-card p { color: var(--te-text); font-size: 14.5px; line-height: 1.6; margin: 0; }
.te-card__link {
  font-weight: 600;
  font-size: 14.5px;
  margin-top: auto;
}

/* ---- Home: three pillars ---- */
.te-home-pillars {
  padding: 88px var(--te-gutter);
  background: var(--te-dark);
}

.te-home-pillars__inner {
  width: 100%;
  max-width: var(--te-max);
  margin: 0 auto;
}

.te-home-pillars .te-section__head h2 {
  color: var(--te-white);
  max-width: 18ch;
}

.te-home-pillars .te-eyebrow {
  margin-bottom: 10px;
}

.te-home-pillars__all-link {
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  color: var(--te-secondary);
}

.te-home-pillars__all-link:hover {
  color: var(--te-white);
}

.te-home-pillars .te-pillar-card {
  background: #1C1712;
  border: 1px solid #2B2620;
  border-radius: 16px;
}

.te-home-pillars .te-pillar-card:hover {
  border-color: #3D3530;
  box-shadow: none;
}

.te-home-pillars .te-pillar-card h3 {
  color: var(--te-white);
}

.te-home-pillars .te-pillar-card p {
  color: var(--te-hero-muted);
}

.te-home-pillars .te-pillar-card .te-card__link {
  color: var(--te-secondary);
}

.te-home-pillars .te-pillar-card .te-card__link:hover {
  color: var(--te-white);
}

/* ---- Partners / CTA band ---- */
.te-band {
  padding: 72px 0 0;
  text-align: center;
  background: var(--te-white);
  overflow-x: clip;
}

.te-band .te-eyebrow {
  margin-bottom: 10px;
}

.te-band h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  max-width: 32ch;
  margin: 0 auto 36px;
  padding: 0 var(--te-gutter);
}

/* Edge-to-edge marquee strip (full viewport width) */
.te-partners-fullbleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: var(--te-white);
  border-bottom: 1px solid var(--te-cream);
  padding: 28px 0 32px;
  overflow: hidden;
}

.te-partners-fullbleed__label {
  font-family: var(--te-font-heading);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a2744;
  text-align: center;
  margin-bottom: 22px;
}

.te-partners-marquee {
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
}

.te-partners-marquee__track {
  display: flex;
  width: max-content;
  animation: te-partners-marquee 42s linear infinite;
}

.te-partners-marquee:hover .te-partners-marquee__track {
  animation-play-state: paused;
}

.te-partners-marquee__group {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 0 24px;
  flex-shrink: 0;
}

.te-partners-marquee__logo {
  height: 40px;
  width: auto;
  max-height: 40px;
  max-width: 140px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  display: block;
  opacity: 0.92;
}

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

@media (prefers-reduced-motion: reduce) {
  .te-partners-marquee__track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    gap: 24px 40px;
    padding: 0 24px;
  }
  .te-partners-marquee__group[aria-hidden="true"] {
    display: none;
  }
  .te-partners-marquee__group {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
  }
  .te-partners-marquee__logo {
    height: 36px;
    max-height: 36px;
    max-width: 120px;
  }
}

/* ---- Services page ---- */
.te-page-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 64px var(--te-gutter) 48px;
  max-width: var(--te-max);
  margin: 0 auto;
}

.te-page-hero__content {
  flex: 1;
  min-width: 0;
}

.te-page-hero .te-eyebrow {
  margin-bottom: 14px;
}

.te-page-hero h1 {
  font-size: clamp(30px, 3.5vw, 38px);
  max-width: 20ch;
}

.te-page-hero__lead {
  color: var(--te-text);
  font-size: 16px;
  max-width: 64ch;
  margin: 16px 0 0;
  line-height: 1.65;
}

.te-page-hero__img {
  flex: 0 0 380px;
  width: 380px;
  max-width: 42%;
  height: 240px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.te-pillars {
  max-width: var(--te-max);
  margin: 0 auto;
  padding: 0 var(--te-gutter) 24px;
}

.te-pillars:last-of-type {
  padding-bottom: 64px;
}

.te-pillar {
  display: flex;
  border: 1px solid var(--te-cream);
  border-radius: 20px;
  overflow: hidden;
}

.te-pillar__intro {
  flex: 0 0 34%;
  background: var(--te-dark);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.te-pillar__num {
  font-family: var(--te-font-heading);
  font-weight: 800;
  font-size: 15px;
  color: var(--te-secondary);
}

.te-pillar__intro h2 {
  font-size: clamp(22px, 2.5vw, 27px);
  color: var(--te-white);
  margin-top: 14px;
}

.te-pillar__desc {
  color: var(--te-hero-muted);
  font-size: 14.5px;
  line-height: 1.65;
  margin-top: 14px;
}

.te-pillar__link {
  color: var(--te-secondary);
  font-weight: 600;
  font-size: 14.5px;
  margin-top: 8px;
}
.te-pillar__link:hover { color: var(--te-white); }

.te-pillar__grid {
  flex: 1;
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  background: #FBFAF8;
}

.te-pillar__item {
  background: var(--te-white);
  border: 1px solid var(--te-cream);
  border-radius: 12px;
  padding: 18px 20px;
}

.te-pillar__item h3 {
  font-size: 14.5px;
  font-weight: 700;
}

.te-pillar__item p {
  color: var(--te-text);
  font-size: 13px;
  margin: 6px 0 0;
  line-height: 1.55;
}

.te-pillar__item--wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.te-pillar__stat {
  flex: 0 0 auto;
  font-family: var(--te-font-heading);
  font-weight: 800;
  font-size: 20px;
  color: var(--te-primary);
  white-space: nowrap;
}

.te-capability-strip {
  max-width: var(--te-max);
  margin: 0 auto;
  padding: 0 var(--te-gutter) 64px;
}

.te-capability-strip__inner {
  border: 1px solid var(--te-cream);
  border-radius: 20px;
  padding: 44px;
  background: #FBFAF8;
}

.te-capability-strip__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.te-capability-strip__head h2 {
  font-size: clamp(22px, 2.5vw, 25px);
  margin-top: 12px;
}

.te-capability-strip__head p {
  color: var(--te-text);
  font-size: 14.5px;
  line-height: 1.65;
  margin-top: 12px;
  max-width: 56ch;
}

.te-btn--dark,
.te-2026 a.te-btn--dark {
  background: var(--te-ink);
  color: var(--te-white);
  flex-shrink: 0;
}
.te-btn--dark:hover,
.te-2026 a.te-btn--dark:hover {
  color: var(--te-white);
  opacity: 0.9;
}

.te-capability-domains {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-top: 32px;
}

.te-capability-domains span {
  border: 1px solid var(--te-cream);
  border-radius: 10px;
  background: var(--te-white);
  padding: 14px 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.te-cta-band {
  padding: 56px 0;
  background: linear-gradient(120deg, var(--te-secondary), var(--te-orange) 55%, var(--te-primary));
}

.te-cta-band__inner {
  max-width: var(--te-max);
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--te-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.te-cta-band h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  color: var(--te-ink);
  max-width: 26ch;
  margin: 0;
}

.te-cta-band__copy p {
  color: #3A2A1C;
  font-size: 15px;
  margin: 8px 0 0;
}

/* ---- Home: video + testimonial ---- */
.te-home-video {
  background: var(--te-dark);
  padding: 80px var(--te-gutter);
  text-align: center;
}

.te-home-video__inner {
  padding: 0;
}

.te-home-video .te-eyebrow {
  margin-bottom: 10px;
}

.te-home-video h2 {
  color: var(--te-white);
  font-size: clamp(22px, 2.5vw, 28px);
  max-width: 32ch;
  margin: 0 auto 36px;
  text-wrap: balance;
}

.te-home-video__frame {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--te-radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #1C1712;
}

.te-home-video__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.55);
}

.te-home-video__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 76px;
  height: 76px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}

.te-home-video__play:hover {
  transform: scale(1.05);
  background: var(--te-white);
}

.te-home-video__frame.is-playing .te-home-video__play,
.te-home-video__frame.is-playing .te-home-video__poster {
  display: none;
}

.te-home-video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.te-home-quote {
  background: #F7F4EF;
  padding: 80px var(--te-gutter);
}

.te-home-quote__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.te-home-quote__icon {
  margin-bottom: 18px;
}

.te-home-quote__text {
  font-family: var(--te-font-heading);
  font-weight: 600;
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.5;
  color: var(--te-ink);
  margin: 0;
  border: none;
  padding: 0;
}

.te-home-quote__text-en {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--te-text-muted);
  font-style: italic;
  margin: 14px 0 0;
}

.te-home-quote__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  color: var(--te-text);
  font-size: 13.5px;
}

.te-home-quote__stars {
  display: flex;
  gap: 2px;
}

/* ---- Service detail pages ---- */
.te-breadcrumb {
  max-width: var(--te-max);
  margin: 0 auto;
  padding: 22px var(--te-gutter) 0;
  color: var(--te-text-muted);
  font-size: 13.5px;
}
.te-breadcrumb a { color: var(--te-text-muted); }
.te-breadcrumb a:hover { color: var(--te-primary); }
.te-breadcrumb__current { color: var(--te-ink); }

.te-service-hero {
  max-width: var(--te-max);
  margin: 0 auto;
  padding: 26px var(--te-gutter) 56px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.te-service-hero h1 {
  font-size: clamp(30px, 3.5vw, 38px);
}

.te-service-hero__lead {
  color: var(--te-text);
  font-size: 16px;
  line-height: 1.65;
  margin-top: 16px;
  max-width: 56ch;
}

.te-service-stats {
  display: flex;
  gap: 16px;
  flex: 0 0 auto;
  flex-wrap: wrap;
}

.te-service-stat {
  background: #FBEEDD;
  border-radius: 14px;
  padding: 20px 26px;
  text-align: center;
  min-width: 150px;
}

.te-service-stat__value {
  font-family: var(--te-font-heading);
  font-weight: 800;
  font-size: 26px;
  color: var(--te-primary);
}

.te-service-stat__label {
  color: var(--te-text);
  font-size: 12.5px;
  margin-top: 4px;
}

.te-service-tags {
  max-width: var(--te-max);
  margin: 0 auto;
  padding: 0 var(--te-gutter) 32px;
}

.te-service-tags__label {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--te-accent);
  margin-bottom: 14px;
}

.te-service-tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.te-service-tags__list span {
  border: 1px solid var(--te-cream);
  border-radius: var(--te-radius-pill);
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 600;
}

.te-service-grid {
  max-width: var(--te-max);
  margin: 0 auto;
  padding: 0 var(--te-gutter) 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.te-service-card {
  border: 1px solid var(--te-cream);
  border-radius: var(--te-radius);
  padding: 26px;
}

.te-service-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: #FBEEDD;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.te-service-card h3 {
  font-size: 15.5px;
}

.te-service-card p {
  color: var(--te-text);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 10px 0 0;
}

.te-service-aside {
  border-radius: var(--te-radius);
  padding: 26px;
  background: var(--te-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.te-service-aside__eyebrow {
  color: var(--te-secondary);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.te-service-aside h3 {
  color: var(--te-white);
  font-size: 16px;
}

.te-service-aside p {
  color: var(--te-hero-muted);
  font-size: 13px;
  margin: 6px 0 0;
  line-height: 1.55;
}

.te-service-aside a {
  color: var(--te-secondary);
  font-weight: 600;
  font-size: 13.5px;
  margin-top: 12px;
  display: inline-block;
}
.te-service-aside a:hover { color: var(--te-white); }

.te-service-aside__divider {
  height: 1px;
  background: #2A241C;
  margin: 16px 0;
  border: none;
}

.te-service-callout {
  max-width: var(--te-max);
  margin: 0 auto;
  padding: 0 var(--te-gutter) 64px;
}

.te-service-callout__inner {
  border-radius: 20px;
  padding: 40px 44px;
  background: var(--te-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.te-service-callout__inner h2 {
  color: var(--te-white);
  font-size: 18px;
}

.te-service-callout__inner p {
  color: var(--te-hero-muted);
  font-size: 13.5px;
  margin-top: 8px;
  line-height: 1.6;
  max-width: 58ch;
}

.te-service-callout__link {
  color: var(--te-secondary);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}
.te-service-callout__link:hover { color: var(--te-white); }

.te-service-partners {
  max-width: var(--te-max);
  margin: 0 auto;
  padding: 0 var(--te-gutter) 72px;
  text-align: center;
}

.te-service-partners__label {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--te-accent);
  margin-bottom: 22px;
}

.te-service-partners__img {
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  display: inline-block;
  border-radius: var(--te-radius);
  border: 1px solid var(--te-cream);
}

.te-service-partners__img--wide { max-width: 600px; }
.te-service-partners__img--mid { max-width: 420px; }
.te-service-partners__img--narrow { max-width: 460px; }

/* ---- About page ---- */
.te-about-intro {
  display: flex;
  gap: 56px;
  align-items: flex-start;
  padding: 64px var(--te-gutter) 56px;
  max-width: var(--te-max);
  margin: 0 auto;
}

.te-about-intro__head {
  flex: 0 0 40%;
  max-width: 40%;
}

.te-about-intro__head .te-eyebrow {
  color: var(--te-accent);
  margin-bottom: 14px;
}

.te-about-intro__head h1 {
  font-size: clamp(28px, 3.2vw, 34px);
  max-width: 14ch;
}

.te-about-intro__body {
  flex: 1;
  color: #3A342B;
  font-size: 15.5px;
  line-height: 1.75;
}

.te-about-intro__body p {
  margin: 0 0 16px;
}

.te-about-intro__body p:last-child { margin-bottom: 0; }

.te-about-vm-wrap {
  max-width: var(--te-max);
  margin: 0 auto;
  padding: 0 var(--te-gutter) 56px;
}

.te-about-vm {
  background: var(--te-dark);
  border-radius: 20px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.te-about-vm__label {
  color: var(--te-secondary);
  font-family: var(--te-font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.te-about-vm__text {
  color: var(--te-white);
  font-size: 19px;
  line-height: 1.55;
  max-width: 34ch;
}

.te-about-section {
  max-width: var(--te-max);
  margin: 0 auto;
  padding: 0 var(--te-gutter) 64px;
}

.te-about-section--spaced {
  padding-top: 64px;
}

.te-about-section h2 {
  font-size: 26px;
  margin-bottom: 32px;
}

.te-about-section__title {
  max-width: 22ch;
  margin-top: 14px;
  margin-bottom: 8px;
}

.te-about-section__title--tight {
  max-width: none;
  margin-top: 0;
}

.te-about-section__lead {
  color: var(--te-text);
  font-size: 15px;
  max-width: 60ch;
  margin: -24px 0 36px;
  line-height: 1.65;
}

.te-about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.te-about-value {
  border-top: 3px solid var(--te-primary);
  padding-top: 20px;
}

.te-about-value--enhance { border-top-color: var(--te-orange); }
.te-about-value--enhance h3 { color: var(--te-orange); }
.te-about-value--elevate { border-top-color: var(--te-accent); }
.te-about-value--elevate h3 { color: var(--te-accent); }

.te-about-value h3 {
  font-size: 20px;
  color: var(--te-primary);
}

.te-about-value p {
  color: var(--te-text);
  font-size: 14px;
  line-height: 1.65;
  margin: 10px 0 0;
}

.te-about-timeline {
  background: #F7F4EF;
  padding: 56px 0 64px;
  margin-bottom: 0;
}

.te-about-timeline .te-container h2 {
  font-size: 26px;
  margin-bottom: 36px;
}

.te-about-timeline__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.te-about-timeline__year {
  font-family: var(--te-font-heading);
  font-weight: 800;
  font-size: 22px;
  color: var(--te-primary);
}

.te-about-timeline__year--22 { color: var(--te-orange); }
.te-about-timeline__year--23 { color: var(--te-secondary); }
.te-about-timeline__year--25 { color: var(--te-orange); }
.te-about-timeline__year--26 { color: var(--te-secondary); }

.te-about-timeline__title {
  font-weight: 700;
  font-size: 13.5px;
  margin-top: 10px;
}

.te-about-timeline__text {
  color: var(--te-text);
  font-size: 12.5px;
  line-height: 1.55;
  margin-top: 6px;
}

.te-about-leaders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.te-about-leader {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border: 1px solid var(--te-cream);
  border-radius: var(--te-radius);
  padding: 24px;
}

.te-about-leader__photo {
  width: 96px;
  height: 96px;
  max-width: 96px;
  max-height: 96px;
  border-radius: 14px;
  object-fit: cover;
  flex: 0 0 auto;
}

.te-about-leader__name {
  font-weight: 700;
  font-size: 17px;
}

.te-about-leader__role {
  color: var(--te-accent);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 2px;
}

.te-about-leader__bio {
  color: var(--te-text);
  font-size: 13.5px;
  line-height: 1.6;
  margin-top: 10px;
}

.te-about-culture {
  padding-bottom: 64px;
}

.te-about-culture__img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--te-radius);
}

.te-about-culture__caption {
  color: var(--te-text-muted);
  font-size: 12.5px;
  margin-top: 10px;
}

.te-about-certs__intro {
  color: var(--te-text);
  font-size: 15px;
  max-width: 70ch;
  margin: 8px 0 32px;
  line-height: 1.65;
}

.te-about-certs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.te-about-cert {
  border: 1px solid var(--te-cream);
  border-radius: 14px;
  padding: 22px;
}

.te-about-cert h3 {
  font-size: 14.5px;
  margin-top: 12px;
}

.te-about-cert p {
  color: var(--te-text);
  font-size: 12.5px;
  margin: 4px 0 0;
}

.te-about-certs__note {
  margin-top: 16px;
  background: #FBEEDD;
  border-radius: 14px;
  padding: 20px 24px;
  font-size: 14px;
  color: #3A2A1C;
  line-height: 1.6;
}

.te-about-presence {
  background: #041628;
  padding: 56px var(--te-gutter);
}

.te-about-presence__inner {
  max-width: var(--te-max);
  margin: 0 auto;
}

.te-about-presence__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}

.te-about-presence__head h2 {
  color: var(--te-white);
  font-size: 26px;
}

.te-about-presence__lead {
  color: var(--te-hero-muted);
  font-size: 14.5px;
  max-width: 56ch;
  margin-top: 8px;
  line-height: 1.6;
}

.te-about-presence__stat {
  text-align: right;
  flex: 0 0 auto;
}

.te-about-presence__stat-value {
  font-family: var(--te-font-heading);
  font-weight: 800;
  font-size: 30px;
  color: var(--te-secondary);
}

.te-about-presence__stat-label {
  color: var(--te-hero-muted);
  font-size: 12.5px;
}

.te-about-presence__map-wrap {
  border-radius: 14px;
  overflow: hidden;
  line-height: 0;
}

.te-about-presence__map {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 0;
  border-radius: 0;
  filter: none;
  opacity: 1;
  mix-blend-mode: normal;
  vertical-align: top;
}

/* ---- Careers ---- */
.te-career-hero {
  display: flex;
  background: var(--te-dark);
  min-height: 420px;
}

.te-career-hero__content {
  flex: 0 0 50%;
  padding: 80px 56px 80px var(--te-gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.te-career-hero__content h1 {
  color: var(--te-white);
  font-size: clamp(30px, 3.5vw, 38px);
  max-width: 14ch;
  line-height: 1.15;
}

.te-career-hero__lead {
  color: var(--te-hero-muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 44ch;
  margin: 0;
}

.te-career-hero__media {
  flex: 1 1 auto;
  min-height: 320px;
  overflow: hidden;
}

.te-career-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.te-career-why {
  width: 100%;
  padding: 56px var(--te-gutter) 52px;
}

.te-career-why h2 {
  font-size: 24px;
  margin-bottom: 24px;
}

.te-career-why__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(24px, 4vw, 56px);
  row-gap: clamp(20px, 2.5vw, 32px);
  width: 100%;
}

.te-career-perk {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  min-width: 0;
}

.te-career-perk__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #FBEEDD;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.te-career-perk h3 {
  font-size: 15.5px;
  margin: 0 0 6px;
}

.te-career-perk p {
  color: var(--te-text);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

.te-career-roles {
  background: #F7F4EF;
  padding: 48px 0 64px;
}

.te-career-roles__inner {
  width: 100%;
  padding: 0 var(--te-gutter);
}

.te-career-roles__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.te-career-roles__head h2 {
  font-size: 24px;
  margin: 0;
}

.te-career-roles__count {
  color: var(--te-text-muted);
  font-size: 14px;
  margin: 0;
}

.te-career-search {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 12px;
  margin-bottom: 24px;
  width: 100%;
}

.te-career-search__input,
.te-career-search__select {
  height: 44px;
  border: 1px solid var(--te-cream);
  border-radius: 10px;
  padding: 0 14px;
  font-family: var(--te-font-body);
  font-size: 14px;
  color: var(--te-ink);
  background: var(--te-white);
}

.te-career-search__input:focus,
.te-career-search__select:focus {
  outline: 2px solid rgba(232, 121, 44, 0.35);
  border-color: var(--te-orange);
}

.te-career-jobs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  width: 100%;
}

.te-career-job-card {
  background: var(--te-white);
  border: 1px solid #E6EEF6;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.te-career-job-card__cover {
  aspect-ratio: 3 / 2;
  min-height: 200px;
  overflow: hidden;
  background: #041628;
}

.te-career-job-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 78%;
  display: block;
}

.te-career-job-card__body {
  padding: 22px 22px 0;
  flex: 1;
}

.te-career-job-card__logo {
  max-width: 140px;
  max-height: 50px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

.te-career-job-card__title {
  font-size: 16px;
  margin: 18px 0 6px;
  line-height: 1.35;
}

.te-career-job-card__company {
  display: block;
  color: var(--te-primary);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.te-career-job-card__meta {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  color: #6B7A88;
  font-size: 13px;
  line-height: 1.55;
}

.te-career-job-card__meta li + li {
  margin-top: 6px;
}

.te-career-job-card__foot {
  margin-top: 18px;
  padding: 18px 22px 22px;
  border-top: 1px solid #EEF4F8;
}

.te-career-job-card__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.te-career-job-card__actions .te-btn {
  padding: 10px 22px;
  font-size: 14px;
}

.te-btn--outline {
  background: transparent;
  color: var(--te-ink);
  border: 1px solid var(--te-cream);
  box-shadow: none;
}

.te-btn--outline:hover {
  border-color: var(--te-orange);
  color: var(--te-primary);
  transform: none;
  opacity: 1;
}

.te-career-roles__empty {
  border: 1.5px dashed #D8CFC0;
  border-radius: var(--te-radius);
  padding: 32px 28px;
  text-align: center;
  color: var(--te-text);
  font-size: 14.5px;
  line-height: 1.65;
  background: var(--te-white);
}

.te-career-roles__empty-note {
  font-size: 13px;
  color: var(--te-text-muted);
  margin: 10px 0 0;
}

.te-career-detail__breadcrumb {
  padding-top: 22px;
}

.te-career-detail {
  padding: 0 var(--te-gutter) 72px;
}

.te-career-detail__inner,
.te-career-apply__inner {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.te-career-detail__back {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--te-text-muted);
  font-size: 14px;
  font-weight: 600;
}

.te-career-detail__back:hover {
  color: var(--te-primary);
}

.te-career-detail__card,
.te-career-apply__card {
  background: var(--te-white);
  border: 1px solid #E6EEF6;
  border-radius: 12px;
  overflow: hidden;
}

.te-career-detail__cover {
  aspect-ratio: 21 / 8;
  min-height: 180px;
  overflow: hidden;
  background: #041628;
}

.te-career-detail__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 78%;
  display: block;
}

.te-career-detail__body,
.te-career-apply__card {
  padding: 32px;
}

.te-career-detail__title {
  font-size: clamp(24px, 3vw, 30px);
  margin: 18px 0 8px;
}

.te-career-detail__company {
  color: var(--te-primary);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
}

.te-career-detail__meta {
  margin-bottom: 28px;
}

.te-career-detail__section + .te-career-detail__section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid #EEF4F8;
}

.te-career-detail__section h2 {
  font-size: 18px;
  margin-bottom: 14px;
}

.te-career-detail__text {
  color: var(--te-text);
  font-size: 15px;
  line-height: 1.75;
  white-space: pre-wrap;
}

.te-career-detail__cta {
  margin-top: 36px;
  padding: 28px;
  border-radius: 12px;
  background: #F7F4EF;
  text-align: center;
}

.te-career-detail__cta h2 {
  font-size: 20px;
  margin-bottom: 8px;
}

.te-career-detail__cta p {
  color: var(--te-text-muted);
  font-size: 14px;
  margin: 0 0 20px;
}

.te-career-detail__cta-actions,
.te-career-apply__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.te-career-apply {
  padding: 0 var(--te-gutter) 72px;
}

.te-career-apply__head h1 {
  font-size: clamp(24px, 3vw, 30px);
  margin: 10px 0 12px;
}

.te-career-apply__meta {
  margin-bottom: 24px;
}

.te-career-apply__form {
  margin-top: 8px;
}

.te-career-apply__success {
  text-align: center;
  padding: 24px 0 8px;
}

.te-career-apply__success h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.te-career-apply__success p {
  color: var(--te-text);
  margin: 0 0 24px;
}

.te-form--wide {
  max-width: none;
}

.te-form__req {
  color: var(--te-primary);
}

.te-form__hint {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--te-text-muted);
}

.te-form input[type="file"] {
  padding: 11px 14px;
  cursor: pointer;
}

/* Insight / case study detail */
.te-insight-detail {
  padding-top: 0;
  padding-bottom: 72px;
}

.te-insight-detail__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
}

.te-insight-detail__breadcrumb {
  max-width: none;
  margin: 0;
  padding: 0;
  flex: 1 1 auto;
  min-width: 0;
}

.te-insight-hero {
  position: relative;
  margin-top: 26px;
  border-radius: 20px;
  overflow: hidden;
}

.te-insight-hero__img {
  width: 100%;
  height: 340px;
  max-width: none;
  object-fit: cover;
  display: block;
}

.te-insight-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 17, 14, 0.82), rgba(20, 17, 14, 0.15));
  pointer-events: none;
}

.te-insight-hero__content {
  position: absolute;
  left: 44px;
  right: 44px;
  bottom: 32px;
  z-index: 1;
}

.te-insight-hero__eyebrow {
  color: var(--te-secondary);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.te-insight-hero__title {
  color: var(--te-white);
  font-size: clamp(24px, 3vw, 32px);
  margin-top: 10px;
  max-width: 32ch;
  line-height: 1.2;
}

.te-insight-detail__article {
  padding-top: 40px;
  width: 100%;
}

.te-insight-detail .te-article-body {
  color: #3A342B;
  font-size: 14.5px;
  line-height: 1.7;
  width: 100%;
  max-width: none;
}

.te-insight-detail .te-article-body p,
.te-insight-detail .te-article-body ul,
.te-insight-detail .te-article-body ol,
.te-insight-detail .te-article-body blockquote {
  max-width: none;
  width: 100%;
  clear: both;
}

.te-insight-detail .te-article-body h2,
.te-insight-detail .te-article-body h3,
.te-insight-detail .te-article-body h4 {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--te-primary);
  margin: 32px 0 12px;
  max-width: none;
}

.te-insight-detail .te-article-body h2:first-child,
.te-insight-detail .te-article-body h3:first-child,
.te-insight-detail .te-article-body h4:first-child {
  margin-top: 0;
}

.te-insight-detail .te-article-body ul,
.te-insight-detail .te-article-body ol {
  padding-left: 20px;
}

.te-insight-detail .te-article-body li {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 6px;
}

.te-insight-detail .te-article-body img {
  display: block;
  float: none !important;
  clear: both;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: auto;
}

.te-insight-detail .te-article-body table {
  max-width: 100%;
}

/* Article components (inserted via Insights editor) */
.te-article-body .te-stat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 16px;
  margin: 24px 0;
  width: 100%;
  clear: both;
}

.te-article-body .te-stat-card {
  background: var(--te-dark);
  border-radius: 16px;
  padding: 22px 24px;
  min-height: 110px;
  width: auto;
  clear: none;
}

.te-article-body .te-stat-card__value {
  font-family: var(--te-font-heading);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 36px);
  color: var(--te-orange);
  line-height: 1.1;
}

.te-article-body .te-stat-card__label {
  margin-top: 10px;
  color: var(--te-hero-muted);
  font-size: 13px;
  line-height: 1.45;
}

.te-article-body .te-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
  width: 100%;
  clear: both;
}

.te-article-body .te-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--te-cream);
  border-radius: var(--te-radius-pill);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--te-ink);
  background: var(--te-white);
  line-height: 1.3;
  width: auto;
  clear: none;
}

.te-article-body .te-badge--muted {
  color: var(--te-text-muted);
  font-weight: 500;
}

.te-article-body .te-two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 20px;
  margin: 24px 0;
  width: 100%;
  clear: both;
}

.te-article-body .te-two-col__card {
  border: 1px solid var(--te-cream);
  border-radius: 16px;
  padding: 24px 26px;
  background: var(--te-white);
  width: auto;
  clear: none;
}

.te-article-body .te-two-col__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #FBEEDD;
  color: var(--te-primary);
  font-family: var(--te-font-heading);
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 14px;
}

.te-article-body .te-two-col__title {
  font-family: var(--te-font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--te-ink);
  margin: 0 0 10px;
  text-transform: none;
  letter-spacing: normal;
  max-width: none;
}

.te-article-body .te-two-col__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--te-primary);
  margin: 0 0 12px;
  max-width: none;
}

.te-article-body .te-two-col__card p {
  font-size: 14px;
  line-height: 1.65;
  color: #3A342B;
  margin: 0 0 10px;
}

.te-article-body .te-two-col__card ul,
.te-article-body .te-two-col__card ol {
  margin: 8px 0 0;
  padding-left: 18px;
  max-width: none;
}

.te-article-body .te-two-col__card li {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .te-article-body .te-stat-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .te-article-body .te-stat-cards {
    grid-template-columns: 1fr;
  }
}

.te-insight-detail__meta {
  color: var(--te-text-muted);
  font-size: 14px;
  margin: 0;
  flex: 0 0 auto;
  text-align: right;
  line-height: 1.5;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .te-insight-detail__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .te-insight-detail__meta {
    text-align: left;
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .te-insight-hero__img { height: 280px; }
  .te-insight-hero__content {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }
}

@media (max-width: 640px) {
  .te-insight-hero__img { height: 240px; }
  .te-insight-hero__content {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
  .te-insight-hero__title { font-size: 22px; }
}

/* Rich article body (Insights detail) */
.te-article-body {
  color: var(--te-text);
  font-size: 16px;
  line-height: 1.75;
}

.te-article-body > *:first-child { margin-top: 0; }
.te-article-body > *:last-child { margin-bottom: 0; }

.te-article-body h2,
.te-article-body h3,
.te-article-body h4 {
  color: var(--te-ink);
  margin: 2rem 0 0.75rem;
  line-height: 1.25;
}

.te-article-body h2 { font-size: 1.5rem; }
.te-article-body h3 { font-size: 1.25rem; }
.te-article-body h4 { font-size: 1.1rem; }

.te-article-body p {
  margin: 0 0 1rem;
}

.te-article-body ul,
.te-article-body ol {
  margin: 0 0 1rem;
  padding-left: 1.4rem;
}

.te-article-body li {
  margin-bottom: 0.35rem;
}

.te-article-body a {
  color: var(--te-orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.te-article-body a:hover {
  color: var(--te-primary);
}

.te-article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1.25rem 0;
}

.te-article-body figure {
  margin: 1.5rem 0;
}

.te-article-body figcaption {
  color: var(--te-text-muted);
  font-size: 13px;
  margin-top: 8px;
  text-align: center;
}

.te-article-body blockquote {
  margin: 1.5rem 0;
  padding: 0.75rem 0 0.75rem 1.25rem;
  border-left: 3px solid var(--te-orange);
  color: var(--te-ink);
  font-style: italic;
}

.te-article-body hr {
  border: none;
  border-top: 1px solid var(--te-cream);
  margin: 2rem 0;
}

.te-article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 15px;
}

.te-article-body th,
.te-article-body td {
  border: 1px solid var(--te-cream);
  padding: 10px 14px;
  vertical-align: top;
  text-align: left;
}

.te-article-body th {
  background: #F7F4EF;
  color: var(--te-ink);
  font-weight: 700;
}

.te-article-body s,
.te-article-body strike,
.te-article-body del {
  text-decoration: line-through;
}

.te-cta-dark {
  background: var(--te-dark);
  padding: 72px var(--te-gutter);
  text-align: center;
}

.te-cta-dark h2 {
  color: var(--te-white);
  font-size: clamp(24px, 3vw, 32px);
  max-width: 24ch;
  margin: 0 auto 16px;
}

.te-cta-dark p {
  color: var(--te-hero-muted);
  max-width: 42ch;
  margin: 0 auto 28px;
  font-size: 15px;
}

/* ---- Footer ---- */
.te-footer {
  background: var(--te-dark);
  color: var(--te-hero-muted);
  padding: 56px var(--te-gutter) 32px;
}

.te-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  max-width: var(--te-max);
  margin: 0 auto 40px;
}

.te-footer h4 {
  color: var(--te-white);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.te-footer a { color: var(--te-hero-muted); font-size: 14px; }
.te-footer a:hover { color: var(--te-secondary); }

.te-footer ul { list-style: none; padding: 0; margin: 0; }
.te-footer li { margin-bottom: 10px; }

.te-footer__brand { font-size: 14px; line-height: 1.7; }
.te-footer__copy {
  border-top: 1px solid #2B2620;
  padding-top: 24px;
  max-width: var(--te-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}

/* ---- Forms ---- */
.te-form { display: flex; flex-direction: column; gap: 16px; max-width: 520px; }
.te-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.te-form label { font-size: 13px; font-weight: 600; display: block; margin-bottom: 7px; }
.te-form input,
.te-form select,
.te-form textarea {
  width: 100%;
  border: 1px solid var(--te-border);
  border-radius: 10px;
  padding: 13px 14px;
  font-family: var(--te-font-body);
  font-size: 14px;
  color: var(--te-ink);
  background: var(--te-white);
}
.te-form input:focus,
.te-form select:focus,
.te-form textarea:focus {
  outline: 2px solid var(--te-secondary);
  outline-offset: 0;
  border-color: var(--te-secondary);
}
.te-form textarea { min-height: 140px; resize: vertical; }

.te-turnstile {
  margin-top: 4px;
}

.te-alert {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 20px;
}
.te-alert--success { background: #E8F5E9; color: #2E7D32; border: 1px solid #A5D6A7; }
.te-alert--error { background: #FFEBEE; color: #C62828; border: 1px solid #EF9A9A; }

.te-hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---- Contact layout ---- */
.te-contact-layout {
  display: flex;
  min-height: 600px;
  width: 100%;
}

.te-contact-info {
  flex: 0 0 44%;
  min-width: 0;
  background: var(--te-dark);
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

@media (min-width: 1441px) {
  .te-contact-info {
    flex: 0 0 calc((100vw - var(--te-max)) / 2 + var(--te-max) * 0.44);
    padding-left: calc((100vw - var(--te-max)) / 2 + var(--te-gutter));
    padding-right: 56px;
  }

  .te-contact-form-wrap {
    flex: 0 0 calc(var(--te-max) * 0.56);
    max-width: calc(var(--te-max) * 0.56);
  }
}

.te-contact-info h1 {
  color: var(--te-white);
  font-size: clamp(26px, 3vw, 32px);
  max-width: 14ch;
}

.te-contact-info__lead {
  color: var(--te-hero-muted);
  font-size: 15px;
  line-height: 1.65;
  max-width: 38ch;
}

.te-contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--te-white);
  font-size: 14.5px;
  line-height: 1.6;
}

.te-contact-form-wrap {
  flex: 1;
  min-width: 0;
  padding: 72px var(--te-gutter);
  display: flex;
  flex-direction: column;
}

.te-contact-form-wrap .te-form {
  max-width: none;
  width: 100%;
}

/* ---- Insights ---- */
.te-insights-page {
  max-width: var(--te-max);
  margin: 0 auto;
  padding: 64px var(--te-gutter) 32px;
}

.te-insights-page .te-eyebrow {
  margin-bottom: 14px;
}

.te-insights-page h1 {
  font-size: clamp(28px, 3.5vw, 38px);
  max-width: 24ch;
  margin: 12px 0 0;
}

.te-insights-page__lead {
  color: var(--te-text);
  max-width: 64ch;
  font-size: 16px;
  line-height: 1.65;
  margin: 16px 0 0;
}

.te-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.te-chip {
  padding: 9px 18px;
  border-radius: var(--te-radius-pill);
  border: 1px solid var(--te-cream);
  background: var(--te-white);
  font-size: 13px;
  font-weight: 600;
  color: var(--te-text);
  cursor: pointer;
  text-decoration: none;
}
.te-chip.is-active,
.te-chip:hover {
  background: var(--te-dark);
  color: var(--te-white);
  border-color: var(--te-dark);
}

.te-insights-featured {
  display: flex;
  border: 1px solid var(--te-cream);
  border-radius: 20px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: box-shadow 0.15s;
  margin-bottom: 8px;
}
.te-insights-featured:hover {
  box-shadow: 0 8px 32px rgba(20, 17, 14, 0.08);
}

.te-insights-featured__media {
  flex: 0 0 46%;
  position: relative;
}

.te-insights-featured__img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.te-insights-featured__overlay {
  position: absolute;
  left: 24px;
  bottom: 22px;
  background: var(--te-dark);
  color: var(--te-secondary);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--te-radius-pill);
}

.te-insights-featured__body {
  flex: 1;
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #FBFAF8;
}

.te-insights-featured__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.te-insights-featured__kicker {
  color: var(--te-accent-dark);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.te-insights-featured__title {
  font-size: clamp(22px, 2.4vw, 27px);
  margin: 12px 0 0;
  max-width: 22ch;
}

.te-insights-featured__excerpt {
  color: var(--te-text);
  font-size: 14.5px;
  line-height: 1.65;
  margin: 14px 0 0;
  max-width: 56ch;
}

.te-insights-featured__cta {
  color: var(--te-primary);
  font-weight: 700;
  font-size: 14.5px;
  margin-top: 20px;
}

.te-insights-section {
  padding: 32px 0 8px;
}

.te-insights-section .te-insights-section__label {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--te-text-muted);
  margin: 0 0 36px;
  line-height: 1.4;
}

.te-insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.te-article-card {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--te-cream);
  border-radius: 16px;
  overflow: hidden;
  background: var(--te-white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.te-article-card__media {
  flex: 0 0 42%;
  position: relative;
  overflow: hidden;
  min-height: 0;
}
.te-article-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.te-article-card__body {
  flex: 1;
  padding: 22px 24px;
  min-width: 0;
}
.te-article-card__type {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 4px 10px;
  border-radius: var(--te-radius-pill);
}
.te-article-card__type--case-study {
  background: #FBEEDD;
  color: var(--te-accent);
}
.te-article-card__type--insight {
  background: #FBEAE2;
  color: var(--te-primary);
}
.te-article-card__title {
  color: var(--te-ink);
  font-weight: 700;
  font-size: 15.5px;
  margin: 12px 0 0;
  line-height: 1.35;
}
.te-article-card__excerpt {
  color: var(--te-text);
  font-size: 12.5px;
  line-height: 1.55;
  margin: 8px 0 0;
}
.te-article-card__cta {
  color: var(--te-primary);
  font-weight: 700;
  font-size: 13px;
  margin-top: 14px;
  display: block;
  text-decoration: none;
}
.te-article-card__cta:hover {
  color: var(--te-primary);
  opacity: 0.85;
}

/* ---- Capability map page ---- */
.te-page-hero--cap {
  padding-top: 26px;
  padding-bottom: 8px;
}

.te-page-hero--cap h1 {
  max-width: 24ch;
}

.te-page-hero__img--cap {
  flex: 0 0 320px;
  width: 320px;
  max-width: 38%;
  height: 200px;
}

.te-cap-grid {
  max-width: var(--te-max);
  margin: 0 auto;
  padding: 0 var(--te-gutter);
  display: grid;
  gap: 16px;
}

.te-cap-grid--4 {
  grid-template-columns: repeat(4, 1fr);
  padding-top: 40px;
}

.te-cap-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  padding-top: 16px;
}

.te-cap-card {
  border: 1px solid var(--te-cream);
  border-radius: 16px;
  padding: 24px;
  background: var(--te-white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.te-cap-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.te-cap-card__title {
  font-size: 15px;
  font-weight: 700;
}

.te-cap-card__desc {
  color: var(--te-text);
  font-size: 12.5px;
  line-height: 1.55;
  margin: 6px 0 0;
}

.te-cap-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.te-cap-chip {
  border: 1px solid var(--te-cream);
  border-radius: 100px;
  padding: 5px 11px;
  font-size: 11px;
  font-weight: 600;
  color: #3A342B;
  background: var(--te-white);
}

.te-cap-standards {
  max-width: var(--te-max);
  margin: 0 auto;
  padding: 40px var(--te-gutter) 0;
}

.te-cap-standards__inner {
  background: var(--te-dark);
  border-radius: 20px;
  padding: 34px 40px;
}

.te-cap-standards__label,
.te-cap-standards__col-label {
  color: var(--te-secondary);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.te-cap-standards__col-label {
  margin-bottom: 10px;
}

.te-cap-standards__list,
.te-cap-standards__col-text {
  color: #C9C0B4;
  font-size: 13.5px;
  line-height: 2;
  margin: 0;
}

.te-cap-standards__col-text {
  line-height: 1.8;
}

.te-cap-standards__divider {
  height: 1px;
  background: #2A241C;
  margin: 24px 0;
}

.te-cap-standards__cols {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.te-cap-standards__cols > div {
  flex: 1;
  min-width: 280px;
}

.te-cap-industry {
  max-width: var(--te-max);
  margin: 0 auto;
  padding: 40px var(--te-gutter) 64px;
}

.te-cap-industry .te-eyebrow {
  margin-bottom: 6px;
}

.te-cap-industry__lead {
  color: var(--te-text);
  font-size: 13.5px;
  margin: 0 0 18px;
  max-width: 72ch;
}

.te-cap-industry__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.te-cap-industry__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--te-cream);
  border-radius: 100px;
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 600;
}

.te-cap-industry__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.te-cap-industry__tag--more {
  color: var(--te-text-muted);
}

/* ---- Legal / policy pages ---- */
.te-legal-intro {
  max-width: 82ch;
  margin: 0;
  padding: 26px 0 44px;
}

.te-legal-page .te-policy-card-wrap {
  max-width: none;
  margin: 0;
  padding: 0 0 56px;
}

.te-legal-intro h1 {
  font-size: clamp(28px, 3.2vw, 34px);
  line-height: 1.2;
}

.te-legal-intro__lead {
  color: var(--te-text);
  font-size: 16px;
  line-height: 1.65;
  margin: 16px 0 0;
}

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

.te-legal-hero {
  margin-top: 26px;
}

.te-legal-hero__inner {
  background: var(--te-dark);
  border-radius: 20px;
  padding: 56px 48px;
}

.te-legal-hero h1 {
  font-size: clamp(26px, 3vw, 30px);
  color: var(--te-white);
}

.te-legal-hero__date {
  color: var(--te-secondary);
  font-weight: 600;
  font-size: 13px;
  margin: 14px 0 0;
}

.te-legal-hero__lead {
  color: #C9C0B4;
  font-size: 15px;
  line-height: 1.65;
  margin: 12px 0 0;
  max-width: 70ch;
}

.te-legal-body {
  max-width: 88ch;
  margin: 0;
  padding: 12px 0 20px;
}

.te-legal-body section {
  padding: 26px 0;
  border-bottom: 1px solid var(--te-cream);
}

.te-legal-body section.te-legal-body__section--last {
  border-bottom: none;
}

.te-legal-body h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.te-legal-body p,
.te-legal-body li {
  color: var(--te-text);
  font-size: 14px;
  line-height: 1.7;
}

.te-legal-body ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.te-legal-body li {
  margin-bottom: 4px;
}

.te-policy-card-wrap {
  max-width: var(--te-max);
  margin: 0 auto;
  padding: 0 var(--te-gutter) 56px;
}

.te-policy-card {
  border: 1px solid var(--te-cream);
  border-radius: 20px;
  padding: 40px 44px;
  background: var(--te-white);
}

.te-policy-card__cert {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.te-policy-card__cert-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #FBEEDD;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.te-policy-card__cert-title {
  font-weight: 700;
  font-size: 16px;
}

.te-policy-card__cert-sub {
  color: var(--te-text-muted);
  font-size: 13px;
  margin: 3px 0 0;
}

.te-policy-card__heading {
  font-size: 16px;
  margin-bottom: 16px;
}

.te-policy-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.te-policy-card__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--te-text);
  font-size: 14.5px;
  line-height: 1.6;
}

.te-policy-card__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--te-primary);
  margin-top: 8px;
  flex-shrink: 0;
}

.te-policy-card__sign {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--te-cream);
}

.te-policy-card__sign-name {
  font-weight: 700;
  font-size: 14.5px;
}

.te-policy-card__sign-role,
.te-policy-card__sign-date {
  color: var(--te-text-muted);
  font-size: 13px;
  margin-top: 2px;
}

/* ---- Motion / scroll reveal ---- */
.te-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--te-reveal-delay, 0ms);
  will-change: opacity, transform;
}

.te-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.te-page-enter-in > * {
  opacity: 0;
  transform: translateY(18px);
  animation: te-page-enter 0.65s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.te-page-enter-in > *:nth-child(1) { animation-delay: 0.05s; }
.te-page-enter-in > *:nth-child(2) { animation-delay: 0.12s; }
.te-page-enter-in > *:nth-child(3) { animation-delay: 0.2s; }
.te-page-enter-in > *:nth-child(4) { animation-delay: 0.28s; }
.te-page-enter-in > *:nth-child(5) { animation-delay: 0.36s; }
.te-page-enter-in > *:nth-child(6) { animation-delay: 0.44s; }

.te-page-enter-side {
  opacity: 0;
  transform: translateY(18px);
  animation: te-page-enter 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.12s forwards;
}

.te-page-enter-item {
  opacity: 0;
  transform: translateY(18px);
  animation: te-page-enter 0.65s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: var(--te-enter-delay, 0ms);
}

.te-page-enter-block {
  opacity: 0;
  transform: translateY(18px);
  animation: te-page-enter 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: var(--te-enter-delay, 0.35s);
}

@keyframes te-page-enter {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (hover: hover) {
  .te-card:not(.te-pillar-card):hover {
    transform: translateY(-2px);
  }

  .te-article-card:hover,
  .te-cap-card:hover,
  .te-career-job-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(20, 17, 14, 0.08);
    border-color: var(--te-border);
  }

  .te-home-pillars .te-pillar-card:hover {
    transform: translateY(-3px);
    border-color: #4A4038;
  }
}

@media (prefers-reduced-motion: reduce) {
  .te-reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .te-page-enter-in > *,
  .te-page-enter-side,
  .te-page-enter-item,
  .te-page-enter-block {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .te-header {
    transition: none;
  }

  .te-card,
  .te-article-card,
  .te-cap-card,
  .te-career-job-card {
    transition: border-color 0.15s, box-shadow 0.15s;
  }

  @media (max-width: 1024px) {
    .te-nav {
      transition: none;
      transform: none;
    }
  }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  :root { --te-gutter: 32px; }

  .te-header__inner {
    grid-template-columns: 1fr auto;
    position: relative;
  }

  .te-nav-toggle { display: block; }

  .te-header__cta {
    display: none;
  }

  .te-nav {
    display: flex;
    justify-self: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--te-white);
    border-bottom: 1px solid var(--te-cream);
    padding: 16px var(--te-gutter) 24px;
    box-shadow: 0 12px 24px rgba(20,17,14,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }
  .te-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }
  .te-nav a { padding: 12px 0; border-bottom: 1px solid var(--te-cream); }
  .te-nav__cta-mobile {
    display: inline-flex !important;
    margin-top: 12px;
    justify-content: center;
  }

  .te-header { position: relative; }

  .te-hero-carousel__slide {
    flex-direction: column;
    min-height: 0;
  }

  .te-hero__content {
    flex: none;
    padding: 56px var(--te-gutter) 56px;
  }

  .te-hero__media {
    min-height: 280px;
  }

  .te-hero__media img {
    min-height: 280px;
  }

  .te-hero__shade {
    background: linear-gradient(180deg, rgba(20, 17, 14, 0.45), rgba(20, 17, 14, 0.08));
  }

  .te-hero-carousel__dots {
    bottom: calc(280px + 20px);
  }

  .te-stats { grid-template-columns: repeat(2, 1fr); }
  .te-grid-3 { grid-template-columns: 1fr; }
  .te-section__head { flex-direction: column; align-items: flex-start; }
  .te-footer__grid { grid-template-columns: 1fr 1fr; }
  .te-contact-layout { flex-direction: column; }
  .te-contact-info {
    flex: none;
    padding: 56px var(--te-gutter);
  }
  .te-contact-form-wrap {
    flex: none;
    max-width: none;
  }
  .te-insights-featured { flex-direction: column; }
  .te-insights-featured__media { flex: none; }
  .te-insights-featured__img { min-height: 240px; }
  .te-insights-featured__body { padding: 28px 24px; }
  .te-insights-grid { grid-template-columns: 1fr; }
  .te-article-card { flex-direction: column; }
  .te-article-card__media {
    flex: none;
    width: 100%;
    aspect-ratio: 16 / 10;
  }
  .te-article-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .te-page-hero { flex-direction: column; align-items: flex-start; gap: 28px; }
  .te-page-hero__img { flex: none; width: 100%; max-width: none; height: auto; aspect-ratio: 380 / 240; }

  .te-pillar { flex-direction: column; }
  .te-pillar__intro { flex: none; }
  .te-pillar__grid { grid-template-columns: 1fr; }
  .te-pillar__item--wide { flex-direction: column; align-items: flex-start; }
  .te-capability-domains { grid-template-columns: repeat(3, 1fr); }
  .te-cap-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .te-cap-grid--3 { grid-template-columns: 1fr; }
  .te-cta-band__inner { flex-direction: column; align-items: flex-start; }

  .te-service-hero { flex-direction: column; }
  .te-service-stats { width: 100%; }
  .te-service-grid { grid-template-columns: 1fr 1fr; }

  .te-about-intro { flex-direction: column; gap: 28px; }
  .te-about-intro__head { flex: none; max-width: none; }
  .te-about-vm { grid-template-columns: 1fr; padding: 32px 28px; }
  .te-about-values { grid-template-columns: 1fr; }
  .te-about-timeline__grid { grid-template-columns: repeat(3, 1fr); }
  .te-about-leaders { grid-template-columns: 1fr; }
  .te-about-certs__grid { grid-template-columns: repeat(2, 1fr); }
  .te-about-presence__head { flex-direction: column; align-items: flex-start; }
  .te-about-presence__stat { text-align: left; }
}


@media (max-width: 640px) {
  :root { --te-gutter: 20px; }

  .te-logo .te-logo__img {
    height: 28px;
    max-height: 28px;
    max-width: 84px;
  }
  .te-logo--footer .te-logo__img {
    height: 34px;
    max-height: 34px;
    max-width: 102px;
  }

  .te-stats { grid-template-columns: 1fr; }
  .te-stat { padding: 24px; }
  .te-section { padding: 56px var(--te-gutter); }
  .te-home-pillars { padding: 56px var(--te-gutter); }
  .te-home-pillars .te-section__head { flex-direction: column; align-items: flex-start; }
  .te-form__row { grid-template-columns: 1fr; }
  .te-footer__grid { grid-template-columns: 1fr; }

  .te-capability-domains { grid-template-columns: repeat(2, 1fr); }
  .te-cap-grid--4,
  .te-cap-grid--3 { grid-template-columns: 1fr; }
  .te-cap-standards__inner { padding: 28px 24px; }
  .te-legal-hero__inner { padding: 40px 28px; }
  .te-policy-card { padding: 28px 24px; }
  .te-capability-strip__inner { padding: 28px 20px; }
  .te-pillar__intro,
  .te-pillar__grid { padding: 24px 20px; }

  .te-service-grid { grid-template-columns: 1fr; }
  .te-service-stat { min-width: 0; flex: 1 1 140px; }
  .te-service-callout__inner { padding: 28px 24px; }

  .te-about-timeline__grid { grid-template-columns: 1fr 1fr; }
  .te-about-certs__grid { grid-template-columns: 1fr; }
  .te-about-leader { flex-direction: column; }

  .te-career-hero { flex-direction: column; }
  .te-career-hero__content { flex: none; padding: 56px var(--te-gutter) 40px; }
  .te-career-why { padding-top: 44px; padding-bottom: 40px; }
  .te-career-why__grid { grid-template-columns: 1fr; column-gap: 0; row-gap: 24px; }
  .te-career-perk { max-width: none; }
  .te-career-roles { padding-top: 40px; padding-bottom: 48px; }
  .te-career-search { grid-template-columns: 1fr; }
  .te-career-jobs { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .te-career-jobs { grid-template-columns: 1fr; }
  .te-career-job-card__actions { flex-direction: column; align-items: stretch; }
  .te-career-job-card__actions .te-btn { justify-content: center; }
  .te-career-detail__body,
  .te-career-apply__card { padding: 22px; }
  .te-career-detail__cta-actions,
  .te-career-apply__actions { flex-direction: column; align-items: stretch; }
  .te-career-detail__cta-actions .te-btn,
  .te-career-apply__actions .te-btn { justify-content: center; }
}
