/* ============================================================
   akt — Composants : nav, menu, boutons, cartes, footer, motifs
   ============================================================ */

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.btn svg { width: 16px; height: 16px; transition: transform var(--t-fast); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn--primary:hover { background: var(--green-deep); border-color: var(--green-deep); transform: translateY(-2px); }

.btn--secondary { background: transparent; color: var(--green); border-color: var(--green); }
.btn--secondary:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }

/* Boutons sur fond vert (inversés) */
.section--green .btn--primary,
.section--green-deep .btn--primary { background: var(--white); color: var(--green-deep); border-color: var(--white); }
.section--green .btn--primary:hover,
.section--green-deep .btn--primary:hover { background: var(--gray-100); }
.section--green .btn--secondary,
.section--green-deep .btn--secondary { color: var(--white); border-color: var(--white-70); }
.section--green .btn--secondary:hover,
.section--green-deep .btn--secondary:hover { background: var(--white); color: var(--green-deep); }

/* Lien fléché discret */
.link-arrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: var(--fw-bold); font-size: var(--fs-sm); color: var(--green);
}
.link-arrow svg { width: 15px; height: 15px; transition: transform var(--t-fast); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 1.3rem var(--gutter);
  transition: background var(--t), padding var(--t), box-shadow var(--t);
}
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  padding: 0.85rem var(--gutter);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  max-width: var(--container); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}

/* Wordmark (SVG inline, fill currentColor — couleur héritée du .brand) */
.brand { display: inline-flex; align-items: center; color: var(--ink); text-decoration: none; }
.brand-logo {
  height: 26px;
  width: auto;
  display: block;
  fill: currentColor;
}
.brand--footer .brand-logo { height: 38px; }

/* Legacy : brand-k + brand-name (gardés pour back-compat si réutilisés ailleurs) */
.brand .brand-k { width: 30px; height: 30px; color: var(--green); }
.brand .brand-name {
  font-weight: var(--fw-black); font-size: 1.4rem; letter-spacing: 0.04em; color: var(--ink);
}

/* État du hero : nav transparente sur fond sombre -> blanc, jusqu'au scroll */
.nav--hero:not(.scrolled) .brand,
.nav--hero:not(.scrolled) .brand-name,
.nav--hero:not(.scrolled) .nav-links a,
.nav--hero:not(.scrolled) .nav-drop > button { color: var(--white); }
.nav--hero:not(.scrolled) .brand-k { color: var(--white); }
.nav--hero:not(.scrolled) .nav-links a:hover,
.nav--hero:not(.scrolled) .nav-drop:hover > button { color: var(--gray-100); }
.nav--hero:not(.scrolled) .nav-burger { border-color: var(--white); color: var(--white); }
.nav--hero:not(.scrolled) .nav-burger:hover { background: var(--white); color: var(--green-deep); }

/* Liens inline (desktop) */
.nav-links { display: flex; align-items: center; gap: 1.7rem; }
.nav-links a { font-size: var(--fs-sm); font-weight: var(--fw-med); color: var(--ink); transition: color var(--t-fast); }
.nav-links a:hover { color: var(--green); }

/* Dropdown Offres */
.nav-drop { position: relative; }
.nav-drop > button {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: none; border: none; font-size: var(--fs-sm); font-weight: var(--fw-med); color: var(--ink);
}
.nav-drop > button svg { width: 12px; height: 12px; transition: transform var(--t-fast); }
.nav-drop:hover > button { color: var(--green); }
.nav-drop:hover > button svg { transform: rotate(180deg); }
.nav-drop-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 280px; padding: 0.6rem; margin-top: 0.6rem;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); opacity: 0; visibility: hidden;
  transition: opacity var(--t-fast), transform var(--t-fast), visibility var(--t-fast);
}
.nav-drop:hover .nav-drop-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-drop-menu a { display: block; padding: 0.7rem 0.9rem; border-radius: var(--radius-sm); font-weight: var(--fw-med); }
.nav-drop-menu a:hover { background: var(--gray-100); color: var(--green); }
.nav-drop-menu a span { display: block; font-size: var(--fs-xs); font-weight: var(--fw-reg); color: var(--ink-60); margin-top: 2px; }

/* ─── MEGA MENU OFFRES — 4 cards services, glass + soft shadow ─── */
.nav-inner { position: relative; }                 /* ancre pour le mega-menu positionné absolute */
.nav-drop--mega { position: static; }              /* override .nav-drop { position: relative } pour que .nav-mega s'ancre sur nav-inner */
.nav-drop--mega > button[aria-expanded="true"] svg { transform: rotate(180deg); }
.nav-mega {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(1100px, calc(100vw - 2rem));
  padding: 1rem;
  background: rgba(255, 255, 255, 0.72);          /* opacité réduite — laisse passer le contenu sous le menu */
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.10), 0 2px 8px rgba(0, 0, 0, 0.04);
  display: grid;
  grid-template-columns: repeat(5, 1fr);   /* 5 services : Accompagnement, DAF, Communication, IA, Patrimoine */
  gap: 0.55rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-fast), transform var(--t-fast), visibility var(--t-fast);
  z-index: 100;
}
.nav-drop--mega:hover .nav-mega,
.nav-drop--mega:focus-within .nav-mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
/* Cards photo + dégradé (style référence) :
   - photo fond plein
   - dégradé bas (transparent → dark) pour lisibilité du texte
   - kicker pill en haut-gauche, titre en bas, flèche bas-droite */
.nav-mega-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.9rem;
  border-radius: 18px;
  color: var(--white);
  text-decoration: none;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #001f1a;                   /* fallback si l'image n'est pas chargée */
  transition: transform var(--t-fast);
}
.nav-mega-card:hover { transform: translateY(-4px); }
.nav-mega-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.7s var(--ease);
}
.nav-mega-card:hover .nav-mega-card-img { transform: scale(1.05); }
.nav-mega-card-grad {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Deux couches :
     1. wash vert global (~18%) → teinte la photo en vert akt
     2. dégradé vertical fort : transparent en haut → vert-deep quasi opaque en bas */
  background:
    linear-gradient(
      180deg,
      rgba(0, 63, 56, 0)    0%,
      rgba(0, 63, 56, 0.35) 30%,
      rgba(0, 63, 56, 0.80) 60%,
      rgba(0, 31, 26, 0.98) 100%
    ),
    linear-gradient(0deg, rgba(0, 90, 79, 0.22) 0%, rgba(0, 90, 79, 0.22) 100%);
  pointer-events: none;
  mix-blend-mode: normal;
}
.nav-mega-icon {
  position: relative;
  z-index: 2;
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green);
  flex-shrink: 0;
  align-self: flex-start;
}
.nav-mega-icon svg { width: 15px; height: 15px; }
.nav-mega-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.nav-mega-title {
  font-size: 0.95rem;
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--white);
  max-width: 14ch;
}
.nav-mega-desc {
  font-size: 0.74rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.78);
  max-width: 26ch;
}
.nav-mega-arrow {
  position: absolute;
  right: 0.9rem; bottom: 0.9rem;
  z-index: 2;
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 0.85rem;
  transition: background var(--t-fast), transform var(--t-fast);
}
.nav-mega-card:hover .nav-mega-arrow {
  background: var(--white);
  color: var(--green-deep);
  transform: translateX(3px);
}

/* Hero nav (fond sombre) — adapte les couleurs du mega menu */
.nav--hero:not(.scrolled) .nav-drop--mega > button { color: var(--white); }

/* Responsive : sous 1024px, 2 colonnes. Sous 720px, menu plein écran prend le relais. */
@media (max-width: 1024px) {
  .nav-mega { grid-template-columns: repeat(2, 1fr); width: min(640px, calc(100vw - 2rem)); }
}
@media (max-width: 720px) {
  .nav-drop--mega .nav-mega { display: none; }
}

.nav-cta { display: inline-flex; align-items: center; gap: 1rem; }

/* Hamburger (mobile) */
.nav-burger {
  display: none; width: 42px; height: 42px; border: 1.5px solid var(--ink);
  border-radius: 50%; background: none; align-items: center; justify-content: center; color: var(--ink);
  transition: background var(--t-fast), color var(--t-fast);
}
.nav-burger:hover { background: var(--ink); color: var(--white); }
.nav-burger svg { width: 16px; height: 16px; }

/* ---------- Menu plein écran ---------- */
.menu { position: fixed; inset: 0; z-index: 200; pointer-events: none; visibility: hidden; }
.menu.is-open { pointer-events: all; visibility: visible; }
.menu-bg {
  position: absolute; inset: 0;
  /* Fond stratifié : 2 spots verts brillants en radial + base vert deep → effet profondeur */
  background:
    radial-gradient(75% 55% at 18% 0%, rgba(95, 201, 179, 0.22) 0%, transparent 65%),
    radial-gradient(60% 50% at 88% 100%, rgba(1, 171, 150, 0.24) 0%, transparent 60%),
    linear-gradient(180deg, #002822 0%, var(--green-deep) 55%, #001a16 100%);
  transform: scaleY(0); transform-origin: top center; opacity: 0;
  overflow: hidden;
}
.menu.is-open .menu-bg { opacity: 1; transform: scaleY(1); transition: transform 0.6s var(--ease); }
/* Grain léger sur le fond du menu (mix-blend-mode overlay = subtil, n'aplatit pas les couleurs) */
.menu-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.07;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.menu-content {
  position: relative; z-index: 10; height: 100%;
  padding: 7rem var(--gutter) 3rem; display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 2rem; opacity: 0; color: var(--white);
}
.menu.is-open .menu-content { opacity: 1; transition: opacity 0.4s 0.3s; }
.menu-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.menu-link {
  font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: var(--fw-xbold); color: var(--white);
  line-height: 1.15; letter-spacing: -0.02em; transition: opacity var(--t-fast), padding var(--t-fast);
}
.menu-link:hover { opacity: 0.65; padding-left: 0.5rem; }
.menu-group { display: flex; flex-direction: column; gap: 0.6rem; }
.menu-group-label {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  /* Reset button → aligne sur .menu-link mais cliquable pour accordion */
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
  color: var(--white);
  font-weight: var(--fw-xbold);
  letter-spacing: -0.02em;
  line-height: 1.15;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: max-content;
}
.menu-group-chevron {
  width: 0.7em; height: 0.7em;
  transition: transform var(--t-fast);
  opacity: 0.7;
}
.menu-group-label[aria-expanded="true"] .menu-group-chevron { transform: rotate(180deg); }
.menu-group-label:hover { opacity: 0.65; }
/* Animation accordion : slide-down doux */
.menu-mega-mobile[hidden] { display: none; }
.menu-mega-mobile:not([hidden]) { animation: menu-mega-reveal 0.35s var(--ease) both; }
@keyframes menu-mega-reveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Mega mobile : 2×2 cards photo+gradient — pendant du desktop mega menu */
.menu-mega-mobile {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
  margin: 0.6rem 0 0.4rem;
}
.menu-mega-mobile-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  display: block;
  color: var(--white);
  background: #001f1a;
  transition: transform var(--t-fast);
}
.menu-mega-mobile-card:hover { transform: translateY(-3px); }
.menu-mega-mobile-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  max-width: none;
  object-fit: cover;
  z-index: 0;
}
.menu-mega-mobile-card-grad {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,63,56,0) 0%, rgba(0,63,56,0.4) 35%, rgba(0,63,56,0.85) 70%, rgba(0,31,26,0.98) 100%),
    linear-gradient(0deg, rgba(0,90,79,0.22) 0%, rgba(0,90,79,0.22) 100%);
  pointer-events: none;
}
.menu-mega-mobile-card::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.10;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.menu-mega-mobile-card-title {
  position: absolute;
  left: 0.7rem; right: 0.7rem; bottom: 0.6rem;
  z-index: 2;
  font-size: 0.82rem;
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--white);
  max-width: 18ch;
}
.menu-aside {
  display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; gap: 1rem;
  /* Glass panel : translucide + blur + bordure fine */
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.4rem 1.6rem;
  position: relative;
  overflow: hidden;
}
.menu-aside::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.08;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.menu-aside .eyebrow { color: var(--white-70); position: relative; z-index: 2; }
.menu-aside .eyebrow::before { background: var(--white-45); }
.menu-aside .menu-meta { position: relative; z-index: 2; }

/* CTA principal dans le menu (Contact) — mis en exergue, pleine largeur */
.menu-cta {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  width: 100%;
  padding: 1.1rem 1.4rem;
  background: var(--white);
  color: var(--green-deep);
  font-size: 1.05rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.01em;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast);
}
.menu-cta svg { width: 18px; height: 18px; transition: transform var(--t-fast); }
.menu-cta:hover { transform: translateY(-2px); background: var(--green); color: var(--white); }
.menu-cta:hover svg { transform: translateX(4px); }

/* Lien social LinkedIn — discret, sous le CTA */
.menu-social {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  font-weight: var(--fw-med);
  transition: color var(--t-fast);
}
.menu-social svg { width: 20px; height: 20px; flex-shrink: 0; }
.menu-social:hover { color: var(--white); }
.menu-meta { display: flex; flex-direction: column; gap: 0.4rem; font-size: var(--fs-sm); color: var(--white-70); }
.menu-close {
  position: absolute; top: 1.8rem; right: var(--gutter); width: 44px; height: 44px;
  border: 1px solid var(--white-45); border-radius: 50%; background: none; color: var(--white);
  display: flex; align-items: center; justify-content: center; opacity: 0; transition: transform var(--t-fast), opacity var(--t-fast);
  z-index: 20;                          /* au-dessus de .menu-content (z-index 10) — sinon le click ne passe pas */
}
.menu.is-open .menu-close { opacity: 1; transition-delay: 0.4s; }
.menu-close:hover { transform: rotate(90deg); }
.menu-close svg { width: 22px; height: 22px; }

/* ---------- Carte générique ---------- */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.6rem, 2.5vw, 2.4rem); transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--green-light); }
.card h3 { font-size: var(--fs-h3); margin-bottom: 0.8rem; }
.card p { color: var(--ink-60); font-size: var(--fs-body); line-height: 1.55; }

/* ---------- Motif lignes & points (élément graphique charte) ---------- */
.dotgrid {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: radial-gradient(var(--line) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 72%);
          mask-image: radial-gradient(ellipse at center, #000 0%, transparent 72%);
}
.section--green .dotgrid,
.section--green-deep .dotgrid {
  background-image: radial-gradient(rgba(255,255,255,0.16) 1px, transparent 1px);
}

/* K filigrane (watermark) */
.k-watermark {
  position: absolute; pointer-events: none; color: var(--green);
  opacity: 0.05; width: clamp(280px, 40vw, 640px); height: auto;
}

/* ---------- Footer ---------- */
.footer {
  /* Fond multi-couches : base vert-deep + 2 spots radiaux verts + transition vers presque noir */
  background:
    radial-gradient(55% 40% at 0% 0%, rgba(95, 201, 179, 0.14) 0%, transparent 65%),
    radial-gradient(45% 35% at 100% 100%, rgba(1, 171, 150, 0.16) 0%, transparent 60%),
    linear-gradient(180deg, var(--green-deep) 0%, #001b17 100%);
  color: var(--white);
  padding-block: clamp(3.5rem, 6vw, 5.5rem) 2rem;
  position: relative;
  overflow: hidden;
}
.footer::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.06;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}
.footer > * { position: relative; z-index: 2; }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 1.5rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-brand {
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 1.6rem 1.8rem;
}
.footer-brand .brand { color: var(--white); }
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-k { color: var(--white); }
.footer-tagline { margin-top: 1rem; color: var(--white-70); max-width: 34ch; font-size: var(--fs-sm); }
.footer-col {
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 1.4rem 1.6rem;
}
.footer-col h4 { font-size: var(--fs-xs); letter-spacing: 0.18em; text-transform: uppercase; color: var(--white-45); font-weight: var(--fw-bold); margin-bottom: 1.1rem; }
.footer-col a { display: block; color: var(--white-70); font-size: var(--fs-sm); padding-block: 0.4rem; transition: color var(--t-fast); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.8rem; font-size: var(--fs-xs); color: var(--white-45); }
.footer-bottom a { color: var(--white-45); }
.footer-bottom a:hover { color: var(--white); }

/* ---------- Responsive nav ---------- */
@media (max-width: 1024px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-burger { display: flex; }
}
@media (max-width: 720px) {
  .menu-content { grid-template-columns: 1fr; }
  .menu-aside { justify-content: flex-start; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================================
   Modal vidéo plein écran réutilisable
   ============================================================ */
.video-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem);
  opacity: 0; visibility: hidden;
  transition: opacity var(--t), visibility var(--t);
}
.video-modal.is-open { opacity: 1; visibility: visible; }

.video-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0, 40, 35, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
}

.video-modal-frame {
  position: relative;
  width: 100%;
  max-width: min(92vw, 1200px);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  transform: scale(0.94);
  transition: transform 0.4s var(--ease);
}
.video-modal.is-open .video-modal-frame { transform: scale(1); }

.video-modal-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  background: #000;
  display: block;
}

.video-modal-close {
  position: absolute; top: -3.2rem; right: 0;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 50%;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform var(--t-fast), background var(--t-fast);
  z-index: 2;
}
.video-modal-close:hover { transform: rotate(90deg); background: rgba(255,255,255,0.12); }
.video-modal-close svg { width: 20px; height: 20px; }

@media (max-width: 640px) {
  .video-modal { padding: 4rem 1rem 2rem; }
  .video-modal-close { top: -3rem; width: 40px; height: 40px; }
}

/* ─── PRE-FOOTER BAND ─── Témoignage + CTA "Vous portez un projet ?", partagé toutes pages */
.band {
  /* Fond noir profond — lien naturel avec la section clients vert-deep qui suit */
  background:
    radial-gradient(70% 50% at 85% 25%, rgba(1, 171, 150, 0.10) 0%, transparent 65%),
    radial-gradient(60% 45% at 5% 85%, rgba(95, 201, 179, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, #050505 0%, #0a1413 60%, #001f1a 100%);
  color: var(--white);
  padding: clamp(4rem, 7vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}
.band::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.07;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}
.band > * { position: relative; z-index: 2; }
.band-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.band-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  padding-left: 2.4rem;
  position: relative;
  margin-bottom: 1.4rem;
}
.band-eyebrow::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 1.8rem; height: 1px; background: rgba(255, 255, 255, 0.45);
}
.band-quote { margin: 0; }
.band-quote p {
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--white);
  margin: 0;
  font-style: italic;
  max-width: 36ch;
}
.band-quote footer {
  margin-top: 1.4rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  font-style: normal;
}
.band-quote footer cite { font-style: normal; }
.band-cta h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: var(--fw-black);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--white);
  margin: 0 0 1rem;
}
.band-cta p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.55;
  margin: 0 0 1.8rem;
  max-width: 30ch;
}
@media (max-width: 900px) {
  .band-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .band-quote p { font-size: 1.1rem; }
}

/* ─── CLIENTS — marquee 3 lignes en sens alterné (gauche / droite / gauche)
       partagé sur toutes les pages, juste avant la band pré-footer
       Background vidéo motion glassmorphism + overlay dégradé vert akt ─── */
.clients {
  position: relative;
  min-height: clamp(65vh, 70vh, 85vh);   /* +40% vs précédent (était 45-50-60vh) — plus d'impact */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(4rem, 7vw, 7rem);
  overflow: hidden;
  background-color: #001f1a;             /* fallback si la vidéo ne charge pas */
  color: var(--white);
}
/* Vidéo background : autoplay muted loop, object-fit cover plein cadre */
.clients-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
/* Overlay dégradé vert akt + grain léger pour lisibilité texte sur la vidéo */
.clients-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Overlay plus léger : viseur radial très sombre au centre pour la lisibilité du texte,
     bords + corners restent translucides → la vidéo motion reste perceptible. */
  background:
    radial-gradient(80% 70% at 50% 50%, rgba(0, 31, 26, 0.20) 0%, rgba(0, 31, 26, 0.55) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 31, 26, 0.30) 100%);
  pointer-events: none;
}
.clients-overlay::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.06;
  mix-blend-mode: overlay;
  pointer-events: none;
}
/* Cible uniquement le contenu textuel ; laisse .clients-bg-video et .clients-overlay garder leurs z-index respectifs (0 et 1) */
.clients > .container,
.clients > .clients-marquees { position: relative; z-index: 2; }
.clients-eyebrow {
  text-align: center;
  font-size: 0.78rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 clamp(2rem, 3vw, 2.8rem);
  position: relative;
  padding-left: 2.4rem;
  display: inline-block;
}
.clients .container { text-align: center; }
.clients-eyebrow::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 1.8rem; height: 1px; background: rgba(255, 255, 255, 0.45);
}
.clients-marquees {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);          /* +250% vs précédent (0.8rem) — aère les 3 lignes pour plus d'impact */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.clients-row {
  display: flex;
  overflow: hidden;
}
.clients-track {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  gap: clamp(2rem, 3.5vw, 3.5rem);
  width: max-content;
  white-space: nowrap;
  animation-duration: var(--speed, 60s);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}
.clients-row--left  .clients-track { animation-name: clients-marquee-left; }
.clients-row--right .clients-track { animation-name: clients-marquee-right; }
.clients-row:hover .clients-track  { animation-play-state: paused; }
.client {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: var(--fw-med);
  color: var(--white);
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  gap: clamp(2rem, 3.5vw, 3.5rem);
}
.client::after {
  content: '✦';
  color: #5fc9b3;                        /* vert vif brand, contraste sur fond sombre */
  font-size: 0.55em;
  opacity: 0.75;
}
@keyframes clients-marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes clients-marquee-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .clients-track { animation: none; }
}

/* ─── SECTION FAISONS CONNAISSANCE — Sticky H-svh + 6 images parallax flottantes
       Pattern Server Robotics adapté à akt. Partagé sur toutes les pages
       (injectée après .clients, avant footer). ─── */
.meet {
  position: relative;
  min-height: 200svh;                    /* runway de scroll pour le parallax */
  background: var(--gray-100);
  overflow-x: clip;
  color: var(--ink);
}
.meet-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(5rem, 10vw, 8rem) clamp(1rem, 4vw, 3rem);
  overflow: hidden;
}
.meet-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  text-align: center;
  max-width: 56ch;
}
.meet-title-wrap {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.6vw, 1.6rem);
}
.meet-corners {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: rgba(0, 90, 79, 0.30);
  height: clamp(4rem, 9vw, 7rem);
}
.meet-corners svg {
  width: clamp(1.3rem, 2vw, 1.8rem);
  height: clamp(1.3rem, 2vw, 1.8rem);
}
.meet-title {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: var(--fw-black);
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--green-deep);
}
.meet-lead {
  margin: 0;
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  line-height: 1.55;
  color: var(--ink-60);
  max-width: 44ch;
}
.meet-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.05rem 1.9rem;
  margin-top: 0.5rem;
  background: var(--green);
  color: var(--white);
  font-weight: var(--fw-bold);
  border-radius: 999px;
  transition: transform var(--t-fast), background var(--t-fast);
}
.meet-cta:hover { background: var(--green-deep); transform: translateY(-2px); }
.meet-cta svg { width: 18px; height: 18px; transition: transform var(--t-fast); }
.meet-cta:hover svg { transform: translateX(4px); }
.meet-floats {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.meet-float {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: clamp(110px, 16vw, 240px);
  aspect-ratio: 4 / 5;
  max-width: none;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
  will-change: transform;
  transform: translate(-50%, -50%) translateY(var(--py, 0px)) rotate(var(--r, 0deg));
  transition: box-shadow 0.4s var(--ease);
}
.meet-float:nth-child(2) { aspect-ratio: 1 / 1; }
.meet-float:nth-child(4) { aspect-ratio: 3 / 2; }
.meet-float:nth-child(6) { aspect-ratio: 3 / 2; }

@media (max-width: 900px) {
  /* Mobile : sticky + parallax conservé, mais runway plus court, images plus petites
     et REPOSITIONNÉES vers les coins pour ne pas chevaucher le titre central. */
  .meet { min-height: 180svh; }
  .meet-sticky { padding: clamp(3rem, 6vw, 4.5rem) 1rem; }
  .meet-title { line-height: 1.05; font-size: clamp(2rem, 7vw, 3.2rem); }
  .meet-float {
    width: clamp(90px, 26vw, 130px);
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  }
  /* Override positions : 4 coins + 2 plus excentrés en mid-side pour libérer la zone titre */
  .meet-float:nth-child(1) { left: 105% !important; top: 38% !important; }   /* mid-right hors-écran */
  .meet-float:nth-child(2) { left: 78% !important; top: 8% !important; }
  .meet-float:nth-child(3) { left: 22% !important; top: 8% !important; }
  .meet-float:nth-child(4) { left: -5% !important; top: 38% !important; }    /* mid-left hors-écran */
  .meet-float:nth-child(5) { left: 22% !important; top: 92% !important; }
  .meet-float:nth-child(6) { left: 78% !important; top: 92% !important; }
  .meet-inner { gap: 1.1rem; }
  .meet-lead { font-size: 0.95rem; }
}

@media (prefers-reduced-motion: reduce) {
  .meet-float { --py: 0px !important; }
}

/* ─── AVIS CLIENTS — Carrousel Google My Business style, partagé toutes pages
       Injecté entre .clients (Ils nous font confiance) et .meet (Faisons connaissance) ─── */
.reviews {
  background: var(--white);
  padding-block: clamp(4rem, 7vw, 6.5rem);
  position: relative;
}
.reviews-head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.reviews-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  padding: 0.5rem 1rem;
  border: 1px solid var(--green-tint);
  background: var(--green-tint);
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.reviews-eyebrow svg { width: 16px; height: 16px; }
.reviews-title {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: var(--fw-black);
  letter-spacing: -0.022em;
  line-height: 1.15;
  color: var(--ink);
  max-width: 26ch;
  margin-inline: auto;
}
/* ─── Roue elliptique 3D — 5 cards placées à 72° autour d'un axe Y
       L'utilisateur tourne la roue au drag (souris/touch) pour parcourir les avis.
       Les dots permettent un saut direct (accessibilité + clics).
       Inclinaison X discrète (-8°) + perspective pour l'effet elliptique. ─── */
.reviews-stage {
  position: relative;
  height: clamp(460px, 58vh, 620px);
  /* Marge basse importante : la perspective 3D fait sortir la card front d'environ 100-120px
     sous le bounding box layout. On compense pour que les dots/CTA passent en-dessous. */
  margin: 0 auto clamp(7rem, 12vw, 10rem);
  max-width: 1100px;
  perspective: 2400px;                          /* perspective élargie → magnification réduite, texte plus net */
  perspective-origin: 50% 30%;
}
.reviews-wheel {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform: rotateX(-8deg) rotateY(var(--rot, 0deg));
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
  cursor: grab;
  touch-action: pan-y;          /* le scroll vertical reste actif sur mobile */
}
/* Flèches de navigation prev/next — placées sur les bords du stage */
.reviews-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: clamp(44px, 4vw, 52px);
  height: clamp(44px, 4vw, 52px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--green-deep);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
}
.reviews-arrow svg { width: 20px; height: 20px; }
.reviews-arrow:hover {
  background: var(--green-deep);
  color: var(--white);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 63, 56, 0.25);
}
.reviews-arrow--prev { left: clamp(0.5rem, 2vw, 1.5rem); transform: translateY(-50%); }
.reviews-arrow--next { right: clamp(0.5rem, 2vw, 1.5rem); transform: translateY(-50%); }
.reviews-arrow:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}
.reviews-wheel.is-dragging {
  transition: none;
  cursor: grabbing;
}
.review-card {
  position: absolute;
  top: 50%; left: 50%;
  width: clamp(260px, 30vw, 340px);
  margin-left: calc(-1 * clamp(260px, 30vw, 340px) / 2);
  margin-top: clamp(-180px, -22vh, -160px);
  /* Design dark gradient akt — haute contraste sur fond blanc de la section */
  background:
    radial-gradient(70% 50% at 50% 0%, rgba(95, 201, 179, 0.18) 0%, transparent 65%),
    radial-gradient(50% 40% at 90% 100%, rgba(1, 171, 150, 0.16) 0%, transparent 60%),
    linear-gradient(135deg, var(--green-deep) 0%, #002a22 50%, #001f1a 100%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  padding: clamp(1.4rem, 2vw, 1.8rem);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18), 0 4px 14px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-height: clamp(280px, 36vh, 340px);
  /* Pellicule cinéma : toutes les cards visibles, opacité dégradée par JS via --vis
     Pas de filter (cause un rasterization low-res qui pixelise le texte sur les cards 3D).
     Front card : scale exact 1.0 + transition douce pour garder le texte net. */
  opacity: var(--vis, 1);
  transform: rotateY(var(--card-angle, 0deg)) translateZ(var(--wheel-radius, 480px));
  transition: box-shadow 0.4s ease, opacity 0.5s ease, transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  overflow: hidden;
  pointer-events: none;             /* les cards de côté ne capturent pas les clicks */
  will-change: transform, opacity;
  /* Polices crispes en contexte 3D */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}
.review-card.is-front {
  box-shadow: 0 30px 80px rgba(0, 63, 56, 0.30), 0 8px 24px rgba(0, 0, 0, 0.12);
  pointer-events: auto;             /* seule la card centrale est cliquable (Lire la suite) */
  z-index: 5;
}
/* Grain léger sur les cards pour la profondeur (filmique) */
.review-card::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.45 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.06;
  mix-blend-mode: overlay;
  pointer-events: none;
  border-radius: inherit;
}
.review-card > * { position: relative; z-index: 2; }
.review-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--white);                   /* étoiles blanches sur fond vert deep */
}
.review-stars svg { width: 18px; height: 18px; filter: drop-shadow(0 2px 6px rgba(255, 255, 255, 0.22)); }
.review-stars svg path { fill: currentColor; }   /* propage la couleur du parent vers le path SVG */
.review-text {
  margin: 0;
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  flex: 1;
  letter-spacing: -0.005em;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card.is-expanded .review-text {
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
}
.review-more {
  align-self: flex-start;
  background: none;
  border: 0;
  padding: 0;
  font-size: 0.85rem;
  font-weight: var(--fw-bold);
  color: #5fc9b3;
  cursor: pointer;
  letter-spacing: -0.005em;
  transition: color var(--t-fast);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.review-more:hover { color: var(--white); }
.review-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.review-avatar {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--avatar-bg, var(--green));
  color: var(--white);
  font-weight: var(--fw-bold);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.review-avatar--img {
  object-fit: cover;
  background: var(--gray-100);
  max-width: none;
}
.review-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.review-name {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: var(--fw-bold);
  font-size: 0.92rem;
  color: var(--white);
  letter-spacing: -0.005em;
}
.review-verified {
  color: #5fc9b3;
  display: inline-flex;
}
.review-verified svg { width: 14px; height: 14px; }
.review-role {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
}
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: clamp(1.4rem, 2vw, 2rem);
}
.reviews-dot {
  width: 8px; height: 8px;
  border: 0; padding: 0;
  border-radius: 999px;
  background: var(--ink-40);
  cursor: pointer;
  transition: width var(--t-fast), background var(--t-fast);
}
.reviews-dot.is-active {
  background: var(--green);
  width: 26px;
}
.reviews-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.4rem, 2.4vw, 2.2rem);
}
.reviews-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.4rem;
  background: var(--white);
  color: var(--green-deep);
  border: 1px solid var(--green);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: var(--fw-bold);
  letter-spacing: -0.005em;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast), border-color var(--t-fast);
}
.reviews-cta:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
  border-color: var(--green);
}
.reviews-cta > svg:first-child {           /* étoile Google */
  width: 16px; height: 16px;
  color: #01ab96;
  transition: color var(--t-fast);
}
.reviews-cta:hover > svg:first-child { color: var(--white); }
.reviews-cta > svg:last-child {            /* flèche external-link */
  width: 14px; height: 14px;
  transition: transform var(--t-fast);
}
.reviews-cta:hover > svg:last-child { transform: translate(2px, -2px); }

/* Roue : radius adaptatif au viewport */
@media (max-width: 1100px) {
  .reviews-stage { height: clamp(420px, 60vh, 540px); }
  .review-card { --wheel-radius: 360px; }
}
@media (max-width: 720px) {
  .reviews-stage { height: clamp(420px, 65vh, 520px); perspective: 1100px; }
  .reviews-wheel { transform: rotateX(-4deg) rotateY(var(--rot, 0deg)); }
  .review-card {
    --wheel-radius: 260px;
    width: clamp(230px, 76vw, 280px);
    margin-left: calc(-1 * clamp(230px, 76vw, 280px) / 2);
    padding: 1.25rem;
  }
}
