/* ═══════════════════════════════════════════════════════════
   TRIBO-LABS — Redesign v3
   Clinical White base · Deep Navy · Amber Gold
   Brand Kit: Deep Navy #000080 · Clinical White · Amber Gold · Slate Grey
═══════════════════════════════════════════════════════════ */

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

:root {
  /* Brand palette */
  --navy:        #000080;          /* Deep Navy — brand primary */
  --navy-dark:   #00005a;          /* Deeper navy for footer/hero */
  --navy-mid:    #1a3099;          /* Mid navy for hover states */
  --gold:        #D4A017;          /* Amber Gold */
  --gold-light:  #F0BA30;
  --white:       #FFFFFF;
  --clinical:    #F7F8FC;          /* Clinical White — light section bg */
  --slate:       #4A5568;          /* Slate Grey */
  --slate-light: #E8EBF2;          /* Very light slate for borders/dividers */

  /* Surface tokens */
  --bg:          #FFFFFF;
  --bg-2:        #F7F8FC;          /* Clinical White */
  --text:        #1A2340;          /* Dark navy-charcoal — body text */
  --muted:       #4A5568;          /* Slate — secondary text (WCAG AA) */
  --border:      rgba(0,0,128,0.12);
  --border-light:rgba(0,0,128,0.08);

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Montserrat', sans-serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --t: 0.4s;
}

html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Containers ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 56px; }

/* ── Sections ── */
.section-dark  { background: var(--clinical); padding: 120px 0; }
.section-light { background: var(--white);    padding: 120px 0; }

/* ── Typography system ── */
.display-heading {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 28px;
}
.display-heading--dark { color: var(--navy); }
/* White headings only on explicitly dark/navy backgrounds */
.about-split .display-heading,
.standards-section .display-heading,
.footer .display-heading { color: var(--white); }
.gold-text { color: var(--gold); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 18px;
}
.eyebrow--gold { color: var(--gold); }

.body-text {
  color: #3D4A5C;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.section-head { margin-bottom: 72px; }
.section-head--center { text-align: center; }
.section-sub {
  max-width: 520px;
  color: #3D4A5C;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-top: 12px;
}
.section-head--center .section-sub { margin: 12px auto 0; }
.section-sub--dark { color: #374151; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--t) var(--ease), transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
  margin-top: 32px;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212,160,23,0.4);
}
.btn-primary--full { width: 100%; justify-content: center; margin-top: 0; }
.btn-arrow { transition: transform var(--t) var(--ease); }
.btn-primary:hover .btn-arrow { transform: translateX(6px); }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: 80px;
  padding: 0 56px;
  display: flex;
  align-items: center;
  transition: background var(--t) var(--ease), height var(--t) var(--ease), backdrop-filter var(--t);
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  height: 68px;
  border-bottom: 1px solid rgba(0,0,128,0.1);
  box-shadow: 0 2px 20px rgba(0,0,128,0.08);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.nav__logo-img { height: 50px; width: auto; transition: height var(--t) var(--ease), opacity var(--t); }
.nav.scrolled .nav__logo-img { height: 42px; }
/* Swap to dark logo on white nav */
.nav__logo-bright { display: block; }
.nav__logo-dark   { display: none; }
.nav.scrolled .nav__logo-bright { display: none; }
.nav.scrolled .nav__logo-dark   { display: block; }

.nav__links { display: flex; align-items: center; gap: 40px; }
.nav__link {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(255,255,255,0.8);
  position: relative;
  transition: color var(--t);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--t) var(--ease);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }

/* Scrolled state — dark text on white background */
.nav.scrolled .nav__link { color: var(--navy); }
.nav.scrolled .nav__link:hover { color: var(--gold); }
.nav.scrolled .nav__link::after { background: var(--gold); }

.nav__cta {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  border-radius: 2px;
  transition: var(--t) var(--ease);
}
.nav__cta:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.nav.scrolled .nav__cta { border-color: var(--navy); color: var(--navy); }
.nav.scrolled .nav__cta:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav__hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: var(--t) var(--ease); }
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Language Toggle ── */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
  transition: border-color var(--t) var(--ease);
  margin-left: 8px;
}
.lang-toggle:hover { border-color: var(--gold); }
.nav.scrolled .lang-toggle { border-color: rgba(0,0,128,0.2); }
.nav.scrolled .lang-toggle:hover { border-color: var(--gold); }
.lang-toggle__option {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45);
  transition: color var(--t);
  padding: 2px 0;
}
.nav.scrolled .lang-toggle__option { color: rgba(0,0,128,0.5); }
.nav.scrolled .lang-toggle__sep { color: rgba(0,0,128,0.25); }
.lang-toggle__option.active {
  color: var(--gold);
  font-weight: 500;
}
.lang-toggle__sep {
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: rgba(255,255,255,0.2);
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%; height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: var(--bg);
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right,  rgba(10,15,26,0.82) 0%, rgba(10,15,26,0.45) 55%, rgba(10,15,26,0.05) 100%),
    linear-gradient(to bottom, rgba(10,15,26,0.3)  0%, rgba(10,15,26,0)    40%, rgba(10,15,26,0.6) 100%);
}
.hero__headline {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 7vw;
  z-index: 1;
  pointer-events: none;
}
.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.04em;
  color: var(--white);
  text-align: left;
  max-width: 640px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 48px; left: 56px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,0.6);
}
.hero__scroll-line {
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.4);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: slide-line 1.8s ease-in-out infinite;
}
@keyframes slide-line {
  0% { left: -100%; }
  50% { left: 0%; }
  100% { left: 100%; }
}
.hero__scroll-label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════════ */
.stats-strip {
  background: var(--gold);
  padding: 0;
}
.stats-strip__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
  display: flex;
  align-items: stretch;
}
.stat-item {
  flex: 1;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.5vw, 4.5rem);
  font-weight: 400;
  color: var(--bg);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-item__label {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(10,15,26,0.72);
}
.stat-divider {
  width: 1px;
  background: rgba(10,15,26,0.2);
  margin: 20px 0;
}

/* ═══════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════ */
.marquee-wrap {
  overflow: hidden;
  background: var(--navy);
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.marquee-wrap--light {
  background: var(--slate-light);
  border-color: var(--border-light);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  will-change: transform;
}
.marquee-track--slow { animation-duration: 40s; }
.marquee-wrap--light .marquee-track span { color: #555e70; }
.marquee-track span {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}
.marquee-dot { color: var(--gold) !important; font-size: 1rem !important; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   INTRO FEATURE
═══════════════════════════════════════════ */
.intro-feature {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  min-height: 600px;
  background: var(--bg);
}
.intro-feature__image-col {
  position: relative;
  overflow: hidden;
}
.intro-feature__img-wrap {
  height: 100%;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}
.intro-feature__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.intro-feature__img-wrap:hover img { transform: scale(1.03); }
.intro-feature__img-badge {
  position: absolute;
  bottom: 32px; right: 32px;
  background: rgba(10,15,26,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 4px;
}
.intro-feature__img-badge span {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
}

.intro-feature__text-col {
  padding: 100px 72px 100px 64px;
  display: flex;
  align-items: center;
}
.intro-feature__text-col > div { width: 100%; }

/* ═══════════════════════════════════════════
   TRIBO CARDS
═══════════════════════════════════════════ */
.tribo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--slate-light);
  border: 1px solid var(--slate-light);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 40px;
}
.tribo-card {
  background: var(--white);
  padding: 36px 32px;
  position: relative;
  border-left: 2px solid transparent;
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease), transform var(--t) var(--ease);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.tribo-card:hover {
  background: var(--clinical);
  border-left-color: var(--gold);
  transform: translateY(-2px);
}
.tribo-card__num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 16px;
  transition: opacity var(--t);
}
.tribo-card:hover .tribo-card__num { opacity: 0.75; }
.tribo-card__content h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--navy);
  margin-bottom: 8px;
}
.tribo-card__content p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}
.tribo-card__label {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--slate);
  text-transform: uppercase;
}

.standards-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--slate);
  text-transform: none;
}
.standards-tags { display: flex; gap: 8px; }
.s-tag {
  padding: 6px 14px;
  border: 1px solid rgba(212,160,23,0.4);
  color: var(--gold);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ═══════════════════════════════════════════
   MARKETS
═══════════════════════════════════════════ */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.market-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
  background: var(--navy) var(--img) center/cover no-repeat;
  cursor: default;
}
.market-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,15,26,0.92) 0%, rgba(10,15,26,0.4) 60%, rgba(10,15,26,0.1) 100%);
  transition: background var(--t) var(--ease);
}
.market-card:hover .market-card__overlay {
  background: linear-gradient(to top, rgba(27,43,75,0.95) 0%, rgba(10,15,26,0.5) 60%, rgba(10,15,26,0.2) 100%);
}
.market-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 18px;
  transform: translateY(4px);
  transition: transform var(--t) var(--ease);
}
.market-card:hover .market-card__body { transform: translateY(0); }
.market-card__body h3 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.2;
}
.market-card:hover .market-card__body h3 { color: var(--gold); }

/* Image scale on hover */
.market-card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--img) center/cover no-repeat;
  transition: transform 0.6s var(--ease);
  z-index: 0;
}
/* Override: use background on the element, pseudo handles scale */
.market-card { background: var(--navy); }
.market-card::before { transform: scale(1); }
.market-card:hover::before { transform: scale(1.06); }
.market-card__overlay, .market-card__body { z-index: 1; }

/* ═══════════════════════════════════════════
   ABOUT SPLIT
═══════════════════════════════════════════ */
.about-split {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  min-height: 650px;
  background: var(--bg);
}
.about-split__image {
  position: relative;
  overflow: hidden;
}
.about-split__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-split__image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,15,26,0) 60%, rgba(10,15,26,0.5) 100%);
}
.about-split__content {
  padding: 100px 72px 100px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  background: var(--bg);
}

.about-split__cards { display: flex; flex-direction: column; gap: 16px; }
.about-mini-card {
  padding: 28px;
  background: var(--clinical);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  transition: border-color var(--t);
}
.about-mini-card:hover { border-color: rgba(212,160,23,0.3); }
.about-mini-card__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.about-mini-card p { font-size: 0.95rem; color: #374151; line-height: 1.75; }

.floor-map-callout {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: rgba(212,160,23,0.06);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 4px;
}
.floor-map-callout__bar { flex-shrink: 0; width: 3px; height: 60px; background: var(--gold); border-radius: 2px; }
.floor-map-callout__tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.floor-map-callout p { font-size: 0.95rem; color: #374151; line-height: 1.7; }

/* ═══════════════════════════════════════════
   STANDARDS
═══════════════════════════════════════════ */
.standards-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}
.standards-section__bg {
  position: absolute; inset: 0; z-index: 0;
}
.standards-section__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.3);
}
.standards-section__overlay {
  position: absolute; inset: 0;
  background: rgba(10,15,26,0.85);
}
.standards-section__content { position: relative; z-index: 1; }
.standards-section .section-sub { color: rgba(255,255,255,0.82); }

.accred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.accred-card {
  padding: 48px 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-align: center;
  transition: var(--t) var(--ease);
}
.accred-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(212,160,23,0.35);
  transform: translateY(-4px);
}
.accred-card__seal {
  width: 100px; height: 100px;
  margin: 0 auto 28px;
  background: var(--navy-mid);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.12);
}
.accred-card__seal--gold { background: var(--gold); border-color: var(--gold); }
.accred-card__seal-main {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.06em;
}
.accred-card__seal--gold .accred-card__seal-main { color: var(--bg); }
.accred-card__seal-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.04em;
}
.accred-card__seal-year {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
}
.accred-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 12px;
}
.accred-card p { font-size: 0.95rem; color: rgba(255,255,255,0.88); line-height: 1.7; }

/* ═══════════════════════════════════════════
   PARTNERS
═══════════════════════════════════════════ */
/* Keep partners section dark navy even though section-dark is now light */
#partners { background: var(--navy); }
#partners .display-heading { color: var(--white); }
#partners .eyebrow { color: var(--gold); }

.partners-grid { display: flex; flex-direction: column; gap: 1px; background: rgba(255,255,255,0.08); border-radius: 4px; overflow: hidden; }
.partner-card {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 32px 36px;
  background: rgba(255,255,255,0.03);
  transition: background var(--t) var(--ease);
  cursor: default;
}
.partner-card:hover { background: rgba(255,255,255,0.07); }
.partner-card__logo {
  width: 120px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 4px;
  padding: 6px 10px;
  overflow: hidden;
}
.partner-card__logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.partner-card__info { flex: 1; }
.partner-card__info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 4px;
}
.partner-card__info p { font-size: 0.9rem; color: rgba(255,255,255,0.55); font-family: var(--font-body); letter-spacing: 0; text-transform: none; }
.partner-card__arrow { font-size: 1.4rem; color: var(--gold); opacity: 0; transform: translateX(-8px); transition: opacity var(--t), transform var(--t) var(--ease); }
.partner-card:hover .partner-card__arrow { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════════════════════
   RESULTS
═══════════════════════════════════════════ */
.results-section {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  min-height: 650px;
  background: var(--bg);
}
.results-section__image {
  position: relative;
  overflow: hidden;
  order: 1;
}
.results-section__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.results-section:hover .results-section__image img { transform: scale(1.03); }
.results-section__image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to left, rgba(10,15,26,0) 50%, rgba(10,15,26,0.5) 100%);
}
.results-section__content {
  order: 2;
  padding: 100px 72px 100px 64px;
  display: flex;
  align-items: center;
  background: var(--bg-2);
}
.results-section__content > div { width: 100%; }

.results-section__content .eyebrow { display: block; }
.results-section__content p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; }
.results-section__content .display-heading { color: var(--navy); }

.results-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.results-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 0.88rem; color: var(--muted); line-height: 1.5; }
.rl-dot { flex-shrink: 0; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; margin-top: 7px; }

/* Report mockup (compact) */
.report-mockup {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}
.report-mockup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--clinical);
  border-bottom: 1px solid var(--border);
}
.report-id { font-family: var(--font-body); font-size: 0.72rem; font-weight: 600; color: var(--gold); letter-spacing: 0; }
.report-mockup__rows { padding: 16px 20px; display: flex; flex-direction: column; gap: 10px; }
.rm-row { display: grid; grid-template-columns: 120px 1fr 80px; align-items: center; gap: 10px; }
.rm-label { font-family: var(--font-body); font-size: 0.75rem; font-weight: 500; color: var(--slate); }
.rm-bar { height: 4px; background: var(--slate-light); border-radius: 2px; overflow: hidden; }
.rm-fill { height: 100%; background: var(--navy); border-radius: 2px; }
.rm-fill--warn { background: var(--gold); }
.rm-fill--ok { background: #22c55e; }
.rm-val { font-family: var(--font-body); font-size: 0.75rem; color: var(--muted); text-align: right; }
.report-mockup__foot { padding: 10px 20px; border-top: 1px solid var(--border); font-family: var(--font-body); font-size: 0.72rem; font-weight: 400; color: var(--slate); letter-spacing: 0; text-transform: none; }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 72px;
}
.region-card {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: box-shadow var(--t) var(--ease);
}
.region-card:hover { box-shadow: 0 12px 48px rgba(0,0,0,0.12); }
.region-card__top {
  background: var(--navy);
  padding: 22px 28px;
}
.region-card__top h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}
.region-card ul { padding: 24px 28px; display: flex; flex-direction: column; gap: 18px; background: var(--white); }
.region-card li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; color: #374151; line-height: 1.6; }
.ri {
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: 3px;
  color: var(--gold);
}
.ri svg { width: 16px; height: 16px; display: block; stroke: var(--gold); }
.region-card li a { color: var(--navy); font-weight: 600; transition: color var(--t); }
.region-card li a:hover { color: var(--gold); }

.contact-form-block {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding: 56px;
  background: var(--white);
  border-radius: 4px;
  border: 1px solid var(--border-light);
}
.contact-form-block__left { padding-top: 8px; }
.contact-form-block__left h3 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 12px;
}
.contact-form-block__left p { font-size: 1rem; color: #374151; line-height: 1.75; margin-bottom: 24px; }
.contact-form-block__info a { font-family: var(--font-body); font-size: 0.95rem; color: var(--navy); letter-spacing: 0; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }

label { font-family: var(--font-body); font-size: 0.82rem; font-weight: 500; letter-spacing: 0; text-transform: none; color: #555e70; }
input, select, textarea {
  width: 100%; padding: 13px 16px;
  font-family: var(--font-body); font-size: 0.92rem;
  color: var(--navy); background: #f8f9fb;
  border: 1.5px solid #e2e4e8;
  border-radius: 2px; outline: none;
  transition: border-color var(--t), box-shadow var(--t);
  appearance: none;
}
input::placeholder, textarea::placeholder { color: #b0b6c4; }
input:focus, select:focus, textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,43,75,0.08); }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23777e90' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 40px; cursor: pointer;
}
textarea { resize: vertical; min-height: 100px; }

/* Override button color for light bg */
.section-light .btn-primary { color: var(--bg); }
.contact-form .btn-primary { color: var(--bg); margin-top: 0; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer { background: var(--navy-dark); border-top: 1px solid rgba(255,255,255,0.08); }
.footer__inner {
  max-width: 1280px; margin: 0 auto;
  padding: 56px 56px 40px;
  display: flex;
  align-items: flex-start;
  gap: 64px;
}
.footer__brand { flex: 1; }
.footer__logo { height: 44px; width: auto; margin-bottom: 16px; }
.footer__brand p { font-family: var(--font-body); font-size: 0.78rem; font-weight: 400; letter-spacing: 0; text-transform: none; color: rgba(255,255,255,0.4); line-height: 1.8; }

.footer__nav { display: flex; flex-direction: column; gap: 12px; }
.footer__nav a { font-family: var(--font-body); font-size: 0.85rem; font-weight: 400; letter-spacing: 0; text-transform: none; color: rgba(255,255,255,0.55); transition: color var(--t); }
.footer__nav a:hover { color: var(--gold); }

.footer__social { display: flex; gap: 12px; align-items: flex-start; }
.footer__social a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid var(--border); border-radius: 2px;
  color: rgba(255,255,255,0.4);
  transition: var(--t) var(--ease);
}
.footer__social a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.footer__social svg { width: 16px; height: 16px; }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 20px 56px;
  max-width: 1280px; margin: 0 auto;
}
.footer__bottom p { font-family: var(--font-body); font-size: 0.78rem; font-weight: 400; letter-spacing: 0; color: rgba(255,255,255,0.3); text-align: center; }
.footer__bottom a { color: rgba(255,255,255,0.3); transition: color var(--t); }
.footer__bottom a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .container { padding: 0 40px; }
  .nav { padding: 0 40px; }
  .markets-grid { grid-template-columns: repeat(4, 1fr); }
  .intro-feature__text-col { padding: 80px 48px 80px 48px; }
  .about-split__content { padding: 80px 48px; }
  .results-section__content { padding: 80px 48px; }
  .tribo-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .intro-feature { grid-template-columns: 1fr; }
  .intro-feature__img-wrap { min-height: 400px; }
  .intro-feature__text-col { padding: 72px 40px; }
  .about-split { grid-template-columns: 1fr; }
  .about-split__image { min-height: 400px; }
  .about-split__content { padding: 72px 40px; }
  .results-section { grid-template-columns: 1fr; }
  .results-section__image { min-height: 400px; order: 0; }
  .results-section__content { order: 1; padding: 72px 40px; }
  .markets-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-strip__inner { padding: 0 24px; }
  .accred-grid { grid-template-columns: 1fr; max-width: 440px; }
  .partners-grid { max-width: 600px; }
  .contact-form-block { grid-template-columns: 1fr; gap: 32px; padding: 40px; }
  .regions-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto 72px; }
  .footer__inner { flex-wrap: wrap; gap: 40px; padding: 48px 40px 32px; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section-dark, .section-light { padding: 88px 0; }
  .display-heading { font-size: clamp(2.8rem, 10vw, 4rem); }

  /* ── Nav bar — always solid white on mobile ── */
  .nav,
  .nav.scrolled {
    height: 64px !important;
    padding: 0 20px !important;
    background: #fff !important;
    border-bottom: 1px solid rgba(0,0,128,0.1) !important;
    box-shadow: 0 2px 12px rgba(0,0,128,0.07) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .nav__logo-img,
  .nav.scrolled .nav__logo-img { height: 38px !important; }
  .nav__logo-bright,
  .nav.scrolled .nav__logo-bright { display: none !important; }
  .nav__logo-dark,
  .nav.scrolled .nav__logo-dark   { display: block !important; }

  /* ── Hamburger icon ── */
  .nav__hamburger {
    display: flex;
    position: relative;
    z-index: 1002;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
  }
  .nav__hamburger span,
  .nav.scrolled .nav__hamburger span { background: var(--navy) !important; }

  /* ── Full-screen slide-in menu panel ── */
  .nav__links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: #fff;
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    padding: 8px 0 40px;
    gap: 0;
  }
  .nav__links.open { transform: translateX(0); }

  /* ── Nav links inside mobile menu ── */
  .nav__link {
    display: block;
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    padding: 16px 24px;
    border-bottom: 1px solid rgba(0, 0, 128, 0.06);
    background: none;
    transition: background 0.15s, color 0.15s;
    text-align: left;
  }
  .nav__link:hover,
  .nav__link:active { background: rgba(0,0,128,0.04); color: var(--gold); }
  .nav__link::after { display: none; }

  /* ── CTA button in mobile menu ── */
  .nav__cta {
    display: block;
    margin: 20px 24px 8px;
    padding: 14px 20px;
    background: var(--navy);
    color: #fff !important;
    border: none;
    border-radius: 3px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.03em;
  }
  .nav__cta:hover { background: var(--gold); }

  /* ── Language toggle ── */
  .lang-toggle {
    margin: 12px 24px 0;
    align-self: flex-start;
    border-color: rgba(0,0,128,0.2);
  }
  .lang-toggle__option { color: rgba(0,0,128,0.55); }
  .lang-toggle__sep    { color: rgba(0,0,128,0.25); }

  /* ── Services dropdown — inline, toggled open ── */
  .nav__dropdown-wrap {
    position: static;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .nav__dropdown {
    position: static !important;
    display: none;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    box-shadow: none;
    border-radius: 0;
    border: none;
    background: transparent;
    padding: 0;
    min-width: 0;
    width: 100%;
  }
  .nav__dropdown-wrap.open .nav__dropdown { display: block; }
  .nav__dropdown__inner {
    display: flex;
    flex-direction: column;
    background: #f5f7fa;
    border-radius: 0;
    gap: 0;
    padding: 4px 0;
    box-shadow: none;
  }
  .nav__dropdown__item {
    padding: 13px 24px 13px 48px;
    border-bottom: 1px solid rgba(0,0,128,0.05);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--navy);
    background: none;
  }
  .nav__dropdown__item:hover { background: rgba(0,0,128,0.07); color: var(--gold); }
  .nav__dropdown__num { color: var(--gold); opacity: 1; font-size: 0.75rem; min-width: 22px; }
  .nav__dropdown__caret { margin-left: 6px; transition: transform 0.25s; display: inline-block; }
  .nav__dropdown-wrap.open .nav__dropdown__caret { transform: rotate(180deg); }

  /* ── Other sections ── */
  .stats-strip__inner { flex-wrap: wrap; padding: 0 24px; }
  .stat-item { flex: 1 1 calc(50% - 20px); min-width: 120px; }
  .stat-divider { display: none; }
  .tribo-grid { grid-template-columns: 1fr; }
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-block { padding: 28px 24px; }
  .footer__inner { padding: 40px 24px 28px; }
  .footer__bottom { padding: 16px 24px; }
}

@media (max-width: 480px) {
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
  .market-card { aspect-ratio: 3/4; }
  .accred-grid { grid-template-columns: 1fr; }
  .hero__scroll-indicator { left: 24px; }
}

/* ═══════════════════════════════════════════
   NAV DROPDOWN
═══════════════════════════════════════════ */
.nav__dropdown-wrap {
  position: relative;
}
.nav__link--has-dropdown { display: flex; align-items: center; gap: 4px; }
.nav__dropdown__caret {
  font-size: 0.55rem;
  transition: transform var(--t) var(--ease);
  display: inline-block;
}
.nav__dropdown-wrap:hover .nav__dropdown__caret { transform: rotate(180deg); }

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  padding-top: 16px;
  width: 420px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  z-index: 2000;
}
.nav__dropdown-wrap:hover .nav__dropdown,
.nav__dropdown-wrap:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  padding: 8px;
  background: #ffffff;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0,0,128,0.1);
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0,0,128,0.12);
}
.nav__dropdown__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: 4px;
  transition: background var(--t) var(--ease), color var(--t);
  color: var(--navy);
}
.nav__dropdown__item:hover,
.nav__dropdown__item--active {
  background: rgba(0,0,128,0.06);
  color: var(--navy);
}
.nav__dropdown__item--active {
  background: rgba(212,160,23,0.1);
  border-left: 3px solid var(--gold);
}
.nav__dropdown__item--active .nav__dropdown__num {
  color: var(--gold);
  opacity: 1;
}
.nav__dropdown__num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  min-width: 28px;
}
.nav__dropdown__text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: #1A2340;
}


/* ═══════════════════════════════════════════
   TRIBO TEST PAGES
═══════════════════════════════════════════ */

/* ── Hero ── */
.tp-hero {
  background: var(--navy-dark);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.tp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(212,160,23,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.tp-hero__inner { position: relative; z-index: 1; }

.tp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255,255,255,0.55);
  margin-bottom: 40px;
}
.tp-breadcrumb a { color: rgba(255,255,255,0.4); transition: color var(--t); }
.tp-breadcrumb a:hover { color: var(--gold); }

.tp-hero__badge {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}
.tp-hero__num {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 400;
  line-height: 1;
  color: var(--gold);
  opacity: 0.18;
}
.tp-hero__tribo-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.tp-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 20px;
}
.tp-hero__cat {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.tp-hero__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.tp-hero__tag {
  padding: 6px 14px;
  border: 1px solid rgba(212,160,23,0.3);
  color: rgba(255,255,255,0.75);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 2px;
}
.tp-hero__nav { display: flex; gap: 16px; }
.tp-hero__nav-btn {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.5);
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  transition: var(--t) var(--ease);
}
.tp-hero__nav-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ── Layout ── */
.tp-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 60vh;
  background: var(--white);
}

/* ── Sidebar ── */
.tp-sidenav {
  background: var(--clinical);
  border-right: 1px solid var(--slate-light);
  padding: 48px 0;
  position: sticky;
  top: 80px;
  align-self: start;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}
.tp-sidenav__label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--slate);
  padding: 0 24px;
  margin-bottom: 16px;
}
.tp-sidenav__link {
  display: block;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--slate);
  border-left: 2px solid transparent;
  transition: color var(--t), border-color var(--t), background var(--t);
}
.tp-sidenav__link:hover { color: var(--navy); background: rgba(0,0,128,0.04); }
.tp-sidenav__link--active {
  color: var(--navy);
  border-left-color: var(--gold);
  background: rgba(0,0,128,0.06);
  font-weight: 500;
}

/* ── Main ── */
.tp-main { padding: 64px 72px; }

.tp-section { margin-bottom: 64px; padding-bottom: 64px; border-bottom: 1px solid var(--slate-light); }
.tp-section:last-child { border-bottom: none; margin-bottom: 0; }

.tp-section__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.tp-desc {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.85;
  color: #2D3748;
  max-width: 700px;
}

/* Spec list */
.tp-spec__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}
.tp-spec__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--clinical);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  transition: background var(--t);
}
.tp-spec__item:hover { background: var(--slate-light); }
.tp-spec__dot {
  flex-shrink: 0;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 6px;
}
.tp-spec__text {
  font-size: 1rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.65;
}

/* Note block (TRIBO 3) */
.tp-note {
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(212,160,23,0.08);
  border: 1px solid rgba(212,160,23,0.25);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--navy);
}

/* PDF section */
.tp-section--pdf { background: var(--clinical); padding: 40px; border-radius: 8px; border: 1px solid var(--slate-light); border-bottom: 1px solid var(--slate-light); }
.tp-pdf__desc { color: #374151; font-size: 1rem; line-height: 1.7; margin-bottom: 24px; }
.tp-pdf__btns { display: flex; gap: 16px; flex-wrap: wrap; }
.tp-pdf__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 2px;
  transition: var(--t) var(--ease);
  text-decoration: none;
}
.tp-pdf__btn--primary {
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy);
}
.tp-pdf__btn--primary:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,128,0.2); }
.tp-pdf__btn--secondary {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.tp-pdf__btn--secondary:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.tp-pdf__preview-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 8px 18px;
  background: transparent;
  border: 1px dashed var(--slate);
  border-radius: 4px;
  color: var(--slate);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color var(--t), color var(--t), background var(--t);
}
.tp-pdf__preview-toggle:hover,
.tp-pdf__preview-toggle.active {
  border-color: var(--navy);
  color: var(--navy);
  background: rgba(0,0,128,0.04);
}
.tp-pdf__preview-panel {
  display: none;
  margin-top: 20px;
  border: 1px solid var(--slate-light);
  border-radius: 4px;
  overflow: hidden;
}
.tp-pdf__preview-panel.open { display: block; }
.tp-pdf__iframe {
  width: 100%;
  height: 680px;
  border: none;
  display: block;
}

/* CTA section */
.tp-section--cta { border-bottom: none; padding-bottom: 0; }
.tp-cta__block {
  background: var(--navy);
  padding: 56px 48px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.tp-cta__block::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(212,160,23,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.tp-cta__title {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 12px;
}
.tp-cta__sub { color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; margin-bottom: 32px; }

/* Responsive TRIBO pages */
@media (max-width: 1024px) {
  .tp-layout { grid-template-columns: 180px 1fr; }
  .tp-main { padding: 48px 48px; }
}
@media (max-width: 768px) {
  .tp-layout { grid-template-columns: 1fr; }
  .tp-sidenav { position: static; max-height: none; border-right: none; border-bottom: 1px solid var(--slate-light); padding: 24px; }
  .tp-sidenav__link { display: inline-block; padding: 6px 12px; }
  .tp-main { padding: 40px 24px; }
  .tp-hero { padding: 120px 0 60px; }
  .tp-pdf__btns { flex-direction: column; }
  .tp-cta__block { padding: 40px 28px; }
}
@media (max-width: 480px) {
  .tp-sidenav__link { font-size: 0.58rem; padding: 4px 8px; }
}

/* ═══════════════════════════════════════════
   HERO ENHANCEMENTS — Sub + CTA Row
═══════════════════════════════════════════ */
.hero__sub {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.62);
  text-transform: uppercase;
  margin-top: 18px;
  margin-bottom: 40px;
  max-width: 520px;
}
.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 28px;
  pointer-events: auto;
  flex-wrap: wrap;
}
.hero__cta-btn { margin-top: 0; }
.hero__explore-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.68);
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255,255,255,0.22);
  padding-bottom: 2px;
  transition: color var(--t), border-color var(--t);
}
.hero__explore-link:hover { color: var(--gold); border-color: var(--gold); }

/* ═══════════════════════════════════════════
   SECTION CTA ROW (services + results mid-sections)
═══════════════════════════════════════════ */
.section-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-top: 56px;
  padding: 40px 48px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 4px 4px;
  flex-wrap: wrap;
}
.section-cta-row__text { flex: 1; min-width: 240px; }
.section-cta-row__lead {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.1;
}
.section-cta-row__sub {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}
.section-cta-row .btn-primary { flex-shrink: 0; white-space: nowrap; margin-top: 0; }

/* ═══════════════════════════════════════════
   MARKETS CTA BLOCK
═══════════════════════════════════════════ */
.markets-cta {
  margin-top: 56px;
  padding: 48px 56px;
  background: var(--clinical);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--gold);
  border-radius: 0 4px 4px 0;
  display: flex;
  align-items: center;
  gap: 64px;
}
.markets-cta__text { flex: 1; min-width: 0; }
.markets-cta h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.1;
}
.markets-cta p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}
.markets-cta strong { color: var(--navy); font-weight: 700; }
.markets-cta .btn-primary { flex-shrink: 0; white-space: nowrap; margin-top: 0; }

/* ═══════════════════════════════════════════
   ABOUT CTA GHOST BUTTON
═══════════════════════════════════════════ */
.about-split__cta { margin-top: 0; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  transition: background var(--t), color var(--t), border-color var(--t);
}
.btn-ghost:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ═══════════════════════════════════════════
   STANDARDS TRUST BLOCK
═══════════════════════════════════════════ */
.standards-trust-block {
  max-width: 700px;
  margin: 56px auto 0;
  text-align: center;
  padding: 48px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
}
.standards-trust-block p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
  margin-bottom: 36px;
}
.standards-trust-block strong { color: var(--gold); font-weight: 600; }
.standards-trust-block .btn-primary { margin-top: 0; }

/* Inline semantic emphasis */
strong.hl { color: var(--navy); font-weight: 700; }
.about-mini-card strong.hl,
.floor-map-callout strong.hl { color: var(--navy-dark); }

/* Responsive: CTA row + new blocks */
@media (max-width: 900px) {
  .markets-cta { padding: 40px 36px; gap: 40px; }
  .standards-trust-block { padding: 40px 32px; }
}
@media (max-width: 768px) {
  .hero__sub { font-size: 0.68rem; margin-bottom: 28px; }
  .hero__cta-row { gap: 18px; }
  .section-cta-row { padding: 28px 24px; flex-direction: column; align-items: flex-start; gap: 28px; }
  .markets-cta { padding: 32px 24px; margin-top: 40px; flex-direction: column; align-items: flex-start; gap: 28px; }
  .standards-trust-block { padding: 32px 20px; margin-top: 40px; }
}

/* ======================================================
   RM2 — Lab Report Photo
   ====================================================== */
.rm2-photo {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,20,60,0.18);
  max-height: 520px;
}
.rm2-photo img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
}
.rm2-photo__fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #f5f7fa);
  pointer-events: none;
}
