/* ================================================================
   MEGATRANS & MACHINERY — css/components.css
   ================================================================ */

/* ═══════════════════ NAV ═══════════════════ */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 999;
  min-height: var(--nav-h);
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 5vw;
  background: rgba(8,10,14,0.9);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(245,166,35,0.12);
  transition: background var(--t-lg), border-color var(--t-lg);
  overflow: visible;
}
.nav.solid {
  background: rgba(8,10,14,0.99);
  border-bottom-color: rgba(245,166,35,0.3);
}

/* ── Logo ── */
.nav-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  /* La pilule */
  background: #ffffff;
  border-radius: 9999px;
  padding: 0 20px;
  box-shadow:
    0 2px 14px rgba(0,0,0,0.35),
    0 0 0 1px rgba(245,166,35,0.2);
  transition: box-shadow var(--t);
  overflow: hidden;
  height: 64px;
  max-height: calc(var(--nav-h) - 16px);
}

.nav-logo img {
  height: 90px;
  width: auto;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
  image-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.nav-logo:hover {
  box-shadow:
    0 4px 22px rgba(0,0,0,0.4),
    0 0 0 2px rgba(245,166,35,0.5);
}

/* ── Actions de navigation ── */
.nav-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
  margin-top: 0;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.45rem;
  border: 1px solid rgba(245,166,35,0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  min-height: 2.1rem;
}
.lang-switcher__select {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  padding: 0;
  width: 2.45rem;
  min-width: 2.45rem;
  text-align: center;
}
.lang-switcher__select:focus {
  outline: none;
}
.lang-switcher--mobile {
  justify-content: flex-start;
  margin-bottom: 0.25rem;
}

/* ── Liens ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  height: auto;
  margin-top: 0;
}
.nav-links a {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-light);
  transition: color var(--t);
  white-space: nowrap;
  text-decoration: none;
  padding: 0.4rem 0;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-links .nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 0.5rem 1.4rem;
  border-radius: var(--r-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: background var(--t), transform var(--t);
}
.nav-links .nav-cta:hover {
  background: var(--gold-dark);
  color: var(--black);
  transform: translateY(-1px);
}

/* ── Burger ── */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t);
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; width: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── Menu mobile ── */
.nav-mob {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(8,10,14,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--gold);
  padding: 2rem 5vw 2.5rem;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 998;
}
.nav-mob.open { display: flex; }
.nav-mob a {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--t);
  text-decoration: none;
}
.nav-mob a:hover { color: var(--gold); }
.nav-mob .nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 0.85rem 1.5rem;
  border-radius: var(--r-xs);
  font-weight: 700;
  text-align: center;
  margin-top: 0.5rem;
}


/* ═══════════════════ HERO ═══════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-h) + 2rem) 5vw 8vh;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(8,10,14,0.92) 38%, rgba(8,10,14,0.25) 100%),
    linear-gradient(to bottom, rgba(8,10,14,0.05) 0%, rgba(8,10,14,0.96) 82%);
}

.hero__slash {
  position: absolute;
  top: 0; bottom: 0;
  left: 54%;
  width: 3px;
  background: linear-gradient(to bottom, transparent 5%, var(--gold) 35%, var(--gold) 65%, transparent 95%);
  opacity: 0.15;
  transform: rotate(8deg);
  z-index: 2;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.hero__deco-num {
  position: absolute;
  right: 4vw;
  bottom: 8vh;
  font-family: var(--font-display);
  font-size: 20vw;
  font-weight: 900;
  color: rgba(245,166,35,0.035);
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  z-index: 2;
  user-select: none;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero__kicker::before {
  content: '';
  display: block;
  width: 3rem;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero__headline {
  font-size: clamp(3.8rem, 9vw, 9rem);
  line-height: 0.88;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.015em;
}
.hero__headline .stroke {
  -webkit-text-stroke: 2px var(--gold);
  color: transparent;
}
.hero__headline .filled { color: var(--white); }
.hero__headline .gold   { color: var(--gold); }

.hero__sub {
  margin-top: 1.75rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.58);
  max-width: 50ch;
}

.hero__services-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.5rem;
}
.hero__services-inline span {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,166,35,0.09);
  border: 1px solid rgba(245,166,35,0.22);
  padding: 0.28rem 0.7rem;
  border-radius: var(--r-xs);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.25rem;
}

.hero__foot-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  opacity: 0.4;
  z-index: 3;
}


/* ═══════════════════ STATS ═══════════════════ */
.stats-bar {
  background: var(--steel);
  border-top: 2px solid var(--gold);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 2rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background var(--t);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--steel-mid); }
.stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.75rem;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel-light);
  margin-top: 0.4rem;
  display: block;
}


/* ═══════════════════ SERVICES ═══════════════════ */
.services { background: var(--black-soft); }

.services__intro {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3.5rem;
}
.services__desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 44ch;
}

.services__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.svc-card--hero {
  grid-row: span 2;
}

.svc-card {
  background: var(--track);
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background var(--t-lg);
}
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,166,35,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-lg);
}
.svc-card:hover { background: var(--steel-mid); }
.svc-card:hover::before { opacity: 1; }
.svc-card::after {
  content: '';
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
  border-radius: 0 2px 2px 0;
}
.svc-card:hover::after { transform: scaleY(1); }

.svc-card__icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  display: block;
}
.svc-card--hero .svc-card__icon { font-size: 3rem; margin-bottom: 2rem; }

.svc-card__num {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(245,166,35,0.07);
  line-height: 1;
  pointer-events: none;
}
.svc-card--hero .svc-card__num { font-size: 8rem; }

.svc-card__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.svc-card--hero .svc-card__name { font-size: 2rem; }

.svc-card__desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}

.svc-card__sub-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.svc-card__sub-list li {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.svc-card__sub-list li::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.svc-card__tag {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 0.25rem 0.7rem;
  border-radius: var(--r-xs);
  width: fit-content;
}


/* ═══════════════════ FLEET ═══════════════════ */
.fleet { background: var(--black); }

.fleet__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.fleet-card {
  background: var(--track);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--r-md);
  padding: 2rem 1.75rem;
  transition: border-color var(--t), transform var(--t-lg);
  position: relative;
  overflow: hidden;
}
.fleet-card:hover {
  border-color: rgba(245,166,35,0.35);
  transform: translateY(-4px);
}
.fleet-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 20%; right: 20%;
  height: 1px;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--t-lg);
}
.fleet-card:hover::after { opacity: 0.6; }

.fleet-card__icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.fleet-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}
.fleet-card__items {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.75rem;
}
.fleet-card__items span {
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.fleet-card__items span::before {
  content: '→';
  color: var(--gold);
  font-size: 0.65rem;
  flex-shrink: 0;
}


/* ═══════════════════ SECTEURS ═══════════════════ */
.sectors {
  background: var(--steel);
  position: relative;
  overflow: hidden;
}
.sectors__wm {
  position: absolute;
  right: -3rem; top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 10rem;
  color: rgba(255,255,255,0.025);
  letter-spacing: 0.05em;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}
.sectors__inner {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 5rem;
  align-items: center;
}
.sectors__list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 2.5rem;
}
.sectors__list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.sectors__list li:last-child { border-bottom: none; padding-bottom: 0; }
.sectors__list li::before {
  content: '▸';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.sectors__pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.sector-pill {
  background: var(--steel-mid);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-sm);
  padding: 2rem 1.25rem;
  text-align: center;
  transition: background var(--t), border-color var(--t), transform var(--t-lg);
}
.sector-pill:hover {
  background: rgba(245,166,35,0.08);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.sector-pill__icon { font-size: 2.25rem; margin-bottom: 0.65rem; display: block; }
.sector-pill__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--off-white);
}


/* ═══════════════════ PROCESS ═══════════════════ */
.process { background: var(--black-soft); }

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  margin-top: 4rem;
  gap: 1rem;
}
.process__steps::before {
  content: '';
  position: absolute;
  top: 1.4rem;
  left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold));
  opacity: 0.18;
}
.proc-step { padding: 0 1rem; text-align: center; }
.proc-step__num {
  width: 2.875rem; height: 2.875rem;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  color: var(--gold);
  background: var(--black-soft);
  position: relative;
  z-index: 1;
  transition: background var(--t), color var(--t);
}
.proc-step:hover .proc-step__num {
  background: var(--gold);
  color: var(--black);
}
.proc-step__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}
.proc-step__desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
}


/* ═══════════════════ WHY ═══════════════════ */
.why { background: var(--track); }

.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why__points {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.why-point { display: flex; gap: 1.25rem; align-items: flex-start; }
.why-point__icon {
  flex-shrink: 0;
  width: 2.75rem; height: 2.75rem;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background var(--t), border-color var(--t);
}
.why-point:hover .why-point__icon {
  background: rgba(245,166,35,0.2);
  border-color: var(--gold);
}
.why-point__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
}
.why-point__desc { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }

.why__callout {
  background: var(--gold);
  color: var(--black);
  padding: 3.25rem 2.75rem;
  border-radius: var(--r-sm);
  position: relative;
  overflow: hidden;
}
.why__callout::before {
  content: 'M';
  position: absolute;
  right: -1rem; bottom: -2rem;
  font-family: var(--font-display);
  font-size: 12rem;
  font-weight: 900;
  color: rgba(0,0,0,0.07);
  line-height: 1;
  pointer-events: none;
}
.why__callout-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5rem;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 1.25rem;
}
.why__callout p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(0,0,0,0.65);
  margin-bottom: 2rem;
}


/* ═══════════════════ GALERIE ═══════════════════ */
.gallery { background: var(--black); }

.gallery__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 1rem;
  margin-top: 3.5rem;
}
.gallery__grid .gal-item:first-child { grid-row: span 2; }

.gal-item {
  background: var(--track);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--r-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: border-color var(--t), transform var(--t-lg);
}
.gal-item:hover { border-color: rgba(245,166,35,0.4); transform: scale(1.01); }
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gal-item:hover img { transform: scale(1.05); }

.gal-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--steel-light);
}
.gal-placeholder .pi { font-size: 2.25rem; opacity: 0.5; }
.gal-placeholder .pt {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.5;
}
.gal-item__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.6rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transition: opacity var(--t);
}
.gal-item:hover .gal-item__label { opacity: 1; }


/* ═══════════════════ CONTACT ═══════════════════ */
.contact { background: var(--black-soft); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4.5rem;
  align-items: start;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
.info-item { display: flex; gap: 1.1rem; align-items: flex-start; }
.info-item__icon {
  flex-shrink: 0;
  width: 2.75rem; height: 2.75rem;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.info-item__label {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel-light);
  margin-bottom: 0.2rem;
  display: block;
}
.info-item__val {
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.45;
}

/* Form */
.cform { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cform-group { display: flex; flex-direction: column; gap: 0.35rem; }
.cform-group label {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-light);
}
.cform-group input,
.cform-group select,
.cform-group textarea {
  background: var(--track);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-xs);
  padding: 0.8rem 1.1rem;
  color: var(--white);
  font-size: 0.875rem;
  outline: none;
  width: 100%;
  transition: border-color var(--t), background var(--t);
  appearance: none;
  -webkit-appearance: none;
}
.cform-group input:focus,
.cform-group select:focus,
.cform-group textarea:focus {
  border-color: var(--gold);
  background: rgba(245,166,35,0.03);
}
.cform-group input::placeholder,
.cform-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.cform-group select option { background: var(--track); }
.cform-group textarea { resize: vertical; min-height: 128px; }
.cform-submit { width: 100%; margin-top: 0.5rem; }

.form-ok {
  display: none;
  background: #1a3a28;
  border: 1px solid #2d6a4f;
  color: #4ade80;
  padding: 1rem 1.25rem;
  border-radius: var(--r-xs);
  font-size: 0.875rem;
  text-align: center;
  margin-top: 1rem;
}


/* ═══════════════════ FOOTER ═══════════════════ */
.footer {
  background: var(--steel);
  border-top: 2px solid var(--gold);
  padding: 2.5rem 5vw;
}
.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Logo footer identique au logo navbar */
.footer__brand > img {
  display: block;
  height: 90px;
  width: auto;
  object-fit: cover;
  object-position: 50% 50%;
  background: #ffffff;
  border-radius: 9999px;
  padding: 0 20px;
  margin-bottom: 0.5rem;
  box-shadow:
    0 2px 14px rgba(0,0,0,0.35),
    0 0 0 1px rgba(245,166,35,0.2);
  transition: box-shadow var(--t);
  image-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.footer__brand > img:hover {
  box-shadow:
    0 4px 22px rgba(0,0,0,0.4),
    0 0 0 2px rgba(245,166,35,0.5);
}

.footer__tagline {
  font-size: 0.66rem;
  color: var(--steel-light);
  letter-spacing: 0.1em;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.75rem;
}
.footer__links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-light);
  transition: color var(--t);
  text-decoration: none;
}
.footer__links a:hover { color: var(--gold); }
.footer__copy {
  font-size: 0.7rem;
  color: var(--steel-light);
  text-align: right;
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════
   RESPONSIVE — COMPLET
   ═══════════════════════════════════════════════ */

/* ── Tablette large (< 1200px) ── */
@media (max-width: 1200px) {
  .nav-actions { gap: 0.85rem; }
  .nav-links { gap: 1.4rem; }
  .nav-links a { font-size: 0.72rem; }

  .services__grid {
    grid-template-columns: 1fr 1fr;
  }
  .svc-card--hero { grid-column: span 2; grid-row: auto; }
  .svc-card--hero .svc-card__name { font-size: 1.6rem; }

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

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }
  .gallery__grid .gal-item:first-child {
    grid-column: span 2;
    grid-row: auto;
  }
}

/* ── Tablette (< 960px) ── */
@media (max-width: 960px) {
  :root { --nav-h: 76px; }

  /* Nav */
  .nav-actions { display: none; }
  .burger    { display: flex; }

  /* Logo tablette - pilule plus petite */
  .nav-logo {
    height: 56px;
    padding: 0 16px;
  }
  .nav-logo img {
    height: 78px;
  }

  /* Stats : 2 colonnes */
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  /* Services */
  .services__intro { grid-template-columns: 1fr; gap: 1.5rem; }
  .services__desc  { max-width: 100%; }

  /* Secteurs */
  .sectors__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .sectors__wm    { display: none; }

  /* Process : 2 colonnes */
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .process__steps::before { display: none; }

  /* Why */
  .why__grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Contact */
  .contact__grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  .footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer__brand .footer-logo {
    height: 56px;
    padding: 0 16px;
  }
  .footer__brand .footer-logo img {
    height: 78px;
  }
  .footer__links { justify-content: center; }
  .footer__copy  { text-align: center; }
}

/* ── Mobile (< 640px) ── */
@media (max-width: 640px) {
  :root { --nav-h: 68px; }

  /* Nav logo mobile - pilule plus petite */
  .nav-logo {
    height: 48px;
    padding: 0 14px;
  }
  .nav-logo img {
    height: 68px;
  }

  /* Hero */
  .hero { padding-bottom: 6vh; }
  .hero__headline { font-size: clamp(2.8rem, 13vw, 4.5rem); }
  .hero__headline .stroke { -webkit-text-stroke-width: 1.5px; }
  .hero__sub { font-size: 0.92rem; }
  .hero__deco-num { display: none; }
  .hero__slash    { display: none; }
  .hero__services-inline span { font-size: 0.6rem; padding: 0.22rem 0.55rem; }

  /* Stats : 2 colonnes sur mobile */
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-num  { font-size: 2.1rem; }

  /* Services */
  .services__grid    { grid-template-columns: 1fr; }
  .svc-card--hero    { grid-column: auto; }
  .svc-card          { padding: 1.75rem 1.5rem; }

  /* Fleet */
  .fleet__grid { grid-template-columns: 1fr; }

  /* Secteurs pills : 2 col */
  .sectors__pills { grid-template-columns: 1fr 1fr; }

  /* Process : 1 col */
  .process__steps { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 180px);
  }
  .gallery__grid .gal-item:first-child { grid-column: auto; grid-row: auto; }

  /* Form */
  .cform-row { grid-template-columns: 1fr; }

  /* Footer logo mobile */
  .footer__brand .footer-logo {
    height: 52px;
    padding: 0 16px;
  }
  .footer__brand .footer-logo img {
    height: 72px;
  }
  .footer__inner { gap: 1.25rem; }
}

/* ── Très petit (< 380px) ── */
@media (max-width: 380px) {
  .nav-logo {
    height: 42px;
    padding: 0 12px;
  }
  .nav-logo img {
    height: 60px;
  }

  .hero__headline { font-size: clamp(2.4rem, 14vw, 3.5rem); }
  .hero__ctas     { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .stats-bar      { grid-template-columns: 1fr; }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .stat-item:last-child { border-bottom: none; }

  .footer__brand .footer-logo {
    height: 46px;
    padding: 0 12px;
  }
  .footer__brand .footer-logo img {
    height: 64px;
  }
}