:root {
  --ink: #142126;
  --muted: #566367;
  --paper: #f7f4ec;
  --surface: #ffffff;
  --line: #e4e0d6;
  --navy: #121d22;
  --red: #ff6b14;
  --teal: #12807a;
  --green: #2a7351;
  --amber: #d8841e;
  --blue: #1d647f;
  --violet: #625778;
  --mdv-dark: #121d22;
  --mdv-orange: #ff6b14;
  --mdv-orange-dark: #a33c05;
  --mdv-cream: #f7f4ec;
  --mdv-muted: #566367;
  --content-max: 1500px;
  --menu-max: 1750px;
  --footer-max: 1350px;
  --shadow: 0 16px 42px rgba(18, 29, 34, 0.08);
}

@font-face {
  font-family: "FontAwesome";
  src: url("/fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--mdv-cream);
  font-family: Aptos, "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 6px;
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid var(--mdv-orange);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding-inline: max(clamp(18px, 3vw, 72px), calc((100vw - var(--menu-max)) / 2));
  background: rgba(18, 29, 34, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  width: min(100%, var(--menu-max));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-block: 7px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.brand-main {
  display: inline-grid;
  justify-items: center;
  gap: 0;
  min-width: 158px;
  line-height: 0.88;
  letter-spacing: 0;
  text-align: center;
}

.brand-performance,
.brand-voyage {
  display: block;
}

.brand-performance {
  color: #ffffff;
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 600;
  letter-spacing: 2.1px;
}

.brand-voyage {
  color: var(--mdv-orange);
  font-size: clamp(28px, 2.1vw, 37px);
  font-weight: 600;
  letter-spacing: 3.6px;
}

.brand-subtitle {
  display: inline-block;
  padding: 6px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  font-size: 14px;
  font-weight: 600;
}

.menu-toggle {
  display: none;
}

.top-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease;
}

.top-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  outline: none;
}

.top-nav .nav-contact {
  color: #121d22;
  background: var(--mdv-orange);
  padding-inline: 14px;
}

.top-nav .nav-contact:hover,
.top-nav .nav-contact:focus-visible {
  background: #ff812f;
  color: #121d22;
}

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
  padding: 132px clamp(18px, 5vw, 72px) 48px;
  overflow: hidden;
  background: url("/img/hero-travel-intelligence.webp?v=64474") center / cover no-repeat;
  color: #fff;
}

.home-hero {
  min-height: calc(100vh - 82px);
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 29, 34, 0.9) 0%, rgba(18, 29, 34, 0.68) 48%, rgba(18, 29, 34, 0.2) 100%),
    linear-gradient(0deg, rgba(18, 29, 34, 0.84) 0%, rgba(18, 29, 34, 0.06) 58%);
}

.hero__inner {
  position: relative;
  width: min(100%, var(--content-max));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--mdv-orange-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.profiles-section .eyebrow,
.fdn-section .eyebrow,
.final-cta .eyebrow,
.journey-banner .eyebrow,
.contact-section .eyebrow,
.about-manifesto .eyebrow,
.glossary-note .eyebrow,
.source-highlight .eyebrow {
  color: #ffb36f;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(39px, 6vw, 76px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 780px;
  margin: 22px 0 0;
  color: #e8f0ed;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
.filter-button,
.playbook button,
.playbook .profile-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 16px;
  font: inherit;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button-primary {
  background: var(--mdv-orange);
  color: #121d22;
}

.button-light {
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
}

.button:hover,
.button:focus-visible,
.filter-button:hover,
.filter-button:focus-visible,
.playbook button:hover,
.playbook button:focus-visible,
.playbook .profile-link:hover,
.playbook .profile-link:focus-visible {
  transform: translateY(-1px);
  outline: 3px solid rgba(255, 107, 20, 0.2);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 780px;
  margin-top: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.14);
}

.hero-metrics div {
  padding: 16px;
  background: rgba(7, 18, 27, 0.54);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  font-size: 24px;
  font-weight: 500;
}

.hero-metrics span {
  color: #d8e6e1;
  font-size: 13px;
}

.section {
  padding-block: clamp(48px, 7vw, 92px);
  padding-inline: max(clamp(18px, 4vw, 72px), calc((100vw - var(--content-max)) / 2));
}

.section > .section-heading,
.section > .directory-toolbar,
.section > .directory-count,
.section > .provider-grid,
.section > .empty-state,
.section > .playbook-grid,
.section > .decision-table-wrap,
.section > .checklist-grid,
.section > .source-note,
.section > .source-columns {
  width: min(100%, var(--content-max));
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  max-width: 1060px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 3.7vw, 48px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.page-hero + .section {
  padding-top: clamp(34px, 5vw, 62px);
}

.page-hero + .section > .section-heading {
  display: none;
}

.page-hero {
  padding-block: clamp(66px, 9vw, 118px) clamp(34px, 5vw, 62px);
  padding-inline: max(clamp(18px, 4vw, 72px), calc((100vw - var(--content-max)) / 2));
  background:
    linear-gradient(135deg, rgba(18, 29, 34, 0.05), rgba(255, 107, 20, 0.08)),
    var(--mdv-cream);
  border-bottom: 1px solid var(--line);
}

.page-hero__inner {
  width: min(100%, var(--content-max));
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 980px;
  color: var(--mdv-dark);
  font-size: clamp(38px, 5vw, 72px);
}

.page-hero p:last-child {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
}

.home-card-grid {
  width: min(100%, var(--content-max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.home-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(18, 29, 34, 0.045);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.home-card:hover,
.home-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 107, 20, 0.38);
  box-shadow: 0 16px 34px rgba(18, 29, 34, 0.08);
  outline: none;
}

.home-card span {
  color: var(--mdv-orange-dark);
  font-size: 13px;
  font-weight: 700;
}

.home-card h3 {
  margin: 0;
  color: var(--mdv-dark);
  font-size: 23px;
}

.home-card p {
  margin: 0;
  color: var(--muted);
}

.editorial-summary {
  background: #fff;
  border-top: 1px solid var(--line);
}

.editorial-summary__inner {
  width: min(100%, var(--content-max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}

.editorial-summary h2 {
  margin: 0;
  max-width: 720px;
  color: var(--navy);
  font-size: clamp(28px, 3.7vw, 48px);
  font-weight: 400;
  line-height: 1.08;
}

.editorial-summary__copy p {
  margin-top: 0;
  color: var(--muted);
  font-size: 17px;
}

.updated-note {
  padding-left: 16px;
  border-left: 3px solid var(--mdv-orange);
  font-size: 15px !important;
}

.text-link {
  color: var(--mdv-orange-dark);
  font-weight: 600;
}

.directory-shell {
  background: var(--paper);
}

.directory-visuals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--navy);
}

.directory-visual {
  position: relative;
  min-height: clamp(250px, 28vw, 430px);
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}

.directory-visual--experiences {
  grid-column: 1 / -1;
  min-height: clamp(270px, 32vw, 470px);
}

.directory-visual--protection {
  grid-column: 1 / -1;
  min-height: clamp(270px, 32vw, 470px);
}

.directory-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 20, 25, 0.9), rgba(10, 20, 25, 0.25));
  transition: background-color 180ms ease;
}

.directory-visual img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 400ms ease;
}

.directory-visual > span {
  position: relative;
  z-index: 1;
  min-height: inherit;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: flex-start;
  gap: 9px;
  padding: clamp(28px, 5vw, 74px);
}

.directory-visual small {
  color: #ffb478;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.directory-visual strong {
  font-size: clamp(28px, 3.1vw, 46px);
  font-weight: 500;
  line-height: 1.06;
}

.directory-visual em {
  margin-top: 8px;
  color: #e6efeb;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}

.directory-visual em::after {
  content: "  \2192";
  color: var(--mdv-orange);
}

.directory-visual:hover img,
.directory-visual:focus-visible img {
  transform: scale(1.035);
}

.directory-visual:focus-visible {
  outline: 3px solid var(--mdv-orange);
  outline-offset: -3px;
}

.directory-toolbar {
  display: grid;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.search-box {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border: 1px solid #cdd8d5;
  border-radius: 8px;
  background: #fbfcfa;
  color: var(--muted);
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 17px;
  font-weight: 400;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-row.compact .filter-button {
  min-height: 40px;
}

.filter-button {
  background: #eef2ef;
  color: var(--navy);
  padding-inline: 13px;
}

.filter-button.is-active {
  background: var(--navy);
  color: #fff;
}

.profile-select {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: min(100%, 360px);
  font-weight: 500;
}

.profile-select select {
  flex: 1;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid #cdd8d5;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

@media (min-width: 1180px) {
  .directory-categories,
  .directory-toolbar .filter-row.compact {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .directory-categories .filter-button,
  .directory-toolbar .filter-row.compact .filter-button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .profile-select {
    width: min(100%, 490px);
  }
}

.directory-count {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 24px;
  margin-bottom: 16px;
  color: var(--muted);
}

.directory-count strong {
  color: var(--mdv-orange-dark);
  font-size: 34px;
  font-weight: 500;
}

.directory-count__visible {
  color: var(--ink);
  font-weight: 600;
}

.directory-more {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.directory-more [hidden] {
  display: none;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(315px, 1fr));
  gap: 20px;
}

.provider-card {
  min-height: 408px;
  display: flex;
  flex-direction: column;
  content-visibility: auto;
  contain-intrinsic-size: auto 408px;
  padding: 20px;
  border: 1px solid rgba(226, 229, 225, 0.92);
  border-top: 3px solid var(--blue);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(15, 34, 45, 0.045);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.provider-card:hover {
  transform: translateY(-2px);
  border-color: rgba(16, 45, 66, 0.18);
  box-shadow: 0 16px 34px rgba(15, 34, 45, 0.08);
}

.provider-card.is-hidden,
.empty-state.is-hidden {
  display: none;
}

.empty-state {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px;
  border: 1px solid rgba(226, 229, 225, 0.92);
  border-radius: 8px;
  color: var(--muted);
  background: var(--surface);
  text-align: center;
}

.provider-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.provider-card__top span {
  min-width: 0;
}

.provider-card__identity {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
}

.provider-card__mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(18, 29, 34, 0.1);
  border-radius: 12px;
  background: #f2f5f3;
  color: var(--navy);
}

.provider-card__mark img {
  width: 29px;
  height: 29px;
  object-fit: contain;
}

.provider-card__monogram {
  color: var(--mdv-orange-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.04em;
}

.provider-card__identity h3 {
  margin: 0;
}

.featured-provider .provider-card__mark {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.93);
}

.provider-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.18;
}

.provider-card p {
  margin: 0 0 14px;
  color: #2d3b42;
  font-weight: 400;
}

.provider-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.provider-card a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  color: var(--mdv-orange-dark);
  font-weight: 500;
  text-decoration: none;
}

.provider-card a:hover,
.provider-card a:focus-visible {
  text-decoration: underline;
  outline: none;
}

.accent-air {
  border-top-color: var(--blue);
}

.accent-hotel {
  border-top-color: var(--green);
}

.accent-experiences {
  border-top-color: var(--amber);
}

.accent-mobility {
  border-top-color: var(--teal);
}

.accent-protection {
  border-top-color: var(--red);
}

.accent-payments {
  border-top-color: #5b6b35;
}

.accent-data {
  border-top-color: var(--violet);
}

.accent-software {
  border-top-color: #4c6471;
}

.accent-networks {
  border-top-color: #7a4d31;
}

.empty-state {
  padding: 22px;
  border: 1px dashed #b8c5c0;
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-weight: 500;
}

.playbook-grid,
.checklist-grid,
.source-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.playbook {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 34, 45, 0.04);
}

.playbook__icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: #e8f0ef;
  color: var(--teal);
  font-size: 20px;
}

.playbook h3,
.checklist-grid h3,
.source-columns h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  font-weight: 500;
}

.playbook p {
  margin: 0;
  color: var(--muted);
}

.playbook button,
.playbook .profile-link {
  margin-top: auto;
  align-self: flex-start;
  background: var(--mdv-dark);
  color: #fff;
  text-decoration: none;
}

.matrix-section {
  background: #edf2ef;
}

.decision-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.decision-table {
  width: 100%;
  min-width: 840px;
  border-collapse: collapse;
}

.decision-table th,
.decision-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.decision-table th {
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

.decision-table strong {
  font-weight: 500;
}

.decision-table tr:last-child td {
  border-bottom: 0;
}

.checklist-section {
  background: var(--paper);
}

.checklist-grid > div {
  min-height: 260px;
  padding: 22px;
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 34, 45, 0.04);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--green);
  font-family: FontAwesome;
}

.sources-section {
  background: #fff;
}

.source-note {
  max-width: 900px;
  margin-top: 0;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 400;
}

.source-columns > div {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8faf7;
}

.source-columns a {
  color: var(--mdv-orange-dark);
  font-weight: 500;
  text-decoration: none;
}

.source-columns a:hover,
.source-columns a:focus-visible {
  text-decoration: underline;
  outline: none;
}

.contact-section {
  padding-block: clamp(36px, 6vw, 76px);
  padding-inline: max(clamp(18px, 4vw, 72px), calc((100vw - var(--content-max)) / 2));
  background: var(--mdv-dark);
  color: #fff;
}

.contact-section__inner {
  width: min(100%, var(--content-max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.contact-copy {
  max-width: 860px;
}

.contact-copy h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.08;
}

.contact-copy p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: #d7e2df;
  font-size: 18px;
  font-weight: 300;
}

.site-footer {
  padding-inline: max(clamp(18px, 4vw, 72px), calc((100vw - var(--footer-max)) / 2));
  background: #0e171b;
  color: #d9e1de;
  font-size: 14px;
}

.site-footer__inner {
  width: min(100%, var(--footer-max));
  margin: 0 auto;
  padding-block: 24px;
  display: grid;
  gap: 18px;
}

.site-footer__top {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
  font-weight: 500;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
}

.footer-nav a {
  text-underline-offset: 3px;
}

.ai-disclaimer {
  display: grid;
  gap: 3px;
}

.ai-disclaimer strong {
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
}

.ai-disclaimer small {
  color: #9faeaa;
  font-size: 12px;
  line-height: 1.5;
}

.prose-section {
  background: #fff;
}

.prose-grid {
  width: min(100%, var(--content-max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.sources-method {
  margin-top: 32px;
}

.prose-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8faf7;
}

.prose-card h2,
.prose-card h3 {
  margin-top: 0;
  color: var(--navy);
}

.prose-card p:last-child,
.prose-card ul:last-child {
  margin-bottom: 0;
}

.faq-list {
  width: min(100%, 1360px);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-section .section-heading {
  max-width: 1180px;
}

.faq-section .section-heading h2 {
  text-wrap: balance;
}

.faq-list details {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(18, 29, 34, 0.045);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.faq-list details:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 107, 20, 0.34);
  box-shadow: 0 14px 34px rgba(18, 29, 34, 0.075);
}

.faq-list details[open] {
  border-color: rgba(255, 107, 20, 0.44);
  box-shadow: 0 16px 38px rgba(18, 29, 34, 0.08);
}

.faq-list details[open]::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--mdv-orange);
}

.faq-list summary {
  min-height: 78px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  color: var(--navy);
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 650;
  line-height: 1.35;
  list-style: none;
}

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

.faq-list summary::marker {
  content: "";
}

.faq-list summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f4f0e7;
  color: var(--mdv-orange-dark);
  font-size: 22px;
  font-weight: 500;
  transition: transform 180ms ease, background-color 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
  background: rgba(255, 107, 20, 0.13);
}

.faq-list summary:focus-visible {
  outline: 3px solid rgba(255, 107, 20, 0.3);
  outline-offset: -3px;
}

.faq-list p {
  max-width: 980px;
  margin: 0;
  padding: 0 72px 24px 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .site-header {
    padding-inline: clamp(22px, 4vw, 42px);
  }

  .site-header__inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 16px;
  }

  .top-nav {
    justify-content: flex-start;
  }

  .playbook-grid,
  .checklist-grid,
  .source-columns,
  .home-card-grid,
  .prose-grid,
  .editorial-summary__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-section__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: relative;
    padding-inline: 18px;
  }

  .site-header__inner {
    min-height: auto;
    padding-block: 14px;
  }

  .brand {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    white-space: normal;
  }

  .brand-main {
    min-width: 140px;
  }

  .brand-performance {
    font-size: 14px;
    letter-spacing: 1.6px;
  }

  .brand-voyage {
    font-size: 25px;
    letter-spacing: 2.6px;
  }

  .brand-subtitle {
    font-size: 13px;
    padding: 6px 9px;
  }

  .top-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    font-size: 12px;
  }

  .top-nav a {
    justify-content: center;
    padding-inline: 5px;
  }

  .hero {
    min-height: 76vh;
    padding-top: 72px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .faq-list summary {
    min-height: 68px;
    gap: 14px;
    padding: 16px;
  }

  .faq-list p {
    padding: 0 16px 20px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .directory-toolbar {
    padding: 14px;
  }

  .filter-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filter-button {
    width: 100%;
    padding-inline: 8px;
  }

  .profile-select {
    align-items: stretch;
    flex-direction: column;
  }

  .provider-grid,
  .playbook-grid,
  .checklist-grid,
  .source-columns,
  .home-card-grid {
    grid-template-columns: 1fr;
  }

  .provider-card {
    min-height: 0;
  }

  .site-footer__inner {
    padding-block: 22px;
  }

  .site-footer__top {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

::selection {
  background: var(--mdv-orange);
  color: #111b20;
}

body {
  background: #f4f0e7;
}

h1 em,
h2 em {
  color: var(--mdv-orange-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero h1 em,
.profiles-section h2 em,
.fdn-section h2 em,
.final-cta h2 em,
.journey-banner h2 em,
.contact-section h2 em,
.about-manifesto h2 em {
  color: #ffb478;
}

.site-header {
  box-shadow: 0 10px 40px rgba(5, 13, 17, 0.12);
}

.site-header__inner {
  min-height: 88px;
}

.top-nav {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
}

.button {
  min-height: 52px;
  padding-inline: 21px;
  border-radius: 10px;
  font-weight: 650;
}

.button-dark {
  background: var(--navy);
  color: #fff;
}

.button-glass {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(14px);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
}

.button-light-solid {
  background: #fff;
  color: var(--navy);
}

.hero {
  background-image: url("/img/hero-travel-intelligence.webp?v=64474");
  background-position: center center;
}

.home-hero {
  min-height: calc(100svh - 88px);
  align-items: center;
  padding-top: 112px;
  padding-bottom: 92px;
}

.hero__shade {
  background:
    radial-gradient(circle at 72% 45%, rgba(255, 107, 20, 0.08), transparent 34%),
    linear-gradient(90deg, rgba(8, 16, 20, 0.98) 0%, rgba(8, 16, 20, 0.9) 34%, rgba(8, 16, 20, 0.32) 72%, rgba(8, 16, 20, 0.16) 100%),
    linear-gradient(0deg, rgba(8, 16, 20, 0.82) 0%, transparent 44%);
}

.hero__inner {
  z-index: 1;
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.hero-kicker span {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(48px, 6.2vw, 92px);
  letter-spacing: -0.035em;
}

.hero h1 em {
  display: block;
  line-height: 0.98;
}

.hero__lead {
  max-width: 770px;
  color: rgba(238, 246, 242, 0.9);
  font-size: clamp(17px, 1.55vw, 22px);
}

.hero-metrics {
  max-width: 860px;
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(15px);
}

.hero-metrics div {
  padding: 18px 20px;
  background: rgba(5, 13, 17, 0.64);
}

.hero-metrics strong {
  color: #fff;
  font-size: 30px;
}

.hero-scroll {
  position: absolute;
  right: clamp(22px, 5vw, 72px);
  bottom: 34px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-scroll span {
  width: 36px;
  height: 1px;
  background: var(--mdv-orange);
}

.trust-strip {
  padding-inline: max(clamp(18px, 4vw, 72px), calc((100vw - var(--content-max)) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--navy);
  color: #fff;
}

.trust-strip__inner {
  width: min(100%, var(--content-max));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.trust-strip span {
  position: relative;
  color: rgba(255, 255, 255, 0.67);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.trust-strip span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: clamp(-26px, -1.8vw, -14px);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--mdv-orange);
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 42px;
}

.section-heading--split h2,
.section-heading--center h2 {
  letter-spacing: -0.03em;
}

.section-heading--split > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 18px;
}

.section-heading--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading--center > p:last-child {
  max-width: 700px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.explore-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 5%, rgba(255, 107, 20, 0.12), transparent 22%),
    #f4f0e7;
}

.category-showcase {
  width: min(100%, var(--content-max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(220px, auto);
  gap: 16px;
}

.category-tile {
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(18, 29, 34, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--navy);
  text-decoration: none;
  box-shadow: 0 14px 40px rgba(18, 29, 34, 0.055);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.category-tile--visual {
  padding: 0 24px 24px;
  gap: 12px;
}

.category-tile__image {
  display: block;
  width: calc(100% + 48px);
  height: 104px;
  margin: 0 -24px;
  object-fit: cover;
}

.category-tile::after {
  content: "\f178";
  position: absolute;
  right: 22px;
  bottom: 20px;
  color: var(--mdv-orange);
  font-family: FontAwesome;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.category-tile:hover,
.category-tile:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 20, 0.42);
  box-shadow: 0 22px 50px rgba(18, 29, 34, 0.1);
  outline: none;
}

.category-tile:hover::after,
.category-tile:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

.category-tile--wide {
  grid-column: span 2;
  background: var(--navy);
  color: #fff;
}

.category-tile--photo {
  grid-column: span 2;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(10, 20, 25, 0.92), rgba(10, 20, 25, 0.38)),
    url("/img/ecosysteme-b2b-tourisme.wwc-1200.webp?v=59146") center / cover;
}

.category-tile__icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 107, 20, 0.12);
  color: var(--mdv-orange-dark);
  font-size: 20px;
}

.category-tile small {
  color: var(--mdv-orange-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-tile h3 {
  margin: 4px 0 0;
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 520;
  line-height: 1.05;
}

.category-tile p {
  max-width: 500px;
  margin: 9px 0 0;
  color: inherit;
  opacity: 0.72;
}

.category-tile > strong {
  align-self: flex-end;
  color: var(--mdv-orange-dark);
  font-size: 20px;
}

.category-tile--wide small,
.category-tile--wide > strong,
.category-tile--wide .category-tile__icon,
.category-tile--photo small,
.category-tile--photo > strong,
.category-tile--photo .category-tile__icon {
  color: #ffb478;
}

.centered-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.intelligence-section {
  background: #e8e1d4;
}

.intelligence-layout,
.fdn-layout {
  width: min(100%, var(--content-max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(38px, 6vw, 94px);
}

.intelligence-visual,
.fdn-visual {
  position: relative;
}

.intelligence-visual::before {
  content: "";
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 1px solid rgba(18, 29, 34, 0.16);
  border-radius: 18px;
}

.intelligence-visual img,
.fdn-visual img {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 26px 70px rgba(18, 29, 34, 0.17);
}

.floating-insight,
.fdn-visual__badge {
  position: absolute;
  right: -24px;
  bottom: 28px;
  max-width: 250px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(18, 29, 34, 0.92);
  color: #fff;
  box-shadow: 0 15px 40px rgba(18, 29, 34, 0.22);
  backdrop-filter: blur(14px);
}

.floating-insight span,
.floating-insight strong {
  display: block;
}

.floating-insight span {
  color: #ffb478;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.floating-insight strong {
  margin-top: 3px;
  font-size: 16px;
}

.intelligence-copy h2,
.fdn-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4.4vw, 61px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.lead-copy {
  margin: 22px 0 0;
  color: #4e5d61;
  font-size: 18px;
}

.process-list {
  display: grid;
  gap: 0;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 17px 0;
  border-top: 1px solid rgba(18, 29, 34, 0.13);
}

.process-list li:last-child {
  border-bottom: 1px solid rgba(18, 29, 34, 0.13);
}

.process-list li > span {
  color: var(--mdv-orange-dark);
  font-size: 12px;
  font-weight: 800;
}

.process-list strong {
  color: var(--navy);
  font-size: 17px;
}

.process-list p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.text-link--arrow::after {
  content: " \2192";
}

.profiles-section {
  color: #fff;
  background:
    radial-gradient(circle at 50% 0, rgba(18, 128, 122, 0.24), transparent 34%),
    var(--navy);
}

.profiles-section .section-heading h2 {
  color: #fff;
}

.profiles-section .section-heading--center > p:last-child {
  color: #c5d2cd;
}

.profile-orbit {
  width: min(100%, var(--content-max));
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.profile-orbit a {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  text-decoration: none;
  transition: transform 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

.decision-paths {
  background:
    radial-gradient(circle at 82% 0%, rgba(255, 107, 20, 0.1), transparent 28%),
    #f2f5f3;
}

.decision-paths__grid {
  width: min(100%, var(--content-max));
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.decision-paths__grid article {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 30px;
  border: 1px solid rgba(21, 34, 41, 0.09);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(21, 34, 41, 0.07);
}

.decision-paths__grid article::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -48px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(255, 107, 20, 0.08);
}

.decision-paths__grid span {
  display: inline-flex;
  margin-bottom: 46px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #152229;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.decision-paths__grid h3 {
  margin: 0 0 12px;
  font-size: 25px;
}

.decision-paths__grid p {
  color: var(--mdv-muted);
}

.decision-paths__grid small {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
  color: var(--mdv-orange-dark);
  font-weight: 750;
}

.profile-orbit a:hover,
.profile-orbit a:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 20, 0.6);
  background: rgba(255, 107, 20, 0.1);
  outline: none;
}

.profile-orbit i {
  margin-bottom: auto;
  color: var(--mdv-orange);
  font-size: 25px;
}

.profile-orbit span {
  font-size: 18px;
  font-weight: 650;
  line-height: 1.15;
}

.profile-orbit small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.58);
}

.fdn-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 16%, rgba(255, 107, 20, 0.11), transparent 23%),
    #152229;
  color: #fff;
}

.fdn-copy h2 {
  color: #fff;
}

.fdn-copy > p:not(.eyebrow) {
  margin: 22px 0;
  color: #c9d5d1;
  font-size: 18px;
}

.partner-label {
  display: inline-flex;
  margin-bottom: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.partner-label span,
.partner-label strong {
  padding: 7px 11px;
}

.partner-label strong {
  background: var(--mdv-orange);
  color: var(--navy);
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 4px;
}

.service-pills span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: #d8e4df;
  font-size: 12px;
}

.fdn-visual::after {
  content: "";
  position: absolute;
  inset: -20px 24px 20px -20px;
  z-index: 0;
  border-radius: 20px;
  background: var(--mdv-orange);
  opacity: 0.17;
}

.fdn-visual img {
  z-index: 1;
}

.fdn-visual__badge {
  right: auto;
  left: -24px;
  bottom: 26px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.fdn-visual__badge i {
  color: var(--mdv-orange);
}

.editorial-summary h2 em {
  color: var(--teal);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0;
  background: var(--line);
}

.proof-grid div {
  padding: 18px;
  background: #f8faf7;
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  color: var(--navy);
  font-size: 25px;
}

.proof-grid span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
  padding: clamp(46px, 6vw, 78px) max(clamp(18px, 7vw, 120px), calc((100vw - var(--content-max)) / 2));
  color: #fff;
  background:
    linear-gradient(90deg, rgba(9, 18, 22, 0.96), rgba(9, 18, 22, 0.72)),
    url("/img/croissance-voyage-cta.wwc-1200.webp?v=26558") center / cover;
}

.final-cta h2 {
  max-width: 890px;
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.05;
}

.final-cta > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(14, 24, 29, 0.98), rgba(14, 24, 29, 0.76) 58%, rgba(14, 24, 29, 0.42)),
    url("/img/ecosysteme-b2b-tourisme.wwc-1200.webp?v=59146") center 48% / cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 107, 20, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255, 107, 20, 0.025), 0 0 0 110px rgba(255, 107, 20, 0.018);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: #fff;
  letter-spacing: -0.035em;
}

.page-hero p:last-child {
  color: #d2dfda;
}

.page-repertoire .page-hero {
  background-image: linear-gradient(90deg, rgba(14, 24, 29, 0.98), rgba(14, 24, 29, 0.72) 58%, rgba(14, 24, 29, 0.3)), url("/img/repertoire-solutions-voyage.wwc-1200.webp?v=51454");
}

.page-parcours .page-hero {
  background-image: linear-gradient(90deg, rgba(14, 24, 29, 0.98), rgba(14, 24, 29, 0.72) 58%, rgba(14, 24, 29, 0.3)), url("/img/parcours-metiers-tourisme.wwc-1200.webp?v=42424");
}

.page-choisir .page-hero {
  background-image: linear-gradient(90deg, rgba(14, 24, 29, 0.98), rgba(14, 24, 29, 0.72) 58%, rgba(14, 24, 29, 0.3)), url("/img/choisir-solution-tourisme.wwc-1200.webp?v=34858");
}

.page-sources .page-hero {
  background-image: linear-gradient(90deg, rgba(14, 24, 29, 0.98), rgba(14, 24, 29, 0.72) 58%, rgba(14, 24, 29, 0.3)), url("/img/sources-tourisme-editorial.wwc-1200.webp?v=34128");
}

.page-contact .page-hero {
  background-image: linear-gradient(90deg, rgba(14, 24, 29, 0.98), rgba(14, 24, 29, 0.72) 58%, rgba(14, 24, 29, 0.32)), url("/img/contact-conseil-travel-tech.wwc-1200.webp?v=28908");
}

.page-a-propos .page-hero {
  background-image: linear-gradient(90deg, rgba(14, 24, 29, 0.98), rgba(14, 24, 29, 0.72) 58%, rgba(14, 24, 29, 0.3)), url("/img/equipe-conseil-voyage.wwc-1200.webp?v=53872");
}

.page-glossaire .page-hero {
  background-image: linear-gradient(90deg, rgba(14, 24, 29, 0.98), rgba(14, 24, 29, 0.72) 58%, rgba(14, 24, 29, 0.3)), url("/img/glossaire-tech-voyage.wwc-1200.webp?v=42324");
}

.page-mentions-legales .page-hero {
  background-image: linear-gradient(90deg, rgba(14, 24, 29, 0.98), rgba(14, 24, 29, 0.72) 58%, rgba(14, 24, 29, 0.3)), url("/img/gouvernance-editoriale-voyage.wwc-1200.webp?v=34906");
}

.directory-toolbar {
  position: relative;
  z-index: 2;
  margin-top: -20px;
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(18, 29, 34, 0.13);
}

.provider-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(15, 34, 45, 0.055);
}

.provider-card::before {
  content: "";
  position: absolute;
  top: -42px;
  right: -42px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.035;
}

.provider-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 38%;
  opacity: 0.5;
  background: radial-gradient(circle at 85% 90%, rgba(255, 107, 20, 0.12), transparent 52%);
  mask-image: linear-gradient(to bottom, transparent, #000 58%);
  pointer-events: none;
}

.provider-card > * {
  position: relative;
  z-index: 1;
}

.provider-card[data-category="air"]::after {
  background-image: radial-gradient(circle at 85% 90%, rgba(43, 126, 154, 0.22), transparent 55%);
}

.provider-card[data-category="hotel"]::after,
.provider-card[data-category="hospitality"]::after {
  background-image: radial-gradient(circle at 85% 90%, rgba(53, 128, 93, 0.2), transparent 55%);
}

.provider-card[data-category="experiences"]::after {
  background-image: radial-gradient(circle at 85% 90%, rgba(214, 122, 50, 0.2), transparent 55%);
}

.provider-card[data-category="mobility"]::after {
  background-image: radial-gradient(circle at 85% 90%, rgba(54, 116, 145, 0.2), transparent 55%);
}

.provider-card[data-category="protection"]::after {
  background-image: radial-gradient(circle at 85% 90%, rgba(76, 133, 113, 0.2), transparent 55%);
}

.provider-card[data-category="payments"]::after,
.provider-card[data-category="data"]::after,
.provider-card[data-category="software"]::after,
.provider-card[data-category="corporate"]::after,
.provider-card[data-category="networks"]::after {
  background-image: radial-gradient(circle at 85% 90%, rgba(255, 107, 20, 0.16), transparent 55%);
}

.featured-provider::after {
  opacity: 0.15;
}

.featured-provider {
  color: #fff;
  border-color: #22343c;
  border-top-color: var(--mdv-orange);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 107, 20, 0.18), transparent 34%),
    #142229;
}

.featured-provider h3,
.featured-provider p {
  color: #fff;
}

.featured-provider ul,
.featured-provider .provider-card__top {
  color: #c1d0ca;
}

.accent-hospitality {
  border-top-color: #b35f43;
}

.accent-corporate {
  border-top-color: #376f93;
}

.source-columns .source-highlight {
  color: #fff;
  border-color: #24363e;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 107, 20, 0.24), transparent 38%),
    var(--navy);
}

.source-columns .source-highlight h3 {
  color: #fff;
}

.source-columns .source-highlight p {
  margin: 4px 0 0;
  color: #becdc7;
  font-size: 14px;
}

.source-columns .source-highlight a {
  color: #ffb36f;
}

.journey-banner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  background: var(--navy);
  color: #fff;
}

.journey-banner__visual {
  min-height: 520px;
}

.journey-banner__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey-banner__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(42px, 7vw, 100px);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 107, 20, 0.14), transparent 35%),
    var(--navy);
}

.journey-banner__copy h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.journey-banner__copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 28px;
  color: #c5d2cd;
  font-size: 18px;
}

.contact-section {
  background:
    radial-gradient(circle at 6% 10%, rgba(255, 107, 20, 0.14), transparent 25%),
    var(--navy);
}

.contact-section__inner {
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: clamp(38px, 7vw, 100px);
}

.contact-checks {
  display: grid;
  gap: 10px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.contact-checks li {
  position: relative;
  padding-left: 28px;
  color: #d2ddd9;
}

.contact-checks li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  color: var(--mdv-orange);
  font-family: FontAwesome;
}

.contact-visual {
  position: relative;
}

.contact-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.3);
}

.contact-visual > div {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(13, 24, 29, 0.9);
  backdrop-filter: blur(14px);
}

.contact-visual small,
.contact-visual a {
  display: block;
}

.contact-visual small {
  color: #ffb478;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-visual a {
  margin-top: 3px;
  color: #fff;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.contact-paths {
  background: #f4f0e7;
}

.contact-paths .section-heading > p:last-child {
  color: var(--muted);
}

.contact-paths__grid {
  width: min(100%, var(--content-max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.legal-section {
  background: #f4f0e7;
}

.legal-layout {
  width: min(100%, var(--content-max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.legal-card {
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(18, 29, 34, 0.055);
}

.legal-card h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(23px, 2.2vw, 31px);
  line-height: 1.15;
}

.legal-card p {
  color: #4f5d61;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card a {
  color: #c54b08;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.legal-card--highlight {
  color: #fff;
  border-color: #263940;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 107, 20, 0.2), transparent 36%),
    var(--navy);
}

.legal-card--highlight h2,
.legal-card--highlight p {
  color: #fff;
}

.ai-disclaimer--legal {
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.ai-disclaimer--legal strong {
  font-size: 16px;
}

.ai-disclaimer--legal small {
  color: #c6d3ce;
  font-size: 14px;
}

.contact-paths article {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(18, 29, 34, 0.055);
}

.contact-paths article > span {
  color: var(--mdv-orange-dark);
  font-size: 12px;
  font-weight: 800;
}

.contact-paths h3 {
  margin: 45px 0 10px;
  color: var(--navy);
  font-size: 25px;
}

.contact-paths p {
  margin: 0;
  color: var(--muted);
}

.about-manifesto {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: clamp(38px, 7vw, 100px);
  align-items: center;
  color: #fff;
  background: var(--navy);
}

.about-manifesto__copy {
  max-width: 760px;
  justify-self: end;
}

.about-manifesto h2 {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 62px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.about-manifesto__copy > p:not(.eyebrow) {
  color: #c5d2cd;
  font-size: 18px;
}

.about-manifesto .proof-grid {
  background: rgba(255, 255, 255, 0.1);
}

.about-manifesto .proof-grid div {
  background: rgba(255, 255, 255, 0.055);
}

.about-manifesto .proof-grid strong {
  color: #fff;
}

.about-manifesto .proof-grid span {
  color: #b9c8c2;
}

.about-manifesto__visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.glossary-section {
  background:
    radial-gradient(circle at 92% 4%, rgba(255, 107, 20, 0.09), transparent 24%),
    #f4f0e7;
}

.glossary-intro,
.glossary-index,
.glossary-grid,
.glossary-note {
  width: min(100%, var(--content-max));
  margin-inline: auto;
}

.glossary-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: end;
  gap: clamp(32px, 6vw, 90px);
  margin-bottom: 38px;
}

.glossary-intro h2 {
  max-width: 820px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(32px, 4.2vw, 58px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.glossary-intro > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 18px;
}

.glossary-index {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 42px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 34px rgba(18, 29, 34, 0.05);
}

.glossary-index a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #eef1ed;
  color: var(--navy);
  font-weight: 750;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.glossary-index a:hover,
.glossary-index a:focus-visible {
  transform: translateY(-1px);
  background: var(--mdv-orange);
  color: var(--navy);
  outline: none;
}

.glossary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.glossary-letter {
  grid-column: 1 / -1;
  margin-top: 24px;
  padding: 10px 0 4px;
  color: var(--mdv-orange-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1;
  border-bottom: 1px solid rgba(18, 29, 34, 0.14);
  scroll-margin-top: 110px;
}

.glossary-letter:first-child {
  margin-top: 0;
}

.glossary-term {
  position: relative;
  min-height: 190px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(18, 29, 34, 0.1);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(18, 29, 34, 0.05);
  scroll-margin-top: 110px;
}

.glossary-term h3 {
  margin: 0;
  padding-right: 38px;
  color: var(--navy);
  font-size: clamp(22px, 2vw, 29px);
  font-weight: 650;
  line-height: 1.15;
}

.glossary-term p {
  max-width: 650px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.glossary-term > a:not(.glossary-source) {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f4f0e7;
  color: var(--mdv-orange-dark);
  font-weight: 800;
  text-decoration: none;
  opacity: 0.65;
}

.glossary-term > a:not(.glossary-source):hover,
.glossary-term > a:not(.glossary-source):focus-visible {
  background: rgba(255, 107, 20, 0.16);
  opacity: 1;
  outline: 2px solid rgba(255, 107, 20, 0.3);
}

.glossary-source {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--mdv-orange-dark);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: none;
}

.glossary-source:hover,
.glossary-source:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
  outline: none;
}

.glossary-note {
  margin-top: 38px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 16px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 107, 20, 0.2), transparent 38%),
    var(--navy);
}

.glossary-note strong {
  font-size: clamp(21px, 2vw, 28px);
}

.glossary-note p {
  margin: 10px 0 0;
  color: #c7d4cf;
}

.glossary-note a {
  color: #ffb478;
  font-weight: 700;
}

@media (max-width: 760px) {
  .directory-visuals {
    grid-template-columns: 1fr;
  }

  .directory-visual {
    min-height: 280px;
  }
}

@media (max-width: 1180px) {
  .profile-orbit {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .profile-orbit a {
    min-height: 180px;
  }
}

@media (max-width: 980px) {
  .trust-strip__inner {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .trust-strip span:not(:last-child)::after {
    display: none;
  }

  .section-heading--split,
  .intelligence-layout,
  .fdn-layout {
    grid-template-columns: 1fr;
  }

  .category-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intelligence-copy {
    max-width: 760px;
  }

  .fdn-copy {
    order: 2;
  }

  .fdn-visual {
    order: 1;
  }

  .final-cta {
    grid-template-columns: 1fr;
  }

  .journey-banner {
    grid-template-columns: 1fr;
  }

  .contact-section__inner {
    grid-template-columns: 1fr;
  }

  .about-manifesto {
    grid-template-columns: 1fr;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .glossary-intro {
    grid-template-columns: 1fr;
  }

  .about-manifesto__copy {
    max-width: none;
    justify-self: auto;
  }

  .about-manifesto__visual img {
    aspect-ratio: 16 / 9;
  }

  .contact-visual img {
    aspect-ratio: 16 / 9;
  }

  .journey-banner__visual {
    min-height: 360px;
  }

  .final-cta > div:last-child {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .hero {
    background-image: url("/img/hero-travel-intelligence.wwc-1200.webp?v=42636");
  }

  .page-hero,
  .category-tile--photo {
    background-image:
      linear-gradient(90deg, rgba(10, 20, 25, 0.94), rgba(10, 20, 25, 0.5)),
      url("/img/ecosysteme-b2b-tourisme.wwc-768.webp?v=30790");
  }

  .page-repertoire .page-hero {
    background-image: linear-gradient(90deg, rgba(10, 20, 25, 0.96), rgba(10, 20, 25, 0.56)), url("/img/repertoire-solutions-voyage.wwc-768.webp?v=24784");
  }

  .page-parcours .page-hero {
    background-image: linear-gradient(90deg, rgba(10, 20, 25, 0.96), rgba(10, 20, 25, 0.56)), url("/img/parcours-metiers-tourisme.wwc-768.webp?v=22652");
  }

  .page-choisir .page-hero {
    background-image: linear-gradient(90deg, rgba(10, 20, 25, 0.96), rgba(10, 20, 25, 0.56)), url("/img/choisir-solution-tourisme.wwc-768.webp?v=19460");
  }

  .page-sources .page-hero {
    background-image: linear-gradient(90deg, rgba(10, 20, 25, 0.96), rgba(10, 20, 25, 0.56)), url("/img/sources-tourisme-editorial.wwc-768.webp?v=19850");
  }

  .page-contact .page-hero {
    background-image: linear-gradient(90deg, rgba(10, 20, 25, 0.96), rgba(10, 20, 25, 0.56)), url("/img/contact-conseil-travel-tech.wwc-768.webp?v=14792");
  }

  .page-a-propos .page-hero {
    background-image: linear-gradient(90deg, rgba(10, 20, 25, 0.96), rgba(10, 20, 25, 0.56)), url("/img/equipe-conseil-voyage.wwc-768.webp?v=29812");
  }

  .page-glossaire .page-hero {
    background-image: linear-gradient(90deg, rgba(10, 20, 25, 0.96), rgba(10, 20, 25, 0.56)), url("/img/glossaire-tech-voyage.wwc-768.webp?v=22202");
  }

  .page-mentions-legales .page-hero {
    background-image: linear-gradient(90deg, rgba(10, 20, 25, 0.96), rgba(10, 20, 25, 0.56)), url("/img/gouvernance-editoriale-voyage.wwc-768.webp?v=17660");
  }

  .intelligence-visual::before {
    right: 0;
  }

  .home-hero {
    min-height: auto;
    padding-top: 68px;
    padding-bottom: 56px;
    background-position: 63% center;
  }

  .hero__shade {
    background: linear-gradient(90deg, rgba(7, 15, 19, 0.97), rgba(7, 15, 19, 0.72));
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 60px);
  }

  .hero-scroll {
    display: none;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-metrics div {
    padding: 13px 10px;
  }

  .hero-metrics strong {
    font-size: 22px;
  }

  .hero-metrics span {
    font-size: 10px;
    line-height: 1.25;
  }

  .trust-strip__inner {
    min-height: 62px;
  }

  .category-showcase,
  .profile-orbit {
    grid-template-columns: 1fr;
  }

  .category-tile--wide,
  .category-tile--photo {
    grid-column: auto;
  }

  .category-tile {
    min-height: 190px;
  }

  .profile-orbit a {
    min-height: 150px;
  }

  .floating-insight,
  .fdn-visual__badge {
    right: 12px;
    left: 12px;
    bottom: 12px;
    max-width: none;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .final-cta > div:last-child,
  .final-cta .button {
    width: 100%;
  }

  .journey-banner {
    padding-inline: 0;
  }

  .journey-banner__visual {
    min-height: 260px;
  }

  .contact-paths__grid {
    grid-template-columns: 1fr;
  }

  .decision-paths__grid {
    grid-template-columns: 1fr;
  }

  .glossary-grid {
    grid-template-columns: 1fr;
  }

  .glossary-index {
    padding: 10px;
  }

  .glossary-index a {
    width: 38px;
    height: 38px;
  }

  .glossary-term {
    min-height: 0;
  }
}

.answer-first {
  padding-block: clamp(38px, 5vw, 66px);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.home-hero h1 {
  max-width: 1080px;
  font-size: clamp(42px, 5vw, 66px);
}

.home-hero .hero__lead {
  max-width: 860px;
  font-size: clamp(17px, 1.65vw, 21px);
}

.answer-first__inner {
  width: min(100%, var(--content-max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}

.answer-first h2 {
  max-width: 590px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 400;
  line-height: 1.05;
}

.answer-first__copy > p {
  margin: 0;
  color: #36464b;
  font-size: clamp(17px, 1.6vw, 20px);
}

.answer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.answer-links a {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f7f4ec;
  color: var(--navy);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.answer-links a:hover,
.answer-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 107, 20, 0.5);
  background: #fff;
  outline: 3px solid rgba(255, 107, 20, 0.16);
}

.answer-links span {
  color: var(--muted);
  font-size: 12px;
}

.answer-links strong {
  margin-top: 2px;
  font-size: 17px;
}

.decision-lab {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: stretch;
  gap: 0;
  padding: 0;
  color: #fff;
  background: var(--navy);
}

.decision-lab__visual {
  position: relative;
  min-height: 660px;
}

.decision-lab__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 29, 34, 0.08), rgba(18, 29, 34, 0.45));
  pointer-events: none;
}

.decision-lab__visual img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.decision-lab__caption {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  left: 24px;
  max-width: 360px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(18, 29, 34, 0.88);
  backdrop-filter: blur(12px);
}

.decision-lab__caption span,
.decision-lab__caption strong {
  display: block;
}

.decision-lab__caption span {
  color: #ffb478;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.decision-lab__caption strong {
  margin-top: 3px;
  font-size: 19px;
}

.decision-lab__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 92px);
  background: radial-gradient(circle at 100% 0, rgba(255, 107, 20, 0.14), transparent 35%), var(--navy);
}

.decision-lab__copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.05;
}

.decision-lab__copy > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: #c8d4d0;
  font-size: 17px;
}

.decision-scorecard {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.decision-scorecard li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.decision-scorecard li > span {
  color: #ffb478;
  font-size: 12px;
  font-weight: 800;
}

.decision-scorecard strong {
  display: block;
  color: #fff;
}

.decision-scorecard p {
  margin: 2px 0 0;
  color: #b9c8c2;
  font-size: 14px;
  line-height: 1.5;
}

.home-faq {
  background: #f4f0e7;
}

.directory-brief {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  padding: clamp(34px, 5vw, 64px) max(clamp(18px, 4vw, 72px), calc((100vw - var(--content-max)) / 2));
  color: #fff;
  background: var(--navy);
}

.directory-brief > div:first-child {
  max-width: 900px;
}

.directory-brief h2 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.08;
}

.directory-brief p:not(.eyebrow) {
  margin: 16px 0 0;
  color: #c8d4d0;
  font-size: 17px;
}

.directory-brief__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
}

.directory-brief__facts div {
  min-width: 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.055);
}

.directory-brief__facts dt {
  color: #ffb478;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.directory-brief__facts dd {
  margin: 4px 0 0;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.directory-faq {
  border-top: 1px solid var(--line);
  background: #f4f0e7;
}

.journey-answer {
  border-bottom: 1px solid var(--line);
}

.stack-foundation {
  background:
    radial-gradient(circle at 95% 5%, rgba(255, 107, 20, 0.1), transparent 28%),
    #f4f0e7;
}

.stack-foundation__grid {
  width: min(100%, var(--content-max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  list-style: none;
}

.stack-foundation__grid li {
  min-height: 210px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(18, 29, 34, 0.05);
}

.stack-foundation__grid span {
  display: block;
  color: var(--mdv-orange-dark);
  font-size: 12px;
  font-weight: 800;
}

.stack-foundation__grid strong {
  display: block;
  margin-top: 24px;
  color: var(--navy);
  font-size: clamp(22px, 2vw, 28px);
}

.stack-foundation__grid p {
  margin: 8px 0 0;
  color: var(--muted);
}

.journey-faq {
  background: #fff;
}

.editorial-identity {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  padding: clamp(40px, 6vw, 78px) max(clamp(18px, 4vw, 72px), calc((100vw - var(--content-max)) / 2));
  color: #fff;
  background: var(--navy);
}

.editorial-identity__intro h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.06;
}

.editorial-identity__intro > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: #c8d4d0;
  font-size: 17px;
}

.editorial-identity__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.11);
}

.editorial-identity__facts div {
  min-height: 130px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.055);
}

.editorial-identity__facts dt {
  color: #ffb478;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.editorial-identity__facts dd {
  margin: 7px 0 0;
  color: #fff;
  font-weight: 650;
  line-height: 1.45;
}

.editorial-identity__facts a {
  color: #fff;
  overflow-wrap: anywhere;
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  .answer-first__inner,
  .decision-lab,
  .directory-brief,
  .editorial-identity {
    grid-template-columns: 1fr;
  }

  .decision-lab__visual {
    min-height: 420px;
  }

  .stack-foundation__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .home-hero h1 {
    font-size: clamp(37px, 10.8vw, 46px);
  }

  .home-hero .hero__lead {
    font-size: 17px;
    line-height: 1.55;
  }

  .answer-links {
    grid-template-columns: 1fr;
  }

  .decision-lab__visual {
    min-height: 300px;
  }

  .decision-lab__caption {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .directory-brief__facts {
    grid-template-columns: 1fr;
  }

  .stack-foundation__grid {
    grid-template-columns: 1fr;
  }

  .editorial-identity__facts {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (min-width: 681px) and (max-width: 980px) {
  .site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px 18px;
    padding-block: 12px;
  }

  .menu-toggle {
    min-width: 88px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font: 700 13px/1 system-ui, sans-serif;
    cursor: pointer;
  }

  .menu-toggle__icon {
    width: 16px;
    display: grid;
    gap: 3px;
  }

  .menu-toggle__icon span {
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .top-nav {
    grid-column: 1 / -1;
  }

  .js .top-nav:not(.is-open) {
    display: none;
  }

  .top-nav a {
    min-height: 44px;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: sticky;
  }

  .site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px 14px;
    padding-block: 10px;
  }

  .brand {
    width: auto;
    justify-content: flex-start;
  }

  .brand-subtitle {
    display: none;
  }

  .menu-toggle {
    min-width: 78px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font: 700 13px/1 system-ui, sans-serif;
    cursor: pointer;
  }

  .menu-toggle__icon {
    width: 16px;
    display: grid;
    gap: 3px;
  }

  .menu-toggle__icon span {
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .top-nav {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .js .top-nav:not(.is-open) {
    display: none;
  }

  .top-nav a {
    min-height: 44px;
  }

  .directory-count {
    flex-wrap: wrap;
  }

  .directory-visuals {
    display: flex;
    gap: 12px;
    padding: 16px 18px 20px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
  }

  .directory-visual {
    min-height: 240px;
    flex: 0 0 min(82vw, 320px);
    scroll-snap-align: start;
  }

  .directory-more .button {
    width: 100%;
  }
}
.breadcrumbs {
  padding: 12px max(4vw, calc((100vw - 1320px) / 2));
  background: #f4f6f5;
  color: #35474b;
  font-size: 0.85rem;
}
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.breadcrumbs li + li::before { content: "/"; margin-right: 8px; color: #647579; }
.breadcrumbs a, .directory-context a { text-decoration: underline; text-underline-offset: 3px; }
.directory-context { padding-block: 32px; }
.directory-categories a { text-decoration: none; }
.provider-card { scroll-margin-top: 120px; }
.provider-card .provider-permalink { display: block; margin-top: 12px; font-size: 0.8rem; }
.provider-card:target { outline: 3px solid var(--orange, #ff6b14); outline-offset: 4px; }
