:root {
  --navy-950: #031c35;
  --navy-900: #052b4f;
  --navy-800: #0a3a68;
  --navy-700: #123b63;
  --blue-500: #2f6da5;
  --gold-600: #b97b16;
  --gold-500: #d49a2a;
  --gold-300: #ebc675;
  --ink: #172233;
  --muted: #5d6978;
  --line: #dfe5eb;
  --surface: #f5f7fa;
  --white: #ffffff;
  --shadow-sm: 0 12px 32px rgba(3, 28, 53, 0.08);
  --shadow-lg: 0 26px 72px rgba(3, 28, 53, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1180px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Lato", "Inter", "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--navy-950);
  background: var(--white);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 66px 0;
}

.section-surface {
  background: var(--surface);
}

.section-navy {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(47, 109, 165, 0.32), transparent 30%),
    var(--navy-900);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

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

.section-heading p:last-child {
  margin-bottom: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 15px;
  color: var(--gold-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  content: "";
  background: currentColor;
}

.section-navy .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow {
  color: var(--gold-300);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 18px;
  color: var(--navy-950);
  font-family: "Montserrat", "Poppins", "Aptos Display", "Segoe UI", Arial, sans-serif;
  font-weight: 750;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.65rem, 5.2vw, 5.4rem);
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.45rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

h4 {
  font-size: 1.05rem;
}

p {
  margin: 0 0 18px;
}

.sentence-line {
  display: block;
}

.sentence-line + .sentence-line {
  margin-top: 0.2em;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.6;
}

.muted {
  color: var(--muted);
}

.gold {
  color: var(--gold-500);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 9px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--navy-950);
  background: var(--gold-500);
}

.btn-primary:hover {
  background: var(--gold-300);
}

.btn-secondary {
  color: var(--navy-900);
  border-color: var(--navy-700);
  background: transparent;
}

.btn-secondary:hover {
  color: var(--white);
  background: var(--navy-900);
}

.section-navy .btn-secondary,
.cta-panel .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.04);
}

.section-navy .btn-secondary:hover,
.cta-panel .btn-secondary:hover {
  color: var(--navy-950);
  background: var(--white);
}

.btn-navy {
  color: var(--white);
  background: var(--navy-900);
}

.btn-navy:hover {
  background: var(--navy-700);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-700);
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  color: var(--gold-600);
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  min-height: var(--header-height);
  color: var(--navy-900);
  border-top: 4px solid var(--gold-500);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 28px rgba(3, 28, 53, 0.07);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  width: 176px;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 176px;
  height: auto;
  max-height: 76px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  position: relative;
  padding: 12px 11px;
  color: var(--navy-900);
  border-radius: 8px;
  font-size: 0.93rem;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--navy-950);
  background: var(--surface);
}

.site-nav .nav-cta {
  margin-left: 8px;
  padding-inline: 16px;
  color: var(--navy-950);
  background: var(--gold-500);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  color: var(--navy-950);
  background: var(--gold-300);
}

.site-nav .nav-join {
  margin-left: 5px;
  padding-inline: 14px;
  color: var(--navy-900);
  border: 1px solid rgba(185, 123, 22, 0.72);
  background: var(--white);
}

.site-nav .nav-join:hover,
.site-nav .nav-join[aria-current="page"] {
  color: var(--white);
  border-color: var(--navy-900);
  background: var(--navy-900);
}

.site-nav .language-switch {
  min-width: 76px;
  padding-inline: 11px;
  color: var(--navy-900);
  border: 1px solid rgba(5, 43, 79, 0.28);
  background: var(--surface);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-align: center;
}

.site-nav .language-switch:hover {
  color: var(--white);
  border-color: var(--navy-900);
  background: var(--navy-900);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 11px;
  border: 1px solid rgba(5, 43, 79, 0.28);
  border-radius: 8px;
  color: var(--navy-900);
  background: transparent;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 100%;
  height: 2px;
  content: "";
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span {
  margin: 6px 0;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  border-bottom: 4px solid var(--gold-500);
  background:
    radial-gradient(circle at 16% 10%, rgba(47, 109, 165, 0.34), transparent 34%),
    linear-gradient(146deg, var(--navy-950) 0%, var(--navy-900) 66%, var(--navy-800) 100%);
}

.hero::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  opacity: 0.44;
  background:
    linear-gradient(116deg, transparent 0 62%, rgba(255, 255, 255, 0.055) 62% 63%, transparent 63% 70%, rgba(212, 154, 42, 0.16) 70% 70.25%, transparent 70.25%),
    radial-gradient(ellipse at 58% 92%, rgba(47, 109, 165, 0.32), transparent 44%);
}

.hero::after {
  position: absolute;
  z-index: 0;
  right: -120px;
  bottom: -300px;
  width: 520px;
  height: 520px;
  border: 2px solid rgba(212, 154, 42, 0.7);
  content: "";
  transform: rotate(45deg);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 650px;
  align-items: center;
  padding: 92px 0 108px;
  gap: clamp(42px, 7vw, 92px);
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.72fr);
}

.section-navy h2,
.section-navy h3,
.section-navy h4 {
  color: var(--white);
}

.hero h1 {
  max-width: 810px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(2.55rem, 4.4vw, 4.7rem);
}

.hero .lead {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.15rem, 1.7vw, 1.35rem);
}

.hero-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

.hero .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.hero .btn-secondary:hover {
  color: var(--navy-950);
  background: var(--white);
}

.hero-media {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: 24px 22px 0 0;
}

.hero-media::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 76%;
  height: 62%;
  border-radius: 0 24px 0 0;
  content: "";
  background: var(--navy-900);
}

.hero-media::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 86px;
  height: 86px;
  border-right: 5px solid var(--gold-500);
  border-bottom: 5px solid var(--gold-500);
  content: "";
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.hero-media-label {
  position: absolute;
  right: 22px;
  bottom: 0;
  left: 0;
  padding: 18px 20px;
  color: var(--white);
  border-radius: 0 0 18px 18px;
  background: rgba(3, 28, 53, 0.9);
}

.hero-media-label strong {
  display: block;
  color: var(--gold-300);
}

.hero-brand-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 485px;
  padding: 46px 44px 40px;
  color: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-top: 7px solid var(--gold-500);
  border-radius: 0 28px 28px 28px;
  background:
    linear-gradient(145deg, transparent 0 72%, rgba(5, 43, 79, 0.055) 72% 100%),
    var(--white);
  box-shadow: var(--shadow-lg);
}

.hero-brand-card::before {
  position: absolute;
  top: -60px;
  right: -75px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(5, 43, 79, 0.15);
  content: "";
  transform: rotate(45deg);
}

.hero-brand-card::after {
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 105px;
  height: 4px;
  border-radius: 99px;
  content: "";
  background: linear-gradient(90deg, var(--navy-900) 0 62%, var(--gold-500) 62% 100%);
}

.hero-lockup {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 78px;
  margin-bottom: 24px;
  align-items: center;
}

.hero-lockup img {
  width: min(250px, 78%);
  height: auto;
}

.brand-panel-kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: var(--gold-600);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-brand-card h2,
.brand-visual h2 {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: clamp(1.9rem, 3vw, 2.75rem);
}

.hero-brand-card h2 {
  color: var(--navy-900);
  font-size: clamp(1.65rem, 2.5vw, 2.2rem);
}

.hero-brand-card h2::after,
.brand-visual h2::after {
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 18px;
  content: "";
  background: linear-gradient(90deg, var(--gold-500), var(--gold-500) 78%, transparent 78%);
}

.hero-service-line {
  position: relative;
  z-index: 1;
  display: flex;
  margin: 29px 0 0;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  color: var(--navy-900);
  font-family: "Montserrat", "Aptos Display", sans-serif;
  font-size: 0.91rem;
  font-weight: 850;
}

.hero-service-line i {
  color: var(--gold-500);
  font-style: normal;
}

.hero-service-list {
  position: relative;
  z-index: 1;
  display: grid;
  margin: 30px 0;
  gap: 0;
}

.hero-service-list div {
  display: grid;
  padding: 13px 0;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  grid-template-columns: 100px 1fr;
}

.hero-service-list strong {
  color: var(--gold-500);
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.04em;
}

.hero-service-list span {
  color: rgba(255, 255, 255, 0.86);
}

.brand-panel-signature {
  position: relative;
  z-index: 1;
  margin: 28px 0 0;
  color: var(--navy-900);
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.55;
}

.brand-panel-signature span {
  color: var(--gold-500);
}

.proof-strip {
  position: relative;
  z-index: 4;
  margin-top: -38px;
}

.proof-grid {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  position: relative;
  min-height: 122px;
  padding: 26px 27px;
}

.proof-item + .proof-item::before {
  position: absolute;
  top: 25%;
  bottom: 25%;
  left: 0;
  width: 1px;
  content: "";
  background: var(--line);
}

.proof-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy-900);
  font-family: "Montserrat", "Aptos Display", sans-serif;
  font-size: 1.25rem;
}

.proof-item span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 92px;
  color: var(--white);
  border-bottom: 4px solid var(--gold-500);
  background:
    radial-gradient(circle at 12% 12%, rgba(47, 109, 165, 0.34), transparent 34%),
    linear-gradient(148deg, var(--navy-950) 0%, var(--navy-900) 70%, var(--navy-800) 100%);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.55;
  background: linear-gradient(118deg, transparent 0 66%, rgba(255, 255, 255, 0.06) 66% 67%, transparent 67% 74%, rgba(212, 154, 42, 0.18) 74% 74.25%, transparent 74.25%);
}

.page-hero::after {
  position: absolute;
  right: -120px;
  bottom: -260px;
  width: 540px;
  height: 540px;
  border: 2px solid rgba(212, 154, 42, 0.72);
  content: "";
  transform: rotate(45deg);
}

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

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.65rem, 5vw, 4.9rem);
  color: var(--white);
}

.page-hero .lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumb {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.breadcrumb a {
  color: var(--gold-300);
}

/* Layouts and cards */
.grid-2,
.split {
  display: grid;
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

.card {
  position: relative;
  height: 100%;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(3, 28, 53, 0.045);
}

.card-accent {
  overflow: hidden;
}

.card-accent::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  content: "";
  background: linear-gradient(90deg, var(--navy-900) 0 82%, var(--gold-500) 82% 100%);
}

.card-number,
.icon-box {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  margin-bottom: 23px;
  color: var(--gold-600);
  border: 1px solid rgba(185, 123, 22, 0.28);
  border-radius: 50%;
  background: #fff9ed;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 850;
}

.icon-mark {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid rgba(212, 154, 42, 0.42);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(47, 109, 165, 0.22), transparent 55%),
    var(--navy-900);
  box-shadow: 0 10px 24px rgba(3, 28, 53, 0.12);
}

.icon-mark img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.icon-mark.icon-small {
  width: 48px;
  height: 48px;
  margin-bottom: 0;
  border-radius: 13px;
}

.icon-mark.icon-small img {
  width: 26px;
  height: 26px;
}

.card-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.card-topline .card-number {
  width: auto;
  min-width: 42px;
  height: 34px;
  margin: 7px 0 0;
  padding: 0 12px;
  border-radius: 99px;
}

.expertise-symbols {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.expertise-symbols .card-number {
  margin: 0;
}

.sector-card .icon-mark {
  border-color: rgba(235, 198, 117, 0.34);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.reference-title-row {
  display: grid;
  align-items: center;
  margin-bottom: 16px;
  gap: 14px;
  grid-template-columns: auto 1fr;
}

.reference-title-row h3 {
  margin: 0;
}

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

.check-list,
.plain-list {
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  margin: 10px 0;
  padding-left: 27px;
}

.check-list li::before {
  position: absolute;
  top: 0.08em;
  left: 0;
  color: var(--gold-600);
  content: "✓";
  font-weight: 900;
}

.plain-list li::before {
  position: absolute;
  top: 0.69em;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--gold-500);
}

.service-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
}

.service-card .text-link {
  margin-top: auto;
  padding-top: 20px;
}

.challenge-list {
  display: grid;
  margin: 32px 0 0;
  padding: 0;
  gap: 14px;
  list-style: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.challenge-list li {
  position: relative;
  padding: 19px 20px 19px 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.challenge-list li::before {
  position: absolute;
  top: 18px;
  left: 18px;
  color: var(--gold-600);
  content: "◆";
  font-size: 0.74rem;
}

.visual-frame {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  border-radius: var(--radius-lg);
  background: var(--navy-900);
  box-shadow: var(--shadow-lg);
}

.visual-frame img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.visual-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 50%, rgba(3, 28, 53, 0.55));
}

.visual-label {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 20px 22px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(3, 28, 53, 0.8);
  backdrop-filter: blur(8px);
}

.visual-label strong {
  display: block;
  color: var(--gold-300);
}

.brand-visual {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  padding: 46px;
  color: var(--white);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(150deg, transparent 0 72%, rgba(47, 109, 165, 0.24) 72% 100%),
    var(--navy-900);
  box-shadow: var(--shadow-lg);
}

.brand-visual::after {
  position: absolute;
  right: -110px;
  bottom: -230px;
  width: 390px;
  height: 390px;
  border: 2px solid rgba(212, 154, 42, 0.48);
  content: "";
  transform: rotate(45deg);
}

.brand-value-list {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: 28px;
  gap: 14px;
}

.brand-value-list div {
  padding: 17px 18px;
  border-left: 3px solid var(--gold-500);
  border-radius: 0 10px 10px 0;
  background: rgba(255, 255, 255, 0.06);
}

.brand-value-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-300);
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}

.brand-value-list span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.45;
}

.brand-visual .brand-panel-kicker {
  color: var(--gold-300);
}

.brand-visual-compact {
  min-height: 470px;
}

.sector-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sector-grid-six .sector-card {
  min-height: 315px;
}

.sector-card {
  min-height: 285px;
  padding: 30px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
}

.sector-card h3 {
  color: var(--white);
}

.sector-card p {
  color: rgba(255, 255, 255, 0.72);
}

.sector-tag {
  display: inline-flex;
  margin-bottom: 30px;
  padding: 7px 11px;
  color: var(--gold-300);
  border: 1px solid rgba(235, 198, 117, 0.3);
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.method-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0;
  counter-reset: method;
  list-style: none;
}

.method-list li {
  position: relative;
  display: grid;
  min-height: 118px;
  align-items: start;
  padding: 8px 0 28px 86px;
  counter-increment: method;
}

.method-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  color: var(--navy-950);
  border-radius: 50%;
  content: counter(method, decimal-leading-zero);
  background: var(--gold-500);
  font-family: "Montserrat", sans-serif;
  font-size: 0.84rem;
  font-weight: 900;
}

.method-list li:not(:last-child)::after {
  position: absolute;
  top: 56px;
  bottom: 0;
  left: 27px;
  width: 2px;
  content: "";
  background: rgba(212, 154, 42, 0.35);
}

.method-list h3 {
  margin-bottom: 7px;
}

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

.method-grid {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
}

.method-grid li {
  display: grid;
  min-height: 150px;
  padding: 25px;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  grid-template-columns: 58px 1fr;
}

.method-grid li > span {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  color: var(--navy-950);
  border-radius: 50%;
  background: var(--gold-500);
  font-family: "Montserrat", "Aptos Display", sans-serif;
  font-size: 0.85rem;
  font-weight: 900;
}

.method-grid li:nth-child(n + 4) > span {
  color: var(--white);
  background: var(--navy-900);
}

.method-grid h3 {
  margin-bottom: 6px;
}

.method-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.48;
}

.method-footer {
  display: flex;
  margin-top: 24px;
  padding: 20px 24px;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px 18px;
  color: var(--muted);
  border-top: 3px solid var(--gold-500);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.method-footer strong {
  color: var(--navy-900);
}

.method-footer span {
  padding: 5px 10px;
  color: var(--navy-700);
  border-radius: 99px;
  background: #edf4fa;
  font-size: 0.82rem;
  font-weight: 750;
}

.method-footer .text-link {
  margin-left: auto;
}

.reference-card {
  overflow: hidden;
  padding: 0;
}

.reference-card .reference-image {
  overflow: hidden;
  height: 240px;
  background: var(--navy-900);
}

.reference-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.reference-card:hover img {
  transform: scale(1.035);
}

.reference-card .reference-content {
  padding: 29px;
}

.pill {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 10px;
  color: var(--navy-700);
  border-radius: 99px;
  background: #edf4fa;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  line-height: 1.25;
  text-transform: uppercase;
}

.pill-gold {
  color: #7d4d00;
  background: #fff4dc;
}

.quote-block {
  padding: 42px;
  color: var(--white);
  border-radius: var(--radius-lg);
  background: var(--navy-900);
  box-shadow: var(--shadow-lg);
}

.quote-block blockquote {
  margin: 0 0 24px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.45rem, 2.8vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.quote-block cite {
  color: var(--gold-300);
  font-style: normal;
  font-weight: 800;
}

.expertise-detail {
  display: grid;
  align-items: start;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
  gap: 54px;
  grid-template-columns: 0.72fr 1.28fr;
}

.expertise-detail:first-child {
  padding-top: 0;
}

.expertise-detail:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.expertise-detail .result {
  margin-top: 24px;
  padding: 18px 20px;
  color: var(--navy-900);
  border-left: 4px solid var(--gold-500);
  background: var(--surface);
  font-weight: 750;
}

.expertise-detail > div:first-child > .icon-mark {
  display: flex;
}

.value-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(5, 1fr);
}

.value-card {
  padding: 24px 20px;
  border-top: 3px solid var(--gold-500);
  background: rgba(255, 255, 255, 0.06);
}

.value-card strong {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
}

.value-card span {
  color: rgba(255, 255, 255, 0.69);
  font-size: 0.9rem;
}

.notice {
  padding: 20px 23px;
  color: var(--navy-900);
  border: 1px solid #ecd18f;
  border-radius: var(--radius-sm);
  background: #fff9eb;
}

.notice strong {
  display: block;
  margin-bottom: 5px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 6vw, 68px);
  color: var(--white);
  border-radius: var(--radius-lg);
  background: var(--navy-900);
  box-shadow: var(--shadow-lg);
}

.cta-panel::after {
  position: absolute;
  right: -85px;
  bottom: -180px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(212, 154, 42, 0.38);
  content: "";
  transform: rotate(45deg);
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  max-width: 760px;
  color: var(--white);
}

.cta-panel p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.75);
}

/* Forms */
.contact-layout {
  display: grid;
  align-items: start;
  gap: clamp(38px, 7vw, 84px);
  grid-template-columns: 0.75fr 1.25fr;
}

.contact-card {
  padding: 34px;
  color: var(--white);
  border-radius: var(--radius-md);
  background: var(--navy-900);
  box-shadow: var(--shadow-lg);
}

.contact-card h2,
.contact-card h3 {
  color: var(--white);
}

.contact-card a {
  color: var(--white);
}

.contact-list {
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  margin: 20px 0;
}

.contact-list small {
  display: block;
  color: var(--gold-300);
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 22px;
}

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

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-950);
  font-weight: 800;
}

.field .optional {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid #bdc7d1;
  border-radius: 8px;
  background: var(--white);
}

.field textarea {
  min-height: 170px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(47, 109, 165, 0.14);
  outline: 0;
}

.form-note {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.form-note-group {
  display: grid;
  gap: 6px;
}

.form-note-group .form-note {
  margin: 0;
}

.form-status {
  display: none;
  padding: 14px 16px;
  color: var(--navy-900);
  border: 1px solid #b9d5c6;
  border-radius: 8px;
  background: #effaf4;
}

.form-status.visible {
  display: block;
}

/* Legal */
.legal-content h2 {
  margin-top: 44px;
  font-size: 1.7rem;
}

.legal-content h3 {
  margin-top: 28px;
  font-size: 1.2rem;
}

.legal-content a {
  color: var(--navy-700);
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, 0.73);
  background: var(--navy-950);
}

.footer-main {
  display: grid;
  padding: 66px 0 48px;
  gap: 48px;
  grid-template-columns: 1.35fr 0.65fr 0.8fr;
}

.footer-brand img {
  width: 245px;
  height: auto;
  margin-bottom: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: var(--white);
  object-fit: contain;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}

.footer-brand p {
  max-width: 430px;
}

.footer-title {
  margin: 0 0 16px;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 850;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin: 9px 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold-300);
}

.footer-bottom {
  display: flex;
  padding: 22px 0 28px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .header-inner {
    gap: 12px;
  }

  .nav-toggle {
    display: block;
    order: 3;
    flex: 0 0 auto;
  }

  .site-nav {
    position: static;
    z-index: auto;
    display: block;
    width: auto;
    height: auto;
    margin-left: auto;
    padding: 0;
    order: 2;
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .site-nav > a {
    display: none;
  }

  .site-nav.open {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    width: auto;
    height: calc(100vh - var(--header-height));
    margin: 0;
    align-items: stretch;
    padding: 24px 20px 40px;
    flex-direction: column;
    overflow-y: auto;
    border-top: 1px solid var(--line);
    background: var(--white);
  }

  .site-nav.open > a {
    display: block;
  }

  .site-nav a {
    padding: 15px 16px;
    color: var(--navy-900);
    font-size: 1.08rem;
  }

  .site-nav .nav-cta {
    margin: 12px 0 0;
  }

  .site-nav .nav-join {
    margin: 10px 0 0;
    text-align: center;
  }

  .site-nav .language-switch {
    display: inline-flex;
    min-height: 42px;
    margin: 0;
    align-items: center;
    justify-content: center;
    padding: 9px 11px;
    font-size: 0.78rem;
    text-align: center;
  }

  .site-nav.open .language-switch {
    margin-top: 8px;
  }

  .proof-grid,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-item:nth-child(3)::before {
    display: none;
  }

  .proof-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .value-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 820px) {
  :root {
    --header-height: 76px;
  }

  body {
    font-size: 16px;
  }

  .section {
    padding: 74px 0;
  }

  .brand,
  .brand img {
    width: 158px;
  }

  .brand img {
    height: auto;
    max-height: 69px;
  }

  .hero::before {
    opacity: 0.32;
  }

  .hero-inner {
    min-height: 650px;
    padding: 84px 0 100px;
    grid-template-columns: 1fr;
  }

  .hero-media {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .hero-brand-card {
    width: min(100%, 560px);
    min-height: auto;
    margin-inline: auto;
  }

  .page-hero {
    padding: 76px 0 72px;
  }

  .grid-2,
  .split,
  .grid-3,
  .contact-layout,
  .expertise-detail {
    grid-template-columns: 1fr;
  }

  .expertise-detail {
    gap: 10px;
  }

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

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 580px) {
  .container,
  .narrow {
    width: min(calc(100% - 30px), var(--container));
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .proof-grid,
  .grid-4,
  .sector-grid,
  .method-grid,
  .value-grid,
  .challenge-list,
  .form-row,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .proof-item + .proof-item::before {
    display: none;
  }

  .proof-item:nth-child(n + 2) {
    border-top: 1px solid var(--line);
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .btn {
    width: 100%;
  }

  .card,
  .contact-card,
  .quote-block {
    padding: 25px;
  }

  .hero-brand-card,
  .brand-visual {
    padding: 30px 25px;
  }

  .method-grid li {
    min-height: auto;
    padding: 22px;
  }

  .method-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .method-footer .text-link {
    margin-left: 0;
  }

  .hero-service-list div {
    gap: 12px;
    grid-template-columns: 88px 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .visual-frame,
  .visual-frame img {
    min-height: 390px;
  }

  .method-list li {
    padding-left: 72px;
  }

  .footer-brand,
  .footer-main > * {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  .brand,
  .brand img {
    width: 128px;
  }

  .site-nav .language-switch {
    min-width: 66px;
    padding-inline: 8px;
    font-size: 0.72rem;
  }
}

/* Identité alignée sur les références validées de juin-juillet 2026 */
.site-header {
  border-top: 0;
  border-bottom: 2px solid rgba(212, 154, 42, 0.7);
  box-shadow: 0 10px 30px rgba(3, 28, 53, 0.08);
}

.hero {
  min-height: 720px;
  color: var(--ink);
  border-bottom: 0;
  background-color: var(--white);
  background-image: url("../images/hero-amd-projet-v2.webp");
  background-position: right center;
  background-size: contain;
  background-repeat: no-repeat;
}

.hero::before {
  display: none;
}

.hero::after {
  display: none;
}

.hero-inner {
  display: block;
  min-height: 720px;
  padding: 108px 0 120px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(44%, 560px);
}

.hero h1 {
  max-width: 570px;
  color: var(--navy-900);
  font-size: clamp(2.7rem, 3.9vw, 4.25rem);
}

.hero .lead {
  max-width: 620px;
  color: var(--ink);
}

.hero .eyebrow {
  color: var(--gold-600);
}

.hero-note {
  color: var(--muted);
}

.hero-domain-line {
  display: flex;
  margin: 26px 0 0;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px 0;
  color: var(--navy-900);
  font-family: "Montserrat", "Aptos Display", sans-serif;
  font-size: 0.96rem;
  font-weight: 850;
}

.hero-domain-line span,
.hero-domain-line strong {
  position: relative;
  padding: 0 16px;
}

.hero-domain-line strong {
  padding-left: 0;
}

.hero-domain-line span::before {
  position: absolute;
  left: 0;
  color: var(--gold-500);
  content: "|";
  font-weight: 500;
}

.hero-signature {
  margin: 24px 0 0;
  padding: 4px 0 4px 18px;
  color: var(--navy-900);
  border-left: 4px solid var(--gold-500);
  font-family: "Montserrat", "Aptos Display", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
}

.hero-signature strong {
  display: block;
}

.proof-strip {
  margin-top: -58px;
}

.proof-grid {
  border: 1px solid var(--line);
  grid-template-columns: repeat(5, 1fr);
}

.proof-item {
  min-height: 142px;
  padding: 27px 22px;
  text-align: center;
}

.proof-item::after {
  display: block;
  width: 42px;
  height: 3px;
  margin: 15px auto 0;
  border-radius: 99px;
  content: "";
  background: var(--gold-500);
}

.proof-item strong {
  font-size: 1.02rem;
}

.project-markers {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 480px;
  padding: 34px;
  gap: 18px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, transparent 0 74%, rgba(47, 109, 165, 0.24) 74%),
    var(--navy-900);
  box-shadow: var(--shadow-lg);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-markers::after {
  position: absolute;
  right: -90px;
  bottom: -180px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(212, 154, 42, 0.5);
  content: "";
  transform: rotate(45deg);
}

.project-markers > div {
  position: relative;
  z-index: 1;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.055);
}

.project-markers .icon-mark {
  margin-bottom: 16px;
}

.project-markers strong,
.project-markers small {
  display: block;
}

.project-markers strong {
  color: var(--white);
  font-family: "Montserrat", "Aptos Display", sans-serif;
}

.project-markers small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.project-markers > p {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 22px 24px;
  color: var(--white);
  border-left: 4px solid var(--gold-500);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  grid-column: 1 / -1;
}

.project-markers > p b {
  color: var(--gold-300);
}

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

.expertise-showcase-card {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 250px;
  padding: 14px;
  align-items: stretch;
  gap: 25px;
  border: 1px solid #c9d3de;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(3, 28, 53, 0.07);
  grid-template-columns: 168px 1fr;
}

.expertise-showcase-card::before {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 194px;
  width: 2px;
  content: "";
  background: var(--gold-500);
}

.showcase-icon {
  display: grid;
  place-items: center;
  border-radius: 15px;
  background:
    radial-gradient(circle at 24% 14%, rgba(47, 109, 165, 0.42), transparent 42%),
    var(--navy-900);
}

.showcase-icon .icon-mark {
  width: 112px;
  height: 112px;
  margin: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.showcase-icon .icon-mark img {
  width: 68px;
  height: 68px;
}

.expertise-showcase-card > div:last-child {
  display: flex;
  padding: 24px 16px 20px 8px;
  flex-direction: column;
}

.expertise-showcase-card h3 {
  margin-bottom: 12px;
}

.expertise-showcase-card .text-link {
  margin-top: auto;
}

.transverse-domains {
  display: grid;
  margin-top: 24px;
  padding: 25px 28px;
  align-items: center;
  gap: 18px 30px;
  color: var(--white);
  border-radius: var(--radius-md);
  background: var(--navy-900);
  box-shadow: var(--shadow-lg);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.transverse-domains > div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.transverse-domains .icon-mark {
  flex: 0 0 auto;
}

.transverse-domains strong {
  font-family: "Montserrat", "Aptos Display", sans-serif;
}

.transverse-domains p {
  margin: 0;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.84);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  grid-column: 1 / -1;
}

.transverse-domains p b {
  color: var(--gold-300);
}

.section-sectors {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(5, 43, 79, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 43, 79, 0.035) 1px, transparent 1px),
    var(--white);
  background-size: 34px 34px;
}

.section-sectors::after {
  position: absolute;
  z-index: 0;
  top: -190px;
  right: -150px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  content: "";
  background: rgba(5, 43, 79, 0.045);
}

.section-sectors .container {
  position: relative;
  z-index: 1;
}

.sector-grid-eight {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.sector-tile {
  display: flex;
  min-height: 176px;
  padding: 20px 10px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(3, 28, 53, 0.05);
}

.sector-tile .icon-mark {
  width: 66px;
  height: 66px;
  margin-bottom: 14px;
}

.sector-tile h3 {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.28;
}

.page-hero {
  min-height: 440px;
  padding: 104px 0 92px;
  color: var(--ink);
  border-bottom: 4px solid var(--gold-500);
  background-color: var(--white);
  background-image: url("../images/hero-amd-projet-v2.webp");
  background-position: right center;
  background-size: contain;
  background-repeat: no-repeat;
}

.page-hero::before {
  display: none;
}

.page-hero::after {
  display: none;
}

.page-hero h1 {
  max-width: 760px;
  color: var(--navy-900);
  font-size: clamp(2.7rem, 4.5vw, 4.55rem);
}

.page-hero .lead {
  max-width: 690px;
  color: var(--ink);
}

.page-hero .eyebrow,
.page-hero .breadcrumb,
.page-hero .breadcrumb a {
  color: var(--gold-600);
}

.brand-visual-compact {
  min-height: 610px;
}

.site-footer {
  position: relative;
  border-top: 6px solid var(--gold-500);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-900));
}

@media (max-width: 1180px) {
  .hero-copy {
    width: 46%;
  }

  .proof-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .proof-item:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .sector-grid-eight {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

}

@media (max-width: 1040px) {
  .hero {
    min-height: auto;
    background-position: center top;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }

  .hero-inner {
    min-height: auto;
    padding: calc(50vw + 48px) 0 82px;
  }

  .hero::before {
    display: none;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 9vw, 3.8rem);
  }

  .proof-grid,
  .expertise-showcase-grid,
  .transverse-domains {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .expertise-showcase-card {
    min-height: 225px;
    grid-template-columns: 138px 1fr;
  }

  .expertise-showcase-card::before {
    left: 164px;
  }

  .transverse-domains p {
    grid-column: 1 / -1;
  }

  .page-hero {
    min-height: auto;
    padding: calc(50vw + 44px) 0 70px;
    background-position: center top;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }

  .page-hero::before {
    display: none;
  }
}

@media (max-width: 580px) {
  .hero {
    background-position: center top;
    background-size: 100% auto;
  }

  .hero-inner {
    padding: calc(50vw + 36px) 0 68px;
  }

  .hero-domain-line {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-domain-line span,
  .hero-domain-line strong {
    padding: 9px 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    font-size: 0.82rem;
    text-align: center;
  }

  .hero-domain-line span::before {
    display: none;
  }

  .proof-grid,
  .project-markers,
  .expertise-showcase-grid,
  .transverse-domains,
  .sector-grid-eight {
    grid-template-columns: 1fr;
  }

  .proof-item:nth-child(n + 2) {
    border-top: 1px solid var(--line);
  }

  .project-markers > p,
  .transverse-domains p {
    grid-column: auto;
  }

  .expertise-showcase-card {
    grid-template-columns: 1fr;
  }

  .expertise-showcase-card::before {
    top: 158px;
    right: 22px;
    bottom: auto;
    left: 22px;
    width: auto;
    height: 2px;
  }

  .showcase-icon {
    min-height: 128px;
  }

  .expertise-showcase-card > div:last-child {
    padding: 18px 10px 12px;
  }

  .page-hero {
    padding-top: calc(50vw + 38px);
    background-size: 100% auto;
  }
}

/* Lisibilité des titres de tête : hiérarchie plus contenue et respiration renforcée. */
.hero h1 {
  max-width: 610px;
  margin-bottom: 30px;
  font-size: clamp(2.25rem, 3.15vw, 3.55rem);
  line-height: 1.16;
  text-wrap: balance;
}

.hero .lead {
  max-width: 650px;
  line-height: 1.68;
}

.page-hero .container {
  max-width: 1180px;
}

.page-hero h1 {
  max-width: min(760px, 55%);
  margin-bottom: 30px;
  font-size: clamp(2.15rem, 3.2vw, 3.45rem);
  line-height: 1.16;
  text-wrap: balance;
}

.page-hero .lead {
  max-width: min(720px, 55%);
  margin-bottom: 0;
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  line-height: 1.7;
}

.page-hero .lead-followup {
  margin-top: 10px;
}

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

/* Page Rejoindre AMD */
.recruitment-intro {
  display: grid;
  align-items: center;
  gap: clamp(42px, 7vw, 88px);
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
}

.talent-callout {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 54px);
  color: var(--white);
  border: 1px solid rgba(212, 154, 42, 0.48);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 10%, rgba(47, 109, 165, 0.42), transparent 34%),
    var(--navy-900);
  box-shadow: var(--shadow-lg);
}

.talent-callout::after {
  position: absolute;
  right: -100px;
  bottom: -190px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(212, 154, 42, 0.42);
  content: "";
  transform: rotate(45deg);
}

.talent-callout > * {
  position: relative;
  z-index: 1;
}

.talent-callout .icon-mark {
  width: 108px;
  height: 108px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.talent-callout h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 2.8vw, 2.65rem);
}

.talent-callout p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.talent-callout .text-link {
  color: var(--gold-300);
}

.profile-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.profile-card {
  position: relative;
  min-height: 315px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.profile-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--gold-500), var(--navy-800));
}

.profile-card .icon-mark {
  width: 94px;
  height: 94px;
  margin-bottom: 28px;
}

.profile-card h3 {
  font-size: 1.32rem;
}

.profile-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.recruitment-path {
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
}

.recruitment-path h3 {
  color: var(--white);
  font-size: clamp(1.55rem, 2.3vw, 2.1rem);
}

.recruitment-path p {
  color: rgba(255, 255, 255, 0.72);
}

.recruitment-path a {
  color: var(--gold-300);
  font-weight: 800;
}

.path-number {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold-300);
  font-family: "Montserrat", "Aptos Display", sans-serif;
  font-size: 0.92rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.application-layout {
  display: grid;
  align-items: start;
  gap: clamp(44px, 7vw, 86px);
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
}

.application-guidance {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding: 34px;
  color: var(--white);
  border-radius: var(--radius-md);
  background: var(--navy-900);
  box-shadow: var(--shadow-lg);
}

.application-guidance h2 {
  color: var(--white);
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
}

.numbered-guidance {
  display: grid;
  margin: 30px 0;
  padding: 0;
  gap: 22px;
  list-style: none;
}

.numbered-guidance li {
  display: grid;
  align-items: start;
  gap: 14px;
  grid-template-columns: 42px 1fr;
}

.numbered-guidance li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--navy-950);
  border-radius: 50%;
  background: var(--gold-300);
  font-size: 0.76rem;
  font-weight: 900;
}

.numbered-guidance strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
}

.numbered-guidance p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
  line-height: 1.5;
}

.privacy-summary {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.privacy-summary strong {
  color: var(--gold-300);
}

.privacy-summary p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
  line-height: 1.55;
}

.application-form {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.field input[type="file"].file-input {
  min-height: auto;
  padding: 8px;
  background: var(--white);
}

.file-input::file-selector-button {
  margin-right: 14px;
  padding: 11px 15px;
  color: var(--white);
  border: 0;
  border-radius: 7px;
  background: var(--navy-900);
  font-weight: 750;
  cursor: pointer;
}

.field-help {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.check-field {
  display: grid;
  align-items: start;
  gap: 12px;
  color: var(--ink);
  font-size: 0.85rem;
  line-height: 1.55;
  grid-template-columns: 20px 1fr;
}

.check-field input {
  width: 19px;
  height: 19px;
  margin: 2px 0 0;
  accent-color: var(--navy-900);
}

.check-field a {
  color: var(--navy-700);
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status.is-error {
  color: #842029;
  border-color: #e6b8bc;
  background: #fff2f3;
}

.recruitment-cta-row {
  justify-content: center;
  margin-top: 34px;
}

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

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

  .application-guidance {
    position: static;
  }
}

@media (max-width: 1040px) {
  .hero h1 {
    max-width: 620px;
    font-size: clamp(2.05rem, 7vw, 3rem);
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 7vw, 2.85rem);
  }

  .page-hero .lead {
    max-width: 100%;
  }

  .recruitment-intro,
  .recruitment-paths {
    grid-template-columns: 1fr;
  }

  .talent-callout {
    width: min(100%, 620px);
  }
}

@media (max-width: 580px) {
  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(1.95rem, 8.8vw, 2.6rem);
  }

  .page-hero h1 {
    margin-bottom: 22px;
    font-size: clamp(1.9rem, 8.8vw, 2.5rem);
  }

  .page-hero .lead {
    font-size: 1rem;
    line-height: 1.62;
  }

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

  .profile-card {
    min-height: auto;
  }

  .application-form,
  .application-guidance,
  .talent-callout {
    padding: 25px 20px;
  }
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  background:
    linear-gradient(135deg, rgba(5, 43, 79, 0.96), rgba(1, 20, 42, 0.98)),
    url("../images/hero-amd-projet-v2.webp") center / cover;
}

.error-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 6vw, 64px);
  text-align: center;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(212, 154, 42, 0.42);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(0, 18, 39, 0.35);
}

.error-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), #f4c76a);
}

.error-logo {
  width: min(240px, 64vw);
  height: auto;
  margin: 0 auto 28px;
}

.error-panel h1 {
  margin-bottom: 16px;
  color: var(--navy);
}

.error-panel .lead {
  color: var(--text);
}

.error-actions {
  justify-content: center;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .button-row,
  .cta-panel {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 11pt;
  }

  .section,
  .page-hero {
    padding: 24px 0;
  }

  .page-hero,
  .section-navy {
    color: #000;
    background: #fff;
  }

  .page-hero h1,
  .section-navy h2,
  .section-navy h3 {
    color: #000;
  }
}
