@font-face {
  font-family: 'Fira Sans Condensed';
  src: url('../fonts/FiraSansCondensed-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Fira Sans Condensed';
  src: url('../fonts/FiraSansCondensed-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Fira Sans Condensed';
  src: url('../fonts/FiraSansCondensed-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Marcellus';
  src: url('../fonts/Marcellus-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--amc-gray-text);
  background: var(--amc-bg);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--amc-blue-navy);
  line-height: 1.2;
  letter-spacing: -1px;
}

h1 { font-size: clamp(1.9rem, 1.6rem + 1.6vw, 2.75rem); }
h2 { font-size: clamp(1.4rem, 1.25rem + 0.8vw, 1.85rem); margin-top: 0; }
h3 { font-size: 1.15rem; margin-top: 0; }

p { margin: 0 0 1rem; }

.lead {
  font-size: 1.1rem;
  color: var(--amc-gray-muted);
}

/* Contenu riche (Quill) — évite les doubles marges de <p> imbriqués */
.richtext > p:first-child {
  margin-top: 0;
}

.richtext > p:last-child {
  margin-bottom: 0;
}

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

.richtext a {
  color: var(--amc-blue-primary);
  text-decoration: underline;
}

a {
  color: var(--amc-blue-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

img.is-img-loading {
  background: linear-gradient(90deg, #EAF0F6 25%, #DCE6EF 37%, #EAF0F6 63%);
  background-size: 400% 100%;
  animation: img-skeleton-shimmer 1.4s ease infinite;
}

@keyframes img-skeleton-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  img.is-img-loading {
    animation: none;
    background: #EAF0F6;
  }
}

.icon {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--amc-blue-accent);
  margin-bottom: 0.6rem;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 1rem;
  z-index: 1000;
  background: var(--amc-blue-navy);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--amc-radius-sm);
  font-weight: 700;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
  color: #fff;
  text-decoration: none;
}

/* Fallback : si AOS.js ne s'initialise pas, le contenu reste visible
   (évite la page blanche — header seul + texte opacity:0). */
body:not([data-aos-easing]) [data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* --- Header / nav --- */

body:not(.has-transparent-header):not(.admin-body) {
  padding-top: 92px;
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--amc-border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 30;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-transparent {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: none;
}

.site-header.is-transparent .logo,
.site-header.is-transparent .logo-text,
.site-header.is-transparent .logo-text-main,
.site-header.is-transparent .site-nav a,
.site-header.is-transparent .header-search-toggle {
  color: #fff;
}

.site-header.is-transparent .nav-toggle span {
  background: #fff;
}

.site-header.is-transparent .site-nav.open a {
  color: var(--amc-blue-navy);
}

.site-header.is-transparent .nav-cta.btn-primary {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom-color: var(--amc-border);
  box-shadow: var(--amc-shadow-sm);
}

.site-header.is-transparent.is-scrolled .logo,
.site-header.is-transparent.is-scrolled .logo-text,
.site-header.is-transparent.is-scrolled .logo-text-main,
.site-header.is-transparent.is-scrolled .site-nav a,
.site-header.is-transparent.is-scrolled .header-search-toggle {
  color: var(--amc-blue-navy);
}

.site-header.is-transparent.is-scrolled .site-nav a.active {
  color: var(--amc-blue-primary);
}

.site-header.is-transparent.is-scrolled .nav-toggle span {
  background: var(--amc-blue-navy);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 1rem;
  max-width: 1680px;
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Fira Sans Condensed', sans-serif;
  font-weight: 700;
  color: var(--amc-blue-navy);
}

.logo:hover {
  text-decoration: none;
}

.logo-diamond {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  background: linear-gradient(135deg, var(--amc-blue-accent), var(--amc-blue-primary));
  transform: rotate(45deg);
  flex-shrink: 0;
  border-radius: 4px;
}

.logo-diamond em {
  display: block;
  transform: rotate(-45deg);
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1;
}

.logo-text {
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.logo-text-stack {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text-main {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.logo-text-sub {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--amc-blue-accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-search-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--amc-blue-navy);
  padding: 0;
}

.header-search-toggle .icon {
  width: 20px;
  height: 20px;
}

.header-search-toggle:hover {
  color: var(--amc-blue-accent);
}

.header-search-panel {
  position: fixed;
  top: 92px;
  left: 0;
  right: 0;
  z-index: 29;
  background: #fff;
  border-bottom: 1px solid var(--amc-border);
  box-shadow: var(--amc-shadow-md);
  padding: 1.25rem 0;
}

.header-search-panel[hidden] {
  display: none;
}

.header-search-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 1680px;
}

.header-search-icon {
  width: 20px;
  height: 20px;
  color: var(--amc-gray-muted);
  flex-shrink: 0;
}

#header-search-input {
  flex: 1;
  border: none;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--amc-blue-navy);
  background: none;
}

#header-search-input:focus {
  outline: none;
}

.header-search-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--amc-gray-muted);
  flex-shrink: 0;
}

.header-search-close .icon {
  width: 18px;
  height: 18px;
}

.header-search-close:hover {
  color: var(--amc-blue-navy);
}

.header-search-results {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 1680px;
}

.header-search-results:not(:empty) {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--amc-border);
}

.header-search-results li a {
  display: block;
  padding: 0.6rem 0;
  color: var(--amc-blue-navy);
  font-weight: 600;
}

.header-search-results li a span {
  display: block;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--amc-gray-muted);
}

.header-search-results li a:hover {
  color: var(--amc-blue-primary);
  text-decoration: none;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--amc-blue-navy);
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 92px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--amc-border);
  padding: 0.5rem 1.25rem 1rem;
}

.site-nav.open {
  display: flex;
}

.site-nav a {
  position: relative;
  display: inline-block;
  color: var(--amc-blue-navy);
  padding: 0.85rem 0;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}

.site-nav a:not(:last-child) {
  border-bottom: 1px solid rgba(34, 50, 84, 0.08);
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.35rem;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.25s ease;
}

.site-nav a.active {
  color: var(--amc-blue-primary);
}

.site-nav a.active::after {
  width: 100%;
}

.site-nav a:hover {
  text-decoration: none;
  color: var(--amc-blue-accent);
}

.site-nav a:hover::after {
  width: 100%;
}

.header-actions .nav-cta {
  display: none;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

@media (min-width: 800px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    flex-direction: row;
    position: static;
    border: none;
    padding: 0;
    gap: 1.75rem;
    background: none;
  }

  .site-nav a {
    padding: 0.6rem 0;
  }

  .site-nav a:not(:last-child) {
    border-bottom: none;
  }

  .header-actions .nav-cta {
    display: inline-flex;
  }
}

/* --- Buttons --- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--amc-radius-sm);
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--amc-blue-accent);
  color: #fff;
  box-shadow: 0 6px 16px rgba(41, 171, 226, 0.35);
}

.btn-primary:hover {
  background: #1f96c9;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(41, 171, 226, 0.4);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  text-decoration: none;
  border-color: #fff;
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
}

/* --- Sections --- */

.section {
  padding: clamp(3rem, 2.5rem + 2vw, 5.5rem) 0;
}

.section-head {
  max-width: 60ch;
  margin-bottom: 2.5rem;
}

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

.section-cta {
  margin-top: 2rem;
}

.section-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--amc-blue-primary);
}

.section-cta a:hover {
  color: var(--amc-blue-navy);
}

.section-cta .icon {
  width: 18px;
  height: 18px;
  transition: transform 0.15s ease;
}

.section-cta a:hover .icon {
  transform: translateX(3px);
}

.page-intro {
  padding-bottom: 1rem;
}

.page-intro h1 {
  margin-bottom: 0.75rem;
}

.section-alt {
  background: #fff;
  border-top: 1px solid var(--amc-border);
  border-bottom: 1px solid var(--amc-border);
}

/* --- Hero --- */

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  color: #fff;
  padding: clamp(6.5rem, 5.5rem + 4vw, 8.5rem) 0 clamp(3.5rem, 3rem + 2vw, 5rem);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(34, 50, 84, 0.95) 0%, rgba(34, 50, 84, 0.86) 32%, rgba(27, 95, 174, 0.6) 62%, rgba(27, 95, 174, 0.28) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-inner .eyebrow,
.hero-inner h1,
.hero-inner .hero-lead,
.hero-inner .hero-actions,
.hero-inner .trust-badges {
  max-width: 640px;
}

.text-accent {
  color: var(--amc-blue-accent);
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 1.8rem + 2.6vw, 3.75rem);
  text-transform: uppercase;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 1.25rem;
}

.hero-lead {
  max-width: 46ch;
  color: #DCE8F5;
  font-size: 1.1rem;
}

.hero-lead strong {
  color: #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.btn-outline-navy {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn-outline-navy:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
  text-decoration: none;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
}

.trust-badge .icon {
  width: 16px;
  height: 16px;
  color: var(--amc-blue-accent);
}

/* --- Carte contact flottante --- */

.hero-contact-card {
  display: none;
  position: absolute;
  z-index: 2;
  top: 29%;
  right: 8%;
  width: 380px;
  padding: 2rem 1.75rem 1.75rem;
  background: #fff;
  border-radius: var(--amc-radius-lg);
  box-shadow: 0 30px 60px rgba(6, 22, 41, 0.35);
}

.hero-contact-badge {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 60px;
  height: 60px;
  border-radius: var(--amc-radius-sm);
  background: var(--amc-blue-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(41, 171, 226, 0.4);
}

.hero-contact-badge .icon {
  width: 26px;
  height: 26px;
}

.hero-contact-card h3 {
  color: var(--amc-blue-navy);
  font-size: 1.15rem;
  font-weight: 400;
  margin: 0.5rem 0 0.25rem;
}

.hero-contact-card .hero-contact-sub {
  color: var(--amc-gray-muted);
  font-size: 0.85rem;
  margin: 0 0 0.9rem;
}

.hero-contact-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--amc-blue-navy);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--amc-border);
}

.hero-contact-phone:hover {
  color: var(--amc-blue-accent);
  text-decoration: none;
}

.hero-contact-phone .icon {
  width: 18px;
  height: 18px;
  color: var(--amc-blue-accent);
}

.hero-contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.hero-contact-form input,
.hero-contact-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 0.65rem 0.85rem;
  background: var(--amc-bg);
  border: 1px solid var(--amc-border);
  border-radius: var(--amc-radius-sm);
  color: var(--amc-gray-text);
  resize: none;
}

.hero-contact-form input::placeholder,
.hero-contact-form textarea::placeholder {
  color: #9aa5b1;
}

.hero-contact-form input:focus,
.hero-contact-form textarea:focus {
  outline: 2px solid var(--amc-blue-accent);
  outline-offset: 1px;
}

.hero-contact-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.3rem;
}

@media (min-width: 1200px) {
  .hero-contact-card {
    display: block;
  }
}

/* --- Bandeau défilant --- */

.marquee {
  overflow: hidden;
  background: var(--amc-blue-navy);
  padding: 1.1rem 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 2.5rem;
  animation: marqueeScroll 26s linear infinite;
}

.marquee-track span {
  font-family: 'Fira Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.15rem, 1rem + 1vw, 1.6rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.55);
}

.marquee-track span.is-solid {
  color: var(--amc-blue-accent);
  -webkit-text-stroke: 0;
}

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

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* --- Values --- */

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 560px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  position: relative;
  overflow: hidden;
  text-align: left;
  background: #fff;
  border: 1px solid var(--amc-border);
  border-radius: var(--amc-radius-lg);
  padding: 2.25rem 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--amc-shadow-md);
  border-color: var(--amc-blue-accent);
}

.value-num {
  position: absolute;
  top: 0.5rem;
  right: 1.25rem;
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--amc-border);
  z-index: 0;
}

.value-icon {
  position: relative;
  z-index: 1;
  width: 4rem;
  height: 4rem;
  margin: 0 0 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amc-blue-accent), var(--amc-blue-primary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(41, 171, 226, 0.3);
}

.value-icon .icon {
  width: 28px;
  height: 28px;
}

.value-divider {
  position: relative;
  z-index: 1;
  width: 2.5rem;
  height: 3px;
  border-radius: 2px;
  background: var(--amc-blue-accent);
  margin-bottom: 0.9rem;
}

.value-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  margin: 0;
  letter-spacing: -0.01em;
}

/* --- Cards --- */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  border: 1px solid var(--amc-border);
  border-radius: var(--amc-radius-md);
  padding: 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--amc-shadow-md);
  border-color: var(--amc-blue-accent);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--amc-radius-sm);
  background: #EAF4FC;
  color: var(--amc-blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.card h3 {
  color: var(--amc-blue-navy);
}

.card p {
  color: var(--amc-gray-muted);
  margin-bottom: 0;
}

/* --- Split image/texte --- */

.split-section {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 860px) {
  .split-section {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.split-media img {
  border-radius: var(--amc-radius-lg);
  box-shadow: var(--amc-shadow-md);
}

/* --- À propos (accueil) --- */

.about-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #EAF4FC 20%, #fff 100%);
  border-top: none;
  border-bottom: none;
  padding: 7.5rem 0;
}

.floating-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-particles canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: start;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .about-grid {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .about-grid {
    max-width: 1320px;
  }
}

.about-media {
  width: 100%;
}

.about-media img {
  width: 100%;
  aspect-ratio: 551 / 734;
  object-fit: cover;
  border-radius: 0.375rem;
}

@media (min-width: 1200px) {
  .about-media {
    padding-right: 3.5rem;
  }
}

.about-content h2 {
  font-size: clamp(1.9rem, 1.4rem + 2vw, 2.75rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
}

.eyebrow-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.eyebrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: var(--amc-blue-accent);
  box-shadow: 0 0 120px rgba(34, 50, 84, 0.3);
  flex-shrink: 0;
}

.eyebrow-icon .icon {
  width: 18px;
  height: 18px;
}

.eyebrow-badge .eyebrow {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.5;
  letter-spacing: -0.02em;
  width: fit-content;
  background: linear-gradient(100deg, var(--amc-blue-primary) 0%, rgba(27, 95, 174, 0.15) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--amc-blue-primary);
}

.about-content .lead {
  margin-bottom: 1.75rem;
}

.about-features-row {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 700px) {
  .about-features-row {
    grid-template-columns: 8fr 4fr;
    gap: 1.75rem;
  }
}

.about-features-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-secondary-media {
  display: none;
}

.about-secondary-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 0.375rem;
}

@media (min-width: 700px) {
  .about-secondary-media {
    display: block;
    width: 100%;
  }
}

.about-feature {
  display: flex;
  gap: 1.25rem;
}

.about-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(41, 171, 226, 0.15);
  color: var(--amc-blue-primary);
}

.about-feature-icon .icon {
  width: 24px;
  height: 24px;
}

.about-feature h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.about-feature p {
  color: var(--amc-gray-muted);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.about-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.about-cta-row .btn {
  padding: 15px 34px;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 4px;
  font-weight: 700;
}

.about-call {
  display: flex;
  align-items: center;
  color: var(--amc-blue-navy);
}

.about-call:hover {
  text-decoration: none;
}

.about-call:hover strong {
  color: var(--amc-blue-accent);
}

.about-call-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-right: 15px;
  border-radius: 50%;
  background: var(--amc-blue-navy);
  color: #fff;
  flex-shrink: 0;
}

.about-call-icon .icon {
  width: 18px;
  height: 18px;
}

.about-call-label {
  display: block;
  font-size: 0.8rem;
  color: var(--amc-gray-muted);
}

.about-call strong {
  display: block;
  font-size: 1rem;
  transition: color 0.15s ease;
}

.split-content .service-items {
  margin: 1.25rem 0 1.75rem;
}

/* --- CTA band --- */

.cta-band {
  background: linear-gradient(135deg, var(--amc-blue-primary), var(--amc-blue-navy));
  color: #fff;
  border-radius: var(--amc-radius-lg);
  padding: clamp(2rem, 1.6rem + 2vw, 3.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 0.4rem;
}

.cta-band p {
  color: #E4EEF7;
  margin-bottom: 0;
  max-width: 45ch;
}

/* --- Services page --- */

.services-list {
  display: grid;
  gap: 1.75rem;
}

.service-block {
  background: #fff;
  border: 1px solid var(--amc-border);
  border-radius: var(--amc-radius-md);
  padding: 1.75rem;
  scroll-margin-top: 100px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-block:hover {
  box-shadow: var(--amc-shadow-sm);
  border-color: var(--amc-blue-accent);
}

.service-block-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border-bottom: 1px solid var(--amc-border);
  padding-bottom: 0.9rem;
  margin-bottom: 1.1rem;
}

.service-block-head .card-icon {
  margin-bottom: 0;
}

.service-block-head h2 {
  margin: 0;
  font-size: 1.25rem;
}

.service-items {
  margin: 0;
  padding-left: 0;
  list-style: none;
  columns: 1;
  column-gap: 2rem;
}

@media (min-width: 640px) {
  .service-items.is-long {
    columns: 2;
  }
}

.service-items li {
  margin-bottom: 0.55rem;
  padding-left: 1.4rem;
  position: relative;
  break-inside: avoid;
}

.service-items li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amc-blue-accent);
}

/* --- Contact --- */

.contact-hero {
  background: linear-gradient(180deg, #EAF4FC 20%, #fff 100%);
  padding: clamp(3rem, 2.2rem + 3vw, 4.5rem) 0 clamp(2.5rem, 2rem + 2vw, 3.5rem);
}

.contact-hero-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 992px) {
  .contact-hero-grid {
    grid-template-columns: 1.15fr 1fr;
    align-items: center;
    gap: 4rem;
  }
}

.contact-hero-content h2 {
  font-size: clamp(2rem, 1.5rem + 2.2vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0.75rem 0 1.25rem;
}

.contact-hero-lead {
  color: var(--amc-gray-text);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 46ch;
}

.contact-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem 2rem;
}

@media (min-width: 560px) {
  .contact-details-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-details-grid .contact-detail-item.is-full {
    grid-column: 1 / -1;
  }
}

.contact-detail-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--amc-blue-navy);
  margin: 0 0 0.4rem;
}

.contact-detail-item p {
  color: var(--amc-gray-text);
  font-size: 0.98rem;
  line-height: 1.5;
  margin: 0;
}

.contact-detail-item a {
  color: var(--amc-blue-primary);
  font-weight: 600;
}

.contact-detail-item a:hover {
  color: var(--amc-blue-accent);
}

/* Carte formulaire sombre flottante */

.contact-form-card {
  background: var(--amc-blue-navy);
  border-radius: var(--amc-radius-lg);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  padding: clamp(1.6rem, 1.3rem + 1.5vw, 2.5rem);
}

.contact-form-card h2 {
  color: #fff;
  font-size: 1.4rem;
  margin: 0 0 1.6rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-form-card .contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.contact-form-card .contact-form input,
.contact-form-card .contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  min-height: 55px;
  padding: 0.65rem 0.85rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--amc-radius-sm);
  color: #fff;
  opacity: 0.85;
  resize: none;
}

.contact-form-card .contact-form textarea {
  min-height: 120px;
}

.contact-form-card .contact-form input::placeholder,
.contact-form-card .contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form-card .contact-form input:focus,
.contact-form-card .contact-form textarea:focus {
  outline: none;
  border-color: var(--amc-blue-accent);
  opacity: 1;
}

.contact-form-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.3rem;
}

.contact-map-section {
  line-height: 0;
}

.contact-map {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* --- Bandeau titre de page --- */

.page-title-section {
  position: relative;
  overflow: hidden;
  padding: clamp(6.5rem, 5.5rem + 4vw, 8.5rem) 0 clamp(3.5rem, 3rem + 2vw, 5rem);
  text-align: center;
  color: #fff;
}

.page-title-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}

.page-title-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--amc-blue-navy);
  opacity: 0.88;
}

.page-title-section .container {
  position: relative;
  z-index: 2;
}

.page-title-section h1 {
  color: #fff;
  font-size: clamp(2.2rem, 1.7rem + 2.6vw, 3.75rem);
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  margin: 0 0 0.6rem;
}

.page-title-breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  line-height: 1.2;
}

.page-title-breadcrumb li {
  color: #fff;
  opacity: 0.8;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-title-breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 0.35rem;
  opacity: 0.6;
}

.page-title-breadcrumb li:last-child {
  color: var(--amc-blue-accent);
}

.page-title-breadcrumb a {
  color: #fff;
  opacity: 0.8;
}

.page-title-breadcrumb a:hover {
  color: var(--amc-blue-accent);
  text-decoration: none;
}

/* --- Page Services : sidebar + grille --- */

.service-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.service-sidebar {
  order: 2;
}

.service-main {
  order: 1;
}

@media (min-width: 992px) {
  .service-page-grid {
    grid-template-columns: 320px 1fr;
    align-items: start;
    gap: 3rem;
  }

  .service-sidebar {
    order: 1;
  }

  .service-main {
    order: 2;
  }
}

.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

.service-widget {
  background: var(--amc-blue-navy);
  border-radius: var(--amc-radius-md);
  padding: 1.6rem 1.4rem;
}

.service-widget-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 1.1rem;
}

.service-category-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: var(--amc-radius-sm);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  transition: background 0.15s ease;
}

.service-category-list a:hover {
  background: var(--amc-blue-accent);
  text-decoration: none;
}

.service-category-list .icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.service-contact-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.service-contact-item + .service-contact-item {
  margin-top: 1.1rem;
}

.service-contact-item .contact-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: var(--amc-blue-accent);
  color: #fff;
}

.service-contact-item .contact-icon-circle .icon {
  width: 18px;
  height: 18px;
}

.service-contact-item h3 {
  color: #fff;
  font-size: 0.95rem;
  margin: 0 0 0.2rem;
}

.service-contact-item p,
.service-contact-item a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  margin: 0;
}

.service-contact-item a:hover {
  color: #fff;
}

.service-brochure-link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem;
  border-radius: var(--amc-radius-sm);
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.15s ease;
}

.service-brochure-link:hover {
  background: var(--amc-blue-accent);
  text-decoration: none;
}

.service-brochure-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: var(--amc-blue-accent);
  color: #fff;
}

.service-brochure-link:hover .service-brochure-icon {
  background: #fff;
  color: var(--amc-blue-accent);
}

.service-brochure-icon .icon {
  width: 18px;
  height: 18px;
}

.service-brochure-link strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}

.service-brochure-meta {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
}

.service-cta-widget {
  text-align: center;
}

.service-cta-widget .cta-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--amc-blue-accent);
  color: #fff;
}

.service-cta-widget .cta-icon-circle .icon {
  width: 22px;
  height: 22px;
}

.service-cta-widget h3 {
  color: #fff;
  font-size: 1.05rem;
  margin: 0 0 0.9rem;
}

.service-cta-widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-cta-widget a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
}

.service-cta-widget a:hover {
  color: var(--amc-blue-accent);
}

.service-cta-widget .icon {
  width: 15px;
  height: 15px;
}

/* --- À propos : intro --- */

.about-intro-section {
  padding: clamp(3rem, 2.2rem + 3vw, 5rem) 0;
  background: linear-gradient(180deg, #EAF4FC 20%, #fff 100%);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}

@media (min-width: 992px) {
  .about-intro-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
  }
}

.about-intro-content h2 {
  font-size: clamp(1.9rem, 1.4rem + 2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0.75rem 0 1.25rem;
}

.about-intro-content p {
  color: var(--amc-gray-text);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.about-intro-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 2rem;
  margin-top: 1.5rem;
}

.about-intro-media {
  position: relative;
  width: 100%;
  max-width: 460px;
}

@media (min-width: 992px) {
  .about-intro-media {
    margin-left: auto;
  }
}

.about-intro-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--amc-radius-lg);
}

.about-intro-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  text-align: right;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(34, 50, 84, 0.35);
}

.about-intro-badge .label {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.about-intro-badge .num {
  display: block;
  font-size: clamp(2.5rem, 2rem + 2vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.about-intro-accent {
  position: absolute;
  left: -1.5rem;
  bottom: -1.75rem;
  width: 46%;
  box-shadow: var(--amc-shadow-md);
  border-radius: var(--amc-radius-md);
  overflow: hidden;
  border: 4px solid #fff;
}

.about-intro-accent img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

/* --- Legal --- */

.legal-section {
  background: linear-gradient(180deg, #EAF4FC 20%, #fff 100%);
  padding: clamp(3rem, 2.2rem + 3vw, 5rem) 0;
}

.cms-page-body {
  color: var(--amc-gray-text);
  line-height: 1.7;
  font-size: 1.05rem;
}

.cms-page-body p {
  margin: 0 0 1rem;
}

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

.cms-page-body a {
  color: var(--amc-blue-primary);
  text-decoration: underline;
}

.legal-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.6rem;
  border: 1px solid rgba(34, 50, 84, 0.08);
  border-radius: var(--amc-radius-md);
  background: #fff;
  box-shadow: var(--amc-shadow-sm);
}

@media (min-width: 768px) {
  .legal-card {
    padding: 2.2rem;
  }
}

.legal-block:not(:last-child) {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--amc-border);
}

.legal-block h2 {
  font-size: 1.3rem;
  margin-bottom: 1.1rem;
}

.legal-block dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.7rem 1.5rem;
  margin: 0;
}

.legal-block dt {
  font-weight: 700;
  color: var(--amc-blue-navy);
}

.legal-block dd {
  margin: 0;
  color: var(--amc-gray-text);
}

@media (max-width: 559px) {
  .legal-block dl {
    grid-template-columns: 1fr;
    gap: 0.2rem 0;
  }

  .legal-block dd {
    margin-bottom: 0.6rem;
  }
}

/* --- Honeypot (anti-spam, invisible aux humains) --- */

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* --- Snackbars (haut droite) --- */

.amc-snackbar-host {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 10050;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
  width: min(380px, calc(100vw - 1.5rem));
  pointer-events: none;
}

.amc-snackbar {
  position: relative;
  pointer-events: auto;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: start;
  gap: 0.65rem 0.7rem;
  width: 100%;
  padding: 0.85rem 0.85rem 0.95rem 0.75rem;
  border-radius: 12px;
  background: #fff;
  color: var(--amc-blue-navy, #223254);
  border: 1px solid rgba(34, 50, 84, 0.08);
  box-shadow:
    0 10px 30px rgba(20, 32, 54, 0.12),
    0 2px 8px rgba(20, 32, 54, 0.06);
  opacity: 0;
  transform: translateX(18px) translateY(-6px);
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
  font-family: var(--font-body);
}

.amc-snackbar--visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.amc-snackbar--leaving {
  opacity: 0;
  transform: translateX(22px);
}

.amc-snackbar__accent {
  grid-row: 1 / span 2;
  width: 4px;
  align-self: stretch;
  border-radius: 999px;
  background: var(--amc-blue-accent, #29ABE2);
  min-height: 100%;
}

.amc-snackbar--success .amc-snackbar__accent {
  background: #1B8A5A;
}

.amc-snackbar--error .amc-snackbar__accent {
  background: #B3261E;
}

.amc-snackbar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: #EAF4FC;
  color: var(--amc-blue-primary, #1B5FAE);
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.amc-snackbar--success .amc-snackbar__icon {
  background: #E7F6EE;
  color: #1B8A5A;
}

.amc-snackbar--error .amc-snackbar__icon {
  background: #FCEBEA;
  color: #B3261E;
}

.amc-snackbar__icon svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.amc-snackbar__msg {
  margin: 0.1rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--amc-blue-navy, #223254);
}

.amc-snackbar__close {
  border: 0;
  background: transparent;
  color: #8A94A6;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  margin: -0.15rem -0.1rem 0 0;
}

.amc-snackbar__close:hover {
  background: #F3F5F8;
  color: var(--amc-blue-navy, #223254);
}

.amc-snackbar__close svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.amc-snackbar__timer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  transform-origin: left center;
  transform: scaleX(1);
  background: linear-gradient(90deg, var(--amc-blue-navy, #223254), var(--amc-blue-accent, #29ABE2));
  opacity: 0.85;
}

.amc-snackbar--success .amc-snackbar__timer {
  background: linear-gradient(90deg, #167A4E, #2BB673);
}

.amc-snackbar--error .amc-snackbar__timer {
  background: linear-gradient(90deg, #8F1E18, #D6453D);
}

@media (max-width: 540px) {
  .amc-snackbar-host {
    top: 0.75rem;
    right: 0.75rem;
    left: 0.75rem;
    width: auto;
    align-items: stretch;
  }
}

/* Ancienne API classe (compat) */
.amc-toast {
  display: none !important;
}

/* --- Témoignages --- */

.testimonials-section {
  padding: 4rem 0 4.5rem;
  background: var(--amc-bg, #FAFBFC);
}

.testimonials-section .section-intro {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.testimonials-section .section-intro h2 {
  margin: 0.75rem 0 0.65rem;
}

.testimonials-section .section-intro p {
  margin: 0;
  color: var(--amc-gray-text, #3A3A3A);
  line-height: 1.55;
}

.testimonials-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--amc-border, #B3D4EA);
  border-radius: 14px;
  padding: 1.4rem 1.35rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 6px 20px rgba(34, 50, 84, 0.05);
  height: 100%;
}

.testimonial-card__quote {
  margin: 0;
  flex: 1;
}

.testimonial-card__quote p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--amc-blue-navy, #223254);
  font-family: var(--font-heading);
}

.testimonial-card__quote p::before {
  content: '“';
  color: var(--amc-blue-accent, #29ABE2);
  margin-right: 0.15rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amc-blue-navy), var(--amc-blue-accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.testimonial-card__name {
  display: block;
  font-style: normal;
  font-weight: 700;
  color: var(--amc-blue-navy, #223254);
  font-size: 0.95rem;
}

.testimonial-card__role {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.82rem;
  color: #6B7785;
}

.testimonials-empty {
  text-align: center;
  color: #6B7785;
  padding: 2rem 1rem;
}

.testimonials-cta {
  margin-top: 2.5rem;
  text-align: center;
}

/* --- Footer --- */

.site-footer {
  background: var(--amc-blue-navy);
  color: #E4EEF7;
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
}

.footer-inner {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 800px) {
  .footer-inner {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
}

.footer-col .logo,
.footer-col .logo-text {
  color: #fff;
}

.footer-col .logo {
  margin-bottom: 0.9rem;
}

.footer-col h3 {
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.9rem;
}

.site-footer a {
  color: #C9DCEC;
}

.site-footer a:hover {
  color: #fff;
}

.footer-col p {
  margin: 0.5rem 0 0;
  color: #C9DCEC;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-copy {
  text-align: center;
  font-size: 0.85rem;
  color: #9FBBD4;
  margin: 2.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Bouton retour en haut (jauge de scroll) --- */

.scroll-top-percentage {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  position: fixed;
  bottom: 40px;
  right: 50px;
  color: #fff;
  background: conic-gradient(var(--amc-blue-accent) 0%, var(--amc-blue-navy) 0%);
  border: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  transform: scale(0);
  visibility: hidden;
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
  z-index: 100;
  padding: 0;
}

.scroll-top-percentage.active {
  transform: scale(1);
  visibility: visible;
  opacity: 1;
}

#scroll-value {
  height: calc(100% - 6px);
  width: calc(100% - 6px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
}

#scroll-value .icon {
  width: 20px;
  height: 20px;
  stroke: #fff;
}

@media (max-width: 575px) {
  .scroll-top-percentage {
    right: 20px;
    bottom: 20px;
    height: 50px;
    width: 50px;
  }
}

/* --- Carrousel Services (accueil) --- */

.services-carousel-section {
  background: linear-gradient(160deg, var(--amc-blue-navy) 0%, var(--amc-blue-primary) 100%);
  overflow: hidden;
}

.services-carousel-section .eyebrow-badge.center {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

.services-carousel-section .eyebrow-badge .eyebrow {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
}

.services-carousel-title {
  color: #fff;
  text-align: center;
  max-width: 20ch;
  margin: 0 auto 3rem;
  font-size: clamp(1.9rem, 1.4rem + 2vw, 2.75rem);
}

.services-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1.25rem;
}

.services-carousel-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5rem 0 1.5rem;
  flex: 1;
  scrollbar-width: none;
}

.services-carousel-track::-webkit-scrollbar {
  display: none;
}

.service-slide {
  flex: 0 0 auto;
  width: min(375.75px, 78vw);
  scroll-snap-align: start;
}

@media (min-width: 700px) {
  .service-slide {
    width: 375.75px;
  }
}

.service-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 0.375rem;
}

.service-bg {
  position: relative;
  display: flex;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.375rem;
  padding-right: 100px;
  transition: transform 500ms linear, opacity 500ms linear;
}

.service-img {
  position: relative;
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 500px;
  border-radius: 0.375rem;
  background-size: cover;
  background-position: center;
}

@media (min-width: 768px) {
  .service-img {
    min-height: 560px;
  }
}

.service-link {
  position: absolute;
  bottom: 25px;
  right: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 48px;
  background-color: #fff;
  border-radius: 50px;
  color: var(--amc-blue-navy);
}

.service-link .icon {
  width: 20px;
  height: 20px;
}

.service-link:hover {
  text-decoration: none;
  background-color: var(--amc-blue-accent);
  color: #fff;
}

.service-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100%;
  padding-top: 20px;
  text-align: center;
}

.service-content > span {
  position: relative;
  display: block;
  font-size: 36px;
  line-height: 46px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 15px;
}

.service-content h3 {
  position: absolute;
  left: -34px;
  bottom: 130px;
  width: 100%;
  font-size: 22px;
  line-height: 32px;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.service-content h3 a {
  color: #fff;
}

.service-content h3 a:hover {
  text-decoration: none;
  color: var(--amc-blue-accent);
}

.service-icon {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

.service-icon .icon {
  width: 32px;
  height: 32px;
}

.service-overlay {
  position: absolute;
  inset: 0;
  border-radius: 0.375rem;
  overflow: hidden;
  z-index: 1;
  transform: rotateY(180deg);
  opacity: 0;
  transition: transform 500ms linear, opacity 500ms linear;
}

.service-overlay-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  padding: 20px 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-overlay-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34, 50, 84, 0.55) 0%, rgba(34, 50, 84, 0.92) 100%);
  z-index: 0;
}

.service-overlay-bg > * {
  position: relative;
  z-index: 1;
}

.service-overlay .num {
  display: block;
  text-align: right;
  font-size: 90px;
  line-height: 90px;
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
}

.service-overlay p {
  color: #fff;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.service-overlay h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.service-overlay h3 a {
  color: #fff;
}

.service-overlay h3 a:hover {
  text-decoration: none;
}

.btn-white-hover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  transition: all 0.3s ease;
}

.btn-white-hover:hover {
  background-color: #fff;
  color: var(--amc-blue-navy);
  text-decoration: none;
}

.service-item:hover .service-bg {
  transform: rotateY(180deg);
  opacity: 0;
}

.service-item:hover .service-overlay {
  transform: rotateY(0deg);
  opacity: 1;
}

.carousel-arrow {
  flex-shrink: 0;
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  cursor: pointer;
}

.carousel-arrow:hover {
  background: #fff;
  color: var(--amc-blue-navy);
}

.carousel-arrow .icon {
  width: 20px;
  height: 20px;
}

.carousel-arrow-prev .icon {
  transform: rotate(180deg);
}

@media (min-width: 900px) {
  .carousel-arrow {
    display: flex;
  }
}

.services-carousel-section .section-cta.center {
  text-align: center;
  margin-top: 2.5rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.carousel-dot.active {
  background: var(--amc-blue-accent);
  transform: scale(1.2);
}

/* --- Notre méthode (accueil) --- */

.process-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .process-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
  }
}

.process-content h2 {
  margin-bottom: 2rem;
  max-width: 22ch;
}

.process-steps {
  display: flex;
  flex-direction: column;
}

.process-item {
  position: relative;
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2.25rem;
}

.process-item:last-child {
  padding-bottom: 0;
}

.process-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 46px;
  bottom: 0;
  width: 1px;
  background: var(--amc-border);
}

.process-num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--amc-border);
  color: var(--amc-blue-navy);
  font-family: var(--font-heading);
  font-weight: 700;
  z-index: 1;
}

.process-num-active {
  background: var(--amc-blue-accent);
  border-color: var(--amc-blue-accent);
  color: #fff;
}

.process-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.process-item p {
  color: var(--amc-gray-muted);
  margin-bottom: 0;
}

.process-media {
  position: relative;
  width: 100%;
}

.process-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--amc-radius-lg);
  box-shadow: var(--amc-shadow-md);
}

.process-float-card .stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--amc-radius-sm);
  background: #EAF4FC;
  color: var(--amc-blue-primary);
  flex-shrink: 0;
}

.process-float-card {
  position: absolute;
  left: 1.5rem;
  bottom: -1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: var(--amc-radius-md);
  box-shadow: var(--amc-shadow-lg);
  max-width: calc(100% - 3rem);
}

.process-float-card strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--amc-blue-navy);
  font-size: 1rem;
}

.process-float-card span {
  display: block;
  font-size: 0.8rem;
  color: var(--amc-gray-muted);
}
