/* ===========================
   ICI POUR VOUS — v4
   Inspiré : terminal-industries + o2.fr + petits-fils
   =========================== */

:root {
  --noir:     #3C4F5E;
  --noir-2:   #485E6E;
  --blanc:    #FFFFFF;
  --creme:    #EAECE8;
  --terra:    #7FA87F;
  --terra-h:  #a9bfa7;
  --vert:     #6E95B5;
  --vert-h:   #87AAC8;
  --gris:     #607272;
  --border:   #D4DDD3;

  --fs-xl:    clamp(48px, 7vw, 88px);
  --fs-lg:    clamp(32px, 4vw, 52px);
  --fs-md:    clamp(20px, 2.5vw, 28px);
  --fs-body:  17px;
  --fs-sm:    14px;

  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --t:        0.25s var(--ease);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--noir);
  background: var(--blanc);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Labels */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 16px;
  display: block;
}
.section-label-light { color: rgba(255,255,255,0.5); }

.section-title {
  font-size: var(--fs-lg);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--noir);
}
.section-title-light { color: var(--blanc); }

/* ===========================
   NAV
   =========================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(60,79,94,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 36px;
  width: auto !important;
  max-width: none !important;
  object-fit: contain !important;
  transition: opacity var(--t);
}

.nav-logo:hover .nav-logo-img { opacity: 0.8; }

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
  transition: color var(--t);
}

.nav-links a:hover { color: var(--blanc); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--terra);
  color: var(--blanc);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  white-space: nowrap;
  transition: background var(--t), transform var(--t);
  cursor: pointer;
}

.nav-cta:hover {
  background: var(--terra-h);
  transform: translateY(-1px);
}

.nav-client {
  display: flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.2);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  white-space: nowrap;
  border-radius: 6px;
  transition: color var(--t), border-color var(--t), background var(--t);
  cursor: pointer;
}

.nav-client:hover {
  color: var(--blanc);
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* ===========================
   HERO
   =========================== */

.hero {
  min-height: 100svh;
  padding-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--noir);
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px 80px 80px;
  gap: 0;
}

.hero-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 28px;
}

.hero-title {
  font-size: var(--fs-xl);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--blanc);
  margin-bottom: 28px;
}

.hero-title em {
  font-style: italic;
  color: var(--terra);
}

.hero-sub {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 44px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--terra);
  color: var(--blanc);
  font-size: 16px;
  font-weight: 700;
  padding: 18px 32px;
  letter-spacing: -0.01em;
  transition: background var(--t), transform var(--t);
  cursor: pointer;
}

.btn-hero:hover {
  background: var(--terra-h);
  transform: translateY(-2px);
}

.btn-hero-ghost {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: color var(--t), border-color var(--t);
}

.btn-hero-ghost:hover {
  color: var(--blanc);
  border-color: var(--blanc);
}

.hero-proof {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-proof span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
}

.hero-proof svg { color: var(--terra); flex-shrink: 0; }

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--noir) 0%, transparent 30%),
              linear-gradient(0deg, var(--noir) 0%, transparent 30%);
}

.hero-image img {
  height: 100%;
  object-position: center top;
  filter: grayscale(20%) contrast(1.1);
}

/* ===========================
   BANDE
   =========================== */

.bande {
  background: var(--terra);
}

.bande-sep { opacity: 0.5; font-size: 10px; }

/* ===========================
   SERVICES
   =========================== */

.services {
  padding: 100px 0 0;
  background: var(--blanc);
}

.services .container {
  margin-bottom: 64px;
}

.services-full {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-bloc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  position: relative;
}

.service-bloc-dark { background: var(--noir-2); }
.service-bloc-light { background: var(--creme); }

.service-num {
  position: absolute;
  top: 40px;
  left: 48px;
  font-size: 120px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
  user-select: none;
}

.service-bloc-light .service-num { color: rgba(0,0,0,0.05); }
.service-num-right { left: auto; right: 48px; }

.service-content {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--terra);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanc);
  margin-bottom: 28px;
}

.service-icon-terra { background: var(--vert); }

.service-icon svg { width: 26px; height: 26px; }

.service-bloc-dark .service-content h3 { color: var(--blanc); }
.service-bloc-light .service-content h3 { color: var(--noir); }

.service-content h3 {
  font-size: var(--fs-md);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.service-bloc-dark .service-content > p { color: rgba(255,255,255,0.55); }
.service-bloc-light .service-content > p { color: var(--gris); }

.service-content > p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
}

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

.service-bloc-dark .service-content ul li {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.08);
}

.service-content ul li {
  font-size: 15px;
  font-weight: 500;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  color: var(--noir);
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-service-more {
  display: inline-flex;
  align-items: center;
  margin-top: 28px;
  font-size: 14px;
  font-weight: 700;
  color: var(--terra);
  border-bottom: 1.5px solid var(--terra);
  padding-bottom: 2px;
  transition: color var(--t), border-color var(--t), gap var(--t);
  gap: 4px;
}
.btn-service-more:hover {
  color: var(--terra-h);
  border-color: var(--terra-h);
  gap: 8px;
}
.service-bloc-dark .btn-service-more {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.3);
}
.service-bloc-dark .btn-service-more:hover {
  color: #fff;
  border-color: #fff;
}

.service-content ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--terra);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-visual {
  overflow: hidden;
  position: relative;
}

.service-visual img {
  transition: transform 0.6s var(--ease);
}

.service-bloc:hover .service-visual img {
  transform: scale(1.03);
}

/* ===========================
   POUR QUI
   =========================== */

.pour-qui {
  background: var(--noir);
  padding: 100px 0;
}

.cibles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  margin-top: 56px;
  border: 1px solid rgba(255,255,255,0.08);
}

.cible {
  background: var(--noir);
  padding: 48px 40px;
  transition: background var(--t);
}

.cible:hover { background: var(--noir-2); }

.cible-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
}

.cible-top svg {
  width: 36px;
  height: 36px;
  color: var(--terra);
}

.cible-num {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}

.cible h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--blanc);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.cible p {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

/* ===========================
   COMMENT
   =========================== */

.comment {
  background: var(--creme);
  padding: 100px 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  border: 1px solid var(--border);
}

.step {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background var(--t);
}

.step:last-child { border-right: none; }
.step:hover { background: var(--blanc); }

.step-n {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--terra);
  margin-bottom: 20px;
}

.step-bar {
  width: 32px;
  height: 3px;
  background: var(--noir);
  margin-bottom: 20px;
}

.step h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--noir);
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: var(--gris);
  line-height: 1.7;
}

/* ===========================
   CTA BAND
   =========================== */

.cta-band {
  background: var(--vert);
  padding: 72px 40px;
}

.cta-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-band-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}

.cta-band h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--blanc);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.cta-band-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn-band {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--blanc);
  color: var(--vert);
  font-size: 16px;
  font-weight: 800;
  padding: 18px 32px;
  letter-spacing: -0.01em;
  transition: transform var(--t), box-shadow var(--t);
  cursor: pointer;
}

.btn-band:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.btn-band-ghost {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 2px;
  transition: color var(--t);
}

.btn-band-ghost:hover { color: var(--blanc); }

/* ===========================
   CONTACT
   =========================== */

.contact { background: var(--blanc); }

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 600px;
}

.contact-left {
  background: var(--noir);
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-left h2 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--blanc);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.contact-left > p {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 48px;
}

.contact-coords {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-coords a,
.contact-coords div {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: color var(--t);
}

.contact-coords a:hover { color: var(--blanc); }
.contact-coords svg { width: 18px; height: 18px; color: var(--terra); flex-shrink: 0; }

.contact-form {
  padding: 72px 64px;
  background: var(--creme);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fg label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gris);
}

.fg input,
.fg textarea,
.fg select {
  background: var(--blanc);
  border: 1.5px solid var(--border);
  padding: 14px 16px;
  font-family: inherit;
  font-size: 16px;
  color: var(--noir);
  outline: none;
  transition: border-color var(--t);
  -webkit-appearance: none;
  border-radius: 0;
}

.fg input:focus,
.fg textarea:focus,
.fg select:focus {
  border-color: var(--noir);
}

.fg textarea { resize: vertical; }

.contact-form button {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--noir);
  color: var(--blanc);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background var(--t), transform var(--t);
}

.contact-form button:hover {
  background: var(--vert);
  transform: translateY(-2px);
}

/* ===========================
   FOOTER
   =========================== */

.footer {
  background: var(--noir-2);
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ---- Footer top : 4 colonnes ---- */
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 40px 52px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-logo-link { display: inline-block; }

.footer-logo-img {
  height: 38px !important;
  width: auto !important;
  max-width: none !important;
  object-fit: contain !important;
}

.footer-tagline {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.65;
  margin: 16px 0 24px;
}

.footer-nova-logo {
  display: block;
  height: 72px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  object-position: left center;
  opacity: 0.92;
  transition: opacity var(--t), transform var(--t);
}
.footer-nova-logo:hover { opacity: 1; transform: scale(1.03); }

.footer-nova-caption {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.28);
  margin-top: 8px;
  letter-spacing: 0.04em;
}

/* ---- Colonnes nav ---- */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin: 0 0 18px;
}

.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.62);
  text-decoration: none;
  padding: 5px 0;
  transition: color var(--t);
}
.footer-col a:hover { color: var(--terra); }

/* ---- Colonne contact ---- */
.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.62);
  padding: 5px 0;
  text-decoration: none;
  transition: color var(--t);
  margin: 0;
}
a.footer-contact-row:hover { color: var(--terra); }
.footer-contact-row svg {
  width: 15px; height: 15px;
  flex-shrink: 0;
  color: var(--terra);
  opacity: 0.8;
}
.footer-hours {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.28);
  margin: 10px 0 0 25px;
}

/* ---- Barre basse ---- */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color var(--t);
}
.footer-legal a:hover { color: rgba(255,255,255,0.75); }

.footer-sap-tag {
  font-size: 0.78rem;
  color: rgba(127,168,127,0.55);
  letter-spacing: 0.02em;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-inner { padding: 100px 40px 64px; }
  .hero-image { height: 400px; display: block; }
  .hero-image::after { background: linear-gradient(0deg, var(--noir) 0%, transparent 50%); }
  .service-bloc { grid-template-columns: 1fr; }
  .service-visual { height: 300px; }
  .service-num { display: none; }
  .service-num-right { display: none; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-left { padding: 56px 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .container { padding: 0 24px; }
  .hero-inner { padding: 90px 24px 56px; }
  .cibles { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }
  .cta-band { padding: 56px 24px; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .contact-form { padding: 48px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; padding: 48px 28px 40px; }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; gap: 36px; padding: 40px 20px 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; padding: 16px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ===========================
   HAMBURGER / MOBILE NAV
   =========================== */

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.75);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s, transform 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-panel {
  display: none;
  flex-direction: column;
  background: var(--noir);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 8px 24px 28px;
}
.nav-mobile-panel.open { display: flex; }
.nav-mobile-panel a {
  font-size: 17px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--t);
}
.nav-mobile-panel a:hover { color: var(--blanc); }
.nav-mobile-panel a.nav-mobile-cta {
  margin-top: 12px;
  background: var(--terra);
  color: var(--blanc);
  padding: 14px 20px;
  font-weight: 700;
  text-align: center;
  border: none;
}

@media (max-width: 768px) {
  .nav-burger { display: flex; }
  .nav-actions { display: none; }
}

/* ===========================
   SERVICES SECONDAIRES
   =========================== */

.services-secondaires {
  background: var(--creme);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.ss-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}
.ss-header-note {
  font-size: 13px;
  color: var(--gris);
  max-width: 340px;
  line-height: 1.6;
  text-align: right;
}
.ss-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ss-card {
  background: var(--blanc);
  border: 1.5px solid var(--border);
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
  text-decoration: none;
}
.ss-card:hover {
  border-color: var(--terra);
  box-shadow: 0 8px 32px rgba(0,153,176,0.08);
  transform: translateY(-3px);
}
.ss-icon {
  width: 48px;
  height: 48px;
  background: var(--noir);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terra);
  margin-bottom: 24px;
}
.ss-icon svg { width: 22px; height: 22px; }
.ss-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--noir);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.ss-card p {
  font-size: 14px;
  color: var(--gris);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}
.ss-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--terra);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===========================
   TÉMOIGNAGES
   =========================== */

.temoignages {
  background: var(--blanc);
  padding: 100px 0;
}
.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.temoignage {
  background: var(--creme);
  border: 1.5px solid var(--border);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--t), transform var(--t);
}
.temoignage:hover {
  border-color: var(--terra);
  transform: translateY(-4px);
}
.tem-stars {
  color: #F59E0B;
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.temoignage blockquote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--noir);
  font-style: italic;
  margin-bottom: 28px;
  flex: 1;
}
.tem-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.tem-avatar {
  width: 40px;
  height: 40px;
  background: var(--noir);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--terra);
  flex-shrink: 0;
}
.tem-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--noir);
}
.tem-author span { font-size: 13px; color: var(--gris); }
.tem-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
  background: rgba(0,153,176,0.08);
  padding: 4px 10px;
  display: inline-block;
  align-self: flex-start;
}

/* ===========================
   FAQ HOMEPAGE
   =========================== */

.faq-home {
  background: var(--noir);
  padding: 100px 0;
}
.faq-home .section-label { color: rgba(255,255,255,0.4); }
.faq-home .section-title { color: var(--blanc); }
.faq-home-list {
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  text-align: left;
}
.faq-btn-text {
  font-size: 17px;
  font-weight: 600;
  color: var(--blanc);
  transition: color var(--t);
}
.faq-item.open .faq-btn-text { color: var(--terra); }
.faq-icon {
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color var(--t), background var(--t);
}
.faq-item.open .faq-icon { background: var(--terra); border-color: var(--terra); }
.faq-icon svg {
  width: 12px; height: 12px;
  color: rgba(255,255,255,0.6);
  transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-icon svg { transform: rotate(45deg); color: var(--blanc); }
.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease);
}
.faq-body-inner {
  padding: 0 0 24px;
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  max-width: 720px;
}

/* ===========================
   ZONE D'INTERVENTION
   =========================== */

.zone-section {
  background: var(--blanc);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.zone-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}
.zone-info h3 {
  font-size: var(--fs-md);
  font-weight: 800;
  color: var(--noir);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.zone-info p {
  font-size: 15px;
  color: var(--gris);
  line-height: 1.7;
  margin-bottom: 28px;
}
.zone-towns {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.zone-towns li {
  font-size: 14px;
  font-weight: 500;
  color: var(--noir);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.zone-towns li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--terra);
  border-radius: 50%;
  flex-shrink: 0;
}
.zone-visual {
  height: 460px;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--border);
}

/* ===========================
   FORMULAIRE — CHECKBOXES & SUCCESS
   =========================== */

.form-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--noir);
  user-select: none;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border);
  background: var(--blanc);
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--t), border-color var(--t);
  position: relative;
}
.form-check input[type="checkbox"]:checked {
  background: var(--terra);
  border-color: var(--terra);
}
.form-check input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px; top: 1px;
  width: 8px; height: 12px;
  border: 2.5px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 64px 48px;
  background: var(--creme);
  min-height: 400px;
}
.form-success.visible { display: flex; }
.form-success svg { color: var(--terra); }
.form-success h3 { font-size: 22px; font-weight: 800; color: var(--noir); letter-spacing: -0.02em; }
.form-success p { font-size: 15px; color: var(--gris); }

/* ===========================
   RESPONSIVE ADDITIONS
   =========================== */

@media (max-width: 900px) {
  .ss-grid { grid-template-columns: 1fr; }
  .temoignages-grid { grid-template-columns: 1fr 1fr; }
  .zone-inner { grid-template-columns: 1fr; }
  .zone-visual { height: 320px; }
  .zone-inner { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .temoignages-grid { grid-template-columns: 1fr; }
  .form-checks { grid-template-columns: 1fr; }
  .ss-header-note { text-align: left; }
  .zone-section { padding: 64px 0; }
  .zone-inner { padding: 0 24px; }
}

/* ===========================
   ANIMATIONS
   =========================== */

/* Hero — entrée staggerée au chargement */
.hero-anim-1,
.hero-anim-2,
.hero-anim-3,
.hero-anim-4,
.hero-anim-5 {
  opacity: 0;
  transform: translateY(28px);
  animation: heroFadeUp 0.8s var(--ease) forwards;
}
.hero-anim-1 { animation-delay: 0.1s; }
.hero-anim-2 { animation-delay: 0.25s; }
.hero-anim-3 { animation-delay: 0.42s; }
.hero-anim-4 { animation-delay: 0.58s; }
.hero-anim-5 { animation-delay: 0.72s; }

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

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Bande défilante */
.bande {
  overflow: hidden;
}

.bande-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.bande-track:hover { animation-play-state: paused; }

.bande-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 32px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Nav scrolled */
.nav-scrolled {
  background: rgba(60,79,94,0.99) !important;
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

/* Curseur personnalisé (desktop uniquement) */
@media (pointer: fine) {
  body { cursor: none; }

  .cursor {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 2px solid var(--terra);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    top: -18px;
    left: -18px;
    transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.2s, border-color 0.2s;
  }

  .cursor.cursor-hover {
    width: 56px;
    height: 56px;
    background: rgba(0,153,176,0.12);
    border-color: var(--terra-h);
  }

  .cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--terra);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    top: -3px;
    left: -3px;
    transition: background 0.2s;
  }
}

/* ===========================
   BARRE DE PROGRESSION
   =========================== */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--terra);
  z-index: 10001;
  border-radius: 0 2px 2px 0;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ===========================
   BOUTON FLOTTANT APPEL
   =========================== */
#float-call {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--terra);
  color: #fff !important;
  text-decoration: none !important;
  padding: 14px 22px;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 4px 20px rgba(127,168,127,0.45);
  z-index: 997;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.4s cubic-bezier(0.34,1.56,0.64,1), background 0.2s, box-shadow 0.2s, bottom 0.35s ease;
  white-space: nowrap;
}
#float-call.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#float-call:hover {
  background: #6a9470;
  box-shadow: 0 6px 28px rgba(127,168,127,0.55);
  transform: translateY(-3px) !important;
}
#float-call.above-banner {
  bottom: 96px;
}
/* Sur desktop la nav montre déjà le numéro — bouton utile uniquement sur mobile */
@media (min-width: 769px) {
  #float-call { display: none; }
}
@media (max-width: 600px) {
  #float-call .float-label { display: none; }
  #float-call { padding: 15px; border-radius: 50%; }
}

/* ===========================
   ÉTAPES — ANIMATION SÉQUENTIELLE
   =========================== */
.steps.steps-anim .step {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.steps.steps-anim .step.step-visible {
  opacity: 1;
  transform: translateY(0);
}
.steps.steps-anim .step-n {
  display: inline-block;
  transform: scale(0.3);
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1) 0.25s;
}
.steps.steps-anim .step.step-visible .step-n {
  transform: scale(1);
}
.steps.steps-anim .step-bar {
  width: 0;
  transition: width 0.6s var(--ease) 0.38s;
}
.steps.steps-anim .step.step-visible .step-bar {
  width: 32px;
}

/* ===========================
   TRANSITION DE PAGE
   =========================== */
@keyframes pageIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body {
  animation: pageIn 0.3s ease both;
}

/* ===========================
   BANDEAU RGPD
   =========================== */
#rgpd-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--noir);
  color: rgba(255,255,255,0.88);
  padding: 18px 32px;
  z-index: 9990;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34,1.2,0.64,1);
}
#rgpd-banner.rgpd-visible {
  transform: translateY(0);
}
.rgpd-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}
.rgpd-content {
  flex: 1;
}
.rgpd-content p {
  font-size: 0.84rem;
  line-height: 1.55;
  margin: 0;
}
.rgpd-content a {
  color: var(--terra);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.rgpd-content strong {
  color: #fff;
}
.rgpd-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
}
.rgpd-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.84rem;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s, border-color 0.2s;
  white-space: nowrap;
}
.rgpd-btn:hover { transform: translateY(-1px); }
.rgpd-accept {
  background: var(--terra);
  color: #fff;
}
.rgpd-accept:hover { background: #6a9470; }
.rgpd-refuse {
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 1.5px solid rgba(255,255,255,0.22) !important;
}
.rgpd-refuse:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5) !important;
}
@media (max-width: 700px) {
  #rgpd-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
  }
  .rgpd-icon { display: none; }
  #float-call.above-banner { bottom: 168px; }
}
