/* =========================================================
   RéparLéo — Feuille de style principale
   Refonte v2 — Mobile-first, accessible, no-dependencies
   ========================================================= */

/* ---------- 1. Variables ---------------------------------- */
:root {
  /* Palette — thème sombre */
  --color-bg:          #1c3444;
  --color-bg-alt:      #152835;
  --color-surface:     #243f51;
  --color-surface-2:   #2e4a5d;
  --color-dark:        #0f2430;

  --color-text:        #ffffff;
  --color-muted:       #a9bccb;

  --color-accent:      #afd016;
  --color-accent-dark: #8fac10;
  --color-accent-glow: rgba(175, 208, 22, 0.16);

  --color-primary:     #0c8193;
  --color-primary-dark:#095f6c;
  --color-primary-glow:rgba(12, 129, 147, 0.16);

  --color-border:        rgba(255, 255, 255, 0.12);
  --color-border-strong: rgba(255, 255, 255, 0.22);
  --color-success:       #afd016;

  /* Typographie */
  --font-sans:    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                  "Helvetica Neue", Arial, sans-serif;
  --font-heading: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI",
                  Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Rayons */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Ombres */
  --shadow-sm:  0 1px 2px rgba(0, 0, 0, 0.25);
  --shadow-md:  0 6px 18px rgba(0, 0, 0, 0.35);
  --shadow-lg:  0 16px 40px rgba(0, 0, 0, 0.45);

  /* Transitions */
  --transition-fast:   .15s ease;
  --transition-base:   .2s ease;
  --transition-smooth: .25s cubic-bezier(.4, 0, .2, 1);

  /* Mise en page */
  --container: 1160px;
}

/* ---------- 2. Reset léger & base ------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-base);
}
a:hover { color: #cbe64a; text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: 1.2;
  margin: 0 0 .6em;
  overflow-wrap: anywhere;
  hyphens: auto;
}
h1 strong, h2 strong { color: var(--color-accent); font-weight: 700; }
h1 { font-size: clamp(1.8rem, 4vw + 1rem, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 2vw + 1rem, 2.2rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
p  { margin: 0 0 1rem; }

/* Focus visible accessible */
:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Skip-link clavier */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-dark);
  color: #fff;
  padding: .75rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- 3. Conteneur centré -------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- 4. Boutons ----------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-base),
              background var(--transition-base), border-color var(--transition-base),
              color var(--transition-base);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--color-accent);
  color: #0f2430;
  box-shadow: 0 4px 14px rgba(175, 208, 22, 0.35);
}
.btn-primary:hover {
  background: #c3e433;
  color: #0f2430;
  box-shadow: 0 6px 20px rgba(175, 208, 22, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.btn-secondary:hover { background: var(--color-accent); color: #0f2430; }

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

/* Shimmer + halo CTA — désactivés si mouvement réduit préféré */
@media (prefers-reduced-motion: no-preference) {
  /* Balayage lumineux au hover */
  .btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.18) 50%, transparent 65%);
    transform: translateX(-150%);
    pointer-events: none;
  }
  .btn:hover::after {
    animation: btn-sweep .55s ease forwards;
  }
  @keyframes btn-sweep {
    to { transform: translateX(250%); }
  }

  /* Halo sonar pulsant sur les CTA principaux */
  .hero-ctas .btn-primary,
  .cta-band .btn-primary {
    animation: cta-pulse 2.8s ease-in-out infinite;
  }
  .hero-ctas .btn-primary:hover,
  .cta-band .btn-primary:hover {
    animation: none;
  }
  @keyframes cta-pulse {
    0%, 100% {
      box-shadow: 0 4px 14px rgba(175,208,22,.35), 0 0 0 0 rgba(175,208,22,.4);
    }
    60% {
      box-shadow: 0 6px 22px rgba(175,208,22,.55), 0 0 0 18px rgba(175,208,22,0);
    }
  }
}

/* ---------- 5. En-tête / Navigation — pill flottant ------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  /* Cadre transparent : crée l'espace autour du pill */
  padding: .65rem .75rem;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .55rem 1.25rem;
  gap: 1rem;
  /* Le pill */
  background: rgba(15, 36, 48, 0.94);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.brand img {
  width: 40px; height: 40px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 3px;
}
.brand:hover { text-decoration: none; color: var(--color-accent); }

.main-nav ul {
  list-style: none;
  display: flex;
  gap: .1rem;
  margin: 0; padding: 0;
  align-items: center;
}
.main-nav a {
  padding: .5rem .8rem;
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-weight: 500;
  font-size: .92rem;
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: var(--color-accent-glow);
  color: var(--color-accent);
  text-decoration: none;
}

/* Sous-menu Services */
.main-nav .has-submenu { position: relative; }
.main-nav .submenu-toggle {
  background: transparent;
  border: 0;
  color: var(--color-text);
  font: inherit;
  font-weight: 500;
  font-size: .92rem;
  padding: .5rem .8rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.main-nav .submenu-toggle:hover,
.main-nav .has-submenu.is-open > .submenu-toggle {
  background: var(--color-accent-glow);
  color: var(--color-accent);
}
.main-nav .submenu-toggle .chev {
  display: inline-block;
  transition: transform var(--transition-base);
  font-size: .75em;
}
.main-nav .submenu-toggle[aria-expanded="true"] .chev { transform: rotate(180deg); }

.main-nav .submenu {
  list-style: none;
  margin: 0;
  padding: .4rem;
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  min-width: 250px;
  background: rgba(12, 27, 38, 0.98);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  z-index: 20;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.main-nav .has-submenu.is-open > .submenu,
.main-nav .has-submenu:focus-within > .submenu { display: flex; }
.main-nav .submenu a {
  display: block;
  padding: .6rem .9rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  font-size: .9rem;
  color: var(--color-muted);
}
.main-nav .submenu a:hover {
  color: var(--color-accent);
  background: var(--color-accent-glow);
  text-decoration: none;
}

/* CTA dans la nav (desktop) */
.nav-cta { margin-left: .5rem; }
.nav-cta a {
  padding: .5rem 1.1rem !important;
  background: var(--color-accent) !important;
  color: #0f2430 !important;
  border-radius: var(--radius-md) !important;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .88rem !important;
  transition: background var(--transition-fast) !important;
}
.nav-cta a:hover { background: #c3e433 !important; }

/* Bouton menu mobile */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1.5px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  padding: .45rem .6rem;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  position: relative;
  transition: transform var(--transition-base);
}
.nav-toggle span::before { content: ""; position: absolute; top: -7px; }
.nav-toggle span::after  { content: ""; position: absolute; top:  7px; }

@media (max-width: 820px) {
  .nav-toggle { display: inline-block; }
  /* Sur mobile le lien nav-cta s'affiche comme les autres items du menu */
  .nav-cta a {
    padding: .8rem .5rem !important;
    background: transparent !important;
    color: #fff !important;
    border-radius: 0 !important;
    font-size: .97rem !important;
    box-shadow: none !important;
    border-bottom: 1px solid var(--color-border) !important;
  }
  .main-nav {
    position: absolute;
    top: calc(100% + .25rem);
    left: .75rem; right: .75rem;
    background: rgba(12, 27, 38, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    box-shadow: var(--shadow-lg);
  }
  .main-nav.is-open { max-height: 700px; }
  .main-nav ul { flex-direction: column; padding: .5rem 1.25rem 1rem; }
  .main-nav > ul > li > a,
  .main-nav > ul > li > .submenu-toggle {
    padding: .8rem .5rem;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
    color: #fff;
    width: 100%;
    text-align: left;
    justify-content: space-between;
    font-size: .97rem;
  }
  .main-nav .has-submenu { position: static; }
  .main-nav .submenu {
    position: static;
    display: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    min-width: 0;
    padding: 0 0 0 1rem;
    backdrop-filter: none;
  }
  .main-nav .has-submenu.is-open > .submenu { display: flex; }
  .main-nav .submenu a {
    padding: .65rem .5rem;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-muted);
  }
}

/* ---------- 6. Hero --------------------------------------- */
.hero {
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(ellipse at 80% 5%,  rgba(175, 208, 22, 0.09),  transparent 50%),
    radial-gradient(ellipse at 5%  85%, rgba(12, 129, 147, 0.14),  transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(28, 52, 68, 0.6),     transparent 80%),
    linear-gradient(160deg, #1c3444 0%, #0e2234 100%);
  position: relative;
  overflow: hidden;
}
/* Grille de points décorative */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Hero accueil — plein écran */
.hero:not(.page-hero) {
  min-height: 92svh;
  display: flex;
  align-items: center;
}
.hero:not(.page-hero) > .container { width: 100%; }

.hero-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 820px) {
  .hero-grid { grid-template-columns: 1.15fr 1fr; gap: 4rem; }
}

.hero h1 {
  font-size: clamp(2rem, 5vw + 1rem, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -.02em;
}
.hero .lead {
  font-size: 1.15rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
  max-width: 56ch;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; }
@media (max-width: 520px) {
  .hero h1 { font-size: clamp(1.65rem, 8vw, 2.2rem); }
  .hero .lead { font-size: 1rem; overflow-wrap: anywhere; }
  .hero-ctas { align-items: stretch; }
  .hero-ctas .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }
}

/* Barre de confiance */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .875rem;
  color: var(--color-muted);
  font-weight: 500;
}
.trust-item svg { color: var(--color-accent); flex-shrink: 0; }

/* Carte visuelle hero (côté droit, accueil) */
.hero-visual {
  background: linear-gradient(145deg, rgba(12,129,147,.3) 0%, rgba(9,95,108,.2) 100%);
  border: 1px solid rgba(12,129,147,.45);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  color: #fff;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(12,129,147,.12);
  position: relative;
  overflow: hidden;
}
.hero-visual::before {
  content: "";
  position: absolute;
  top: -70px; right: -70px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, var(--color-accent), transparent 70%);
  opacity: .1;
  border-radius: 50%;
}
.hero-visual::after {
  content: "";
  position: absolute;
  bottom: -50px; left: -50px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, var(--color-primary), transparent 70%);
  opacity: .18;
  border-radius: 50%;
}
.hero-visual h2 { color: #fff; font-size: 1.2rem; margin-bottom: 1.25rem; position: relative; z-index: 1; }
.hero-visual ul { list-style: none; padding: 0; margin: 0; position: relative; z-index: 1; }
.hero-visual ul li {
  padding: .65rem 0 .65rem 2rem;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .95rem;
  line-height: 1.5;
}
.hero-visual ul li:last-child { border-bottom: 0; padding-bottom: 0; }
.hero-visual ul li::before {
  content: "✓";
  position: absolute;
  left: 0; top: .65rem;
  color: var(--color-accent);
  font-weight: 800;
  font-size: .85rem;
  width: 20px; height: 20px;
  background: var(--color-accent-glow);
  border: 1.5px solid rgba(175,208,22,.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 20px;
  text-align: center;
}

/* ---------- 7. Sections ---------------------------------- */
section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-alt { background: var(--color-bg-alt); }
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-header h2 { margin-bottom: .5rem; }
.section-header p { color: var(--color-muted); font-size: 1.05rem; margin: 0; }

/* ---------- 8. Grille de services ------------------------ */
.services-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) {
  .services-grid {
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth),
              border-color var(--transition-smooth);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 0 1px var(--color-accent), var(--shadow-lg);
  border-color: var(--color-accent);
}
.service-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
  display: block;
  border-bottom: 1px solid var(--color-border);
  transition: transform .4s ease;
}
.service-card:hover img { transform: scale(1.03); }

.service-card h3 {
  color: var(--color-accent);
  margin: 1rem 1.25rem .4rem;
  font-size: 1rem;
  line-height: 1.3;
}
@media (min-width: 640px) {
  .service-card h3 { margin: 1.25rem 1.5rem .5rem; font-size: 1.15rem; }
}
.service-card p {
  margin: 0 1.25rem .75rem;
  color: var(--color-muted);
  font-size: .875rem;
  line-height: 1.5;
  flex-grow: 1;
}
@media (min-width: 640px) {
  .service-card p { margin: 0 1.5rem 1rem; font-size: .92rem; }
}
/* CTA lien en bas de carte */
.service-card > p:last-child {
  margin: auto 0 0 0;
  padding: .85rem 1.25rem;
  border-top: 1px solid var(--color-border);
}
@media (min-width: 640px) {
  .service-card > p:last-child { padding: .9rem 1.5rem; }
}
.service-card > p:last-child a {
  color: var(--color-accent);
  font-weight: 600;
  font-size: .88rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  text-decoration: none;
  transition: gap var(--transition-fast), color var(--transition-fast);
}
.service-card:hover > p:last-child a { gap: .7rem; }

/* ---------- 9. Liste de prestations --------------------- */
.prestations {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 820px) {
  .prestations { grid-template-columns: 1fr 1fr; }
}
.prestation {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}
.prestation:hover { box-shadow: var(--shadow-md); }
.prestation h3 {
  color: var(--color-accent);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.prestation h3::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}
.prestation p { color: var(--color-muted); font-size: .97rem; margin: 0; }

.prestation-illustrated {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.25rem;
  align-items: start;
}
.prestation-illustrated img {
  width: 90px; height: 90px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--color-border);
}
@media (max-width: 520px) {
  .prestation-illustrated { grid-template-columns: 60px 1fr; gap: .9rem; }
  .prestation-illustrated img { width: 60px; height: 60px; }
}

/* ---------- 10. Étapes du process ------------------------ */
.process-steps {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  counter-reset: step;
  position: relative;
}
/* Ligne de connexion sur desktop */
@media (min-width: 820px) {
  .process-steps::before {
    content: "";
    position: absolute;
    top: 24px; /* moitié du badge numéro */
    left: 3rem; right: 3rem;
    height: 2px;
    background: linear-gradient(90deg,
      transparent 0%,
      rgba(175,208,22,.3) 15%,
      rgba(175,208,22,.3) 85%,
      transparent 100%);
    z-index: 0;
  }
}
.process-step {
  background: var(--color-surface);
  padding: 2rem 1.75rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  position: relative;
  counter-increment: step;
  z-index: 1;
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}
.process-step:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(175,208,22,.3);
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -24px; left: 1.5rem;
  background: var(--color-accent);
  color: #0f2430;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .95rem;
  box-shadow: 0 4px 14px rgba(175,208,22,.4);
}
.process-step h3 { margin-top: .65rem; font-size: 1.1rem; color: var(--color-accent); }
.process-step p  { color: var(--color-muted); margin: 0; font-size: .95rem; }

/* ---------- 11. CTA band --------------------------------- */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -80px; left: -80px;
  width: 280px; height: 280px;
  background: var(--color-accent);
  border-radius: 50%;
  opacity: .08;
  filter: blur(20px);
}
.cta-band::after {
  content: "";
  position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  background: #fff;
  border-radius: 50%;
  opacity: .04;
  filter: blur(20px);
}
.cta-band h2 { color: #fff; position: relative; z-index: 1; }
.cta-band p  {
  color: rgba(255,255,255,.88);
  max-width: 640px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}
.cta-band .hero-ctas  { position: relative; z-index: 1; justify-content: center; }
.cta-band .btn-primary { background: var(--color-accent); color: #0f2430; box-shadow: 0 4px 14px rgba(175,208,22,.4); }
.cta-band .btn-primary:hover { background: #c3e433; }
.cta-band .btn-ghost   { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }

/* ---------- 12. Contenus riches (pages) ------------------ */
.rich-content { max-width: 780px; margin: 0 auto; }
.rich-content ul { padding-left: 1.2rem; }
.rich-content li { margin-bottom: .4rem; }
.rich-content .info-box {
  background: var(--color-surface);
  border-left: 4px solid var(--color-accent);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin: 1.5rem 0;
}
.rich-content .info-box p:last-child { margin-bottom: 0; }

/* Bloc image + texte côte à côte */
.content-split {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 820px) {
  .content-split { grid-template-columns: 1.1fr 1fr; }
  .content-split.reverse { direction: rtl; }
  .content-split.reverse > * { direction: ltr; }
}
.content-figure { margin: 0; text-align: center; }
.content-figure img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}
.content-figure figcaption {
  color: var(--color-muted);
  font-size: .9rem;
  margin-top: .75rem;
  font-style: italic;
}

/* Grille technologies 3D */
.tech-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.tech-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth),
              border-color var(--transition-smooth);
}
.tech-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--color-accent); }
.tech-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.tech-card .tech-body { padding: 1.5rem 1.75rem; }
.tech-card h3 { color: var(--color-accent); margin-bottom: .5rem; }
.tech-card p  { color: var(--color-muted); margin: 0; font-size: .95rem; }

.materials-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin: 1.5rem 0;
}
.material {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
}
.material strong { color: var(--color-accent); }

/* ---------- 13. Formulaire ------------------------------- */
.form-wrapper {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}
.form-row { margin-bottom: 1.25rem; }
.form-row label { display: block; font-weight: 600; margin-bottom: .4rem; font-size: .95rem; color: #fff; }
.form-row .required { color: var(--color-accent); }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: .75rem .9rem;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  background: var(--color-bg);
  color: #fff;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: rgba(255,255,255,.4); }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(175,208,22,.2);
}
.form-row textarea { min-height: 140px; resize: vertical; }
.form-hint { font-size: .85rem; color: var(--color-muted); margin-top: .3rem; }

.form-embed {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.form-embed iframe { display: block; width: 100%; height: 800px; border: 0; background: #fff; }
@media (max-width: 600px) { .form-embed iframe { height: 900px; } }

/* ---------- 14. Galerie des réalisations ----------------- */
.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 520px) { .gallery-grid { gap: 1.25rem; } }
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

.gallery-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth),
              border-color var(--transition-smooth);
}
.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(175,208,22,.5);
}
.gallery-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.gallery-card:hover img { transform: scale(1.06); }
.gallery-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(10,20,30,.88) 0%,
    rgba(10,20,30,.15) 50%,
    transparent 100%);
}
.gallery-card-label {
  position: absolute;
  bottom: .9rem; left: 1rem; right: 1rem;
  font-size: .85rem; font-weight: 600;
  color: #fff;
  line-height: 1.35;
}
.gallery-badge {
  position: absolute; top: .7rem; left: .7rem;
  background: var(--color-accent);
  color: #0f2430;
  font-family: var(--font-heading);
  font-size: .7rem; font-weight: 700;
  padding: .22rem .65rem;
  border-radius: 20px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.realisations-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .realisations-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .realisations-grid { grid-template-columns: repeat(3, 1fr); }
}
.realisation-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth),
              border-color var(--transition-smooth);
}
.realisation-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(175,208,22,.55);
}
.realisation-media {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}
.realisation-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.realisation-card:hover .realisation-media img { transform: scale(1.04); }
.realisation-body {
  padding: 1.15rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.realisation-meta {
  color: var(--color-accent);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 0 0 .55rem;
}
.realisation-body h3 {
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.3;
  margin: 0 0 .55rem;
}
.realisation-body p {
  color: var(--color-muted);
  font-size: .92rem;
  line-height: 1.55;
  margin: 0 0 1rem;
}
.realisation-body a {
  margin-top: auto;
  color: var(--color-accent);
  font-weight: 700;
  text-decoration: none;
}
.realisation-body a:hover { text-decoration: underline; }

.realisation-hub-card {
  display: block;
  color: inherit;
  text-decoration: none;
}
.realisation-hub-card:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 4px;
}
.realisation-service-section {
  scroll-margin-top: 96px;
}
.realisation-service-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 720px) {
  .realisation-service-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}
.service-kicker {
  color: var(--color-accent);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  margin: 0 0 .4rem;
  text-transform: uppercase;
}
.realisation-service-heading h2 {
  margin-bottom: .45rem;
}
.realisation-service-heading p:last-child {
  color: var(--color-muted);
  margin-bottom: 0;
  max-width: 760px;
}
.case-slider {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: .15rem .25rem 1rem;
  margin: 0 -.25rem;
  scroll-padding-inline: .25rem;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--color-accent) rgba(255,255,255,.08);
}
@media (min-width: 640px) {
  .case-slider { gap: 1.25rem; }
}
.case-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex: 0 0 min(92vw, 780px);
  flex-direction: column;
  overflow: hidden;
  scroll-snap-align: start;
}
@media (min-width: 1100px) {
  .case-card { flex-basis: 780px; }
}
.case-photos {
  aspect-ratio: 4/3;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}
.case-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.case-photos-duo {
  display: grid;
  gap: 2px;
  grid-template-columns: 1fr 1fr;
}
.case-photos-grid {
  display: grid;
  gap: 2px;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.case-photos-grid img:first-child {
  grid-row: 1 / 3;
}
.case-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.1rem 1.2rem 1.25rem;
}
.case-category {
  color: var(--color-accent);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .06em;
  margin: 0 0 .5rem;
  text-transform: uppercase;
}
.case-content h3 {
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.3;
  margin: 0 0 .65rem;
}
.case-content p {
  color: var(--color-muted);
  font-size: .92rem;
  line-height: 1.55;
  margin: 0 0 .9rem;
}
.case-solution {
  border-top: 1px solid var(--color-border);
  margin-top: auto !important;
  padding-top: .9rem;
}
.case-solution strong {
  color: #fff;
}

/* Scrollbar cachée — les contrôles remplacent */
.case-slider {
  scrollbar-width: none;
}
.case-slider::-webkit-scrollbar {
  display: none;
}

/* Contrôles de navigation sous chaque carrousel */
.case-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

/* Photos cliquables pour agrandissement */
.case-photos img {
  cursor: zoom-in;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-img {
  max-width: min(90vw, 1400px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: block;
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.28);
}

/* ---------- 15. Hero des pages de service (compact) ------ */
.page-hero {
  min-height: auto !important;
  display: block !important;
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3.5rem) !important;
  border-bottom: 1px solid var(--color-border);
}
.page-hero h1 { font-size: clamp(1.65rem, 3vw + 1rem, 2.6rem); }

/* ---------- 16. Fil d'Ariane ----------------------------- */
.breadcrumb { margin-bottom: 1.5rem; }
.breadcrumb ol {
  list-style: none; padding: 0; margin: 0;
  display: flex; align-items: center; flex-wrap: wrap; gap: .35rem;
  font-size: .85rem; color: var(--color-muted);
}
.breadcrumb a { color: var(--color-muted); }
.breadcrumb a:hover { color: var(--color-accent); text-decoration: none; }
.breadcrumb [aria-current="page"] { color: var(--color-accent); font-weight: 500; }
.breadcrumb li[aria-hidden="true"] { opacity: .45; user-select: none; }

/* ---------- 17. Pied de page ----------------------------- */
.site-footer {
  background: var(--color-dark);
  color: var(--color-muted);
  padding: 3.5rem 0 1.5rem;
  font-size: .95rem;
  border-top: 3px solid var(--color-accent);
}
.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 2.5rem;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; gap: 3rem; }
}
.site-footer h4 {
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul + h4 { margin-top: 1.35rem; }
.site-footer li { margin-bottom: .6rem; }
.site-footer a { color: var(--color-muted); transition: color var(--transition-fast); }
.site-footer a:hover { color: var(--color-accent); text-decoration: none; }
.footer-brand { display: flex; align-items: center; gap: .75rem; margin-bottom: .5rem; }
.footer-brand img {
  width: 48px; height: 48px;
  object-fit: contain;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 4px;
}
.footer-brand span { color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; }
.footer-tagline {
  font-size: .875rem;
  font-style: italic;
  color: #7e92a3;
  margin-bottom: 1.25rem;
  line-height: 1.55;
}
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
  text-align: center;
  font-size: .85rem;
  color: #7e92a3;
}
.footer-bottom a { color: #7e92a3; }
.footer-bottom a:hover { color: var(--color-accent); }

/* ---------- 18. Utilitaires ------------------------------ */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.text-center { text-align: center; }
.mt-lg { margin-top: 3rem; }

/* ---------- 19. Scroll-reveal ---------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* Variantes directionnelles */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal-scale {
  opacity: 0;
  transform: scale(.93);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal-left.visible,
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ---------- 20. Accessibilité & mouvement réduit --------- */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- 21. FAQ (accordéons details) ----------------- */
#faq details {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: .75rem;
  transition: box-shadow .2s ease, border-color .2s ease;
}
#faq details[open] {
  box-shadow: 0 2px 12px rgba(0,0,0,.35);
  border-color: var(--color-accent);
}
#faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .25rem 0;
  font-size: 1rem;
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: background .15s ease;
}
#faq summary:hover {
  background: var(--color-surface-2);
  padding-left: .5rem; padding-right: .5rem;
  margin-left: -.5rem; margin-right: -.5rem;
}
#faq summary strong { color: var(--color-text) !important; }
#faq summary::-webkit-details-marker { display: none; }
#faq summary::after {
  content: "+";
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-accent);
  font-weight: 300;
  flex-shrink: 0;
}
#faq details[open] summary::after { content: "−"; }
#faq details p { margin-top: .75rem; margin-bottom: 0; color: var(--color-muted); }

/* ---------- 22. Impression ------------------------------- */
@media print {
  .site-header, .site-footer, .cta-band, .nav-toggle { display: none; }
  body { font-size: 12pt; color: #000; }
  a { color: #000; text-decoration: underline; }
}

/* ---------- 23. Badge localisé (hero) -------------------- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  background: rgba(12, 129, 147, 0.15);
  border: 1px solid rgba(12, 129, 147, 0.38);
  color: #7ed6df;
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 600;
  padding: .38rem .9rem .38rem .75rem;
  border-radius: 20px;
  margin: 0 0 1.15rem;
  letter-spacing: .02em;
  line-height: 1;
  max-width: 100%;
  width: fit-content;
}

/* ---------- 24. Bande de statistiques (À propos) --------- */
.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 2.75rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  text-align: center;
  padding: 1.75rem 1rem;
  border-right: 1px solid var(--color-border);
}
.stat-item:last-child { border-right: 0; }
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: .4rem;
}
.stat-label {
  font-size: .82rem;
  color: var(--color-muted);
  line-height: 1.45;
}
@media (max-width: 520px) {
  .stats-band { grid-template-columns: 1fr 1fr; }
  .stats-band .stat-item:nth-child(2) { border-right: 0; }
  .stats-band .stat-item:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--color-border);
  }
  .stat-number { font-size: 1.85rem; }
}

/* ---------- 25. Zone chips ------------------------------ */
.zone-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin: 1.5rem 0 1rem;
}
.zone-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border-strong);
  color: var(--color-muted);
  font-size: .875rem;
  font-weight: 500;
  padding: .48rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  transition: border-color var(--transition-base), color var(--transition-base),
              background var(--transition-base);
}
a.zone-chip:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-glow);
  text-decoration: none;
}

/* ---------- 26. Icône dans les étapes du process --------- */
.process-icon {
  width: 40px;
  height: 40px;
  color: var(--color-accent);
  opacity: .9;
  margin-bottom: .85rem;
}
.process-icon svg { display: block; width: 40px; height: 40px; }

/* ---------- 27. Carrousel réalisations (accueil) --------- */
.home-carousel {
  max-width: 680px;
  margin: 0 auto;
}
.home-carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.home-carousel-track {
  display: flex;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.home-carousel-track .case-card {
  flex: 0 0 100%;
  min-width: 0;
  scroll-snap-align: none;
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}
.carousel-btn {
  background: var(--color-surface);
  border: 1px solid var(--color-border-strong);
  border-radius: 50%;
  color: var(--color-text);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
  padding: 0;
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
  flex-shrink: 0;
}
.carousel-btn:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #0f2430;
}
.carousel-dots {
  display: flex;
  gap: .55rem;
  align-items: center;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border-strong);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
  flex-shrink: 0;
}
.carousel-dot.is-active {
  background: var(--color-accent);
  transform: scale(1.35);
}
@media (prefers-reduced-motion: reduce) {
  .home-carousel-track { transition: none; }
}

/* ---------- 28. Barre CTA collante mobile ---------------- */
.sticky-cta-bar { display: none; }

@media (max-width: 640px) {
  .sticky-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--color-dark);
    border-top: 2px solid var(--color-accent);
    padding: .65rem .85rem calc(.85rem + env(safe-area-inset-bottom, 0px));
    gap: .65rem;
    box-shadow: 0 -6px 28px rgba(0, 0, 0, .5);
  }
  .sticky-cta-bar a {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .72rem .5rem;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: .88rem;
    text-decoration: none;
    line-height: 1;
    text-align: center;
    transition: background var(--transition-fast), border-color var(--transition-fast),
                color var(--transition-fast);
  }
  .sticky-cta-bar .sticky-call {
    background: var(--color-accent);
    color: #0f2430;
  }
  .sticky-cta-bar .sticky-call:hover { background: #c3e433; color: #0f2430; text-decoration: none; }
  .sticky-cta-bar .sticky-form {
    background: transparent;
    color: var(--color-text);
    border: 1.5px solid var(--color-border-strong);
  }
  .sticky-cta-bar .sticky-form:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    text-decoration: none;
  }
  body { padding-bottom: 4.75rem; }
}
