/* ==========================================================
   CUT LASER SYSTEM — Global stylesheet
   Navy + Red · Modern · Responsive
   ========================================================== */

:root {
  /* Couleurs de marque */
  --primary: #2b3990;
  --primary-dark: #1f2a6b;
  --primary-soft: #eef0fa;
  --primary-softer: #f7f8fd;
  --secondary: #ed1c24;
  --secondary-dark: #c2121a;
  --secondary-soft: #fdebec;

  /* Neutres */
  --bg: #fafaf8;
  --bg-pure: #ffffff;
  --bg-soft: #f1f1ed;
  --text: #0a0a12;
  --text-soft: #4a4a55;
  --text-mute: #8a8a95;
  --border: #e6e6e0;
  --border-strong: #d2d2ca;
  --ink: #0a0a12;

  /* Typographie */
  --font-display: "Poppins", -apple-system, sans-serif;
  --font-body: "Poppins", -apple-system, sans-serif;
  --font-mono: "Poppins", -apple-system, sans-serif;

  /* Layout */
  --container: 1320px;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 32px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(10, 10, 18, 0.04);
  --shadow-md: 0 8px 24px rgba(10, 10, 18, 0.07);
  --shadow-lg: 0 30px 60px rgba(10, 10, 18, 0.1);
  --shadow-primary: 0 16px 40px -12px rgba(43, 57, 144, 0.45);
  --shadow-secondary: 0 16px 40px -12px rgba(237, 28, 36, 0.4);

  /* Easing */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* RESET */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-weight: 400;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

::selection { background: var(--primary); color: #fff; }

/* Subtle noise overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.02;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ==========================================================
   TYPOGRAPHIE
   ========================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--text);
  font-optical-sizing: auto;
}

.h-hero {
  font-size: clamp(3rem, 10vw, 9rem);
  line-height: 0.88;
  letter-spacing: -0.045em;
  font-weight: 300;
}

.h-section {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  letter-spacing: -0.035em;
  font-weight: 300;
  line-height: 0.95;
}

.h-sub {
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 400;
}

.italic {
  font-style: italic;
  font-weight: 500;
  color: var(--primary);
}

.accent-red {
  color: var(--secondary);
  font-style: italic;
  font-weight: 500;
}

.underline-accent {
  position: relative;
  display: inline-block;
  padding: 0 0.1em;
  z-index: 0;
}

.underline-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 0.22em;
  background: var(--secondary);
  z-index: -1;
  border-radius: 3px;
  opacity: 0.85;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0.55rem 1rem;
  background: var(--bg-pure);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--secondary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(237, 28, 36, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(237, 28, 36, 0.2); }
  50% { box-shadow: 0 0 0 9px rgba(237, 28, 36, 0.05); }
}

/* ==========================================================
   LAYOUT
   ========================================================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: clamp(4rem, 10vw, 9rem) 0; }

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 1rem 1.75rem;
  border-radius: var(--radius-pill);
  transition: all 0.4s var(--ease);
  position: relative;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-primary);
}

.navbar .btn {
  margin-left: -0.5rem;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 20px 45px -12px rgba(43, 57, 144, 0.6);
}

.btn-secondary {
  background: var(--secondary);
  color: #fff;
  font-weight: 600;
  box-shadow: var(--shadow-secondary);
}

.btn-secondary:hover {
  background: var(--secondary-dark);
  transform: translateY(-3px);
  box-shadow: 0 20px 45px -12px rgba(237, 28, 36, 0.55);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border-strong);
}

.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.btn-light {
  background: var(--bg-pure);
  color: var(--ink);
}

.btn-light:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-3px);
}

.btn-arrow {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
  color: currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-left: 0.25rem;
  transition: transform 0.4s var(--ease);
}

.btn-ghost .btn-arrow,
.btn-light .btn-arrow {
  background: var(--bg-soft);
  color: var(--ink);
}

.btn:hover .btn-arrow {
  transform: rotate(-45deg);
}

.btn-arrow svg { width: 14px; height: 14px; }

/* ==========================================================
   NAVBAR
   ========================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: none;
  transform: none;
  z-index: 100;
  /* Bar spans full screen; content stays inside the same 1760px max
     extent it had before — extra screen width becomes side padding. */
  padding-left: max(38px, calc(50vw - 842px));
  padding-right: max(38px, calc(50vw - 842px));
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 130px;
}

.navbar.scrolled {
  box-shadow: 0 4px 32px rgba(10,10,18,0.09);
  border-color: var(--border-strong);
}

/* ── Brand / Logo ── */
.nav-brand { display: flex; align-items: center; flex-shrink: 0; }

.nav-logo {
  height: 86px;
  width: auto;
  display: block;
  transition: height 0.3s var(--ease);
}

/* ── Nav menu ── */
.nav-menu {
  display: flex;
  gap: 0;
  align-items: stretch;
  margin: 0;
  height: 100%;
  padding: 0;
  background: none;
  border-radius: 0;
}

.nav-menu li {
  display: flex;
  align-items: center;
}

.nav-menu a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-soft);
  padding: 0 1rem;
  height: 130px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.25s var(--ease);
  white-space: nowrap;
}

/* Dot indicator on hover */
.nav-menu a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--secondary);
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

/* Bottom bar */
.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--primary);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav-menu a:hover { color: var(--ink); }
.nav-menu a:hover::before { opacity: 1; transform: scale(1); }
.nav-menu a:hover::after { transform: scaleX(1); background: var(--secondary); }

.nav-menu a.active {
  color: var(--primary);
  font-weight: 700;
}
.nav-menu a.active::before { opacity: 1; transform: scale(1); background: var(--primary); }
.nav-menu a.active::after { transform: scaleX(1); background: var(--primary); }

/* ── Nav dropdown (Entreprise) ── */
.nav-item-dropdown { position: relative; }

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.nav-dropdown-chevron {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  opacity: 0.5;
  transition: transform 0.35s var(--ease), opacity 0.25s;
}

.nav-item-dropdown:hover .nav-dropdown-chevron {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--primary);
}

/* Invisible hover bridge */
.nav-item-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -16px;
  right: -16px;
  height: 16px;
  z-index: 149;
}

/* Panel */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 260px;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.28s var(--ease);
  z-index: 150;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.5rem 0;
  box-shadow:
    0 1px 2px rgba(43, 57, 144, 0.04),
    0 12px 32px -8px rgba(10, 10, 18, 0.12),
    0 24px 48px -16px rgba(43, 57, 144, 0.08);
  overflow: hidden;
}

/* Top accent strip — brand signature */
.nav-dropdown::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary) 40%, var(--secondary) 40%, var(--secondary) 100%);
}

.nav-item-dropdown:hover .nav-dropdown {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-dropdown li {
  display: block;
  position: relative;
}

.nav-dropdown li + li {
  border-top: 1px solid var(--border);
}

.nav-dropdown li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  border-radius: 0;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0;
  text-transform: none;
  height: auto;
  background: transparent;
  transition: color 0.25s var(--ease), padding-left 0.3s var(--ease);
}

/* Numeric index — industrial mono feel */
.nav-dropdown li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 2px;
  height: 60%;
  background: var(--secondary);
  transition: transform 0.3s var(--ease);
  transform-origin: center;
  display: block;
}

.nav-dropdown li a::after { display: none; }

.nav-dropdown li a:hover {
  background: var(--primary-softer);
  color: var(--ink);
  padding-left: 1.35rem;
}

.nav-dropdown li a:hover::before {
  transform: translateY(-50%) scaleY(1);
}

/* Mobile */
@media (max-width: 960px) {
  .nav-item-dropdown::after { display: none; }
  .nav-dropdown {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: transparent;
    padding: 0 0 0 1rem;
    min-width: 0;
    display: none;
    overflow: visible;
  }
  .nav-dropdown::before { display: none; }
  .nav-dropdown li + li { border-top: none; }
  .nav-item-dropdown.open .nav-dropdown { display: block; }
  .nav-dropdown li a {
    color: var(--text-mute);
    font-size: 0.82rem;
    padding: 0.55rem 1rem;
    display: block;
  }
  .nav-dropdown li a::before,
  .nav-dropdown li a::after { display: none; }
  .nav-dropdown li a:hover {
    background: transparent;
    color: var(--ink);
    padding-left: 1rem;
  }
}

/* ── Right cluster ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* ── Language switcher ── */
.lang-switcher { position: relative; }

.lang-current {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  height: 40px;
  padding: 0 0.8rem;
  background: transparent;
  border: 1.5px solid var(--border-strong);
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  white-space: nowrap;
}

.lang-current:hover,
.lang-switcher.open .lang-current {
  border-color: #071253;
  color: #071253;
  background: #eef0fa;
}

.lang-globe {
  font-size: 0.85rem;
  color: var(--text-mute);
  transition: color 0.2s;
}

.lang-current:hover .lang-globe,
.lang-switcher.open .lang-current .lang-globe { color: #071253; }

.lang-flag-img {
  border-radius: 3px;
  object-fit: cover;
  display: block;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}

.lang-code { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; }

.lang-chevron {
  width: 12px;
  height: 12px;
  color: currentColor;
  opacity: 0.6;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.lang-switcher.open .lang-chevron { transform: rotate(180deg); opacity: 1; }

/* Dropdown */
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 100px;
  background: var(--bg-pure);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(10,10,18,0.12);
  padding: 0.35rem;
  list-style: none;
  opacity: 0;
  transform: translateY(-6px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  transform-origin: top right;
  z-index: 200;
}

.lang-switcher.open .lang-dropdown {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.18s;
}

.lang-option:hover { background: var(--bg-soft); }
.lang-option--active { background: #eef0fa; }
.lang-option--active .lang-code { color: #071253; }

.lang-option .lang-code {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-soft);
}

/* ── CTA button ── */
.nav-cta { margin-left: 0.25rem; }

/* ── Burger ── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.25s;
}

.nav-burger:hover { border-color: var(--primary); }

.nav-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  transform-origin: center;
}

.nav-burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── Mobile ── */
@media (max-width: 960px) {
  .nav-menu, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: calc(100% + 6px);
    left: 38px;
    right: 38px;
    padding: 0.5rem;
    background: var(--bg-pure);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(10,10,18,0.12);
  }

  .nav-menu.open li { height: auto; }

  .nav-menu.open a {
    height: auto;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    text-align: left;
    font-size: 0.78rem;
  }

  .nav-menu.open a::before { display: none; }
  .nav-menu.open a::after { display: none; }
}

@media (max-width: 640px) {
  .navbar { padding: 0 20px; }
  .nav-menu.open { left: 20px; right: 20px; }
  .lang-current .lang-code { display: none; }
  .lang-current { padding: 0 0.7rem; gap: 0.35rem; }
  .nav-logo { height: 60px; }
}

/* ==========================================================
   SECTION HEAD
   ========================================================== */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
}

@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; gap: 1.5rem; }
}

.section-head-right {
  color: var(--text-soft);
  max-width: 440px;
  justify-self: end;
  font-size: 1.02rem;
  line-height: 1.65;
}

@media (max-width: 800px) { .section-head-right { justify-self: start; } }

.section-head .eyebrow { margin-bottom: 1.5rem; }

/* ==========================================================
   SPLIT
   ========================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 2.5rem; } }

.split.reverse .split-visual { order: 2; }

@media (max-width: 900px) { .split.reverse .split-visual { order: 0; } }

.split-visual {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.split-visual:hover img { transform: scale(1.05); }

.split-visual-tag {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--bg-pure);
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.split-visual-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--secondary);
  color: #fff;
  padding: 1.25rem;
  border-radius: var(--radius);
  text-align: center;
  min-width: 100px;
  box-shadow: var(--shadow-secondary);
}

.split-visual-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.25rem;
  color: #fff;
}

.split-visual-badge span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}

.split-content h2 { margin: 1.25rem 0 1.5rem; }

.split-content > p {
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.num-list { display: flex; flex-direction: column; gap: 0; }

.num-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--border);
  align-items: start;
  transition: padding 0.3s var(--ease);
}

.num-item:last-child { border-bottom: 1px solid var(--border); }
.num-item:hover { padding-left: 0.5rem; }

.num-item-n {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--primary);
  letter-spacing: 0.08em;
  padding-top: 3px;
  min-width: 30px;
  font-weight: 500;
}

.num-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.num-item p {
  color: var(--text-soft);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.6;
}

/* ==========================================================
   CTA
   ========================================================== */
.cta {
  background: var(--secondary);
  color: #fff;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(2rem, 5vw, 4.5rem);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 900px) {
  .cta { grid-template-columns: 1fr; text-align: left; }
  .cta-actions { justify-content: flex-start; }
}

.cta::before {
  content: "✦";
  position: absolute;
  top: -80px;
  right: -40px;
  font-size: 400px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--font-display);
  pointer-events: none;
}

.cta h2 { color: #fff; margin-bottom: 1rem; position: relative; }
.cta p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  position: relative;
  font-size: 1.02rem;
}

.cta-actions {
  display: flex;
  gap: 0.75rem;
  position: relative;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ==========================================================
   PAGE HEAD
   ========================================================== */
.page-head {
  padding: 9rem var(--gutter) 0;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}

.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--ink); }

.page-head h1 { margin: 1rem 0 1.5rem; max-width: 1000px; }

.page-head-lead {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 560px;
  line-height: 1.65;
}

.page-head-meta {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.page-head-meta-item {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.page-head-meta-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2rem;
  color: var(--primary);
  letter-spacing: -0.02em;
  margin-top: 0.5rem;
  text-transform: none;
}

.page-head-meta-item:nth-child(2) strong {
  color: var(--secondary);
}

/* ==========================================================
   SERVICE NAV
   ========================================================== */
.service-nav {
  padding: 1.25rem var(--gutter);
  position: sticky;
  top: 74px;
  z-index: 50;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: rgba(250, 250, 248, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.service-nav::-webkit-scrollbar { display: none; }

.service-nav-list {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  gap: 0.5rem;
  white-space: nowrap;
}

.service-nav-list a {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-pill);
  color: var(--text-soft);
  background: var(--bg-pure);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}

.service-nav-list a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ==========================================================
   SERVICE DETAIL BLOCKS
   ========================================================== */
.service-detail {
  padding: clamp(3.5rem, 7vw, 7rem) 0;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 140px;
}

.service-detail:last-child { border-bottom: none; }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.service-detail:nth-child(even) .service-detail-visual { order: 2; }

@media (max-width: 900px) {
  .service-detail-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-detail:nth-child(even) .service-detail-visual { order: 0; }
}

.service-detail-visual {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}

.service-detail-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.service-detail-visual:hover img { transform: scale(1.04); }

.service-detail-visual-number {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--primary);
  color: #fff;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  box-shadow: var(--shadow-primary);
}

.service-detail:nth-child(3n) .service-detail-visual-number {
  background: var(--secondary);
  box-shadow: var(--shadow-secondary);
}

.service-detail-content-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}

.service-detail-content-meta::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--primary);
}

.service-detail h2 { margin-bottom: 1.5rem; }

.service-detail-content > p {
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.feature-inline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
}

.feature-inline-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px dashed var(--border);
}

.feature-inline-item:last-child { border-bottom: 1px dashed var(--border); }

.feature-inline-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.feature-inline-item:nth-child(2) .feature-inline-check {
  background: var(--secondary);
}

.feature-inline-check svg { width: 14px; height: 14px; color: #fff; }

.feature-inline-item strong { font-weight: 500; font-size: 0.96rem; }

.tags { display: flex; flex-wrap: wrap; gap: 0.45rem; }

.tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  padding: 0.45rem 0.9rem;
  background: var(--bg-pure);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--ink);
  font-weight: 500;
  transition: all 0.25s;
}

.tag:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ==========================================================
   ABOUT
   ========================================================== */
.about-intro {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 1000px;
}

.about-intro em {
  font-style: italic;
  font-weight: 500;
  color: var(--primary);
}

.about-intro em.red {
  color: var(--secondary);
}

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

@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr; } }

.value-card {
  background: var(--bg-pure);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

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

.value-card:nth-child(2) {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.value-card:nth-child(2) h3 { color: #fff; }
.value-card:nth-child(2) p { color: rgba(255, 255, 255, 0.8); }
.value-card:nth-child(2) .value-number { color: var(--secondary); opacity: 1; }

.value-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 0.9;
  opacity: 0.9;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.value-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 860px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-pure);
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}

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

.team-photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-soft);
  position: relative;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.team-card:hover .team-photo img { transform: scale(1.05); }

.team-social {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: var(--bg-pure);
  border-radius: 50%;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s var(--ease);
  color: var(--primary);
}

.team-card:hover .team-social { opacity: 1; transform: translateY(0); }

.team-social svg { width: 16px; height: 16px; }

.team-info {
  padding: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.team-info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.2rem;
}

.team-info span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.team-info-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  transition: all 0.3s var(--ease);
}

.team-card:hover .team-info-arrow {
  background: var(--primary);
  color: #fff;
  transform: rotate(-45deg);
}

.team-info-arrow svg { width: 14px; height: 14px; }

/* ==========================================================
   CONTACT
   ========================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; } }

.contact-form-wrap {
  background: var(--bg-pure);
  border: 1px solid var(--border);
  padding: 3rem;
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 600px) { .contact-form-wrap { padding: 1.75rem; } }

.contact-form-wrap h2 { margin-bottom: 0.5rem; }

.contact-form-wrap > p {
  color: var(--text-soft);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.field { margin-bottom: 1.25rem; }

.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 0.55rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  transition: all 0.25s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--bg-pure);
  box-shadow: 0 0 0 4px rgba(43, 57, 144, 0.12);
}

.field textarea { resize: vertical; min-height: 130px; }

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%232b3990' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 500px) { .field-row { grid-template-columns: 1fr; } }

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

.form-success {
  display: none;
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--primary-soft);
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
  text-align: center;
}

.form-success.visible { display: block; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.info-card {
  padding: 1.75rem;
  background: var(--bg-pure);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.35s var(--ease);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: center;
}

.info-card:hover {
  border-color: var(--primary);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.info-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.info-card:nth-child(2) .info-card-icon { background: var(--secondary); }

.info-card-icon svg { width: 22px; height: 22px; }

.info-card h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-mute);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.info-card p,
.info-card a {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
  transition: color 0.25s;
  display: block;
}

.info-card a:hover { color: var(--primary); }

.info-card small {
  display: block;
  font-size: 0.82rem;
  color: var(--text-mute);
  font-weight: 400;
  margin-top: 0.3rem;
}

/* ==========================================================
   CONTACT PAGE — redesigned editorial layout (white)
   Quick bar (cx-quick) + two location showcases (cx-loc)
   ========================================================== */

/* Soft cooler border for white-bg sections (vs warm --border) */
:root {
  --cx-rule: rgba(10, 10, 18, 0.08);
  --cx-rule-strong: rgba(10, 10, 18, 0.14);
}

/* Make body fully white on contact page */
body.contact-page {
  background: #ffffff;
}

/* Shared shell — matches max-width pattern of the rest of the site */
.cx-shell {
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
  padding: 0 38px;
  box-sizing: border-box;
}

/* ──────────────────────────────────────────
   QUICK CONTACT BAR
   ────────────────────────────────────────── */
.cx-quick {
  width: 100%;
  background: #ffffff;
  padding: 36px 0 0;
}

.cx-quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--cx-rule);
  border-bottom: 1px solid var(--cx-rule);
}

.cx-quick-cell {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.75rem 2rem;
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s var(--ease);
}

.cx-quick-cell + .cx-quick-cell::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: var(--cx-rule);
}

.cx-quick-cell:not(.cx-quick-cell--static):hover {
  background: #fbfbfb;
}

.cx-quick-cell:not(.cx-quick-cell--static):hover .cx-quick-value {
  color: var(--primary);
}

.cx-quick-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.cx-quick-value {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color 0.25s var(--ease);
}

.cx-quick-meta {
  font-size: 0.84rem;
  color: var(--text-mute);
  font-weight: 400;
}

/* ──────────────────────────────────────────
   LOCATION SECTIONS (cx-loc)
   ────────────────────────────────────────── */
.cx-loc {
  width: 100%;
  background: #ffffff;
  padding: 110px 0;
  position: relative;
}

.cx-loc + .cx-loc {
  padding-top: 0;
}

.cx-loc + .cx-loc::before {
  content: "";
  display: block;
  height: 1px;
  background: var(--cx-rule);
  margin: 0 auto 110px;
  max-width: 1760px;
}

.cx-loc-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 80px;
  align-items: stretch;
}

.cx-loc--reverse .cx-loc-grid {
  grid-template-columns: 5fr 7fr;
}

/* ── Info column ── */
.cx-loc-info {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 0;
}

.cx-loc-num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 200;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  opacity: 0.12;
  margin-bottom: -0.5rem;
}

.cx-loc-tag {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cx-loc-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.cx-loc-name em {
  font-style: italic;
  font-weight: 500;
  color: var(--primary);
}

.cx-loc-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 38ch;
  margin: 0;
}

/* ── Info rows (definition list) ── */
.cx-loc-rows {
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--cx-rule);
}

.cx-loc-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--cx-rule);
}

.cx-loc-row dt {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 0;
}

.cx-loc-row dd {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ink);
}

.cx-loc-row dd a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.cx-loc-row dd a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* ── Itinéraire link ── */
.cx-loc-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.75rem;
  padding: 0.85rem 1.4rem 0.85rem 1.5rem;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.cx-loc-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}

.cx-loc-link:hover {
  background: var(--primary);
}

.cx-loc-link:hover svg {
  transform: translateX(3px);
}

/* ── Map column ── */
.cx-loc-map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #f5f6f8;
  border: 1px solid var(--cx-rule);
  min-height: 540px;
  align-self: stretch;
  transition: border-color 0.3s var(--ease), box-shadow 0.4s var(--ease);
}

.cx-loc-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.92);
}

.cx-loc-map:hover {
  border-color: var(--cx-rule-strong);
  box-shadow: 0 30px 60px -30px rgba(10, 10, 18, 0.18);
}

/* ──────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────── */
@media (max-width: 1100px) {
  .cx-shell { padding: 0 24px; }
  .cx-loc { padding: 80px 0; }
  .cx-loc + .cx-loc::before { margin-bottom: 80px; }
  .cx-loc-grid { gap: 50px; }
  .cx-loc-map { min-height: 460px; }
  .cx-quick-cell { padding: 1.5rem 1.5rem; }
}

@media (max-width: 860px) {
  .cx-quick-grid {
    grid-template-columns: 1fr;
  }
  .cx-quick-cell { padding: 1.25rem 1rem; }
  .cx-quick-cell + .cx-quick-cell::before {
    left: 1rem;
    right: 1rem;
    top: 0;
    bottom: auto;
    width: auto;
    height: 1px;
  }

  .cx-loc-grid,
  .cx-loc--reverse .cx-loc-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  /* On mobile the map always sits BELOW the info, even on reverse sections */
  .cx-loc--reverse .cx-loc-map { order: 2; }
  .cx-loc--reverse .cx-loc-info { order: 1; }
  .cx-loc-map { min-height: 340px; }
  .cx-loc-row {
    grid-template-columns: 110px 1fr;
    gap: 1rem;
  }
}

@media (max-width: 560px) {
  .cx-shell { padding: 0 14px; }
  .cx-loc { padding: 60px 0; }
  .cx-loc + .cx-loc::before { margin-bottom: 60px; }
  .cx-loc-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding: 1rem 0;
  }
}

/* ==========================================================
   VISION & MISSION
   ========================================================== */
.vm-section {
  background: #f7f8fd;
  padding: 100px 38px 110px;
}

.vm-shell {
  max-width: 1760px;
  margin: 0 auto;
}

/* ── Header ── */
.vm-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.vm-header-left { display: flex; flex-direction: column; gap: 1rem; }

.vm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.vm-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ed1c24;
  box-shadow: 0 0 0 3px rgba(237,28,36,0.18);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.vm-heading {
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #071253;
}

.vm-header-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-soft);
  max-width: 380px;
  padding-bottom: 0.5rem;
}

/* ── Cards container ── */
.vm-cards {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 580px;
}

/* ── Card base ── */
.vm-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  transition: box-shadow 0.45s var(--ease), border-color 0.35s var(--ease);
}

/* Vision — dark */
.vm-card--vision {
  background: #071253;
}

/* Mission — light with border */
.vm-card--mission {
  background: #fff;
  border: 1.5px solid var(--border);
  box-shadow: 0 12px 40px rgba(10,10,18,0.06);
}

/* ── Hover: lift + deepen shadow ── */
/* ── Hover: visual only, no position movement ── */
.vm-card--vision:hover {
  box-shadow: none;
}

.vm-card--mission:hover {
  border-color: #071253;
  box-shadow:
    0 0 0 3px rgba(7,18,83,0.06),
    0 20px 60px rgba(7,18,83,0.1);
}

.vm-card:hover .vm-card-number {
  color: rgba(255,255,255,0.08);
}
.vm-card--mission:hover .vm-card-number {
  color: rgba(7,18,83,0.09);
}

.vm-card:hover .vm-card-icon {
  background: rgba(255,255,255,0.16);
  color: #fff;
  box-shadow: 0 0 20px rgba(255,255,255,0.12);
}

.vm-card--vision:hover .vm-card-glow {
  width: 420px;
  height: 420px;
}

.vm-card--vision:hover .vm-card-horizon-fill {
  width: 90%;
  box-shadow: 0 0 10px rgba(237,28,36,0.5);
}

.vm-card--mission:hover .vm-card-check i {
  background: #ed1c24;
  color: #fff;
}

.vm-card--vision:hover .vm-card-label {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.85);
}

.vm-card--mission:hover .vm-card-label {
  background: #071253;
  color: #fff;
  border-color: #071253;
}

/* Big ghost number */
.vm-card-number {
  position: absolute;
  top: -0.15em;
  right: -0.05em;
  font-size: clamp(8rem, 14vw, 16rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.06em;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  transition: color 0.5s var(--ease);
}

.vm-card--mission .vm-card-number { color: rgba(7,18,83,0.05); }

/* Card body */
.vm-card-body {
  position: relative;
  z-index: 1;
  padding: 52px 48px 48px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Top row: label + icon */
.vm-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vm-card-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 0.3rem 1rem;
  transition: all 0.35s var(--ease);
}

.vm-card--mission .vm-card-label {
  color: var(--text-mute);
  background: var(--bg-soft);
  border-color: var(--border);
  transition: all 0.35s var(--ease);
}

.vm-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.4s var(--ease);
}

.vm-card:hover .vm-card-icon {
  background: rgba(255,255,255,0.14);
  color: #fff;
}

.vm-card--mission .vm-card-icon {
  background: #eef0fa;
  border-color: #d4dcf5;
  color: #071253;
}

.vm-card--mission:hover .vm-card-icon { background: #d4dcf5; }

.vm-card-icon svg { width: 24px; height: 24px; }

/* Title */
.vm-card-title {
  font-size: clamp(1.7rem, 2.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #fff;
}

.vm-card--mission .vm-card-title { color: #071253; }

.vm-card-title em {
  font-style: italic;
  color: #ed1c24;
  font-weight: 900;
}

/* Text */
.vm-card-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  flex: 1;
}

.vm-card--mission .vm-card-text { color: var(--text-soft); }

/* Horizon bar — vision */
.vm-card-horizon {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: auto;
}

.vm-card-horizon-year {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: #fff;
  line-height: 1;
  flex-shrink: 0;
}

.vm-card-horizon-bar {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 99px;
  overflow: hidden;
}

.vm-card-horizon-fill {
  width: 72%;
  height: 100%;
  background: linear-gradient(90deg, #ed1c24, rgba(237,28,36,0.4));
  border-radius: 99px;
  transition: width 0.6s var(--ease), box-shadow 0.5s var(--ease);
}

.vm-card-horizon-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

/* Check list — mission */
.vm-card-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.vm-card-check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #071253;
}

.vm-card-check i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fdebec;
  color: #ed1c24;
  font-size: 0.68rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}

/* Glow blob — vision card */
.vm-card-glow {
  position: absolute;
  bottom: -80px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(237,28,36,0.2) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
  transition: width 0.6s var(--ease), height 0.6s var(--ease), opacity 0.6s var(--ease);
}

/* ── Centre divider ── */
.vm-divider {
  width: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  flex-shrink: 0;
}

.vm-divider-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border-strong) 30%, var(--border-strong) 70%, transparent);
}


/* ── Responsive ── */
@media (max-width: 1200px) {
  .vm-card-body { padding: 44px 40px; }
  .vm-card-title { font-size: clamp(1.6rem, 2.5vw, 2.4rem); }
}

@media (max-width: 900px) {
  .vm-section { padding: 72px 28px 80px; }
  .vm-cards {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .vm-divider {
    width: 100%;
    height: 60px;
    flex-direction: row;
  }
  .vm-divider-line {
    flex: 1;
    width: auto;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-strong) 30%, var(--border-strong) 70%, transparent);
  }
  .vm-card { border-radius: 24px; }
  .vm-card-body { padding: 40px 36px; }
  .vm-card-number { font-size: 8rem; }
}

@media (max-width: 600px) {
  .vm-section { padding: 56px 16px 64px; }
  .vm-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; margin-bottom: 40px; }
  .vm-heading { font-size: clamp(2.4rem, 10vw, 4rem); }
  .vm-header-desc { max-width: 100%; }
  .vm-card { border-radius: 20px; }
  .vm-card-body { padding: 30px 24px; gap: 18px; }
  .vm-card-title { font-size: clamp(1.5rem, 5.5vw, 2rem); }
  .vm-card-horizon-year { font-size: 2rem; }
  .vm-card-number { font-size: 6rem; }
}

@media (max-width: 380px) {
  .vm-card-body { padding: 24px 18px; }
}

/* ==========================================================
   ABOUT US (homepage section)
   ========================================================== */
.about-us {
  background: var(--bg-pure);
  padding: 0 38px 80px;
}

.about-us-shell {
  max-width: 1760px;
  margin: 0 auto;
}

.about-us-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.about-us-title {
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.about-us-title em {
  color: #173f97;
  font-style: italic;
  font-weight: 700;
}

.about-us-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #173f97;
  border: 1.5px solid #173f97;
  border-radius: var(--radius-pill);
  padding: 0.65rem 1.4rem;
  white-space: nowrap;
  margin-top: 0;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.2s var(--ease);
}

.about-us-link svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.about-us-link:hover { background: #173f97; color: #fff; transform: translateY(-2px); }
.about-us-link:hover svg { transform: translateX(3px); }

.about-us-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(520px, 1.4fr);
  column-gap: 56px;
  align-items: center;
}

.about-us-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.about-us-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}

.about-us-image-wrap:hover .about-us-image { transform: scale(1.04); }

.about-us-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #173f97;
  color: #fff;
  border-radius: 16px;
  padding: 14px 20px;
  text-align: center;
  min-width: 100px;
}

.about-us-badge-num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.about-us-badge-text {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 4px;
}

.about-us-image-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
}

.about-us-content { display: flex; flex-direction: column; gap: 36px; }

.about-us-intro {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.75;
  color: var(--text-soft);
}

.about-us-intro strong { color: var(--ink); font-weight: 600; }

.about-us-logo {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.about-us-logo img {
  width: clamp(120px, 14vw, 180px);
  height: auto;
  display: block;
  flex-shrink: 0;
}

.about-us-logo-sep {
  display: block;
  width: 1px;
  height: 56px;
  background: var(--border-strong);
  flex-shrink: 0;
}

.about-us-pillars { display: flex; flex-direction: column; gap: 0; }

.about-us-pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 18px 0;
  border-top: 1px solid var(--border);
}

.about-us-pillar:last-child { border-bottom: 1px solid var(--border); }

.about-us-pillar-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #eef0fa;
  color: #173f97;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.about-us-pillar-icon svg { width: 20px; height: 20px; }

.about-us-pillar strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
}

.about-us-pillar p {
  font-size: 0.87rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1100px) {
  .about-us-grid { grid-template-columns: 1fr; row-gap: 40px; }
  .about-us-image-wrap { max-width: 640px; }
}

@media (max-width: 800px) {
  .about-us { padding: 0 20px 60px; }
  .about-us-header { grid-template-columns: 1fr; gap: 1rem; padding: 40px 0 36px; }
  .about-us-title { text-align: left; }
}

@media (max-width: 540px) {
  .about-us { padding: 0 14px 48px; }
  .about-us-image-wrap { border-radius: 18px; }
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  background: #071253;
  color: #fff;
  margin-top: 6rem;
  position: relative;
  overflow: hidden;
}

/* Subtle glow top-left */
.footer::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.footer-inner {
  max-width: 1760px;
  margin: 0 auto;
  padding: 0 38px;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════
   TOP SECTION
   ══════════════════════════════ */
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 72px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ed1c24;
  margin-bottom: 20px;
}

.footer-big-title {
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #fff;
}

.footer-big-title em {
  font-style: italic;
  color: #ed1c24;
}

.footer-top-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 28px;
}

.footer-top-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 420px;
}

.footer-top-desc strong { color: #fff; font-weight: 600; }

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  align-self: flex-start;
  background: #ed1c24;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  transition: background 0s, color 0s;
  box-shadow: 0 8px 28px rgba(237,28,36,0.35);
}

.footer-cta-btn svg { width: 17px; height: 17px; }
.footer-cta-btn:hover { background: #fff; color: #071253; box-shadow: none; transform: none; }
.footer-cta-btn:hover svg { transform: none; }

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: transparent;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.5);
  font-size: 1.15rem;
  transition: color 0.22s, transform 0.22s;
}

.footer-social-link:hover { color: #fff; transform: translateY(-3px); }

/* ══════════════════════════════
   MID: nav columns
   ══════════════════════════════ */
.footer-mid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding: 52px 0 52px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
  margin-bottom: 28px;
  filter: brightness(0) invert(1);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.22s;
}

.footer-contact-row svg { width: 15px; height: 15px; flex-shrink: 0; color: #ed1c24; }
a.footer-contact-row:hover { color: #fff; }
.footer-contact-row--plain { cursor: default; }

.footer-nav-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}

.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.footer-nav-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.22s, padding-left 0.22s;
  display: block;
}

.footer-nav-col a:hover { color: #fff; padding-left: 6px; }

/* ══════════════════════════════
   BOTTOM BAR
   ══════════════════════════════ */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 22px 0;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-copy {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
}

.disc {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
}

.disc a {
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  transition: color 0.22s;
  text-decoration: none;
}

.disc a:hover { color: #fff; }

.text-center { text-align: center; }

/* ══════════════════════════════
   RESPONSIVE
   ══════════════════════════════ */
@media (max-width: 1000px) {
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-big-title { font-size: clamp(2.4rem, 8vw, 4.5rem); }
  .footer-top-right { justify-content: flex-start; }
  .footer-mid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand-col { grid-column: span 2; }
}

@media (max-width: 640px) {
  .footer-inner { padding: 0 20px; }
  .footer-top { padding: 52px 0 44px; }
  .footer-mid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand-col { grid-column: span 2; }
}

@media (max-width: 420px) {
  .footer-mid { grid-template-columns: 1fr; }
  .footer-brand-col { grid-column: span 1; }
}

/* ==========================================================
   ABOUT TABS (about.html — À propos / Groupe & Sociétés)
   ========================================================== */
.abt-tabs {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

/* ── LEFT · tab nav ── */
.abt-tabs-nav {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.abt-tab-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 0 0.85rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-mute);
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  border-left: 2px solid var(--border);
  transition:
    color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    padding-left 0.3s var(--ease);
}

.abt-tab-btn .abt-tab-marker {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-strong);
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.5);
  transition: background 0.3s var(--ease), opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.abt-tab-btn:hover {
  color: var(--text-soft);
  border-left-color: var(--text-mute);
}

.abt-tab-btn.is-active {
  color: var(--secondary);
  border-left-color: var(--secondary);
  border-left-width: 2px;
  font-weight: 600;
  padding-left: 1.25rem;
}

.abt-tab-btn.is-active .abt-tab-marker {
  background: var(--secondary);
  opacity: 1;
  transform: scale(1);
}

/* ── RIGHT · panels ── */
.abt-tabs-panels {
  min-width: 0; /* allow content to shrink in grid */
}

.abt-panel {
  display: none;
  animation: abtFadeIn 0.45s var(--ease) both;
}

.abt-panel.is-active {
  display: block;
}

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

.abt-panel-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.65;
  color: var(--text);
  margin-top: 1.5rem;
  margin-bottom: 1.25rem;
  max-width: 64ch;
}

.abt-panel-text {
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 64ch;
}

.abt-num-list {
  margin-top: 1rem;
}

/* ── Company cards (Groupe panel) ── */
.abt-company {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.abt-company:first-of-type {
  margin-top: 2.5rem;
}

.abt-company:last-of-type {
  border-bottom: 1px solid var(--border);
}

.abt-company-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  padding: 1.25rem;
  background: var(--bg-pure);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.abt-company:hover .abt-company-logo {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.abt-company-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.abt-company-logo-placeholder {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-mute);
}

.abt-company-body {
  padding-top: 0.25rem;
}

.abt-company-name {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.9rem;
  line-height: 1.35;
}

.abt-company-desc {
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 1.1rem;
  font-size: 0.95rem;
}

.abt-company-addr {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.9rem;
}

.abt-company-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

.abt-company-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.abt-company-link:hover {
  color: var(--secondary-dark);
  transform: translateX(2px);
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .abt-tabs {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .abt-tabs-nav {
    position: relative;
    top: 0;
    flex-direction: row;
    gap: 0;
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
    scrollbar-width: none;
  }
  .abt-tabs-nav::-webkit-scrollbar { display: none; }
  .abt-tab-btn {
    border-left: none;
    border-bottom: 2px solid transparent;
    padding: 0.85rem 1.25rem;
    white-space: nowrap;
  }
  .abt-tab-btn.is-active {
    border-left: none;
    border-bottom-color: var(--secondary);
    padding: 0.85rem 1.25rem;
  }
}

@media (max-width: 640px) {
  .abt-company {
    grid-template-columns: 120px 1fr;
    gap: 1.25rem;
    padding: 2rem 0;
  }
  .abt-company-logo {
    padding: 0.85rem;
  }
}

@media (max-width: 480px) {
  .abt-company {
    grid-template-columns: 1fr;
  }
  .abt-company-logo {
    max-width: 140px;
    aspect-ratio: 1 / 1;
  }
}

/* ==========================================================
   REVEAL
   ========================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal { animation: fadeUp 0.9s var(--ease) both; }
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.2s; }
.d3 { animation-delay: 0.3s; }
.d4 { animation-delay: 0.4s; }
.d5 { animation-delay: 0.5s; }







.wmk-khsec-section {
  width: 100%;
  background: var(--bg-pure);
  padding: 200px 38px 40px;
}

.wmk-khsec-shell {
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
}

/* ── Slider wrapper ── */
.wmk-slider {
  position: relative;
  overflow: hidden;
}

.wmk-slide {
  display: none;
  pointer-events: none;
}

.wmk-slide--active {
  display: block;
  pointer-events: auto;
}

/* Image: clip-path wipe IN (left→right reveal) */
@keyframes wmk-img-in {
  from { clip-path: inset(0 100% 0 0); transform: scale(1.06); }
  to   { clip-path: inset(0 0% 0 0);   transform: scale(1); }
}

/* Image: wipe OUT (left→right hide) */
@keyframes wmk-img-out {
  from { clip-path: inset(0 0% 0 0);   transform: scale(1); }
  to   { clip-path: inset(0 0 0 100%); transform: scale(0.96); }
}

/* Side content: slide up IN */
@keyframes wmk-side-in {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Side content: slide down OUT */
@keyframes wmk-side-out {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-30px); }
}

.wmk-slide--entering .wmk-khsec-media-img {
  animation: wmk-img-in 0.85s cubic-bezier(0.22,1,0.36,1) forwards;
}

.wmk-slide--entering .wmk-khsec-side {
  animation: wmk-side-in 0.7s cubic-bezier(0.22,1,0.36,1) 0.1s forwards;
  opacity: 0;
}

.wmk-slide--leaving {
  position: absolute;
  top: 0; left: 0; right: 0;
  pointer-events: none;
}

.wmk-slide--leaving .wmk-khsec-media-img {
  animation: wmk-img-out 0.6s cubic-bezier(0.22,1,0.36,1) forwards;
}

.wmk-slide--leaving .wmk-khsec-side {
  animation: wmk-side-out 0.45s cubic-bezier(0.22,1,0.36,1) forwards;
}

/* ── Grid ── */
.wmk-khsec-grid {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(720px, 1.62fr);
  column-gap: 22px;
  align-items: stretch;
}

.wmk-khsec-media { order: 2; }
.wmk-khsec-side  { order: 1; }

.wmk-khsec-media {
  position: relative;
  aspect-ratio: 38 / 21;
  border-radius: 28px;
  overflow: hidden;
  background: #cfd4d7;
}

.wmk-khsec-media-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wmk-khsec-side {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-top: 10px;
}

.wmk-khsec-stat {
  text-align: center;
  padding-top: 8px;
}

.wmk-khsec-stat-number {
  margin: 0;
  font-family: "Poppins", -apple-system, sans-serif;
  font-size: clamp(84px, 6.65vw, 132px);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: -0.055em;
  color: #bccbd7;
}

.wmk-khsec-stat-label {
  margin: 14px 0 0;
  font-family: "Poppins", -apple-system, sans-serif;
  font-size: clamp(28px, 2.5vw, 50px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: #bccbd7;
}

.wmk-khsec-card {
  position: relative;
  min-height: 332px;
  background: #173f97;
  border-radius: 24px;
  padding: 28px 34px;
  color: #ffffff;
  overflow: visible;
}

.wmk-khsec-card-title {
  margin: 0 0 14px;
  font-family: "Poppins", -apple-system, sans-serif;
  font-size: clamp(34px, 2.7vw, 50px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.wmk-khsec-card-text {
  margin: 0;
  max-width: 95%;
  font-family: "Poppins", -apple-system, sans-serif;
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.67;
  font-weight: 400;
  letter-spacing: -0.012em;
  color: #ffffff;
}

.wmk-khsec-card-text--second { margin-top: 26px; }

.wmk-khsec-card-arrow {
  position: absolute;
  right: -29px;
  bottom: 10px;
  width: 60px;
  height: 60px;
  background: #ffffff;
  border: 2px solid #173f97;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-sizing: border-box;
  transition: background 0.25s, border-color 0.25s;
}

.wmk-khsec-card-arrow:hover { background: var(--secondary); border-color: var(--secondary); }
.wmk-khsec-card-arrow:hover .wmk-khsec-arrow-svg { stroke: #fff; transform: translateX(3px); }

.wmk-khsec-arrow-svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #173f97;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translateX(2px);
  transition: transform 0.2s ease, stroke 0.25s;
}

/* ── Nav bar ── */
.wmk-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  gap: 1.5rem;
}

.wmk-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid #173f97;
  background: transparent;
  color: #173f97;
  font-family: "Poppins", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.2s var(--ease);
  white-space: nowrap;
}

.wmk-nav svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}

.wmk-nav--prev:hover svg { transform: translateX(-3px); }
.wmk-nav--next:hover svg { transform: translateX(3px); }

.wmk-nav:hover {
  background: #173f97;
  color: #fff;
  box-shadow: 0 8px 28px rgba(23,63,151,0.28);
  transform: translateY(-2px);
}

/* Dot indicators */
.wmk-nav-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wmk-nav-dot {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: var(--border-strong);
  transition: width 0.4s var(--ease), background 0.3s;
  display: block;
}

.wmk-nav-dot--active {
  width: 72px;
  background: #173f97;
}

@media (max-width: 680px) {
  .wmk-nav span { display: none; }
  .wmk-nav { padding: 0.75rem 1rem; }
  .wmk-nav-dot { width: 24px; }
  .wmk-nav-dot--active { width: 48px; }
}

/* ── Responsive ── */
@media (max-width: 1400px) {
  .wmk-khsec-grid {
    grid-template-columns: minmax(420px, 1fr) minmax(560px, 1.45fr);
  }
}

@media (max-width: 1100px) {
  .wmk-khsec-section { padding: 160px 20px 36px; }

  .wmk-khsec-grid {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .wmk-khsec-media { order: 1; border-radius: 22px; }
  .wmk-khsec-side  { order: 2; min-height: auto; padding-top: 0; gap: 22px; }
  .wmk-khsec-stat  { text-align: left; padding-top: 0; }
  .wmk-khsec-card  { min-height: auto; border-radius: 22px; }

  /* Arrows sit inside the image on stacked layout */
  .wmk-nav--prev { right: auto; left: 16px; }
  .wmk-nav--next { right: 16px; }
}

@media (max-width: 680px) {
  .wmk-khsec-section { padding: 160px 14px 36px; }
  .wmk-khsec-media { border-radius: 18px; }
  .wmk-khsec-card { padding: 24px 20px; border-radius: 18px; }
  .wmk-khsec-card-text { max-width: 100%; line-height: 1.6; }
  .wmk-nav { width: 40px; height: 40px; }
  .wmk-nav svg { width: 16px; height: 16px; }
}

/* ==========================================================
   PAGE BANNER (breadcrumb / section header card)
   Width matches .wmk-khsec-section / .wmk-khsec-shell pattern.
   ========================================================== */
.page-banner {
  width: 100%;
  background: var(--bg-pure);
  padding: 160px 38px 40px;
  box-sizing: border-box;
}

.page-banner-shell {
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
}

.page-banner-card {
  padding: 4.5rem 5rem;
  background: #c4d2dd;                /* soft blue card */
  border-radius: var(--radius);
  box-sizing: border-box;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.page-banner-text {
  flex: 1 1 auto;
  min-width: 0;
}

.page-banner-title {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  line-height: 1.1;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.page-banner-title strong {
  font-weight: 700;
}

.page-banner-subtitle {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.15;
  color: var(--primary);
  letter-spacing: -0.005em;
}

/* ── Category switcher ── */
.cat-switcher {
  position: relative;
  flex: 0 0 auto;
}

.cat-switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem 0.85rem 1.4rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(7, 18, 83, 0.08);
  border-radius: var(--radius-pill);
  cursor: pointer;
  font: inherit;
  color: var(--primary);
  text-align: left;
  min-width: 280px;
  box-shadow: 0 4px 16px -8px rgba(7, 18, 83, 0.18);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.cat-switcher-btn:hover {
  background: #ffffff;
  border-color: rgba(7, 18, 83, 0.16);
  box-shadow: 0 6px 22px -8px rgba(7, 18, 83, 0.24);
}

.cat-switcher.is-open .cat-switcher-btn {
  background: #ffffff;
  border-color: var(--primary);
}

.cat-switcher-meta {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.cat-switcher-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.cat-switcher-current {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cat-switcher-chevron {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease);
}

.cat-switcher.is-open .cat-switcher-chevron {
  transform: rotate(180deg);
}

.cat-switcher-chevron svg { width: 14px; height: 14px; stroke-width: 2.4; }

/* ── Dropdown menu ── */
.cat-switcher-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 100%;
  list-style: none;
  margin: 0;
  padding: 8px;
  background: #ffffff;
  border: 1px solid rgba(7, 18, 83, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 24px 50px -16px rgba(7, 18, 83, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity 0.3s var(--ease),
    transform 0.3s var(--ease),
    visibility 0s linear 0.3s;
  z-index: 30;
}

.cat-switcher.is-open .cat-switcher-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 0.3s var(--ease),
    transform 0.3s var(--ease),
    visibility 0s;
}

.cat-switcher-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
}

.cat-switcher-menu a:hover {
  background: var(--primary-soft);
  color: var(--primary);
}

.cat-switcher-menu li.is-active a {
  background: var(--primary);
  color: #ffffff;
  pointer-events: none;
}

.cat-switcher-menu a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.5;
  flex-shrink: 0;
}

.cat-switcher-menu li.is-active a::after { opacity: 1; }

@media (max-width: 860px) {
  .page-banner-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.75rem;
  }
  .cat-switcher,
  .cat-switcher-btn { width: 100%; min-width: 0; }
  .cat-switcher-menu { right: auto; left: 0; }
}

/* ── Tablet / small desktop ── */
@media (max-width: 1100px) {
  .page-banner { padding: 130px 20px 36px; }
  .page-banner-card { padding: 3.5rem 3rem; border-radius: 22px; }
}

/* ── Mobile ── */
@media (max-width: 680px) {
  .page-banner { padding: 130px 14px 36px; }
  .page-banner-card { padding: 2.5rem 1.75rem; border-radius: 18px; }
}

/* ==========================================================
   PRODUCTS PAGE — gallery layout (designed for white-on-white)
   ========================================================== */
.prd-section {
  padding: 60px 0 110px;
  background: #ffffff;
}

.prd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* No gap — cards share borders, like a museum wall */
  gap: 0;
  border-top: 1px solid rgba(10, 10, 18, 0.07);
  border-left: 1px solid rgba(10, 10, 18, 0.07);
}

/* ──────────────────────────────────────────
   Product card — gallery tile
   ────────────────────────────────────────── */
.prd-card {
  appearance: none;
  -webkit-appearance: none;
  background: #ffffff;
  border: 0;
  /* Sibling borders create the grid lines */
  border-right: 1px solid rgba(10, 10, 18, 0.07);
  border-bottom: 1px solid rgba(10, 10, 18, 0.07);
  border-radius: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background-color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.prd-card:hover {
  background-color: #fafafa;
}

.prd-card:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
  z-index: 2;
}

.prd-card:active {
  background-color: #f5f5f5;
}

/* ── Media area — square, generous breathing room around the product ── */
.prd-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #ffffff;
  overflow: hidden;
  /* Inner padding so the white product never touches the card edges */
  padding: 2%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prd-card-media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.prd-card:hover .prd-card-media img {
  transform: scale(1.04);
}

/* ── Body — navy at rest, red on hover ── */
.prd-card-body {
  padding: 1.5rem 1.6rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
  background: var(--primary);
  z-index: 1;
  transition: background-color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.prd-card:hover .prd-card-body {
  background: var(--secondary);
}

.prd-card-cat {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.prd-card:hover .prd-card-cat {
  color: rgba(255, 255, 255, 0.85);
}

.prd-card-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: #ffffff;
  line-height: 1.3;
}

/* ── Subtle "Voir" cue inside the media area, top-right ── */
.prd-card-cue {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem 0.5rem 0.75rem;
  background: var(--ink);
  color: #ffffff;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 3;
}

.prd-card-cue svg {
  width: 13px;
  height: 13px;
  stroke-width: 2;
}

.prd-card:hover .prd-card-cue {
  opacity: 1;
  transform: translateY(0);
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .prd-card,
  .prd-card-media img,
  .prd-card-cue,
  .prd-card-cat { transition-duration: 0.15s !important; }
  .prd-card:hover .prd-card-media img { transform: none; }
}

/* ── Touch devices: show cue at low opacity, skip image scale ── */
@media (hover: none) {
  .prd-card-media img { transform: none; }
  .prd-card-cue { display: none; }
}

/* ──────────────────────────────────────────
   Responsive
   ────────────────────────────────────────── */
@media (max-width: 1100px) {
  .prd-section { padding: 40px 0 80px; }
  .prd-card-body { padding: 1.25rem 1.3rem 1.5rem; }
  .prd-card-name { font-size: 1.08rem; }
}

@media (max-width: 820px) {
  .prd-grid { grid-template-columns: repeat(2, 1fr); }
  .prd-card-media { padding: 2%; }
  .prd-card-cue {
    top: 12px;
    left: 12px;
    padding: 0.4rem 0.75rem 0.4rem 0.65rem;
    font-size: 0.66rem;
  }
}

@media (max-width: 520px) {
  .prd-grid { grid-template-columns: 1fr; }
  .prd-card-media { padding: 2%; }
  .prd-card-name { font-size: 1.02rem; }
}

/* ──────────────────────────────────────────
   LIGHTBOX
   ────────────────────────────────────────── */
.prd-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0s linear 0.3s;
}

.prd-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s var(--ease), visibility 0s;
}

.prd-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 22, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 0;
  cursor: pointer;
  padding: 0;
}

.prd-lightbox-inner {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 1100px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  transform: scale(0.96);
  transition: transform 0.35s var(--ease);
}

.prd-lightbox.is-open .prd-lightbox-inner {
  transform: scale(1);
}

.prd-lightbox-close {
  position: absolute;
  top: -52px;
  right: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
  z-index: 2;
}

.prd-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: rotate(90deg);
}

.prd-lightbox-close svg { width: 18px; height: 18px; }

.prd-lightbox-figure {
  margin: 0;
  background: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.prd-lightbox-figure img {
  display: block;
  width: 100%;
  max-height: calc(90vh - 90px);
  object-fit: contain;
  background: #ffffff;
  padding: 4%;
  box-sizing: border-box;
}

.prd-lightbox-caption {
  padding: 1.1rem 1.5rem 1.3rem;
  background: var(--bg-pure);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.prd-lightbox-cat {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.prd-lightbox-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* ── Prev / Next nav ── */
.prd-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0.9);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  opacity: 0;
  transition:
    background 0.25s var(--ease),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s var(--ease);
  padding: 0;
}

.prd-lightbox-nav svg {
  width: 22px;
  height: 22px;
  display: block;
}

.prd-lightbox-nav--prev { left: max(24px, calc((100vw - 1100px) / 2 - 80px)); }
.prd-lightbox-nav--next { right: max(24px, calc((100vw - 1100px) / 2 - 80px)); }

.prd-lightbox.is-open .prd-lightbox-nav {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  transition-delay: 0.15s;
}

.prd-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.22);
}

.prd-lightbox-nav--prev:hover svg { transform: translateX(-2px); transition: transform 0.25s var(--ease); }
.prd-lightbox-nav--next:hover svg { transform: translateX(2px);  transition: transform 0.25s var(--ease); }

/* ── Swap fade when changing product via prev/next ── */
.prd-lightbox-figure img {
  transition: opacity 0.18s ease;
}

.prd-lightbox-figure img.is-swapping {
  opacity: 0;
}

@media (max-width: 700px) {
  .prd-lightbox-inner { max-width: 94vw; }
  .prd-lightbox-close { top: -48px; width: 38px; height: 38px; }
  .prd-lightbox-figure img { max-height: calc(90vh - 80px); }
  .prd-lightbox-name { font-size: 1.1rem; }

  .prd-lightbox-nav {
    width: 44px;
    height: 44px;
  }
  .prd-lightbox-nav svg { width: 18px; height: 18px; }
  .prd-lightbox-nav--prev { left: 12px; }
  .prd-lightbox-nav--next { right: 12px; }
}
