/* TED Charge — accueil (site propre) */

:root {
  --color-text: #0c0d0e;
  --color-muted: #767676;
  --color-border: #e5e5e5;
  --color-separator: #000000D4;
  --color-bg: #ffffff;
  --color-brand: #0032d1;
  --color-brand-hover: #0026a8;
  --layout-max: 1080px;
  --section-pad-y: clamp(3rem, 6vw, 5rem);
  --font-body: 'DM Sans', sans-serif;
  --font-nav: 'Jost', sans-serif;
  --font-title: var(--font-body);
  --font-heading: var(--font-body);
  --radius-pill: 999px;
  --radius-card: 14px;
  --radius-button: 8px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; border: none; background: none; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 2rem, var(--layout-max));
  margin-inline: auto;
}

.section-label {
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.section-rule {
  border: 0;
  border-top: 1px solid var(--color-separator);
  margin: 0 0 2.5rem;
}

.section-block {
  padding-block: var(--section-pad-y);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }

.display-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 1rem;
}

.lead {
  margin: 0 0 1.5rem;
  color: var(--color-muted);
  max-width: 36rem;
  font-family: var(--font-body);
}

.subtitle {
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  border: 1px solid var(--color-brand);
  border-radius: 66px;
  font-family: var(--font-nav);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  white-space: nowrap;
  color: var(--color-brand);
  background: transparent;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-outline:hover {
  background: var(--color-brand-hover);
  border-color: var(--color-brand-hover);
  color: #fff;
}

.btn-outline svg,
.btn-outline__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  transform: translateX(0);
  transition: transform 0.3s cubic-bezier(0.37, 0.08, 0.02, 0.93);
  will-change: transform;
}

.btn-outline:hover svg,
.btn-outline:hover .btn-outline__icon {
  transform: translateX(4px);
}

.btn-outline.btn-solid {
  background: var(--color-brand);
  color: #fff;
}

.btn-outline.btn-solid:hover {
  background: var(--color-brand-hover);
  border-color: var(--color-brand-hover);
  color: #fff;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-brand);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* Accueil — hero plein écran sous navbar transparente au chargement */
.page-home .hero {
  margin-top: calc(-1 * var(--header-h));
  min-height: 100vh;
}

.page-home:not(.is-scrolled) .site-header {
  background: transparent;
  border-bottom-color: transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.page-home.is-scrolled .site-header {
  background: var(--color-brand);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

html.is-menu-open .page-home .site-header {
  background: var(--color-brand);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-menu ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  display: block;
  padding: 0.45rem 0.85rem;
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.nav-menu a.is-active,
.nav-menu a[aria-current="page"] {
  background: #fff;
  color: var(--color-brand);
  border-radius: 6px;
}

.search-toggle {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #fff;
}

.search-toggle svg { width: 18px; height: 18px; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  transition: transform 0.2s;
}

.search-panel {
  display: none;
  border-top: 1px solid var(--color-border);
  padding: 1rem 0 1.25rem;
}

.search-panel.is-open { display: block; }

.search-panel form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
}

.search-panel input[type="search"] {
  flex: 1;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font: inherit;
}

.search-panel button {
  padding: 0.65rem 1rem;
  background: var(--color-brand);
  color: #fff;
  border-radius: 8px;
  transition: background 0.2s;
}

.search-panel button:hover {
  background: var(--color-brand-hover);
}

html.is-menu-open { overflow: hidden; }

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  color: #fff;
  overflow: hidden;
}

.hero__slides {
  position: relative;
  height: 100%;
  min-height: inherit;
  --hero-dir: 1;
  --hero-duration: 600ms;
}

.hero__slide {
  position: absolute;
  inset: 0;
  visibility: hidden;
  z-index: 0;
  transform: translate3d(100%, 0, 0);
  will-change: transform;
}

.hero__slide.is-active {
  visibility: visible;
  z-index: 1;
  transform: translate3d(0, 0, 0);
}

.hero__slide.is-active.is-leaving {
  z-index: 2;
  transform: translate3d(calc(var(--hero-dir) * -100%), 0, 0);
  transition: transform var(--hero-duration) ease;
}

.hero__slide.is-pre-enter {
  visibility: visible;
  z-index: 1;
  transform: translate3d(calc(var(--hero-dir) * 100%), 0, 0);
  transition: none;
}

.hero__slide.is-entering {
  visibility: visible;
  z-index: 1;
  transform: translate3d(0, 0, 0);
  transition: transform var(--hero-duration) ease;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.hero__slide.is-active .hero__bg {
  animation: heroKenBurns 8s ease-out forwards;
}

@keyframes heroKenBurns {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: inherit;
  padding: calc(var(--header-h) + 2rem) 0 5rem;
  max-width: 640px;
}

.page-home .hero__content {
  align-items: center;
  text-align: center;
  max-width: min(720px, 100%);
  margin-inline: auto;
  width: 100%;
  justify-content: center;
  padding-top: calc(var(--header-h) + clamp(4rem, 11vh, 7.5rem));
  padding-bottom: clamp(4.5rem, 11vh, 7rem);
}

.page-home .hero__excerpt {
  margin-inline: auto;
}

.hero__title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 1.25rem;
}

.hero__excerpt {
  margin: 1.25rem 0 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.92);
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
  padding: 0.35rem 0.35rem 0.35rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-pill);
  color: #fff;
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 600;
}

.hero__btn-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: var(--color-text);
  display: grid;
  place-items: center;
}

.hero__social {
  position: absolute;
  left: max(1rem, calc((100vw - var(--layout-max)) / 2));
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero__btn-icon svg {
  width: 20px;
  height: 20px;
}

.hero__social-link {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: #fff;
  transition: background 0.2s, border-color 0.2s;
}

.hero__social-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.85);
}

.hero__social-icon {
  width: 14px;
  height: 14px;
}

.hero__scroll {
  position: absolute;
  right: max(1rem, calc((100vw - var(--layout-max)) / 2));
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
}

.hero__scroll-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  animation: scrollHint 2s ease-in-out infinite;
}

.hero__scroll-icon svg {
  width: 18px;
  height: 18px;
}

.hero__scroll-text {
  font-family: var(--font-nav);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero__controls {
  position: absolute;
  left: max(1rem, calc((100vw - var(--layout-max)) / 2));
  bottom: 2rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero__dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #fff;
  padding: 0;
  cursor: pointer;
  opacity: 0.85;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}

.hero__dot.is-active {
  width: 18px;
  height: 18px;
  background: transparent;
  opacity: 1;
}

.hero__dot.is-active::before {
  box-sizing: border-box;
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px rgba(12, 13, 14, 0.75);
}

.hero__arrows {
  position: absolute;
  right: max(1rem, calc((100vw - var(--layout-max)) / 2));
  bottom: 2rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  overflow: visible;
}

.hero__arrow {
  position: relative;
  flex: none;
  width: 36px;
  height: 36px;
  border: 1px solid #fff;
  border-radius: 12px;
  background: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease, border-color 0.3s ease,
    color 0.3s ease, border-radius 0.3s ease, transform 0.3s ease;
}

.hero__arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 0;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%);
  transition: width 0.4s ease, left 0.4s ease, right 0.4s ease;
  pointer-events: none;
}

.hero__arrow--prev::before { right: 0; }
.hero__arrow--next::before { left: 0; }

.hero__arrow-icon {
  position: relative;
  z-index: 1;
  width: 9px;
  height: auto;
  color: inherit;
  transition: transform 0.4s ease-out, color 0.3s ease;
}

.hero__arrow--prev:hover,
.hero__arrow--next:hover {
  width: 60px;
  background: #fff;
  border-color: #fff;
  color: #0c0d0e;
}

.hero__arrow--prev:hover {
  border-radius: 60px 20px 20px 60px;
}

.hero__arrow--prev:hover .hero__arrow-icon {
  transform: translateX(-9px);
}

.hero__arrow--prev:hover::before {
  width: 30px;
  right: 10px;
}

.hero__arrow--next:hover {
  transform: translateX(24px);
  border-radius: 20px 60px 60px 20px;
}

.hero__arrow--next:hover .hero__arrow-icon {
  transform: translateX(9px);
}

.hero__arrow--next:hover::before {
  width: 30px;
  left: 10px;
}

.hero__slide.is-active .hero__content.is-entering > * {
  animation: heroContentIn 0.85s ease forwards;
  opacity: 0;
}

.hero__slide.is-active .hero__content.is-entering .hero__title { animation-delay: 0.05s; }
.hero__slide.is-active .hero__content.is-entering .hero__btn { animation-delay: 0.15s; }
.hero__slide.is-active .hero__content.is-entering .hero__excerpt { animation-delay: 0.25s; }

/* About */
.about-stack {
  position: relative;
  --stack-offset: 25px;
}

.about-stack__inner {
  position: relative;
}

.about-stack__fake {
  position: relative;
  display: inline-block;
  width: min(100%, 340px);
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.about-stack__fake img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.about-stack__card {
  position: absolute;
  top: 0;
  left: 0;
  width: min(100%, 340px);
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transform-origin: left center;
  will-change: transform;
}

.about-stack__card img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }

.about-stack__card:not(.is-out):not(.is-in) {
  transition: top 0.6s cubic-bezier(.25, .46, .45, .94),
    left 0.6s cubic-bezier(.25, .46, .45, .94),
    opacity 0.6s cubic-bezier(.25, .46, .45, .94),
    filter 0.6s cubic-bezier(.25, .46, .45, .94),
    z-index 0s;
}

.about-stack__card.stack-pos-1:not(.is-out):not(.is-in) { transition-delay: 0.1s; }
.about-stack__card.stack-pos-2:not(.is-out):not(.is-in) { transition-delay: 0.15s; }

.about-stack__card.stack-pos-0 {
  z-index: 3;
  opacity: 1;
  filter: none;
}

.about-stack__card.stack-pos-1 {
  top: var(--stack-offset);
  left: var(--stack-offset);
  z-index: 2;
  opacity: 0.55;
  filter: saturate(0.8);
}

.about-stack__card.stack-pos-2 {
  top: calc(var(--stack-offset) * 2);
  left: calc(var(--stack-offset) * 2);
  z-index: 1;
  opacity: 0.35;
  filter: saturate(0.8);
}

.about-stack__card.is-out {
  z-index: 4;
  transform: translateX(-10%);
  transition: transform 0.35s ease;
}

.about-stack__card.is-in {
  transform: translateX(-10%);
  transition: transform 0.35s ease;
}

.accordion {
  border: 1px solid #212121;
  border-radius: 0;
  overflow: hidden;
}

.accordion__item + .accordion__item { border-top: 1px solid var(--color-separator); }

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 18px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  background: #fff;
  transition: background 0.2s ease-out;
}

.accordion__icon {
  position: relative;
  width: 20px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-text);
}

.accordion__icon svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.2s ease-out;
}

.accordion__icon-minus {
  opacity: 0;
}

.accordion__item.is-open .accordion__icon-plus {
  opacity: 0;
}

.accordion__item.is-open .accordion__icon-minus {
  opacity: 1;
}

.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.35s ease;
  color: var(--color-muted);
  background: #fff;
}

.accordion__item.is-open .accordion__panel {
  grid-template-rows: 1fr;
}

.accordion__panel-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0 26px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.55;
}

.accordion__item.is-open .accordion__panel-inner {
  padding: 0 26px 16px;
}

.accordion__panel-inner p + p {
  margin-top: 0.75rem;
}

.accordion__subtitle {
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.accordion__list {
  margin: 0;
  padding-left: 1.25rem;
}

.accordion__list li + li {
  margin-top: 0.35rem;
}

.product-item__icon .product-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.product-item__icon path {
  fill: currentColor;
}

/* Products */
/* .product-list { border-top: 1px solid var(--color-border); } */

.product-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--color-border);
}

.product-item__icon {
  width: 56px;
  height: 56px;
  color: var(--color-text);
}

.product-item__icon svg,
.product-item__icon img { width: 100%; height: 100%; }

.product-item h3 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  margin: 0 0 0.35rem;
}

.product-item p {
  margin: 0;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.product-item:first-child {
  border-top: none;
}

.product-item:last-child {
  border-bottom: none;
}

.border-top-0 {
  border-top: none;
}

/* Gallery */
.gallery-strip {
  overflow: hidden;
}

.gallery-strip__slider:not(.swiper-initialized) .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 991px) {
  .gallery-strip__slider:not(.swiper-initialized) .swiper-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-strip__slider:not(.swiper-initialized) .swiper-wrapper {
    grid-template-columns: 1fr;
  }
}

.gallery-strip__link {
  display: block;
  color: inherit;
  cursor: zoom-in;
  text-decoration: none;
}

.gallery-strip__link:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 2px;
}

.gallery-strip__link:hover img {
  opacity: 0.92;
}

.gallery-strip__slide img {
  width: 100%;
  height: clamp(220px, 28vw, 360px);
  object-fit: cover;
  display: block;
  transition: opacity 0.2s ease;
}

/* Page produits */
.page-hero {
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  min-height: clamp(320px, 42vh, 480px);
  position: relative;
  text-align: center;
}

.page-hero::before {
  background: linear-gradient(180deg, rgba(12, 13, 14, 0.45) 0%, rgba(12, 13, 14, 0.55) 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 0;
}

.page-hero .display-title {
  color: #fff;
  margin-bottom: 1rem;
}

.page-hero__content {
  padding: 4rem 0;
  position: relative;
  z-index: 1;
}

.page-hero__subtitle {
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-nav);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 720px;
}

#kiosque-premium,
#kiosque-standard,
#kiosque-basique,
#cabine {
  scroll-margin-top: calc(var(--header-h) + 56px);
}

.products-nav {
  background: #f5f5f5;
  border-bottom: 1px solid rgba(12, 13, 14, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: center;
  padding: 1rem 1.5rem;
  position: sticky;
  top: var(--header-h);
  z-index: 50;
}

.products-nav a {
  color: var(--color-text);
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.products-nav a:hover {
  color: var(--color-brand);
}

.products-page {
  margin: 0 auto;
  max-width: var(--layout-max);
  padding: 0 0 2rem;
}

.products-section {
  padding-top: var(--section-pad-y);
}

.products-section--alt {
  background: rgba(12, 13, 14, 0.03);
  border-radius: var(--radius-card);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 4vw, 2.5rem);
}

.products-section--intro {
  padding-bottom: 0;
  text-align: center;
}

.products-section--intro .lead {
  margin-inline: auto;
}

.products-section--intro + .products-section {
  padding-top: 2.5rem;
}

.products-section__header {
  margin-bottom: 2.5rem;
}

.products-section__header--center {
  text-align: center;
}

.products-section__header--center .section-rule {
  margin-inline: auto;
  max-width: 100%;
}

.products-subtitle {
  color: var(--color-text);
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 1.5rem 0 0.75rem;
  text-transform: uppercase;
}

.products-subtitle:first-child {
  margin-top: 0;
}

.products-features {
  color: var(--color-muted);
  line-height: 1.65;
  margin: 0;
  padding-left: 1.25rem;
}

.products-features li + li {
  margin-top: 0.35rem;
}

.products-note {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 1.25rem 0 0;
}

.products-badge {
  background: rgba(0, 50, 209, 0.08);
  border-radius: var(--radius-pill);
  color: var(--color-brand);
  display: inline-block;
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.75rem;
  text-transform: uppercase;
}

.products-section__visual {
  display: flex;
  justify-content: center;
}

.products-section__image {
  border: 1px solid rgba(12, 13, 14, 0.1);
  border-radius: var(--radius-card);
  display: block;
  height: 380px;
  max-height: 380px;
  object-fit: cover;
  width: 100%;
}

.products-section__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.25rem;
}

.products-section--tarifs {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.tarifs-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 2.5rem;
}

.tarifs-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(12, 13, 14, 0.1);
  border-radius: var(--radius-card);
  padding: 1.25rem 1.5rem;
}

.tarifs-card--wide {
  grid-column: 1 / -1;
}

.tarifs-card__title {
  color: var(--color-text);
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
}

.tarifs-card__price {
  color: var(--color-text);
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}

.tarifs-card__price strong {
  font-size: 1.2rem;
}

.tarifs-card__desc {
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.tarifs-products-box {
  border: 1px solid rgba(12, 13, 14, 0.1);
  border-radius: var(--radius-card);
  margin-bottom: 2rem;
  overflow-x: auto;
  padding: 1.5rem;
}

.tarifs-products__title {
  color: var(--color-text);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.tarifs-products {
  border-collapse: collapse;
  min-width: 280px;
  width: 100%;
}

.tarifs-products th,
.tarifs-products td {
  border-bottom: 1px solid var(--color-border);
  padding: 0.65rem 0.5rem;
  text-align: left;
}

.tarifs-products th {
  color: var(--color-text);
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tarifs-products td {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.tarifs-promo {
  color: var(--color-brand);
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Page partenariat */
#opportunites,
#candidature {
  scroll-margin-top: calc(var(--header-h) + 56px);
}

.partners-page {
  margin: 0 auto;
  max-width: var(--layout-max);
  padding: 0 clamp(1.25rem, 4vw, 2.5rem) 4rem;
}

.partners-section {
  padding-top: var(--section-pad-y);
}

.partners-section--alt {
  background: rgba(12, 13, 14, 0.03);
  border-radius: var(--radius-card);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.25rem, 4vw, 2rem);
}

.partners-section__header {
  margin-bottom: 2rem;
}

.partners-profiles,
.partners-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
}

.partners-profiles {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
}

.partners-profiles li {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(12, 13, 14, 0.08);
  border-radius: var(--radius-button);
  color: var(--color-text);
  font-size: 0.98rem;
  line-height: 1.55;
  padding: 1.25rem 1.35rem;
}

.partners-profiles li strong {
  color: #0c0d0e;
  display: block;
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.partners-benefits {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
}

.partners-benefits li {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.5;
  padding-left: 1.35rem;
  position: relative;
}

.partners-benefits li::before {
  background: var(--color-brand);
  border-radius: 50%;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  top: 0.55em;
  width: 6px;
}

.partners-page .partners-grid {
  align-items: start;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.partners-aside__title {
  color: #0c0d0e;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.partners-aside__lead,
.partners-aside__note {
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}

.partners-aside__note {
  font-size: 0.95rem;
  opacity: 0.85;
}

.partners-aside__actions {
  margin-top: 1.5rem;
}

.partners-form__field {
  margin-bottom: 1.25rem;
}

.partners-form__label {
  color: #0c0d0e;
  display: block;
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
}

.partners-form__required {
  color: var(--color-brand);
}

.partners-form__input,
.contact-form__input {
  background: #fff;
  border: 1px solid rgba(12, 13, 14, 0.15);
  border-radius: var(--radius-button);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  padding: 0.75rem 1rem;
  width: 100%;
}

.partners-form__input:focus,
.contact-form__input:focus {
  border-color: var(--color-brand);
  outline: 2px solid rgba(0, 50, 209, 0.2);
  outline-offset: 0;
}

.partners-form__textarea,
.contact-form__textarea {
  min-height: 120px;
  resize: vertical;
}

.partners-form__actions {
  margin-top: 1.5rem;
}

.partners-form__submit,
.contact-form__submit {
  background: var(--color-brand);
  border: 1px solid var(--color-brand);
  border-radius: var(--radius-button);
  color: #fff;
  cursor: pointer;
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.5rem;
  text-transform: uppercase;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.partners-form__submit:hover,
.contact-form__submit:hover {
  background: var(--color-brand-hover);
  border-color: var(--color-brand-hover);
}

.form-success {
  background: rgba(0, 50, 209, 0.1);
  border-radius: var(--radius-button);
  color: var(--color-brand);
  display: none;
  font-family: var(--font-nav);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  padding: 1rem 1.25rem;
}

.form-success.is-visible {
  display: block;
}

/* Page actualités */
.news-page {
  margin: 0 auto;
  max-width: var(--layout-max);
  padding: var(--section-pad-y) clamp(1.25rem, 4vw, 2.5rem) 4rem;
}

.news-page__header {
  margin-bottom: 2.5rem;
}

.news-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-card {
  border: 1px solid rgba(12, 13, 14, 0.08);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
  border-color: rgba(0, 50, 209, 0.25);
  box-shadow: 0 8px 24px rgba(12, 13, 14, 0.08);
}

.news-card__link {
  color: inherit;
  display: block;
  text-decoration: none;
}

.news-card__image {
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  width: 100%;
}

.news-card__body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.news-card__meta {
  color: var(--color-brand);
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
}

.news-card__title {
  color: #0c0d0e;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.65rem;
}

.news-card__excerpt {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

/* Page contact */
.contact-page {
  margin: 0 auto;
  max-width: var(--layout-max);
  padding: 0 clamp(1.25rem, 4vw, 2.5rem) 4rem;
}

.contact-section {
  padding-top: var(--section-pad-y);
}

.contact-page .contact-grid {
  align-items: start;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.contact-aside__title {
  color: #0c0d0e;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 1rem;
}

.contact-aside__lead,
.contact-aside__detail,
.contact-aside__note {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}

.contact-aside__label {
  color: #0c0d0e;
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 1.5rem 0 0.35rem;
  text-transform: uppercase;
}

.contact-aside__label:first-of-type {
  margin-top: 0;
}

.contact-aside__detail a {
  color: var(--color-brand);
  text-decoration: none;
}

.contact-aside__detail a:hover {
  color: var(--color-brand-hover);
}

.contact-aside__note {
  font-size: 0.95rem;
  opacity: 0.85;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.contact-info__item {
  align-items: flex-start;
  display: flex;
  gap: 0.85rem;
}

.contact-info__icon {
  color: var(--color-brand);
  display: grid;
  flex-shrink: 0;
  height: 2.25rem;
  place-items: center;
  width: 2.25rem;
}

.contact-info__icon svg {
  display: block;
  height: 1.35rem;
  width: 1.35rem;
}

.contact-info__body {
  flex: 1;
  min-width: 0;
}

.contact-info__body .contact-aside__label {
  display: block;
  margin: 0 0 0.35rem;
}

.contact-info__body .contact-aside__detail {
  margin: 0;
}

.contact-map {
  border: 1px solid rgba(12, 13, 14, 0.08);
  border-radius: var(--radius-card);
  margin-top: 3rem;
  overflow: hidden;
}

.contact-map__embed {
  border: 0;
  display: block;
  width: 100%;
}

.contact-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.contact-tabs__tab {
  appearance: none;
  background: transparent;
  border: 1px solid rgba(12, 13, 14, 0.15);
  border-radius: var(--radius-button);
  color: #0c0d0e;
  cursor: pointer;
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.65em 1.25em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.contact-tabs__tab.is-active {
  background: var(--color-brand);
  border-color: var(--color-brand);
  color: #fff;
}

.contact-tabs__panel {
  display: none;
}

.contact-tabs__panel.is-active {
  display: block;
}

.contact-form__field {
  margin-bottom: 1.25rem;
}

.contact-form__label {
  color: #0c0d0e;
  display: block;
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
}

.contact-form__required {
  color: var(--color-brand);
}

.contact-form__actions {
  margin-top: 1.5rem;
}

/* Partners homepage */
#partners .partners-grid {
  grid-template-columns: 1fr;
  max-width: 280px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.partner-card {
  display: grid;
  place-items: center;
  min-height: 88px;
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

.partner-card__logo {
  display: block;
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Locations */
.locations-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.locations-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.location-card {
  width: 100%;
  text-align: left;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: #fff;
  transition: background 0.2s;
}

.location-card.is-active,
.location-card:hover {
  background: #f5f5f5;
}

.location-card strong {
  display: block;
  font-family: var(--font-title);
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.location-card span {
  display: block;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--color-muted);
}

.locations-map {
  height: min(420px, 60vh);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.locations-map__embed {
  border: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: min(420px, 60vh);
}

.deployment-targets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.deployment-targets li {
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: #fff;
  font-family: var(--font-title);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
}

/* Roadmap timeline */
.roadmap-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  max-width: 720px;
}

.roadmap-timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 0.75rem;
  bottom: 0.75rem;
  width: 2px;
  background: var(--color-border);
}

.roadmap-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 1.25rem;
  padding-bottom: 1.75rem;
}

.roadmap-timeline__item:last-child {
  padding-bottom: 0;
}

.roadmap-timeline__marker {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-top: 0.85rem;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--color-brand);
  box-shadow: 0 0 0 4px var(--color-bg);
  color: var(--color-brand);
}

.roadmap-timeline__marker-icon {
  width: 18px;
  height: 18px;
}

.roadmap-timeline__item--current .roadmap-timeline__marker {
  background: var(--color-brand);
  border-color: var(--color-brand);
  box-shadow: 0 0 0 4px var(--color-bg), 0 0 0 8px rgba(0, 50, 209, 0.15);
  color: #fff;
}

.roadmap-timeline__content {
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #fff;
}

.roadmap-timeline__item--current .roadmap-timeline__content {
  border-color: rgba(0, 50, 209, 0.25);
  background: rgba(0, 50, 209, 0.06);
}

.roadmap-timeline__year {
  margin: 0 0 0.75rem;
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-brand);
}

.roadmap-timeline__events {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.roadmap-timeline__events li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--color-text);
}

.roadmap-timeline__event-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 0.15em;
  color: var(--color-brand);
}

@media (max-width: 767px) {
  .roadmap-timeline {
    max-width: none;
  }

  .roadmap-timeline::before {
    left: 17px;
  }

  .roadmap-timeline__item {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 1rem;
    padding-bottom: 1.5rem;
  }

  .roadmap-timeline__marker {
    width: 36px;
    height: 36px;
  }

  .roadmap-timeline__marker-icon {
    width: 16px;
    height: 16px;
  }

  .roadmap-timeline__content {
    padding: 1rem 1.1rem;
  }

  .roadmap-timeline__year {
    font-size: 1.25rem;
  }
}

/* Contact CTA */
.contact-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
}

.contact-cta__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.contact-cta__arrow {
  width: 48px;
  height: 48px;
  color: var(--color-muted);
}

.contact-cta__arrow svg {
  width: 100%;
  height: 100%;
}

/* Scroll animations */
.ted-animate {
  opacity: 0;
  visibility: hidden;
}

.ted-animate.is-visible {
  visibility: visible;
}

.ted-animate.is-visible.fade-in {
  animation: fadeIn 1s ease forwards;
  animation-delay: var(--ted-delay, 0s);
}

.ted-animate.is-visible.fade-in-up {
  animation: fadeInUp 1.25s ease forwards;
  animation-delay: var(--ted-delay, 0s);
}

.ted-animate.is-visible.flash {
  animation: flash 2s ease infinite;
}

.ted-animate--slow.is-visible.fade-in,
.ted-animate--slow.is-visible.fade-in-up {
  animation-duration: 1.25s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes flash {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0.35; }
}

@keyframes scrollHint {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Footer */
.site-footer {
  padding: 0;
  background: var(--color-bg);
}

.site-footer__shell {
  width: 100%;
  max-width: 100%;
  background-color: #0a0a0a;
  background-image: url('../images/footer-background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: clamp(1.25rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2rem) 0 0;
  padding-block: clamp(2.5rem, 6vw, 4rem);
  color: #fff;
  overflow: hidden;
}

.site-footer__inner {
  width: 100%;
  max-width: none;
  padding-inline: clamp(1rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 2.75rem);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(12rem, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.site-footer__brand-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 18rem;
}

.site-footer__tagline {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__logo img {
  height: clamp(4rem, 6vw, 4.75rem);
  width: auto;
  display: block;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.site-footer__social-link:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.site-footer__social-icon {
  width: 1rem;
  height: 1rem;
}

.site-footer__group-label {
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer__group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.site-footer__group a,
.site-footer__group span {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer__group a {
  transition: color 0.2s;
}

.site-footer__group a:hover {
  color: #fff;
}

.site-footer__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.site-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer__contact-item a {
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s;
}

.site-footer__contact-item a:hover {
  color: #fff;
}

.site-footer__contact-icon {
  flex-shrink: 0;
  display: inline-flex;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__contact-icon svg {
  width: 100%;
  height: 100%;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: clamp(1.25rem, 3vw, 1.75rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__copy {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
}

.site-footer__legal a {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.site-footer__legal a:hover {
  color: #fff;
}

@media (max-width: 1199px) {
  .site-footer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer__brand-col {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 767px) {
  .site-footer__shell {
    padding-block: 2rem;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
  }

  .site-footer__brand-col {
    grid-column: 1 / -1;
  }

  .site-footer__contact {
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 479px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .hero__btn,
  .products-section__actions .btn-outline,
  .contact-cta .btn-outline {
    white-space: normal;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .menu-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: #fff;
    padding: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow: auto;
  }

  html.is-menu-open .nav-menu { transform: translateX(0); }

  .nav-menu ul { flex-direction: column; gap: 0.5rem; }

  .nav-menu a { color: var(--color-text); }

  .nav-menu a.is-active,
  .nav-menu a[aria-current="page"] {
    background: var(--color-brand);
    color: #fff;
    border-radius: 6px;
  }

  .hero__social,
  .hero__scroll { display: none; }

  .two-col,
  .locations-layout,
  .contact-cta {
    grid-template-columns: 1fr;
  }

  .partners-grid { grid-template-columns: repeat(2, 1fr); }

  #partners .partners-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
  }

  .products-nav {
    flex-wrap: nowrap;
    gap: 0.5rem 1.25rem;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-inline: 1rem;
    scrollbar-width: none;
  }

  .products-nav::-webkit-scrollbar {
    display: none;
  }

  .products-nav a {
    flex-shrink: 0;
  }

  .about-stack { margin-bottom: 2rem; }

  .products-section__image {
    height: auto;
    max-height: none;
  }

  .tarifs-grid { grid-template-columns: 1fr; }

  .partners-profiles,
  .partners-benefits,
  .partners-page .partners-grid,
  .contact-page .contact-grid {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partners-section--alt {
    padding: 2rem 1.25rem;
  }
}

@media (max-width: 600px) {
  .partners-grid { grid-template-columns: 1fr; }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .hero__arrows { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .page-home:not(.is-scrolled) .site-header { transition: none; }
  .hero__slide {
    transform: none !important;
    transition: none !important;
    opacity: 0;
  }
  .hero__slide.is-active {
    opacity: 1;
  }
  .hero__slide.is-active .hero__bg { animation: none; }
  .hero__slide.is-active .hero__content.is-entering > * { animation: none; opacity: 1; }
  .hero__arrow--next:hover { transform: none; }
  .hero__arrow--prev:hover,
  .hero__arrow--next:hover { width: 36px; }
  .hero__arrow:hover::before { width: 0; }
  .hero__arrow:hover .hero__arrow-icon { transform: none; }
  .hero__scroll-icon { animation: none; }
  .about-stack__card { transition: none !important; }
  .accordion__panel { transition: none; }
  .ted-animate {
    opacity: 1;
    visibility: visible;
    animation: none !important;
  }
}
