:root {
  --color-accent: #e63946;
  --color-accent-dark: #c1121f;
  --color-accent-soft: #fef2f2;
  --color-dark: #1a1a1a;
  --color-text: #2b2c2d;
  --color-text-muted: #5c5c5c;
  --color-text-light: #ffffff;
  --color-bg: #ffffff;
  --color-bg-muted: #f4f4f5;
  --font-family: "Outfit", "Poppins", system-ui, sans-serif;
  --page-width: 1200px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.1);
  --header-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

.container {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.2s;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
}

.site-logo {
  flex-shrink: 0;
  margin: 0;
}

.site-logo img {
  width: min(220px, 45vw);
  height: auto;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn--header {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
  align-items: center;
}

.site-nav__link,
.site-nav__trigger {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  padding: 0.35rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s;
}

.site-nav__link:hover,
.site-nav__link[aria-current="page"],
.site-nav__dropdown.is-active .site-nav__trigger {
  color: var(--color-accent);
}

.site-nav__link[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 0.35rem;
}

.site-nav__dropdown {
  position: relative;
}

/* Pont invisible pour éviter la fermeture du menu entre le bouton et la liste */
.site-nav__dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.75rem;
  display: none;
}

.site-nav__dropdown.is-open::after,
.site-nav__dropdown:hover::after {
  display: block;
}

.site-nav__chevron {
  width: 0.4rem;
  height: 0.4rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s;
}

.site-nav__dropdown.is-open .site-nav__chevron {
  transform: rotate(-135deg) translateY(2px);
}

.site-nav__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 300px;
  width: max-content;
  max-width: min(360px, 92vw);
  max-height: none;
  overflow: visible;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 0.4rem 0;
  margin-top: 0.35rem;
  z-index: 200;
  pointer-events: auto;
}

.site-nav__menu a {
  display: block;
  padding: 0.5rem 1.25rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-text);
  white-space: nowrap;
}

.site-nav__menu a:hover,
.site-nav__menu a[aria-current="page"] {
  color: var(--color-accent);
  background: var(--color-accent-soft);
}

.site-nav__dropdown.is-open .site-nav__menu,
.site-nav__dropdown:hover .site-nav__menu {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}

.nav-toggle {
  display: none;
  border: 1px solid #ddd;
  background: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-family: inherit;
  cursor: pointer;
}

/* Banner */
.banner {
  position: relative;
}

.banner__media {
  position: relative;
  line-height: 0;
  max-height: 85vh;
  overflow: hidden;
}

.banner__image {
  width: 100%;
  height: min(70vh, 650px);
  object-fit: cover;
  display: block;
}

.banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.15) 100%);
  pointer-events: none;
}

.banner__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  color: var(--color-text-light);
  padding: 3rem 1.5rem;
  max-width: var(--page-width);
  margin: 0 auto;
  width: 100%;
}

.banner__eyebrow {
  display: inline-block;
  margin: 0 0 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: clamp(1.35rem, 3.5vw, 1.9rem);
  line-height: 1.25;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}

a.banner__eyebrow:hover {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.banner__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  max-width: 720px;
}

.banner__subtitle {
  margin: 0 0 1.75rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  line-height: 1.5;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.92);
}

.banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Stats band */
.stats-band {
  background: var(--color-dark);
  color: #fff;
  padding: 2rem 0;
}

.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.stats-band__value {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1.1;
}

.stats-band__label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  background: var(--color-accent);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border: 2px solid var(--color-accent);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.btn:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

.btn--dark {
  background: var(--color-dark);
  border-color: var(--color-dark);
}

.btn--dark:hover {
  background: #333;
  border-color: #333;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section--muted {
  background: var(--color-bg-muted);
}

.section--accent-soft {
  background: var(--color-accent-soft);
}

.section__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.section__title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
  font-weight: 800;
  color: var(--color-dark);
}

.section__intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  color: var(--color-text-muted);
}

/* Cards */
.cards {
  display: grid;
  gap: 1.5rem;
}

.cards--3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.cards--4 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  text-align: center;
}

.card--service {
  background: transparent;
  border-radius: 0;
  padding: 1.5rem 1.25rem;
  box-shadow: none;
  text-align: center;
  transition: transform 0.25s;
  border: none;
}

.card--service:hover {
  transform: translateY(-3px);
  box-shadow: none;
}

.card--service .card__media {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
}

.card__icon {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  object-fit: contain;
}

.card__title,
.card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.65rem;
  color: #5a5a5a;
}

.card--service h3::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin: 0.65rem auto 0;
  background: var(--color-accent);
}

.card p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.card__link {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.875rem;
}

.card__link:hover {
  text-decoration: underline;
}

/* Engagements */
.engagement {
  text-align: center;
  padding: 1.5rem 1rem;
}

.engagement__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: var(--color-accent-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.engagement h3 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
}

.engagement p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Agency cards */
.card--agency {
  background: #fff;
  border-radius: var(--radius);
  padding: 0 0 1.25rem;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.card--agency:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.card--agency img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 0;
}

.card--agency__body {
  padding: 1.25rem 1.25rem 0;
  text-align: left;
}

.card--agency__badge {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.card--agency h3 {
  text-align: left;
  font-size: 0.95rem;
  margin: 0 0 0.5rem;
}

.card--agency a {
  color: var(--color-accent);
}

.card--agency p {
  text-align: left;
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
}

.agency-dossiers {
  margin: 0 0 0.75rem;
  font-weight: 600;
}

.agency-dossiers__count {
  color: var(--color-accent);
  font-size: 1.35rem;
  font-weight: 800;
}

.card--agency__cta {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
}

.card--agency__cta:hover {
  text-decoration: underline;
}

.card--no-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  text-align: left;
  padding: 1.25rem;
}

.card--no-image .card--agency__body {
  padding: 0;
}

/* Split sections */
.split__inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.split__content h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  color: var(--color-dark);
}

.split__content p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
}

.split__media img {
  border-radius: var(--radius);
  width: 100%;
  box-shadow: var(--shadow);
}

/* Zone intervention */
.zone-map {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
}

/* Timeline */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline__image {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.timeline__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.timeline__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--color-accent);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.timeline__year {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-accent);
}

.timeline__title {
  margin: 0 0 0.25rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-dark);
}

.timeline__desc {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Team */
.team-grid {
  display: grid;
  gap: 1.5rem;
}

.team-grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.team-grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.team-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.team-card--lead {
  border-top: 3px solid var(--color-accent);
}

.team-card__name {
  margin: 0 0 0.35rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-dark);
}

.team-card__role {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.team-section__title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 2rem 0 1rem;
  text-align: center;
}

/* FAQ */
.faq {
  max-width: 760px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: var(--color-dark);
}

.faq__question:hover {
  color: var(--color-accent);
}

.faq__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__icon::before {
  width: 12px;
  height: 2px;
}

.faq__icon::after {
  width: 2px;
  height: 12px;
  transition: transform 0.2s;
}

.faq__item.is-open .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq__answer {
  display: none;
  padding: 0 0 1.25rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.faq__item.is-open .faq__answer {
  display: block;
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--color-dark) 0%, #2d2d2d 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.cta-band h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
}

.cta-band p {
  margin: 0 0 1.75rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin-inline: auto;
}

.cta-band .banner__actions {
  justify-content: center;
}

/* Footer */
.site-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 2rem;
}

.site-footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  align-items: start;
}

.site-footer h2 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: #fff;
}

.site-footer p {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--color-accent);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-nav a {
  font-size: 0.9rem;
}

.footer-agency {
  margin-bottom: 1rem;
}

.footer-agency strong {
  display: block;
  color: #fff;
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}

.site-footer__logo img {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.site-footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Inner pages */
.page-hero {
  padding: 3.5rem 0 2rem;
  text-align: center;
  background: var(--color-bg-muted);
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--color-dark);
}

.page-hero p {
  margin: 0;
  color: var(--color-text-muted);
  max-width: 560px;
  margin-inline: auto;
}

.page-content {
  padding: 0 0 3rem;
  max-width: 800px;
}

.page-content--wide {
  max-width: none;
}

@media (min-width: 900px) {
  .split__inner {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }

  .split--image-first .split__media {
    order: -1;
  }

  .timeline__image-only {
    display: block;
  }

  .timeline__list--mobile {
    display: none;
  }
}

@media (max-width: 899px) {
  .timeline__image-only {
    display: none;
  }
}

@media (max-width: 768px) {
  .site-nav__dropdown::after {
    display: none !important;
  }

  .site-nav__menu {
    margin-top: 0;
    width: 100%;
    max-width: none;
    min-width: 0;
    white-space: normal;
  }

  .site-nav__menu a {
    white-space: normal;
  }

  .nav-toggle {
    display: block;
  }

  .site-header__inner {
    flex-wrap: wrap;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding-bottom: 1rem;
    order: 3;
  }

  .site-nav.is-open {
    display: flex;
  }

  .btn--header--desktop {
    display: none;
  }

  .site-nav__dropdown {
    width: 100%;
  }

  .site-nav__trigger {
    width: 100%;
    justify-content: space-between;
  }

  .site-nav__menu {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0.25rem 0 0.5rem 1rem;
    display: none;
    overflow: visible;
    max-height: none;
  }

  .site-nav__dropdown.is-open .site-nav__menu {
    display: flex;
    flex-direction: column;
  }

  .site-nav__dropdown:hover .site-nav__menu {
    display: none;
  }

  .site-nav__dropdown.is-open:hover .site-nav__menu {
    display: flex;
    flex-direction: column;
  }

  .banner__content {
    justify-content: flex-end;
    padding-bottom: 2.5rem;
  }

  .timeline__item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

@media (min-width: 769px) {
  .btn--header--mobile {
    display: none;
  }
}

/* ===== Service detail pages ===== */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0 0 1.5rem;
}

.breadcrumb a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--color-accent);
}

.breadcrumb__sep {
  opacity: 0.45;
}

.service-layout {
  display: grid;
  gap: 2.5rem;
  align-items: start;
  padding-bottom: 3rem;
}

@media (min-width: 960px) {
  .service-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 3rem;
  }
}

.service-article h2 {
  margin: 2.5rem 0 1rem;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: var(--color-dark);
  scroll-margin-top: 100px;
}

.service-article h2:first-child {
  margin-top: 0;
}

.service-article h3 {
  margin: 1.5rem 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-dark);
}

.service-article p,
.service-article li {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.service-article p {
  margin: 0 0 1rem;
}

.service-article ul {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
}

.service-article li {
  margin-bottom: 0.4rem;
}

.service-lead {
  font-size: 1.1rem;
  color: var(--color-text);
  font-weight: 500;
  line-height: 1.65;
  margin: 0 0 1.5rem;
  max-width: 720px;
}

.service-callout {
  background: var(--color-accent-soft);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.service-callout p {
  margin: 0;
  color: var(--color-dark);
}

.service-callout strong {
  color: var(--color-accent-dark);
}

.steps {
  list-style: none;
  margin: 1.5rem 0 2rem;
  padding: 0;
  counter-reset: step;
  display: grid;
  gap: 1rem;
}

.steps li {
  position: relative;
  counter-increment: step;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 1.25rem 1.25rem 1.25rem 4rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  margin: 0;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1.25rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps strong {
  display: block;
  color: var(--color-dark);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.service-aside {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
}

.service-nav-card,
.service-cta-card {
  background: var(--color-bg-muted);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-nav-card h2,
.service-cta-card h2 {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.service-nav-card ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.25rem;
}

.service-nav-card a {
  display: block;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 0.4rem 0.55rem;
  border-radius: 6px;
  line-height: 1.35;
}

.service-nav-card a:hover {
  background: #fff;
  color: var(--color-accent);
}

.service-nav-card a[aria-current="page"] {
  background: #fff;
  color: var(--color-accent);
  font-weight: 700;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.service-cta-card p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.service-hub-grid {
  display: grid;
  gap: 2rem 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-hub-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  border-radius: 0;
  padding: 1rem 0.75rem;
  text-decoration: none;
  color: inherit;
  border: none;
  box-shadow: none;
  text-align: center;
  transition: transform 0.25s;
}

.service-hub-card:hover {
  transform: translateY(-3px);
  box-shadow: none;
}

.service-hub-card__icon {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin: 0 0 1rem;
}

.service-hub-card__media {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 0;
  margin-bottom: 1rem;
}

.service-hub-card__num {
  display: none;
}

.service-hub-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #5a5a5a;
}

.service-hub-card h3::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin: 0.65rem auto 0;
  background: var(--color-accent);
}

.service-hub-card p {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  flex: 1;
}

.service-hub-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
}

.service-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 2rem;
}

.service-toc a {
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--color-text);
}

.service-toc a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* Doc client Geogarants 2 — icônes line-art */
.cards--12 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem 1.5rem;
}

.cards--12 .card--service {
  padding: 1rem 0.75rem;
}

.cards--12 .card__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 0.85rem;
}

.cards--12 h3 {
  font-size: 0.98rem;
  margin-bottom: 0.45rem;
}

.cards--12 p {
  font-size: 0.85rem;
  margin-bottom: 0.65rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cards--12 .card__link {
  margin-top: auto;
}

.timeline--featured {
  text-align: center;
}

.timeline--featured .timeline__image {
  max-width: min(1100px, 100%);
  margin: 0 auto 1.5rem;
  width: 100%;
}

.timeline--featured .section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
}

.site-nav__menu--wide {
  min-width: 320px;
  width: max-content;
  max-width: min(380px, 92vw);
  column-count: 1;
  columns: auto;
}
