*,
*::before,
*::after {
  box-sizing: border-box;
}
/* Création des variables couleurs et taille police */
:root {
  --main-color: #80b8f1;
  --secondary-color: #f26d34;
  --tertiary-color: #fac234;
  --fourth-color: #468157;
  --bg-color: #fdf3ea;
  --white-color: #ffffff;
  --black-color: #000000;
  --font-size-xxl: 40px;
  --font-size-xl: 35px;
  --font-size-lg: 23px;
  --font-size-md: 20px;
  --font-size-sm: 18px;
  --font-size-xs: 14px;
}

@font-face {
  font-family: "Plaza";
  src: url("/fonts/plaza-std-regular/Plaza Std Regular/Plaza Std Regular.otf");
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  margin: 0 auto;
  font-size: var(--font-size-sm);
  background-color: var(--bg-color);
  overflow-x: hidden;
}

h1,
.section-title {
  font-size: var(--font-size-lg);
  color: var(--secondary-color);
  font-weight: bold;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.6rem, 2.5vw, var(--font-size-xxl));
  color: var(--main-color);
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 1rem;
}

h3 {
  font-size: var(--font-size-md);
  font-weight: bold;
}

p {
  line-height: 1.6;
  margin-bottom: 16px;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.home-bg-decor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1; /* derrière tout le contenu */
}

/* Lignes diagonales */
.home-bg-decor::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    160deg,
    transparent,
    transparent 80px,
    rgba(128, 184, 241, 0.03) 80px,
    rgba(128, 184, 241, 0.03) 81px
  );
}

/* Carrés flottants */
.home-bg-decor span {
  position: absolute;
  border: 2px solid var(--black-color);
  opacity: 0.05;
}
.home-bg-decor span:nth-child(1) {
  width: 140px;
  height: 140px;
  top: 8%;
  right: 4%;
  background: var(--main-color);
  transform: rotate(15deg);
  animation: float1 9s ease-in-out infinite;
}
.home-bg-decor span:nth-child(2) {
  width: 70px;
  height: 70px;
  top: 55%;
  right: 8%;
  background: var(--secondary-color);
  transform: rotate(-20deg);
  animation: float2 7s ease-in-out infinite;
}
.home-bg-decor span:nth-child(3) {
  width: 90px;
  height: 90px;
  bottom: 12%;
  left: 3%;
  background: var(--tertiary-color);
  transform: rotate(30deg);
  animation: float1 11s ease-in-out infinite reverse;
}
.home-bg-decor span:nth-child(4) {
  width: 45px;
  height: 45px;
  top: 30%;
  left: 6%;
  background: var(--fourth-color);
  transform: rotate(-10deg);
  animation: float2 8s ease-in-out infinite;
}
.home-bg-decor span:nth-child(5) {
  width: 250px;
  height: 2px;
  top: 42%;
  left: -30px;
  background: var(--main-color);
  opacity: 0.04;
}
.home-bg-decor span:nth-child(6) {
  width: 2px;
  height: 180px;
  bottom: 25%;
  right: 18%;
  background: var(--secondary-color);
  opacity: 0.04;
}

/*
.......##..............##....##....###....##.....##.########.....###....########.....................##
......##...##...##.....###...##...##.##...##.....##.##.....##...##.##...##.....##.....##...##.......##.
.....##.....##.##......####..##..##...##..##.....##.##.....##..##...##..##.....##......##.##.......##..
....##....#########....##.##.##.##.....##.##.....##.########..##.....##.########.....#########....##...
...##.......##.##......##..####.#########..##...##..##.....##.#########.##...##........##.##.....##....
..##.......##...##.....##...###.##.....##...##.##...##.....##.##.....##.##....##......##...##...##.....
.##....................##....##.##.....##....###....########..##.....##.##.....##..............##......
*/
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 2rem;
  font-weight: 700;
  background-color: var(--bg-color);
}

nav img {
  height: 100px;
}

nav ul {
  list-style-type: none;
  display: flex;
  gap: 20px;
  cursor: pointer;
}

nav ul li {
  transition: transform 2s ease;
}

nav ul li:nth-child(1) a {
  color: var(--main-color);
}
nav ul li:nth-child(1) a:hover {
  color: var(--bg-color);
  background-color: var(--main-color);
}
nav ul li:nth-child(1):hover {
  transform: rotate(5deg);
}

nav ul li:nth-child(2) a {
  color: var(--fourth-color);
}

nav ul li:nth-child(2) a:hover {
  color: var(--bg-color);
  background-color: var(--fourth-color);
}
nav ul li:nth-child(2):hover {
  transform: rotate(-5deg);
}

nav ul li:nth-child(3) a {
  color: var(--tertiary-color);
}
nav ul li:nth-child(3) a:hover {
  color: var(--bg-color);
  background-color: var(--tertiary-color);
}
nav ul li:nth-child(3):hover {
  transform: rotate(5deg);
}

nav ul li:nth-child(4) a {
  color: var(--secondary-color);
}
nav ul li:nth-child(4) a:hover {
  color: var(--bg-color);
  background-color: var(--secondary-color);
}
nav ul li:nth-child(4):hover {
  transform: rotate(-5deg);
}

nav ul li a {
  text-decoration: none;
  font-size: var(--font-size-md);
  font-weight: bold;
  padding: 12px 24px;
  background-color: transparent;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-radius 0.3s ease;
}

.navBtn-mobile {
  display: none;
}

.burger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  top: 1rem;
  right: 1.5rem;
}

.burger span {
  position: relative;
  width: 35px;
  height: 35px;
}

.burger span span {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.burger span span:nth-child(1) {
  top: 0;
  left: 0;
  background-color: var(--main-color);
}

.burger span span:nth-child(2) {
  top: 0;
  right: 0;
  background-color: var(--fourth-color);
}

.burger span span:nth-child(3) {
  bottom: 0;
  left: 0;
  background-color: var(--tertiary-color);
}

.burger span span:nth-child(4) {
  bottom: 0;
  right: 0;
  background-color: var(--secondary-color);
}

.burger.active span span:nth-child(1),
.burger.active span span:nth-child(4) {
  opacity: 0;
}

.burger.active span span:nth-child(2),
.burger.active span span:nth-child(3) {
  top: 50%;
  left: 50%;
  width: 20px;
  height: 5px;
  border-radius: 2px;
  background: var(--main-color);
  transform-origin: center;
}

.burger.active span span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.burger.active span span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/*
.......##..............########..##.....##.########.########..#######..##....##....................##
......##...##...##.....##.....##.##.....##....##.......##....##.....##.###...##.....##...##.......##.
.....##.....##.##......##.....##.##.....##....##.......##....##.....##.####..##......##.##.......##..
....##....#########....########..##.....##....##.......##....##.....##.##.##.##....#########....##...
...##.......##.##......##.....##.##.....##....##.......##....##.....##.##..####......##.##.....##....
..##.......##...##.....##.....##.##.....##....##.......##....##.....##.##...###.....##...##...##.....
.##....................########...#######.....##.......##.....#######..##....##..............##......
*/

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  font-size: 16px;
  color: white;
  border: none;
  cursor: pointer;
}

.btn:hover .cta-arrow {
  transform: translateX(8px);
}

.btn-primary,
.btn-tertiary {
  background: var(--main-color);
}

.btn-primary:hover {
  background: var(--secondary-color);
}

.btn-secondary {
  background: var(--secondary-color);
}

.btn-secondary::before {
  content: "";
  position: absolute;
  border-radius: inherit;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  background: var(--main-color);
}
.btn-tertiary::before {
  content: "";
  position: absolute;
  border-radius: inherit;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  background: var(--tertiary-color);
}

.navBtn-desktop,
.formBtn {
  isolation: isolate;
}

.btn-secondary:hover::before,
.btn-tertiary:hover::before {
  top: 5px;
  left: 5px;
}

.btn a {
  color: inherit;
  text-decoration: none;
  display: block;
  text-decoration: none;
}

a.btn {
  text-decoration: none;
}

.btn-ghost {
  background: var(--tertiary-color);
  color: var(--black-color);
}
.btn-ghost::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--fourth-color);
  transition: all 0.3s ease;
}
.btn-ghost:hover::before {
  top: 5px;
  left: 5px;
}

.btn-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-reveal-arrow {
  gap: 0;
  overflow: hidden;
}

/* La flèche est cachée à gauche par défaut */
.btn-reveal-arrow::after {
  content: "→";
  position: absolute;
  left: 16px;
  opacity: 0;
  transform: translateX(-12px);
  transition: all 0.3s ease;
  font-size: 16px;
}

/* Le texte se décale à droite au hover */
.btn-reveal-arrow:hover {
  padding-left: 40px;
  transition: padding 0.3s ease;
}

/* La flèche apparaît */
.btn-reveal-arrow:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/*
.......##...............######..########..######..########.####..#######..##....##.......##......................##
......##...##...##.....##....##.##.......##....##....##.....##..##.....##.###...##.....####.......##...##.......##.
.....##.....##.##......##.......##.......##..........##.....##..##.....##.####..##.......##........##.##.......##..
....##....#########.....######..######...##..........##.....##..##.....##.##.##.##.......##......#########....##...
...##.......##.##............##.##.......##..........##.....##..##.....##.##..####.......##........##.##.....##....
..##.......##...##.....##....##.##.......##....##....##.....##..##.....##.##...###.......##.......##...##...##.....
.##.....................######..########..######.....##....####..#######..##....##.....######..............##......
*/

.sectionUn {
  padding: 0.5rem 0 2.5rem;
}

.sectionUn .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.title-tab {
  display: none;
}

.col-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 4rem;
}

.col-text h1 {
  font-size: var(--font-size-xs);
  letter-spacing: 0.15em;
  color: var(--secondary-color);
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.col-text h2 {
  font-size: clamp(2rem, 3.5vw, var(--font-size-xxl));
  color: var(--main-color);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.col-text h2 em {
  font-style: italic;
  color: var(--secondary-color);
}

.col-image {
  position: relative;
}

/* Cadre décalé autour de l'image — cohérent avec tes vignettes */
.col-image-inner {
  position: relative;
  border: 2px solid var(--black-color);
  isolation: isolate;
}

.col-image-inner img {
  width: 100%;
  display: block;
  /* plus de border-radius : cohérent avec le style "bordure noire" du site */
  border-radius: 0;
}

.col-text div a {
  margin-top: 1rem;
  display: inline-block;
}

.col-text {
  font-size: var(--font-size-sm);
  color: #555;
  line-height: 1.75;
  margin-bottom: 2rem;
}

/*
.......##...............######..########..######..########.####..#######..##....##....########..########.##.....##.##.....##....................##
......##...##...##.....##....##.##.......##....##....##.....##..##.....##.###...##....##.....##.##.......##.....##..##...##......##...##.......##.
.....##.....##.##......##.......##.......##..........##.....##..##.....##.####..##....##.....##.##.......##.....##...##.##........##.##.......##..
....##....#########.....######..######...##..........##.....##..##.....##.##.##.##....##.....##.######...##.....##....###.......#########....##...
...##.......##.##............##.##.......##..........##.....##..##.....##.##..####....##.....##.##.......##.....##...##.##........##.##.....##....
..##.......##...##.....##....##.##.......##....##....##.....##..##.....##.##...###....##.....##.##.......##.....##..##...##......##...##...##.....
.##.....................######..########..######.....##....####..#######..##....##....########..########..#######..##.....##..............##......
*/

.sectionDeux {
  padding: 1rem 0;
}

.sectionDeux .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sectionDeux .container .sectionDeux-text,
.sectionDeux .container h2 {
  text-align: center;
}

/*
.......##...............######..########.########..##.....##.####..######..########..######.....................##
......##...##...##.....##....##.##.......##.....##.##.....##..##..##....##.##.......##....##.....##...##.......##.
.....##.....##.##......##.......##.......##.....##.##.....##..##..##.......##.......##............##.##.......##..
....##....#########.....######..######...########..##.....##..##..##.......######....######.....#########....##...
...##.......##.##............##.##.......##...##....##...##...##..##.......##.............##......##.##.....##....
..##.......##...##.....##....##.##.......##....##....##.##....##..##....##.##.......##....##.....##...##...##.....
.##.....................######..########.##.....##....###....####..######..########..######...............##......
*/

.sectionDeux-header {
  text-align: center;
  margin-bottom: 3rem;
}

.sectionDeux-header h2 {
  font-size: clamp(1.8rem, 3vw, var(--font-size-xxl));
  margin-bottom: 2rem;
}

/* L'intro en bloc "encadré décalé" — cohérent avec le reste du site */
.sectionDeux-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 2px solid var(--black-color);
  position: relative;
  margin-bottom: 4rem;
  text-align: left;
}

.sectionDeux-intro::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 100%;
  height: 100%;
  background: var(--tertiary-color);
  border: 2px solid var(--black-color);
  z-index: -1;
  transition: all 0.3s ease;
}
.sectionDeux-intro:hover::before {
  top: -1px;
  left: -1px;
}

.intro-col {
  padding: 2rem 2.5rem;
  background: var(--white-color);
}

.intro-col:first-child {
  border-right: 2px solid var(--black-color);
}

.intro-col p {
  font-size: var(--font-size-xs);
  color: #555;
  line-height: 1.8;
  margin: 0;
}

.intro-col p strong {
  color: var(--black-color);
}

/* Divider entre intro et grille */
.sectionDeux-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.sectionDeux-divider span {
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary-color);
  white-space: nowrap;
}

.sectionDeux-divider::before,
.sectionDeux-divider::after {
  content: "";
  flex: 1;
  height: 2px;
  background: var(--black-color);
}

/* ── GRILLE DE SERVICES ── */
/* On garde tes super-box mais on ajuste la grille pour qu'elle
       soit fluide et s'adapte à la largeur de la page */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  justify-items: center;
}

/* ── SUPER-BOX (repris tel quel de ta charte, juste ajusté en taille fluide) ── */
.super-box {
  width: 100%;
  max-width: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}

.container-box {
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.box {
  position: absolute;
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 3px;
  overflow: hidden;
  transition: box-shadow 1s ease;
  cursor: pointer;
  /* Couleur de fond par défaut — chaque card tourne dans ta palette */
  background: var(--white-color);
  border: 2px solid var(--black-color);
}

/* Couleurs cycliques sur les cards — reprend ta palette 4 couleurs */
.super-box:nth-child(4n + 1) .box {
  background: rgba(128, 184, 241, 0.12);
}
.super-box:nth-child(4n + 2) .box {
  background: rgba(242, 109, 52, 0.1);
}
.super-box:nth-child(4n + 3) .box {
  background: rgba(250, 194, 52, 0.12);
}
.super-box:nth-child(4n + 4) .box {
  background: rgba(70, 129, 87, 0.1);
}

.super-box:nth-child(4n + 1):hover .box {
  box-shadow: 4px 4px 0 var(--main-color);
}
.super-box:nth-child(4n + 2):hover .box {
  box-shadow: 4px 4px 0 var(--secondary-color);
}
.super-box:nth-child(4n + 3):hover .box {
  box-shadow: 4px 4px 0 var(--tertiary-color);
}
.super-box:nth-child(4n + 4):hover .box {
  box-shadow: 4px 4px 0 var(--fourth-color);
}

.icon {
  position: relative;
  margin-top: 8px;
  transition: transform 0.6s ease 0.32s;
  will-change: transform;
}

.icon_bg {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(225, 227, 232, 0.18);
  box-shadow: 0 3px 4px 0 rgba(44, 71, 146, 0.25);
  background-color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.6s ease 0.32s;
  will-change: transform;
}

.text {
  position: relative;
  top: -50px;
  width: 100%;
  max-width: 200px;
  text-align: center;
  transition: all 0.4s ease 0.32s;
}

.title {
  font-size: var(--font-size-xs);
  color: var(--main-color);
  font-weight: bold;
}

.box::after {
  content: attr(data-description);
  position: absolute;
  width: 176px;
  top: 100px;
  opacity: 0;
  font-size: 12px;
  color: #5d6494;
  line-height: 18px;
  transition: opacity 0.3s ease 0.32s;
  text-align: center;
  padding: 0 4px;
}

/* Hover */
.super-box:hover .icon_bg {
  transform: translateY(-32px) scale(6);
}
.super-box:hover .icon {
  transform: translateY(-40px) scale(1.4);
}
.super-box:hover .text {
  opacity: 0;
  transform: translateY(-4px) scale(0.8);
}
.super-box:hover .box::after {
  opacity: 1;
}

/*
.......##..............########..########...#######..##....##.########....................##
......##...##...##.....##.....##.##.....##.##.....##.###...##.##...........##...##.......##.
.....##.....##.##......##.....##.##.....##.##.....##.####..##.##............##.##.......##..
....##....#########....##.....##.########..##.....##.##.##.##.######......#########....##...
...##.......##.##......##.....##.##...##...##.....##.##..####.##............##.##.....##....
..##.......##...##.....##.....##.##....##..##.....##.##...###.##...........##...##...##.....
.##....................########..##.....##..#######..##....##.########..............##......
*/

.sectionDrone {
  padding: 1rem 0;
}

.drone-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border: 2px solid var(--black-color);
  position: relative;
}

/* ── CÔTÉ TEXTE ── */
.drone-text {
  padding: 2.5rem 3rem;
  background-color: var(--bg-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 2px solid var(--black-color);
}

.drone-text .section-title,
.container .section-title,
.cta-text .section-title {
  display: block;
  font-size: var(--font-size-xs);
  text-align: left;
  font-weight: bold;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.drone-text h2 em {
  font-style: italic;
  font-weight: 900;
  color: var(--secondary-color);
}

.drone-text p {
  font-size: var(--font-size-xs);
  color: #555;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* Tags — même esprit que .tag du portfolio */
.drone-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.drone-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1.5px solid var(--black-color);
  color: var(--black-color);
  background: transparent;
}

.drone-hero {
  position: relative;
  min-height: 520px;
  background-image: url("/img/drone1.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.drone-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    transparent 100%
  );
}

.drone-hero .container {
  position: relative;
  z-index: 1;
  padding-bottom: 3.5rem;
  padding-top: 3.5rem;
}

.drone-hero .section-title {
  color: var(--tertiary-color);
}

.drone-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white-color);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-transform: none;
}

.drone-hero h1 em {
  font-style: italic;
  color: var(--main-color);
}

.drone-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--font-size-xs);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white-color);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
}

.drone-why {
  padding: 5rem 0;
}

.drone-why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 2px solid var(--black-color);
  position: relative;
}

.drone-why-inner::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  background: var(--tertiary-color);
  border: 2px solid var(--black-color);
  z-index: -1;
  transition: all 0.3s ease;
}
.drone-why-inner:hover::before {
  top: -1px;
  left: -1px;
}

.why-text {
  padding: 3rem;
  background: var(--bg-color);
  border-right: 2px solid var(--black-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-text h2 {
  font-size: clamp(1.6rem, 2.5vw, var(--font-size-xxl));
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.why-text h2 em {
  font-style: italic;
  color: var(--secondary-color);
}

.why-text p {
  font-size: var(--font-size-xs);
  color: #555;
}

/* Stats façon meta-cell */
.why-stats {
  display: flex;
  border-top: 2px solid var(--black-color);
  margin-top: 2rem;
}

.why-stat {
  flex: 1;
  padding: 1rem 1.25rem;
  border-right: 2px solid var(--black-color);
}
.why-stat:last-child {
  border-right: none;
}

.stat-value {
  font-size: var(--font-size-xl);
  font-weight: 900;
  color: var(--main-color);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  margin-top: 0.3rem;
  line-height: 1.5;
}

/* Côté visuel — grille illustrative */
.why-visual {
  position: relative;
  min-height: 360px;
  background-image: url("/img/drone5.png");
  background-size: cover;
  background-position: center;
  border-right: 2px solid var(--black-color);
  overflow: hidden;
}

.drone-video-section {
  padding: 0 0 5rem;
}

.drone-video-block {
  position: relative;
  isolation: isolate;
}

/* Ombre décalée — cohérente avec le reste du site */
.drone-video-block::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  border: 2px solid var(--black-color);
  z-index: -1;
  transition: all 0.3s ease;
}
.drone-video-block:hover::before {
  top: -1px;
  left: -1px;
}

/* Wrapper qui force le ratio 16:9 */
.drone-video-inner {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border: 2px solid var(--black-color);
  overflow: hidden;
  background: var(--black-color);
}

.drone-video-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Badge superposé en bas à gauche */
.drone-video-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 10;
  background: var(--secondary-color);
  color: var(--white-color);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: none;
  pointer-events: none;
}

.drone-services {
  padding: 0 0 5rem;
}

.drone-services > .container > .section-title,
.drone-services > .container > h2 {
  margin-bottom: 0.5rem;
}

.drone-services > .container > h2 {
  font-size: clamp(1.6rem, 2.5vw, var(--font-size-xxl));
  margin-bottom: 2.5rem;
}

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

.service-drone-card {
  position: relative;
  padding: 2rem 1.75rem;
  border: 2px solid var(--black-color);
  border-right: none;
  background: var(--white-color);
  transition: background 0.25s;
}

.service-drone-card:last-child {
  border-right: 2px solid var(--black-color);
}

.service-drone-card::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 2px solid var(--black-color);
  transition: all 0.3s ease;
}

.service-drone-card:nth-child(1)::before {
  background: var(--main-color);
}
.service-drone-card:nth-child(2)::before {
  background: var(--tertiary-color);
}
.service-drone-card:nth-child(3)::before {
  background: var(--fourth-color);
}

.service-drone-card:hover::before {
  top: -1px;
  left: -1px;
}
.service-drone-card:hover {
  background: var(--bg-color);
}

.card-number {
  font-size: 3rem;
  font-weight: 900;
  font-style: italic;
  color: #e0d8d0;
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.25s;
}

.service-drone-card:hover .card-number {
  color: var(--main-color);
}

.service-drone-card h3 {
  font-size: var(--font-size-md);
  color: var(--black-color);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-drone-card p {
  font-size: var(--font-size-xs);
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.drone-argument {
  padding: 0 0 5rem;
}

.argument-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 2px solid var(--black-color);
  position: relative;
}

.argument-inner::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  background: var(--fourth-color);
  border: 2px solid var(--black-color);
  z-index: -1;
  transition: all 0.3s ease;
}
.argument-inner:hover::before {
  top: -1px;
  left: -1px;
}

.argument-visual {
  position: relative;
  min-height: 360px;
  background-image: url("/img/drone1.png");
  background-size: cover;
  background-position: center;
  border-right: 2px solid var(--black-color);
  overflow: hidden;
}

.argument-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
}

.argument-visual-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 1;
  background: var(--secondary-color);
  color: var(--white-color);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
}

.argument-visual-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  font-size: var(--font-size-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.argument-text {
  padding: 3rem;
  background: var(--bg-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.argument-text h2 {
  font-size: clamp(1.4rem, 2.2vw, var(--font-size-xl));
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.argument-text h2 em {
  font-style: italic;
  color: var(--secondary-color);
}
.argument-text p {
  font-size: var(--font-size-xs);
  color: #555;
}

/* Checklist */
.argument-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.argument-list li {
  font-size: var(--font-size-xs);
  color: #333;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.argument-list li:last-child {
  border-bottom: none;
}

.argument-list li::before {
  content: "✓";
  color: var(--fourth-color);
  font-weight: 900;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.drone-note {
  margin: 0 0 3rem;
}

.drone-note-inner {
  border: 2px solid var(--black-color);
  background: var(--white-color);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.drone-note-inner::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 100%;
  height: 100%;
  background: var(--main-color);
  border: 2px solid var(--black-color);
  z-index: -1;
  transition: all 0.3s ease;
}
.drone-note-inner:hover::before {
  top: -1px;
  left: -1px;
}

.note-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.note-text {
  font-size: var(--font-size-xs);
  font-weight: 500;
  color: var(--black-color);
  margin: 0;
}

.note-text strong {
  color: var(--secondary-color);
}

.drone-pricing {
  padding: 0 0 5rem;
}

.drone-pricing > .container > .section-title,
.drone-pricing > .container > h2 {
  margin-bottom: 0.5rem;
}

.drone-pricing > .container > h2 {
  font-size: clamp(1.6rem, 2.5vw, var(--font-size-xxl));
  margin-bottom: 0.75rem;
}

.drone-pricing > .container > .pricing-intro {
  font-size: var(--font-size-xs);
  color: #555;
  margin-bottom: 2.5rem;
}

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

.pricing-card {
  position: relative;
  border: 2px solid var(--black-color);
  border-right: none;
  background: var(--white-color);
  display: flex;
  flex-direction: column;
  transition: background 0.25s;
}

.pricing-card:last-child {
  border-right: 2px solid var(--black-color);
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 2px solid var(--black-color);
  transition: all 0.3s ease;
}

.pricing-card:nth-child(1)::before {
  background: var(--tertiary-color);
}
.pricing-card:nth-child(2)::before {
  background: var(--main-color);
}
.pricing-card:nth-child(3)::before {
  background: var(--secondary-color);
}

.pricing-card:hover::before {
  top: -1px;
  left: -1px;
}
.pricing-card:hover {
  background: var(--bg-color);
}

/* Header de la card */
.pricing-head {
  padding: 1.75rem 1.75rem 1.25rem;
  border-bottom: 2px solid var(--black-color);
}

.pricing-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 0.4rem;
}

.pricing-head h3 {
  font-size: var(--font-size-md);
  color: var(--black-color);
  margin-bottom: 0.3rem;
}

.pricing-head p {
  font-size: var(--font-size-xs);
  color: #777;
  margin: 0;
  line-height: 1.4;
}

/* Prix */
.pricing-price {
  padding: 1.25rem 1.75rem;
  border-bottom: 2px solid var(--black-color);
  background: rgba(0, 0, 0, 0.02);
}

.price-amount {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--main-color);
  line-height: 1;
}

.price-amount span {
  font-size: var(--font-size-sm);
  font-weight: 400;
  color: #888;
}

.price-note {
  font-size: 11px;
  color: #aaa;
  margin-top: 0.25rem;
  margin-bottom: 0;
}

/* Liste inclus */
.pricing-features {
  padding: 1.5rem 1.75rem;
  flex: 1;
}

.pricing-features ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pricing-features li {
  font-size: var(--font-size-xs);
  color: #444;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: "→";
  color: var(--main-color);
  font-weight: bold;
  flex-shrink: 0;
}

/* Pied de card */
.pricing-foot {
  padding: 1.25rem 1.75rem;
  border-top: 2px solid var(--black-color);
}

.pricing-foot p {
  font-size: 11px;
  font-style: italic;
  color: #888;
  margin: 0;
}

.drone-cta-section {
  padding: 0 0 6rem;
}

.cta-inner {
  border: 2px solid var(--black-color);
  background: var(--black-color);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

/* Lignes de perspective en fond */
.cta-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    170deg,
    transparent,
    transparent 60px,
    rgba(128, 184, 241, 0.04) 60px,
    rgba(128, 184, 241, 0.04) 61px
  );
  pointer-events: none;
}

.cta-text {
  position: relative;
  z-index: 1;
}

.cta-text .section-title {
  color: var(--tertiary-color);
}

.cta-text h2 {
  color: var(--white-color);
  font-size: clamp(1.4rem, 2.5vw, var(--font-size-xxl));
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.cta-text h2 em {
  color: var(--main-color);
  font-style: italic;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--font-size-xs);
  margin: 0;
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  flex-shrink: 0;
}

.cta-actions .note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  text-align: right;
  margin: 0;
}

/* ── CAROUSEL côté visuel ── */
.drone-visual {
  position: relative;
  /* PAS de overflow:hidden ici — Swiper le gère lui-même */
  min-height: 380px;
}

/* Le swiper prend toute la place de .drone-visual */
.drone-visual .swiper {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

/* Chaque slide = image en cover */
.drone-visual .swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Slides — remplace les URL par tes vraies photos */
.drone-visual .slide-1 {
  background-image: url("/img/drone1.png");
}
.drone-visual .slide-2 {
  background-image: url("/img/drone2.png");
}
.drone-visual .slide-3 {
  background-image: url("/img/drone3.png");
}
.drone-visual .slide-4 {
  background-image: url("/img/drone4.png");
}

/* Overlay gradient en bas pour lisibilité du badge */
.drone-visual .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, transparent 50%);
  pointer-events: none;
}

/* Badge */
.drone-visual-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 10;
  background: var(--secondary-color);
  color: var(--white-color);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  pointer-events: none;
}

/* Caption en bas */
.drone-visual-caption {
  position: absolute;
  bottom: 2.5rem;
  left: 1.5rem;
  z-index: 10;
  font-size: var(--font-size-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

/* ── Personnalisation Swiper ── */

/* Pagination (dots) */
.drone-visual .swiper-pagination {
  bottom: 1rem;
}

.drone-visual .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 0; /* carrés, dans l'esprit du site */
  opacity: 1;
  transition:
    background 0.2s,
    transform 0.2s;
}

.drone-visual .swiper-pagination-bullet-active {
  background: var(--white-color);
  transform: scale(1.3);
}

/* Flèches navigation */
.drone-visual .swiper-button-prev,
.drone-visual .swiper-button-next {
  width: 36px;
  height: 36px;
  background: var(--secondary-color);
  color: var(--white-color);
  border-radius: 0;
  transition: background 0.2s;
}

.drone-visual .swiper-button-prev:hover,
.drone-visual .swiper-button-next:hover {
  background: var(--main-color);
}

.drone-visual .swiper-button-prev::after {
  content: "❮";
}
.drone-visual .swiper-button-next::after {
  content: "❯";
}
.drone-visual .swiper-button-prev::after,
.drone-visual .swiper-button-next::after {
  font-size: 18px;
  font-weight: 900;
}

.drone-visual .swiper-button-prev {
  left: 0.75rem;
}
.drone-visual .swiper-button-next {
  right: 0.75rem;
}
/*
.......##...............#######..########.########.########..########..######.....................##
......##...##...##.....##.....##.##.......##.......##.....##.##.......##....##.....##...##.......##.
.....##.....##.##......##.....##.##.......##.......##.....##.##.......##............##.##.......##..
....##....#########....##.....##.######...######...########..######....######.....#########....##...
...##.......##.##......##.....##.##.......##.......##...##...##.............##......##.##.....##....
..##.......##...##.....##.....##.##.......##.......##....##..##.......##....##.....##...##...##.....
.##.....................#######..##.......##.......##.....##.########..######...............##......
*/

.sectionTrois {
  padding: 1rem 0;
}

.sectionTrois-header {
  margin-bottom: 3rem;
}

.sectionTrois-header h2 {
  font-size: clamp(1.8rem, 3vw, var(--font-size-xxl));
  margin-bottom: 0.75rem;
}

.sectionTrois-header .intro {
  font-size: var(--font-size-xs);
  color: #666;
  max-width: 540px;
}

.offres-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}

.offre-card {
  position: relative;
  border: 2px solid var(--black-color);
  border-right: none;
  background: var(--white-color);
  display: flex;
  flex-direction: column;
  transition: background 0.25s;
}

.offre-card:last-child {
  border-right: 2px solid var(--black-color);
}

.offre-card::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 2px solid var(--black-color);
  transition: all 0.3s ease;
}

.offre-card:nth-child(1)::before {
  background: var(--tertiary-color);
}
.offre-card:nth-child(2)::before {
  background: var(--main-color);
}
.offre-card:nth-child(3)::before {
  background: var(--secondary-color);
}

.offre-card:hover::before {
  top: -1px;
  left: -1px;
}
.offre-card:hover {
  background: var(--bg-color);
}

.offre-head {
  padding: 1.75rem 1.75rem 1.25rem;
  border-bottom: 2px solid var(--black-color);
}

.offre-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: 0.4rem;
}

.offre-head h3 {
  font-size: var(--font-size-md);
  font-weight: 900;
  color: var(--black-color);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.offre-head p {
  font-size: var(--font-size-xs);
  color: #777;
  line-height: 1.5;
  margin: 0;
}

.offre-price {
  padding: 1.25rem 1.75rem;
  border-bottom: 2px solid var(--black-color);
  background: rgba(0, 0, 0, 0.025);
}

.price-from {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 0.2rem;
}

.price-amount {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--main-color);
  line-height: 1;
}

.price-amount sup {
  font-size: 1.2rem;
  font-weight: 700;
  vertical-align: super;
}

.price-note {
  font-size: 11px;
  color: #aaa;
  margin-top: 0.3rem;
}

.offre-features {
  padding: 1.5rem 1.75rem;
  flex: 1;
}

.offre-features ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.offre-features li {
  font-size: var(--font-size-xs);
  color: #444;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.offre-features li:last-child {
  border-bottom: none;
}

.offre-features li::before {
  content: "→";
  color: var(--main-color);
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 1px;
}

.offre-features li.optional {
  color: #999;
  font-style: italic;
}

.offre-features li.optional::before {
  color: #ccc;
}

.offre-foot {
  padding: 1.25rem 1.75rem;
  border-top: 2px solid var(--black-color);
}

.offre-foot .btn {
  width: 100%;
  justify-content: center;
}

.offre-card.maintenance-col {
  display: flex;
  flex-direction: column;
}

.maintenance-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-bottom: 2px solid var(--black-color);
}

.maintenance-block:last-child {
  border-bottom: none;
}

.maintenance-head {
  padding: 1.5rem 1.75rem 1rem;
  border-bottom: 2px solid var(--black-color);
}

.maintenance-head h3 {
  font-size: var(--font-size-md);
  font-weight: 900;
  color: var(--black-color);
  margin-bottom: 0.3rem;
}

.maintenance-head p {
  font-size: var(--font-size-xs);
  color: #777;
  margin: 0;
}

.maintenance-price {
  padding: 1rem 1.75rem;
  border-bottom: 2px solid var(--black-color);
  background: rgba(0, 0, 0, 0.025);
}

.maintenance-price .price-amount {
  font-size: 2rem;
}

.maintenance-features {
  padding: 1rem 1.75rem;
  flex: 1;
}

.maintenance-features ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.maintenance-features li {
  font-size: var(--font-size-xs);
  color: #444;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.maintenance-features li:last-child {
  border-bottom: none;
}

.maintenance-features li::before {
  content: "→";
  color: var(--main-color);
  font-weight: bold;
  flex-shrink: 0;
}

.depannage-block {
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.depannage-block h3 {
  font-size: var(--font-size-md);
  font-weight: 900;
  color: var(--black-color);
}

.depannage-block p {
  font-size: var(--font-size-xs);
  color: #777;
  margin: 0;
}

.depannage-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--main-color);
  line-height: 1;
}

.depannage-price span {
  font-size: var(--font-size-xs);
  font-weight: 400;
  color: #888;
}

.depannage-note {
  font-size: 11px;
  color: #aaa;
}

.offres-footer {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.offres-footer p {
  font-size: 11px;
  color: #aaa;
  margin: 0;
}
/*
.......##..............########..#######..########..##.....##....................##
......##...##...##.....##.......##.....##.##.....##.###...###.....##...##.......##.
.....##.....##.##......##.......##.....##.##.....##.####.####......##.##.......##..
....##....#########....######...##.....##.########..##.###.##....#########....##...
...##.......##.##......##.......##.....##.##...##...##.....##......##.##.....##....
..##.......##...##.....##.......##.....##.##....##..##.....##.....##...##...##.....
.##....................##........#######..##.....##.##.....##..............##......
*/

.sectionCinq,
.sectionContact {
  padding: 1rem 0;
}

.sectionCinq .container,
.sectionContact .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-header h2 {
  font-size: clamp(1.8rem, 3vw, var(--font-size-xxl));
  margin-bottom: 0.75rem;
}

.contact-header h2 em {
  font-style: italic;
  color: var(--secondary-color);
}

.contact-header p {
  font-size: var(--font-size-xs);
  color: #666;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
}

.contact-header .section-title {
  text-align: center;
}

/* ── WRAPPER FORM ── */
.form-wrapper {
  width: 100%;
  max-width: 860px;
  position: relative;
}

.form-wrapper::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--black-color);
  z-index: -1;
  background-color: var(--secondary-color);
  transition: all 0.3s ease;
}

.sectionContact .form-wrapper::before {
  background-color: var(--fourth-color);
}

.form-wrapper:hover::before {
  top: -1px;
  left: -1px;
}

/* ── FORM ── */
form {
  background: var(--white-color);
  border: 2px solid var(--black-color);
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── GROUPES DE CHAMPS ── */
.form-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 2px solid var(--black-color);
}

.form-group.single {
  grid-template-columns: 1fr;
}

.form-group.triple {
  grid-template-columns: 1fr 1fr 1fr;
}

/* ── CHAMP INDIVIDUEL ── */
.field {
  position: relative;
  padding: 0;
  border-right: 2px solid var(--black-color);
}

.field:last-child {
  border-right: none;
}

.field-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000000;
  padding: 1rem 1.25rem 0.3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Inputs & select & textarea */
.field input,
.field select,
.field textarea {
  display: block;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: var(--font-size-xs);
  color: var(--black-color);
  background: transparent;
  border: none;
  outline: none;
  padding: 0.75rem 1.25rem 1rem;
  line-height: 1.5;
  transition: background 0.2s;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #bbb;
  font-style: italic;
}

.field:focus-within {
  background: rgba(128, 184, 241, 0.06);
}

.field:focus-within .field-label {
  color: var(--main-color);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

/* Select custom */
.field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23aaa' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  padding-right: 2.5rem;
  color: #555;
}

.field select option[value=""] {
  color: #bbb;
}

/* Textarea */
.field textarea {
  resize: none;
  min-height: 120px;
}

/* ── SECTION TYPE DE PROJET ── */
.project-types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem 1rem;
}

.project-type-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.project-type-label input[type="checkbox"] {
  width: auto;
  padding: 0;
  accent-color: var(--main-color);
  cursor: pointer;
}

.project-type-label span {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1.5px solid var(--black-color);
  color: var(--black-color);
  background: transparent;
  transition: all 0.2s;
  cursor: pointer;
  user-select: none;
}

.project-type-label input[type="checkbox"]:checked + span {
  background: var(--main-color);
  border-color: var(--main-color);
  color: var(--white-color);
}

/* Masquer la checkbox native */
.project-type-label input[type="checkbox"] {
  display: none;
}

/* ── UPLOAD FICHIERS ── */
.file-zone {
  padding: 0.75rem 1.25rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.file-zone-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  background: var(--main-color);
  color: var(--white-color);
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.3s;
  flex-shrink: 0;
}

.file-zone-label:hover {
  background: var(--secondary-color);
  transform: rotate(2deg);
}

.file-zone input[type="file"] {
  display: none;
}

.file-zone-hint {
  font-size: 11px;
  color: #aaa;
  font-style: italic;
}

.selected-files {
  width: 100%;
  margin-top: 0.5rem;
}

.selected-files p {
  font-size: 11px;
  color: #ccc;
  font-style: italic;
}

.selected-files ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.selected-files li {
  font-size: 11px;
  color: var(--fourth-color);
  display: flex;
  align-items: center;
  gap: 6px;
}

.selected-files li::before {
  content: "✓";
  font-weight: bold;
}

/* ── FOOTER DU FORM ── */
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 1.75rem;
  border-top: 2px solid var(--black-color);
  flex-wrap: wrap;
}

.form-footer-note {
  font-size: 11px;
  color: #aaa;
  line-height: 1.6;
}

.form-footer-note a {
  color: var(--main-color);
  text-decoration: underline;
}

/* Bouton submit */
.btn-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: "Inter", sans-serif;
  font-size: var(--font-size-xs);
  font-weight: bold;
  color: var(--white-color);
  background: var(--secondary-color);
  border: none;
  cursor: pointer;
  isolation: isolate;
  flex-shrink: 0;
  transition: color 0.2s;
}

.btn-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--main-color);
  transition: all 0.3s ease;
}

.btn-submit:hover::before {
  top: 5px;
  left: 5px;
}

.btn-submit .arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: transform 0.3s;
}

.btn-submit:hover .arrow {
  transform: translateX(5px);
}

/*
.......##..............########..########....###....##.......####..######.....###....########.####..#######..##....##..######.....................##
......##...##...##.....##.....##.##.........##.##...##........##..##....##...##.##......##.....##..##.....##.###...##.##....##.....##...##.......##.
.....##.....##.##......##.....##.##........##...##..##........##..##........##...##.....##.....##..##.....##.####..##.##............##.##.......##..
....##....#########....########..######...##.....##.##........##...######..##.....##....##.....##..##.....##.##.##.##..######.....#########....##...
...##.......##.##......##...##...##.......#########.##........##........##.#########....##.....##..##.....##.##..####.......##......##.##.....##....
..##.......##...##.....##....##..##.......##.....##.##........##..##....##.##.....##....##.....##..##.....##.##...###.##....##.....##...##...##.....
.##....................##.....##.########.##.....##.########.####..######..##.....##....##....####..#######..##....##..######...............##......
*/

.sectionQuatre {
  padding: 1rem 0;
}

.sectionQuatre .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* CORRECTION : header structuré comme les autres sections */
.sectionQuatre-header {
  text-align: center;
  margin-bottom: 3rem;
  width: 100%;
}

.sectionQuatre-header .section-title {
  text-align: center;
}

.sectionQuatre-header h2 {
  font-size: clamp(1.8rem, 3vw, var(--font-size-xxl));
  margin-bottom: 0.75rem;
}

/* Bandeau intro façon sectionDeux — encadré décalé */
.portfolio-intro {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  border: 2px solid var(--black-color);
  position: relative;
  margin-bottom: 3rem;
  width: 100%;
  align-items: stretch;
}
.portfolio-intro::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 100%;
  height: 100%;
  background: var(--fourth-color);
  border: 2px solid var(--black-color);
  z-index: -1;
  transition: all 0.3s ease;
}
.portfolio-intro:hover::before {
  top: -1px;
  left: -1px;
}

.portfolio-intro-text {
  padding: 1.5rem 2rem;
  background: var(--white-color);
  border-right: 2px solid var(--black-color);
  display: flex;
  align-items: center;
}
.portfolio-intro-text p {
  font-size: var(--font-size-xs);
  color: #555;
  line-height: 1.75;
  margin: 0;
}
.portfolio-intro-text p em {
  font-style: italic;
  color: var(--secondary-color);
}

.portfolio-intro-stat {
  padding: 1.5rem 2rem;
  background: var(--white-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}
.portfolio-stat-value {
  font-size: var(--font-size-xl);
  font-weight: 900;
  color: var(--main-color);
  line-height: 1;
}
.portfolio-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #bbb;
  margin-top: 0.3rem;
}

/* Grille vignettes */
.realisations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 0 2.5rem;
  width: 100%;
}

/* Vignettes — couleurs cycliques */
.vignette:nth-child(4n + 1) {
  --vignette-color: var(--fourth-color);
}
.vignette:nth-child(4n + 2) {
  --vignette-color: var(--tertiary-color);
}
.vignette:nth-child(4n + 3) {
  --vignette-color: var(--secondary-color);
}
.vignette:nth-child(4n + 4) {
  --vignette-color: var(--main-color);
}

.vignette {
  position: relative;
  border: 2px solid var(--black-color);
}
.vignette::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--black-color);
  z-index: -1;
  transition: all 0.3s ease;
  background: var(--vignette-color);
}
.vignette:hover::before {
  top: -1px;
  left: -1px;
}

.vignette img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: filter 0.3s ease;
}
.vignette-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.vignette-label {
  background: var(--vignette-color);
  color: white;
  padding: 10px 24px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1.5px;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}
.vignette:hover img {
  filter: blur(3px) brightness(0.7);
}
.vignette:hover .vignette-overlay {
  opacity: 1;
}
.vignette:hover .vignette-label {
  transform: translateY(0);
}

.sectionDisplay {
  padding: 3rem 0 6rem;
}

/* ── PANEL PRINCIPAL ── */
.panel {
  border: 2px solid var(--black-color);
  background: var(--white-color);
  position: relative;
  isolation: isolate;
  margin-bottom: 2rem;
}

.panel::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  background: var(--main-color);
  border: 2px solid var(--black-color);
  z-index: -1;
  transition: all 0.3s ease;
}

.panel:hover::before {
  top: -1px;
  left: -1px;
}

/* ── PANEL TOP : hero + mockup ── */
.panel-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

/* Colonne texte gauche */
.panel-left {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 2px solid var(--black-color);
  background: var(--bg-color);
}

/* Badge marque */
.brand-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-color);
  background: var(--secondary-color);
  padding: 4px 14px;
  margin-bottom: 1.25rem;
}

/* Titre projet */
.panel-title {
  font-size: clamp(1.8rem, 3vw, var(--font-size-xxl));
  font-weight: 900;
  color: var(--main-color);
  line-height: 1.15;
  margin: 0 0 1.25rem;
  text-transform: none;
}

/* Description */
.panel-desc {
  font-size: var(--font-size-xs);
  color: #555;
  line-height: 1.85;
  margin: 0;
}

/* Colonne mockup droite */
.panel-right {
  position: relative;
  background: var(--black-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
  overflow: hidden;
}

/* Lignes décoratives fond noir */
.panel-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    170deg,
    transparent,
    transparent 40px,
    rgba(128, 184, 241, 0.04) 40px,
    rgba(128, 184, 241, 0.04) 41px
  );
  pointer-events: none;
}

/* Logo superposé */
.overlay-logo {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.overlay-logo img {
  height: 36px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

/* Mockup navigateur */
.screen-mock {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: var(--white-color);
  isolation: isolate;
}

.screen-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #1a1a1a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.screen-content {
  overflow: hidden;
  max-height: 280px;
}

.screen-content img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top;
  transition: transform 6s ease;
}

.screen-mock:hover .screen-content img {
  transform: translateY(calc(-100% + 280px));
}

/* ── PANEL BOTTOM : méta-données ── */
.panel-bottom {
  display: flex;
  align-items: stretch;
  border-top: 2px solid var(--black-color);
}

.meta-cell {
  flex: 1;
  padding: 1.25rem 1.75rem;
  border-right: 2px solid var(--black-color);
  background: var(--white-color);
}

.meta-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 0.5rem;
}

.meta-value {
  font-size: var(--font-size-md);
  font-weight: 900;
  color: var(--main-color);
  line-height: 1;
}

/* Tags technologies */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1.5px solid var(--black-color);
  color: var(--black-color);
  background: transparent;
  transition: all 0.2s;
}

.tag:hover {
  background: var(--main-color);
  border-color: var(--main-color);
  color: var(--white-color);
}

/* CTA voir le site */
.cta-cell {
  padding: 1.25rem 1.75rem;
  background: var(--white-color);
  display: flex;
  align-items: center;
}

.cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-size: var(--font-size-xs);
  font-weight: 700;
  color: var(--white-color);
  background: var(--secondary-color);
  text-decoration: none;
  isolation: isolate;
  transition: padding 0.3s ease;
  white-space: nowrap;
}

.cta-arrow {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.cta-btn:hover {
  background: var(--tertiary-color);
}

.cta-btn:hover .cta-arrow {
  transform: translateX(4px);
}

.cta-arrow img {
  width: 12px;
  height: 12px;
  filter: brightness(0) invert(1);
}

/* ══════════════════════════════════════════════
   PANEL SECTION DEUX COLONNES
════════════════════════════════════════════════ */

.panel-section {
  border: 2px solid var(--black-color);
  background: var(--white-color);
  position: relative;
  isolation: isolate;
}

.panel-section::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  background: var(--tertiary-color);
  border: 2px solid var(--black-color);
  z-index: -1;
  transition: all 0.3s ease;
}

.panel-section:hover::before {
  top: -1px;
  left: -1px;
}

.panel-two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Colonne gauche — besoins */
.panel-col {
  padding: 2.5rem 3rem;
  background: var(--bg-color);
  border-right: 2px solid var(--black-color);
}

/* Colonne droite — conception + déroulement */
.panel-col-right {
  padding: 0;
  background: var(--white-color);
  border-right: none;
  display: flex;
  flex-direction: column;
}

.panel-sub {
  padding: 2.5rem 3rem;
  border-bottom: 2px solid var(--black-color);
}

.panel-sub-bottom {
  border-bottom: none;
  flex: 1;
}

/* ── EN-TÊTES DE SECTION ── */
.section-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--black-color);
}

.title-label {
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin: 0 0 0.25rem;
  line-height: 1.3;
}

.title-label + .title-label {
  color: #aaa;
  font-size: 10px;
  margin-top: 0.25rem;
}

/* ── ÉTAPES DE DÉVELOPPEMENT ── */
.step-title {
  font-size: var(--font-size-xs);
  font-weight: 700;
  color: var(--black-color);
  margin: 1.25rem 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.step-title::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--secondary-color);
  border: 1.5px solid var(--black-color);
  flex-shrink: 0;
}

.step-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.step-list li {
  font-size: var(--font-size-xs);
  color: #555;
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin: 0;
}

.step-list li:last-child {
  border-bottom: none;
}

.step-list li::before {
  content: "→";
  color: var(--main-color);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

/*
.......##.................###.......########..########...#######..########...#######...######.....................##
......##...##...##.......##.##......##.....##.##.....##.##.....##.##.....##.##.....##.##....##.....##...##.......##.
.....##.....##.##.......##...##.....##.....##.##.....##.##.....##.##.....##.##.....##.##............##.##.......##..
....##....#########....##.....##....########..########..##.....##.########..##.....##..######.....#########....##...
...##.......##.##......#########....##........##...##...##.....##.##........##.....##.......##......##.##.....##....
..##.......##...##.....##.....##....##........##....##..##.....##.##........##.....##.##....##.....##...##...##.....
.##....................##.....##....##........##.....##..#######..##.........#######...######...............##......
*/
.sectionApropos {
  padding: 0 0 5rem;
}

.apropos-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  align-items: stretch;
  border: 2px solid var(--black-color);
  position: relative;
}

.apropos-inner::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  background: var(--tertiary-color);
  border: 2px solid var(--black-color);
  z-index: -1;
  transition: all 0.3s ease;
}
.apropos-inner:hover::before {
  top: -1px;
  left: -1px;
}

.apropos-photo {
  position: relative;
  overflow: hidden;
  border-right: 2px solid var(--black-color);
  min-height: 360px;
}

.apropos-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition:
    transform 0.5s ease,
    filter 0.4s ease;
  filter: grayscale(20%);
}

.apropos-photo:hover img {
  transform: scale(1.03);
  filter: grayscale(0%);
}

.apropos-photo-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.apropos-photo-name {
  font-size: var(--font-size-xs);
  font-weight: 700;
  color: var(--white-color);
  letter-spacing: 0.05em;
}

.apropos-photo-status {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fourth-color);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.apropos-photo-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fourth-color);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.apropos-text {
  padding: 2.5rem 3rem;
  background: var(--bg-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.apropos-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: var(--main-color);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.apropos-text h2 em {
  font-style: italic;
  color: var(--secondary-color);
}

.apropos-text p {
  font-size: var(--font-size-xs);
  color: #555;
  line-height: 1.85;
  margin-bottom: 0;
}

.apropos-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.apropos-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--black-color);
  background: var(--white-color);
  font-size: 11px;
  font-weight: 600;
  color: var(--black-color);
  position: relative;
  isolation: isolate;
  transition: background 0.2s;
}

.apropos-pill::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: all 0.3s ease;
}

.apropos-pill:nth-child(1)::before {
  background: var(--main-color);
  border: 1.5px solid var(--black-color);
}
.apropos-pill:nth-child(2)::before {
  background: var(--fourth-color);
  border: 1.5px solid var(--black-color);
}
.apropos-pill:nth-child(3)::before {
  background: var(--secondary-color);
  border: 1.5px solid var(--black-color);
}

.apropos-pill:hover::before {
  top: -1px;
  left: -1px;
}
.apropos-pill:hover {
  background: var(--bg-color);
}

.apropos-pill-icon {
  font-size: 13px;
}

.apropos-text-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 2px solid var(--black-color);
}

.apropos-quote {
  font-size: 11px;
  font-style: italic;
  color: #aaa;
  max-width: 300px;
  line-height: 1.6;
}

.about-hero {
  padding: 5rem 0 0;
}

.about-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 2px solid var(--black-color);
  position: relative;
  background-color: var(--main-color);
}

.about-hero .container::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  border: 2px solid var(--black-color);
  z-index: -1;
  transition: all 0.3s ease;
}
.about-hero .container:hover::before {
  top: -1px;
  left: -1px;
}

.about-photo {
  position: relative;
  overflow: hidden;
  border-right: 2px solid var(--black-color);
  min-height: 480px;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(15%);
  transition: filter 0.4s ease;
}

.about-photo:hover img {
  filter: grayscale(0%);
}

.about-photo-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--fourth-color);
  color: var(--white-color);
  border: 2px solid var(--black-color);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  z-index: 2;
}

.about-hero-text {
  padding: 3rem 3rem;
  background: var(--bg-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-hero-text h1 {
  font-size: var(--font-size-xs);
  color: var(--secondary-color);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.about-hero-text h2 {
  font-size: clamp(1.8rem, 3vw, var(--font-size-xxl));
  color: var(--main-color);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.about-hero-text h2 em {
  font-style: italic;
  color: var(--secondary-color);
}

.about-hero-text .chapeau {
  font-size: var(--font-size-xs);
  color: #444;
  line-height: 1.85;
  margin-bottom: 2rem;
  border-left: 3px solid var(--main-color);
  padding-left: 1.25rem;
}

.about-stats {
  display: flex;
  border-top: 2px solid var(--black-color);
  border-left: 2px solid var(--black-color);
  margin-top: 2rem;
}

.about-stat {
  flex: 1;
  padding: 1rem 1.25rem;
  border-right: 2px solid var(--black-color);
  border-bottom: 2px solid var(--black-color);
}
.about-stat:last-child {
  border-right: none;
}

.about-stat-value {
  font-size: var(--font-size-xl);
  font-weight: 900;
  color: var(--main-color);
  line-height: 1;
}

.about-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
  margin-top: 0.3rem;
  line-height: 1.4;
}

/* ══════════════════════════════════════════════
       SECTION RECONVERSION
    ══════════════════════════════════════════════ */

.about-reconversion {
  padding: 1rem 0;
}

.reconversion-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 2px solid var(--black-color);
  position: relative;
}

.reconversion-inner::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  background: var(--tertiary-color);
  border: 2px solid var(--black-color);
  z-index: -1;
  transition: all 0.3s ease;
}
.reconversion-inner:hover::before {
  top: -1px;
  left: -1px;
}

.reconversion-text {
  padding: 3rem;
  background: var(--white-color);
  border-right: 2px solid var(--black-color);
}

.reconversion-text h3 {
  font-size: clamp(1.4rem, 2vw, var(--font-size-xl));
  font-weight: 900;
  color: var(--black-color);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.reconversion-text h3 em {
  font-style: italic;
  color: var(--secondary-color);
}

.reconversion-text p {
  font-size: var(--font-size-xs);
  color: #555;
  line-height: 1.85;
}

/* Timeline */
.timeline {
  padding: 3rem;
  background: var(--bg-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.timeline-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: 1.5rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 0;
  border-left: 3px solid var(--black-color);
  position: relative;
}

.timeline-item + .timeline-item {
  margin-top: 0;
}

.timeline-year {
  font-size: 11px;
  font-weight: 900;
  color: var(--main-color);
  padding: 1rem 1rem 1rem 0;
  text-align: right;
  border-right: 2px solid var(--black-color);
  letter-spacing: 0.05em;
}

/* Point sur la ligne */
.timeline-year::after {
  content: "";
  position: absolute;
  left: -6px;
  top: 1.2rem;
  width: 10px;
  height: 10px;
  background: var(--secondary-color);
  border: 2px solid var(--black-color);
  border-radius: 0;
}

.timeline-content {
  padding: 0.85rem 1rem 0.85rem 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.timeline-item:last-child .timeline-content {
  border-bottom: none;
}

.timeline-title {
  font-size: var(--font-size-xs);
  font-weight: 700;
  color: var(--black-color);
  margin-bottom: 0.2rem;
}

.timeline-desc {
  font-size: 11px;
  color: #888;
  line-height: 1.5;
  margin: 0;
}

/* ══════════════════════════════════════════════
       SECTION VALEURS — ÉCO-CONCEPTION
    ══════════════════════════════════════════════ */

.about-values {
  padding: 0 0 5rem;
}

.about-values > .container > .section-title,
.about-values > .container > h2 {
  margin-bottom: 0.5rem;
}

.about-values > .container > h2 {
  font-size: clamp(1.8rem, 3vw, var(--font-size-xxl));
  margin-bottom: 2.5rem;
}

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

.value-card {
  position: relative;
  padding: 2rem 1.75rem;
  border: 2px solid var(--black-color);
  border-right: none;
  background: var(--white-color);
  transition: background 0.25s;
}

.value-card:last-child {
  border-right: 2px solid var(--black-color);
}

.value-card::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 2px solid var(--black-color);
  transition: all 0.3s ease;
}

.value-card:nth-child(1)::before {
  background: var(--fourth-color);
}
.value-card:nth-child(2)::before {
  background: var(--main-color);
}
.value-card:nth-child(3)::before {
  background: var(--tertiary-color);
}

.value-card:hover::before {
  top: -1px;
  left: -1px;
}
.value-card:hover {
  background: var(--bg-color);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.value-card h3 {
  font-size: var(--font-size-md);
  font-weight: bold;
  color: var(--black-color);
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: var(--font-size-xs);
  color: #555;
  line-height: 1.75;
  margin: 0;
}

/* ══════════════════════════════════════════════
       SECTION ENGAGEMENTS ÉCO
    ══════════════════════════════════════════════ */

.about-eco {
  padding: 0 0 5rem;
}

.eco-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 2px solid var(--black-color);
  position: relative;
}

.eco-inner::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  background: var(--fourth-color);
  border: 2px solid var(--black-color);
  z-index: -1;
  transition: all 0.3s ease;
}
.eco-inner:hover::before {
  top: -1px;
  left: -1px;
}

.eco-text {
  padding: 3rem;
  background: var(--bg-color);
  border-right: 2px solid var(--black-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eco-text h3 {
  font-size: clamp(1.4rem, 2vw, var(--font-size-xl));
  font-weight: 900;
  color: var(--black-color);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.eco-text h3 em {
  font-style: italic;
  color: var(--fourth-color);
}

.eco-text p {
  font-size: var(--font-size-xs);
  color: #555;
  line-height: 1.85;
}

.eco-list {
  list-style: none;
  margin-top: 1.5rem;
  border-top: 2px solid var(--black-color);
}

.eco-list li {
  font-size: var(--font-size-xs);
  color: #333;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  font-weight: 500;
}
.eco-list li:last-child {
  border-bottom: none;
}
.eco-list li::before {
  content: "→";
  color: var(--fourth-color);
  font-weight: 900;
  flex-shrink: 0;
}

/* Visuel côté éco */
.eco-visual {
  background: var(--fourth-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  gap: 2rem;
}

.eco-badge {
  font-size: 4rem;
  text-align: center;
}

.eco-metrics {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  border: 2px solid var(--black-color);
  background: rgba(0, 0, 0, 0.1);
}

.eco-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.08);
}
.eco-metric:last-child {
  border-bottom: none;
}

.eco-metric-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.eco-metric-value {
  font-size: var(--font-size-sm);
  font-weight: 900;
  color: var(--white-color);
}

/* ══════════════════════════════════════════════
       SECTION PROCESS
    ══════════════════════════════════════════════ */

.about-process {
  padding: 0 0 5rem;
}

.about-process > .container > .section-title,
.about-process > .container > h2 {
  margin-bottom: 0.5rem;
}

.about-process > .container > h2 {
  font-size: clamp(1.8rem, 3vw, var(--font-size-xxl));
  margin-bottom: 2.5rem;
}

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

.process-step {
  position: relative;
  border: 2px solid var(--black-color);
  border-right: none;
  background: var(--white-color);
  transition: background 0.25s;
  display: flex;
  flex-direction: column;
}

.process-step:last-child {
  border-right: 2px solid var(--black-color);
}

.process-step::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 2px solid var(--black-color);
  transition: all 0.3s ease;
}

.process-step:nth-child(1)::before {
  background: var(--main-color);
}
.process-step:nth-child(2)::before {
  background: var(--tertiary-color);
}
.process-step:nth-child(3)::before {
  background: var(--secondary-color);
}
.process-step:nth-child(4)::before {
  background: var(--fourth-color);
}

.process-step:hover::before {
  top: -1px;
  left: -1px;
}
.process-step:hover {
  background: var(--bg-color);
}

.process-number {
  font-size: 3rem;
  font-weight: 900;
  font-style: italic;
  color: #e0d8d0;
  line-height: 1;
  padding: 1.5rem 1.5rem 0;
  transition: color 0.25s;
}

.process-step:hover .process-number {
  color: var(--main-color);
}

.process-content {
  padding: 0.75rem 1.5rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.process-content h3 {
  font-size: var(--font-size-sm);
  font-weight: bold;
  color: var(--black-color);
  margin-bottom: 0.5rem;
}

.process-content p {
  font-size: var(--font-size-xs);
  color: #666;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.process-duration {
  display: inline-block;
  margin-top: 1rem;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #bbb;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 0.75rem;
  width: 100%;
}

/* ══════════════════════════════════════════════
       CTA FINAL
    ══════════════════════════════════════════════ */

.about-cta {
  padding: 0 0 6rem;
}

.about-cta-inner {
  border: 2px solid var(--black-color);
  background: var(--black-color);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.about-cta-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    170deg,
    transparent,
    transparent 60px,
    rgba(128, 184, 241, 0.04) 60px,
    rgba(128, 184, 241, 0.04) 61px
  );
  pointer-events: none;
}

.about-cta-text {
  position: relative;
  z-index: 1;
}

.about-cta-text .section-title {
  color: var(--tertiary-color);
}

.about-cta-text h2 {
  color: var(--white-color);
  font-size: clamp(1.4rem, 2.5vw, var(--font-size-xxl));
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.about-cta-text h2 em {
  color: var(--main-color);
  font-style: italic;
}

.about-cta-text p {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--font-size-xs);
  margin: 0;
}

.about-cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  flex-shrink: 0;
}

.about-cta-actions .note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  text-align: right;
  margin: 0;
}

/* ══════════════════════════════════════════════
       ANIMATIONS
    ══════════════════════════════════════════════ */

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.6s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.05s;
}
.fade-in:nth-child(2) {
  animation-delay: 0.15s;
}
.fade-in:nth-child(3) {
  animation-delay: 0.25s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*
.......##..............##.....##..#######..########.....###....##..........................##
......##...##...##.....###...###.##.....##.##.....##...##.##...##...........##...##.......##.
.....##.....##.##......####.####.##.....##.##.....##..##...##..##............##.##.......##..
....##....#########....##.###.##.##.....##.##.....##.##.....##.##..........#########....##...
...##.......##.##......##.....##.##.....##.##.....##.#########.##............##.##.....##....
..##.......##...##.....##.....##.##.....##.##.....##.##.....##.##...........##...##...##.....
.##....................##.....##..#######..########..##.....##.########..............##......
*/

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;

  /* Caché par défaut */
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  position: relative;
  background: var(--white-color);
  border: 2px solid var(--black-color);
  max-width: 480px;
  width: 100%;
  padding: 2.5rem 2.5rem 2rem;

  /* Ombre décalée — même style que form et vignettes */
  isolation: isolate;

  /* Animation d'entrée */
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.is-open .modal-box {
  transform: translateY(0);
}

.modal-box::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  border: 2px solid var(--black-color);
  z-index: -1;
  transition: all 0.3s ease;
}

.modal-box:hover::before {
  top: -1px;
  left: -1px;
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  font-size: 1rem;
  color: var(--black-color);
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition:
    background 0.2s,
    transform 0.2s;
  font-weight: bold;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.08);
  transform: rotate(90deg);
}

.modal-icon {
  width: 52px;
  height: 52px;
  border: 2px solid var(--black-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 1.25rem;
}

.success-icon {
  background: var(--fourth-color);
  color: var(--white-color);
}

.error-icon {
  background: var(--secondary-color);
  color: var(--white-color);
}

.modal-title {
  font-size: var(--font-size-md);
  font-weight: 900;
  color: var(--black-color);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.modal-text {
  font-size: var(--font-size-xs);
  color: #555;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.modal-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.modal-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: "Inter", sans-serif;
  font-size: var(--font-size-xs);
  font-weight: bold;
  text-decoration: none;
  border: none;
  cursor: pointer;
  isolation: isolate;
  transition: color 0.2s;
}

.modal-btn-primary {
  background: var(--secondary-color);
  color: var(--white-color);
}

.modal-btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--main-color);
  transition: all 0.3s ease;
}

.modal-btn-primary:hover::before {
  top: 4px;
  left: 4px;
}

.modal-btn-secondary {
  background: transparent;
  color: var(--black-color);
  border: 2px solid var(--black-color);
}

.modal-btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--tertiary-color);
  transition: all 0.3s ease;
}

.modal-btn-secondary:hover::before {
  top: 4px;
  left: 4px;
}

.modal-btn-arrow {
  transition: transform 0.2s;
}
.modal-btn:hover .modal-btn-arrow {
  transform: translateX(4px);
}

/* ── SPINNER (pendant l'envoi) ── */
.btn-submit.is-loading .btn-text {
  display: none;
}
.btn-submit.is-loading::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/*
.......##..............##..........#####...##...........................##
......##...##...##.....##....##...##...##..##....##......##...##.......##.
.....##.....##.##......##....##..##.....##.##....##.......##.##.......##..
....##....#########....##....##..##.....##.##....##.....#########....##...
...##.......##.##......#########.##.....##.#########......##.##.....##....
..##.......##...##...........##...##...##........##......##...##...##.....
.##..........................##....#####.........##...............##......
*/

.page-404 {
  min-height: calc(100vh - 100px); /* 100px = hauteur nav */
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

/* ── FOND DÉCORATIF ── */
.page-404-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Lignes diagonales en fond — reprend l'esthétique du CTA noir */
.page-404-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    160deg,
    transparent,
    transparent 80px,
    rgba(128, 184, 241, 0.04) 80px,
    rgba(128, 184, 241, 0.04) 81px
  );
}

/* Carrés décoratifs flottants */
.page-404-bg span {
  position: absolute;
  border: 2px solid var(--black-color);
  opacity: 0.06;
}
.page-404-bg span:nth-child(1) {
  width: 120px;
  height: 120px;
  top: 10%;
  right: 5%;
  background: var(--main-color);
  transform: rotate(15deg);
  animation: float1 8s ease-in-out infinite;
}
.page-404-bg span:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 12%;
  background: var(--secondary-color);
  transform: rotate(-20deg);
  animation: float2 6s ease-in-out infinite;
}
.page-404-bg span:nth-child(3) {
  width: 80px;
  height: 80px;
  bottom: 15%;
  left: 3%;
  background: var(--tertiary-color);
  transform: rotate(30deg);
  animation: float1 10s ease-in-out infinite reverse;
}
.page-404-bg span:nth-child(4) {
  width: 40px;
  height: 40px;
  top: 25%;
  left: 8%;
  background: var(--fourth-color);
  transform: rotate(-10deg);
  animation: float2 7s ease-in-out infinite;
}
.page-404-bg span:nth-child(5) {
  width: 200px;
  height: 2px;
  top: 45%;
  left: -20px;
  background: var(--main-color);
  opacity: 0.08;
}
.page-404-bg span:nth-child(6) {
  width: 2px;
  height: 150px;
  bottom: 20%;
  right: 20%;
  background: var(--secondary-color);
  opacity: 0.08;
}

@keyframes float1 {
  0%,
  100% {
    transform: rotate(15deg) translateY(0);
  }
  50% {
    transform: rotate(18deg) translateY(-12px);
  }
}
@keyframes float2 {
  0%,
  100% {
    transform: rotate(-20deg) translateY(0);
  }
  50% {
    transform: rotate(-17deg) translateY(10px);
  }
}

/* ── LAYOUT ── */
.page-404-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 2px solid var(--black-color);
  position: relative;
  z-index: 1;
  background: var(--bg-color);
}

/* Ombre décalée — cohérente avec les blocs du site */
.page-404-inner::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  background: var(--main-color);
  border: 2px solid var(--black-color);
  z-index: -1;
  transition: all 0.3s ease;
}
.page-404-inner:hover::before {
  top: -1px;
  left: -1px;
}

/* ── VISUEL GAUCHE ── */
.page-404-visual {
  background: var(--black-color);
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 2px solid var(--black-color);
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

/* Lignes de fond côté noir */
.page-404-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    170deg,
    transparent,
    transparent 40px,
    rgba(128, 184, 241, 0.05) 40px,
    rgba(128, 184, 241, 0.05) 41px
  );
  pointer-events: none;
}

/* Grand nombre 404 */
.error-number {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  position: relative;
  z-index: 1;
}

.error-digit {
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 900;
  font-style: italic;
  color: var(--white-color);
  line-height: 1;
  /* Animation d'entrée */
  animation: slideInUp 0.6s ease forwards;
}

.error-digit:last-child {
  animation-delay: 0.2s;
}

.error-zero {
  width: clamp(4.5rem, 9vw, 8rem);
  height: clamp(4.5rem, 9vw, 8rem);
  border: 4px solid var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: slideInUp 0.6s ease 0.1s forwards;
  opacity: 0;
}

.error-zero::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 2px solid rgba(242, 109, 52, 0.3);
}

.error-zero-inner {
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 900;
  font-style: italic;
  color: var(--secondary-color);
  line-height: 1;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.error-line {
  width: 80%;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    var(--main-color),
    var(--secondary-color),
    transparent
  );
  margin: 2rem 0 1.5rem;
  position: relative;
  z-index: 1;
  animation: expandLine 0.8s ease 0.4s forwards;
  transform: scaleX(0);
  transform-origin: center;
}

@keyframes expandLine {
  to {
    transform: scaleX(1);
  }
}

.error-code {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.6s ease 0.5s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── CONTENU DROITE ── */
.page-404-content {
  padding: 3.5rem 3rem;
  background: var(--bg-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.page-404-content .section-title {
  display: block;
  font-size: var(--font-size-xs);
  letter-spacing: 0.15em;
  color: var(--secondary-color);
  font-weight: bold;
  text-transform: uppercase;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.page-404-content h1 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--main-color);
  font-weight: 900;
  line-height: 1.15;
  margin: 0;
  text-transform: none;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.page-404-content h1 em {
  font-style: italic;
  color: var(--secondary-color);
}

.page-404-text {
  font-size: var(--font-size-xs);
  color: #555;
  line-height: 1.8;
  margin: 0;
  animation: fadeInUp 0.6s ease 0.4s both;
}

/* ── LIENS RAPIDES ── */
.page-404-links {
  border: 2px solid var(--black-color);
  position: relative;
  isolation: isolate;
  animation: fadeInUp 0.6s ease 0.5s both;
}

.page-404-links::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 100%;
  height: 100%;
  background: var(--tertiary-color);
  border: 2px solid var(--black-color);
  z-index: -1;
  transition: all 0.3s ease;
}
.page-404-links:hover::before {
  top: -1px;
  left: -1px;
}

.page-404-links-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #aaa;
  padding: 0.75rem 1.25rem 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--white-color);
}

.page-404-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white-color);
}

.page-404-links ul li {
  margin: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.page-404-links ul li:nth-child(even) {
  border-right: none;
}
.page-404-links ul li:nth-last-child(-n + 2) {
  border-bottom: none;
}

.page-404-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--black-color);
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s,
    padding-left 0.2s;
}

.page-404-link:hover {
  background: var(--bg-color);
  padding-left: 1.75rem;
}

.page-404-link-icon {
  color: var(--main-color);
  font-weight: 900;
  font-size: 12px;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.page-404-link:hover .page-404-link-icon {
  transform: translateX(4px);
}

/* ── CTA ── */
.page-404-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.6s both;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .page-404-inner {
    grid-template-columns: 1fr;
  }

  .page-404-visual {
    border-right: none;
    border-bottom: 2px solid var(--black-color);
    min-height: 260px;
    padding: 3rem 2rem;
  }

  .page-404-content {
    padding: 2.5rem 1.75rem;
  }

  .page-404-links ul {
    grid-template-columns: 1fr;
  }
  .page-404-links ul li {
    border-right: none;
  }
  .page-404-links ul li:last-child {
    border-bottom: none;
  }
  .page-404-links ul li:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .page-404-links ul li:last-child {
    border-bottom: none;
  }

  .page-404-cta {
    flex-direction: column;
  }
  .page-404-cta .btn {
    justify-content: center;
    width: 100%;
  }
}

/*
.......##..............########..#######...#######..########.########.########.....................##
......##...##...##.....##.......##.....##.##.....##....##....##.......##.....##.....##...##.......##.
.....##.....##.##......##.......##.....##.##.....##....##....##.......##.....##......##.##.......##..
....##....#########....######...##.....##.##.....##....##....######...########.....#########....##...
...##.......##.##......##.......##.....##.##.....##....##....##.......##...##........##.##.....##....
..##.......##...##.....##.......##.....##.##.....##....##....##.......##....##......##...##...##.....
.##....................##........#######...#######.....##....########.##.....##..............##......
*/

footer {
  background-color: var(--secondary-color);
}

/* ── CORPS DU FOOTER ── */
.footer-body {
  padding: 3rem 0 0;
}

.footer-body .container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 0;
  position: relative;
}

/* Colonne générique */
.footer-col {
  padding: 2rem 1.75rem;
  background: var(--secondary-color);
  border-right: 2px solid var(--black-color);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-col:last-child {
  border-right: none;
}

/* ── COL 1 : LOGO + ACCROCHE ── */
.footer-col-brand {
  gap: 1.25rem;
}

.footer-img img {
  height: 80px;
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.3));
  transition: filter 0.3s;
}
.footer-img:hover img {
  filter: drop-shadow(0px 0px 8px rgba(255, 255, 255, 0.4));
}

.footer-accroche {
  font-size: var(--font-size-xs);
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.7;
}

/* Stat rapide */
.footer-stat {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.footer-stat-value {
  font-size: var(--font-size-xl);
  font-weight: 900;
  color: var(--white-color);
  line-height: 1;
}
.footer-stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
}

/* ── COL LABEL ── */
.footer-col-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 0.25rem;
}

/* ── COL 2 : NAV ── */
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-nav ul li {
  transition: transform 0.3s ease;
}
.footer-nav ul li:nth-child(odd):hover {
  transform: rotate(3deg);
}
.footer-nav ul li:nth-child(even):hover {
  transform: rotate(-3deg);
}

.footer-nav ul li a {
  text-decoration: none;
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--black-color);
  padding: 8px 12px;
  display: block;
  transition:
    background 0.2s,
    color 0.2s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.footer-nav ul li:last-child a {
  border-bottom: none;
}

.footer-nav ul li:nth-child(1) a:hover {
  background: var(--main-color);
  color: var(--white-color);
}
.footer-nav ul li:nth-child(2) a:hover {
  background: var(--fourth-color);
  color: var(--white-color);
}
.footer-nav ul li:nth-child(3) a:hover {
  background: var(--tertiary-color);
  color: var(--black-color);
}
.footer-nav ul li:nth-child(4) a:hover {
  background: var(--main-color);
  color: var(--white-color);
}
.footer-nav ul li:nth-child(5) a:hover {
  background: var(--fourth-color);
  color: var(--white-color);
}

/* ── COL 3 : CONTACT ── */
.footer-contact {
  gap: 0;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.footer-contact-item:first-of-type {
  border-top: none;
}
.footer-contact-item:last-child {
  border-bottom: none;
}

.footer-contact-item:nth-child(odd):hover {
  transform: rotate(2deg);
}
.footer-contact-item:nth-child(even):hover {
  transform: rotate(-2deg);
}

.footer-contact-item a {
  text-decoration: none;
  font-size: var(--font-size-xs);
  font-weight: 500;
  color: var(--black-color);
  transition: color 0.2s;
}
.footer-contact-item a:hover {
  color: var(--white-color);
}

.contact-icon {
  font-size: 13px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

/* ── COL 4 : CTA + RÉSEAUX ── */
.footer-cta-col {
  align-items: flex-start;
}

.footer-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: var(--font-size-xs);
  font-weight: bold;
  color: var(--white-color);
  background: var(--black-color);
  text-decoration: none;
  isolation: isolate;
  transition: color 0.2s;
  width: 100%;
  justify-content: center;
}
.footer-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--main-color);
  transition: all 0.3s ease;
}
.footer-cta:hover::before {
  top: 4px;
  left: 4px;
}

.footer-cta-arrow {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.footer-cta:hover .footer-cta-arrow {
  transform: translateX(4px);
}

/* Réseaux sociaux */
.footer-social {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--black-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.3s;
  position: relative;
  isolation: isolate;
}
.social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--main-color);
  transform: scale(0);
  transition: transform 0.2s ease;
}
.social-link:hover::before {
  transform: scale(1);
}
.social-link:hover {
  transform: rotate(5deg);
}

.social-link img {
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* Localisation */
.footer-location {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: auto;
  padding-top: 0.5rem;
}

/* ── PIED : MENTIONS ── */
.footer-mentions {
  border-top: 2px solid var(--black-color);
  background: var(--secondary-color);
}

.footer-mentions .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border: none;
  background: transparent;
}

/* CORRECTION : suppression du ::before hérité sur ce container */
.footer-mentions .container::before {
  display: none;
}

.footer-mentions ul {
  list-style: none;
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

.footer-mentions ul li {
  transition: transform 0.3s ease;
}
.footer-mentions ul li:nth-child(odd):hover {
  transform: rotate(3deg);
}
.footer-mentions ul li:nth-child(even):hover {
  transform: rotate(-3deg);
}

.footer-mentions ul li a {
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  color: var(--black-color);
  padding: 6px 12px;
  display: block;
  transition:
    background 0.2s,
    color 0.2s;
}
.footer-mentions ul li:nth-child(odd) a:hover {
  background: var(--main-color);
  color: var(--white-color);
}
.footer-mentions ul li:nth-child(even) a:hover {
  background: var(--fourth-color);
  color: var(--white-color);
}

.footer-year {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: 0.05em;
}

/*
.......##..............##.....##.########.##....##.########.####..#######..##....##..######.....##........######......###....##.......########..######.....................##
......##...##...##.....###...###.##.......###...##....##.....##..##.....##.###...##.##....##....##.......##....##....##.##...##.......##.......##....##.....##...##.......##.
.....##.....##.##......####.####.##.......####..##....##.....##..##.....##.####..##.##..........##.......##.........##...##..##.......##.......##............##.##.......##..
....##....#########....##.###.##.######...##.##.##....##.....##..##.....##.##.##.##..######.....##.......##...####.##.....##.##.......######....######.....#########....##...
...##.......##.##......##.....##.##.......##..####....##.....##..##.....##.##..####.......##....##.......##....##..#########.##.......##.............##......##.##.....##....
..##.......##...##.....##.....##.##.......##...###....##.....##..##.....##.##...###.##....##....##.......##....##..##.....##.##.......##.......##....##.....##...##...##.....
.##....................##.....##.########.##....##....##....####..#######..##....##..######.....########..######...##.....##.########.########..######...............##......
*/

.legal-section {
  margin-bottom: 40px;
}

.legal-section h3 {
  color: var(--secondary-color);
  font-size: var(--font-size-md);
  margin-top: 20px;
}

.legal-box {
  background: var(--white-color);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

ul {
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.info-item {
  background: var(--surface);
  padding: 1.25rem 1.5rem;
}

.info-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.35rem;
  font-family: "Syne", sans-serif;
}

.info-value {
  color: var(--text);
  font-size: 0.9rem;
}

/*
.......##..............########....###....########..##.......########.########.########.########....................##
......##...##...##........##......##.##...##.....##.##.......##..........##.......##....##...........##...##.......##.
.....##.....##.##.........##.....##...##..##.....##.##.......##..........##.......##....##............##.##.......##..
....##....#########.......##....##.....##.########..##.......######......##.......##....######......#########....##...
...##.......##.##.........##....#########.##.....##.##.......##..........##.......##....##............##.##.....##....
..##.......##...##........##....##.....##.##.....##.##.......##..........##.......##....##...........##...##...##.....
.##.......................##....##.....##.########..########.########....##.......##....########..............##......
*/
@media (max-width: 1024px) {
  nav img {
    height: 70px;
  }

  nav ul li a,
  .navBtn-desktop {
    font-size: var(--font-size-sm);
  }

  nav ul {
    gap: 20px;
  }

  h1 {
    font-size: var(--font-size-xl);
  }
  .title-desktop {
    display: none;
  }
  .title-tab {
    display: inline-block;
  }

  .sectionUn {
    padding-top: 0;
  }

  .sectionUn .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .col-image {
    order: -1;
  }

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

  .sectionDeux-intro {
    grid-template-columns: 1fr;
  }
  .intro-col:first-child {
    border-right: none;
    border-bottom: 2px solid var(--black-color);
  }

  .sectionDeux-header .section-title,
  .sectionQuatre-header .section-title {
    text-align: center;
  }

  .drone-inner {
    grid-template-columns: 1fr;
  }
  .drone-text {
    border-right: none;
    border-bottom: 2px solid var(--black-color);
  }
  .drone-visual {
    min-height: 280px;
  }

  .offres-grid {
    grid-template-columns: 1fr 1fr;
  }
  .offre-card:nth-child(2) {
    border-right: 2px solid var(--black-color);
  }
  .offre-card:nth-child(3) {
    border-top: none;
    grid-column: 1/-1;
    border-right: 2px solid var(--black-color);
  }
  .offre-card.maintenance-col {
    flex-direction: row;
  }

  .offre-foot .btn {
    width: 80%;
    margin: auto;
  }
  .maintenance-block {
    flex: 1;
    border-bottom: none;
    border-right: 2px solid var(--black-color);
  }
  .depannage-block {
    flex: 1;
  }

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

  .portfolio-intro {
    grid-template-columns: 1fr;
  }
  .portfolio-intro-text {
    border-right: none;
    border-bottom: 2px solid var(--black-color);
  }

  .footer-body .container {
    grid-template-columns: 1fr 1fr;
  }
  .footer-col {
    border-bottom: 2px solid var(--black-color);
  }
  .footer-col:nth-child(even) {
    border-right: none;
  }
  .footer-col:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .about-hero .container,
  .reconversion-inner,
  .eco-inner {
    grid-template-columns: 1fr;
  }

  .about-photo {
    min-height: 320px;
    border-right: none;
    border-bottom: 2px solid var(--black-color);
  }

  .reconversion-text {
    border-right: none;
    border-bottom: 2px solid var(--black-color);
  }

  .eco-text {
    border-right: none;
    border-bottom: 2px solid var(--black-color);
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .value-card:nth-child(2) {
    border-right: 2px solid var(--black-color);
  }
  .value-card:nth-child(3) {
    border-top: none;
    grid-column: 1/-1;
    border-right: 2px solid var(--black-color);
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-step:nth-child(2) {
    border-right: 2px solid var(--black-color);
  }
  .process-step:nth-child(3) {
    border-top: none;
  }
  .process-step:nth-child(4) {
    border-top: none;
    border-right: 2px solid var(--black-color);
  }

  .about-cta-inner {
    grid-template-columns: 1fr;
  }
  .about-cta-actions {
    align-items: flex-start;
  }

  .apropos-inner {
    grid-template-columns: 1fr;
  }

  .apropos-photo {
    border-right: none;
    border-bottom: 2px solid var(--black-color);
    min-height: 320px;
  }

  .apropos-photo img {
    width: 100%;
    height: 600px;
  }

  .apropos-text {
    padding: 2rem 2.5rem;
  }

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

  .panel-top {
    grid-template-columns: 1fr;
  }

  .panel-left {
    border-right: none;
    border-bottom: 2px solid var(--black-color);
  }

  .panel-right {
    min-height: 320px;
  }

  .panel-two-cols {
    grid-template-columns: 1fr;
  }

  .panel-col {
    border-right: none;
    border-bottom: 2px solid var(--black-color);
  }

  .panel-col-right {
    border-right: none;
  }

  .panel-bottom {
    flex-wrap: wrap;
  }

  .meta-cell {
    flex: 1 1 50%;
  }

  .cta-cell {
    width: 100%;
    border-top: 2px solid var(--black-color);
  }
}

/*
.......##..............##.....##..#######..########..####.##.......########....................##
......##...##...##.....###...###.##.....##.##.....##..##..##.......##...........##...##.......##.
.....##.....##.##......####.####.##.....##.##.....##..##..##.......##............##.##.......##..
....##....#########....##.###.##.##.....##.########...##..##.......######......#########....##...
...##.......##.##......##.....##.##.....##.##.....##..##..##.......##............##.##.....##....
..##.......##...##.....##.....##.##.....##.##.....##..##..##.......##...........##...##...##.....
.##....................##.....##..#######..########..####.########.########..............##......
*/
@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .navBtn-desktop {
    display: none;
  }

  .navBtn-mobile {
    display: block;
  }

  nav ul li:nth-child(1) a {
    color: var(--secondary-color);
  }

  nav {
    background-color: var(--bg-color);
    position: relative;
  }

  nav ul {
    position: absolute;
    left: -100%;
    top: 100%;
    flex-direction: column;
    background-color: var(--main-color);
    color: var(--white-color);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
    gap: 1.5rem;
    padding-bottom: 100px;
    z-index: 1000;
  }

  nav ul.active {
    left: 0;
    z-index: 1000;
  }

  .sectionUn .container {
    grid-template-columns: 1fr;
  }

  .offre-foot .btn {
    width: 100%;
    margin: auto;
  }
  .col-text {
    padding-right: 0;
  }
  .btn-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 5px;
    gap: 1rem;
  }

  .super-box {
    max-width: 100%;
  }

  .container-box,
  .box {
    width: 170px;
    height: 170px;
  }

  .title {
    font-size: 10px;
  }

  .offres-grid {
    grid-template-columns: 1fr;
  }
  .offre-card {
    border-right: 2px solid var(--black-color) !important;
    border-bottom: none;
  }
  .offre-card:last-child {
    border-bottom: 2px solid var(--black-color);
  }
  .offre-card:nth-child(3) {
    grid-column: auto;
    border-top: none;
  }
  .offre-card.maintenance-col {
    flex-direction: column;
  }
  .maintenance-block {
    border-right: none;
    border-bottom: 2px solid var(--black-color);
  }

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

  .form-group,
  .form-group.single {
    grid-template-columns: 1fr;
  }
  .field {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .field:last-child {
    border-bottom: none;
  }
  .form-footer {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .footer-body .container {
    grid-template-columns: 1fr;
  }
  .footer-col {
    border-right: none !important;
  }
  .footer-col:last-child {
    border-bottom: none;
  }
  .footer-mentions .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-mentions ul {
    flex-direction: column;
  }

  .values-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .value-card,
  .process-step {
    border-right: 2px solid var(--black-color) !important;
    border-bottom: none;
  }

  .value-card:last-child,
  .process-step:last-child {
    border-bottom: 2px solid var(--black-color);
  }

  .value-card:nth-child(3) {
    grid-column: auto;
    border-top: none !important;
  }

  .about-stats {
    flex-direction: column;
  }
  .about-stat {
    border-right: none;
    border-bottom: 2px solid var(--black-color);
  }
  .about-stat:last-child {
    border-bottom: none;
  }

  .apropos-photo img {
    height: 600px;
  }

  .apropos-text {
    padding: 1.75rem;
  }

  .apropos-text h2 {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }

  .apropos-pills {
    gap: 0.4rem;
  }

  .apropos-pill {
    font-size: 10px;
    padding: 0.4rem 0.75rem;
  }

  /* Le bouton prend toute la largeur sur mobile */
  .apropos-text-footer .btn {
    width: 100%;
    justify-content: center;
  }

  .apropos-quote {
    max-width: 100%;
  }

  .panel-left {
    padding: 2rem 1.75rem;
  }

  .panel-col,
  .panel-sub {
    padding: 1.75rem;
  }

  .meta-cell {
    flex: 1 1 100%;
    border-right: none;
    border-bottom: 2px solid var(--black-color);
  }

  .meta-cell:last-of-type {
    border-bottom: none;
  }

  .screen-mock {
    max-width: 100%;
  }
}
