/* Polices Google : chargées via <link rel="preload"> dans index.html (non bloquant) */
@import url('pages.css');
@import url('pharma.css');
:root{
  --navy:#0B132B;
  --navy-dark:#050914;
  --navy-light:#1C2541;
  --green:#10B981;
  --green-dark:#059669;
  --green-vif:#047857;
  --white:#ffffff;
  --bg:#F8FAFC;
  --bg-warm:#F1F5F9;
  --surface:#E2E8F0;
  --surface-card:#ffffff;
  --text:#0F172A;
  --text-muted:#64748B;
  --border:rgba(15, 23, 42, 0.08);
  --shadow:0 10px 40px rgba(11, 19, 43, 0.06);
  --shadow-hover:0 20px 60px rgba(11, 19, 43, 0.12);
  --radius:8px;
  --radius-lg:12px;
  --radius-xl:24px;
  --radius-full:9999px;
  --pharma-dark:#0B132B;
  --pharma-main:#1C2541;
  --pharma-accent:#10B981;
  --glow-green:0 0 35px rgba(16, 185, 129, 0.2);
  --glow-navy:0 0 35px rgba(11, 19, 43, 0.15);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Inter',sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  font-size:16px;
  overflow-x:hidden;
}
h1,h2,h3,h4,h5{font-family:'Outfit',sans-serif;line-height:1.2}
a{text-decoration:none;color:inherit}
img{max-width:100%;height:auto}
.container{max-width:1280px;margin:0 auto;padding:0 24px}

/* ======================== BUTTONS ======================== */
.btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:14px 28px;border-radius:var(--radius);
  font-family:'Outfit',sans-serif;font-weight:600;font-size:14px;
  cursor:pointer;transition:all .4s cubic-bezier(.16,1,.3,1);
  border:2px solid transparent;text-transform:uppercase;letter-spacing:.05em;
  position:relative;overflow:hidden;
}
.btn::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,.2),transparent);
  opacity:0;transition:opacity .4s;
}
.btn:hover::after{opacity:1}
.nav-cta .btn{border-radius:30px;padding:12px 24px}
.btn-primary{background:var(--navy);color:var(--white)}
.btn-primary:hover{background:var(--navy-dark);transform:translateY(-3px);box-shadow:0 12px 28px rgba(0,33,71,.25)}
.btn-green{background:var(--green);color:var(--white);border-radius:30px}
.btn-green:hover{background:var(--green-dark);transform:translateY(-3px);box-shadow:0 12px 28px rgba(76,175,80,.35)}
.btn-outline{background:transparent;color:var(--navy);border-color:var(--navy);border-radius:30px}
.btn-outline:hover{background:var(--navy);color:var(--white);transform:translateY(-3px)}
.btn-outline-white{background:transparent;color:var(--white);border-color:rgba(255,255,255,.6);border-radius:30px}
.btn-outline-white:hover{background:var(--white);color:var(--navy);transform:translateY(-3px)}
.btn-white-navy{background:var(--white);color:var(--navy);border-radius:30px;font-weight:700}
.btn-white-navy:hover{transform:translateY(-3px);box-shadow:0 12px 28px rgba(0,0,0,.2)}
.btn-green-pharma{background:var(--pharma-accent);color:var(--white);border-radius:30px}
.btn-green-pharma:hover{background:#3d9916;transform:translateY(-3px);box-shadow:0 12px 28px rgba(76,175,26,.4)}

/* ======================== ACCENTS ======================== */
.accent-green{color:var(--green)!important}
.accent-underline{width:60px;height:4px;background:linear-gradient(90deg,var(--green),var(--green-dark));border-radius:2px;margin:8px 0 24px}
.section-deco-line{width:40px;height:4px;border-radius:2px;margin:12px auto 0}
.section-deco-line.green{background:linear-gradient(90deg,var(--green),var(--green-dark))}
.section-deco-line.navy{background:linear-gradient(90deg,var(--navy),var(--navy-light))}
.hero-deco-line{width:40px;height:4px;background:rgba(255,255,255,.5);border-radius:2px;margin:12px 0}
.label-caps{font-family:'Inter',sans-serif;font-size:12px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--green)}

/* ======================== NAVIGATION ======================== */
#navbar{
  position:fixed;top:24px;left:50%;transform:translateX(-50%);
  width:90%;max-width:1200px;z-index:1000;
  padding:10px 20px;
  background:rgba(8,18,34,.30);
  backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.10);border-radius:50px;
  transition:all .5s cubic-bezier(.16,1,.3,1);
  box-shadow:0 10px 30px rgba(0,0,0,.18);
}
#navbar.scrolled{
  top:12px;width:95%;
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
  box-shadow:0 10px 40px rgba(0,0,0,.08),0 0 0 1px rgba(0,0,0,.03);
  border-color:rgba(0,0,0,.05);padding:8px 20px;
}
#navbar.nav-hidden{transform:translate(-50%,-150%);opacity:0;pointer-events:none}
.nav-inner{display:flex;align-items:center;justify-content:space-between;gap:32px}
.nav-logo{display:flex;align-items:center;gap:10px;flex-shrink:0;text-decoration:none}
/* Logo = image brute, sans stylisation (effets/hover retirés) */
.nav-logo-img{
  height:50px;width:auto;
  display:block;
}
.nav-links{display:flex;align-items:center;gap:6px;list-style:none}
.nav-links a{
  display:inline-block;
  color:rgba(255,255,255,.82);font-size:14px;font-weight:600;
  padding:10px 18px;border-radius:30px;
  transition:color .22s ease,background .22s ease;
  position:relative;
}
.nav-links a:hover,.nav-links a.active{color:var(--white);background:rgba(255,255,255,.14)}
.nav-links a:focus-visible{outline:2px solid var(--green,#4CAF50);outline-offset:2px}
.nav-links a.active::after{
  content:'';position:absolute;bottom:5px;left:50%;transform:translateX(-50%);
  width:18px;height:3px;border-radius:2px;
  background:linear-gradient(90deg,var(--green),var(--green-dark));
  box-shadow:0 0 8px rgba(76,175,80,.55);
}
#navbar.scrolled .nav-links a { color:rgba(13,26,46,.7); }
#navbar.scrolled .nav-links a:hover, #navbar.scrolled .nav-links a.active { color:var(--navy); background:rgba(13,26,46,.06); }
.nav-cta{display:flex;align-items:center;gap:16px;flex-shrink:0}
.nav-phone{display:flex;align-items:center;gap:6px;color:rgba(255,255,255,.9);font-size:13px;font-weight:600;transition:color .22s ease}
.nav-phone:hover{color:var(--green)}
.nav-phone:focus-visible{outline:2px solid var(--green,#4CAF50);outline-offset:2px;border-radius:6px}
.nav-cta .btn:focus-visible{outline:2px solid #fff;outline-offset:2px}
.nav-cta .btn-green:active{transform:translateY(-1px) scale(.98)}
#navbar.scrolled .nav-phone{color:rgba(13,26,46,.85)}
.nav-phone svg{width:16px;height:16px}
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:4px;background:none;border:0;color:inherit;font:inherit}
.hamburger:focus-visible{outline:2px solid var(--green,#4CAF50);outline-offset:2px;border-radius:4px}
.hamburger span{display:block;width:24px;height:2px;background:var(--white);border-radius:2px;transition:all .3s}
#navbar.scrolled .hamburger span{background:var(--navy)}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.mobile-menu{display:none;position:fixed;top:0;left:0;right:0;bottom:0;background:var(--navy);z-index:999;flex-direction:column;align-items:center;justify-content:center;gap:24px}

/* â”€â”€â”€ Navbar responsive (manquait) â”€â”€â”€ */
@media (max-width: 1024px) {
  .nav-links { gap: 4px; }
  .nav-links a { padding: 8px 12px; font-size: 13px; }
  .nav-cta { gap: 10px; }
  .nav-phone { font-size: 12px; }
  .nav-cta .btn { padding: 10px 18px; font-size: 12px; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-phone:not(:last-child) { display: none; }
  .hamburger { display: flex; }
  #navbar { width: 95%; padding: 8px 16px; }
  .nav-inner { gap: 16px; }
}
@media (max-width: 560px) {
  .nav-cta .btn { padding: 9px 14px; font-size: 11px; letter-spacing: 0; }
  .nav-phone { display: none !important; }
  .nav-logo-img { height: 36px; }
}
.mobile-menu.open{display:flex}
.mobile-menu a{color:var(--white);font-family:'Outfit',sans-serif;font-size:24px;font-weight:600;padding:12px 32px;border-radius:var(--radius);transition:all .3s}
.mobile-menu a:hover{background:rgba(255,255,255,.1)}
section{padding:80px 0}
.section-header{text-align:center;margin-bottom:56px}
.section-header h2{font-size:clamp(24px,4vw,38px);font-weight:700;color:var(--navy);margin-top:12px;text-transform:uppercase}
.section-header p{font-size:17px;color:var(--text-muted);margin-top:16px;max-width:600px;margin-left:auto;margin-right:auto}

/* ======================== HOME HERO ======================== */
.home-hero{
  min-height:100vh;
  background:var(--navy-dark);
  background-image: radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.1) 0%, transparent 40%),
                    radial-gradient(circle at 20% 80%, rgba(15, 30, 60, 0.8) 0%, transparent 40%);
  display:flex;align-items:center;
  position:relative;overflow:hidden;padding-top:100px;
}
.home-hero::before {
  content: '';
  position: absolute;
  inset: -20%;
  background: url('../img/logo-new.svg') repeat;
  background-size: 180px;
  opacity: 0.04;
  transform: rotate(-5deg);
  pointer-events: none;
  z-index: 0;
}
.hero-blob{
  position:absolute;width:700px;height:700px;
  background:radial-gradient(circle,rgba(34, 197, 94, 0.15) 0%, transparent 70%);
  border-radius:50%;top:-150px;right:-150px;
  animation:blobPulse 8s ease-in-out infinite;
}
.hero-blob2{
  position:absolute;width:500px;height:500px;
  background:radial-gradient(circle,rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius:50%;bottom:-100px;left:5%;
  animation:blobPulse 10s ease-in-out infinite reverse;
}
@keyframes blobPulse{
  0%,100%{transform:scale(1) rotate(0deg)}
  33%{transform:scale(1.08) rotate(2deg)}
  66%{transform:scale(.95) rotate(-1deg)}
}
.home-hero-content{position:relative;z-index:1;display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;padding:60px 0}
.hero-tag {
  display: inline-block;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  background: rgba(34, 197, 94, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(34, 197, 94, 0.2);
}
.home-hero-text h1{font-size:clamp(32px,5vw,56px);font-weight:700;color:var(--white);line-height:1.1;margin-bottom:8px}
.home-hero-text p.hero-desc{font-size:17px;color:rgba(255,255,255,0.75);margin-bottom:32px;line-height:1.7;max-width:480px}
.hero-actions{display:flex;gap:16px;flex-wrap:wrap}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
}
.hero-van-img{
  width:100%;
  min-height: 400px;
  object-fit: cover;
  border-radius:20px;
  box-shadow:0 24px 64px rgba(0,0,0,0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-glass-card {
  position: relative;
  background: rgba(15, 30, 60, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 18px;
  width: 100%;
  max-width: 320px;
  margin: 20px auto 0 auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  animation: floatCard 6s ease-in-out infinite;
  z-index: 2;
}
.fgc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.fgc-icon {
  width: 44px;
  height: 44px;
  background: rgba(34, 197, 94, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}
.fgc-icon svg { width: 24px; height: 24px; }
.fgc-title h3 {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}
.fgc-desc {
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  margin-bottom: 16px;
  line-height: 1.5;
}
.fgc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fgc-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  background: rgba(255,255,255,0.03);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
}
.fgc-list li .dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
}
.fgc-icon-sm {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}
.fgc-icon-sm svg { width: 20px; height: 20px; }
.fgc-highlight {
  margin-top: 16px;
  padding: 14px 12px;
  border-radius: 10px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.fgc-highlight p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  line-height: 1.45;
}
.fgc-highlight strong { color: var(--green); font-weight: 700; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes vanFloat{
  0%{transform:translateY(0) rotate(0deg)}
  25%{transform:translateY(-10px) rotate(.5deg)}
  50%{transform:translateY(-16px) rotate(0deg)}
  75%{transform:translateY(-8px) rotate(-.5deg)}
  100%{transform:translateY(0) rotate(0deg)}
}

@media(max-width:1024px){
  .floating-glass-card {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    margin-top: -40px;
    margin-bottom: 20px;
  }
}
@media(max-width:768px){
  .home-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .floating-glass-card {
    margin-top: -20px;
  }
}

/* ======================== ABOUT VALUES ======================== */
.about-values-section{
  background:linear-gradient(180deg,#f0f4ff 0%,var(--bg) 100%);
  padding:80px 0;
}
.about-values-box{
  display:grid;grid-template-columns:1fr 1fr;gap:48px;
  border:1px solid var(--border);border-radius:20px;
  padding:48px;
  background:rgba(255,255,255,.7);
  backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);
  box-shadow:0 8px 40px rgba(0,33,71,.06),0 0 0 1px rgba(255,255,255,.8) inset;
  transition:all .5s;
}
.about-values-box:hover{
  box-shadow:0 16px 56px rgba(0,33,71,.1),0 0 0 1px rgba(76,175,80,.1) inset;
}
.about-left h2{font-size:22px;color:var(--navy);text-transform:uppercase;margin:16px 0 12px}
.about-left p{font-size:16px;color:#334155;line-height:1.7;margin-bottom:16px;font-weight:500}
.about-logo-icon{margin-bottom:12px}
.values-mini-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.value-mini{
  text-align:center;padding:24px 16px;
  border-radius:16px;
  background:linear-gradient(145deg,rgba(255,255,255,.8),rgba(240,244,255,.5));
  border:1px solid rgba(13,26,46,.05);
  transition:all .4s cubic-bezier(.16,1,.3,1);
}
.value-mini:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 32px rgba(0,33,71,.08);
  border-color:rgba(76,175,80,.15);
}
.value-mini-icon{
  width:56px;height:56px;border-radius:16px;
  display:flex;align-items:center;justify-content:center;margin:0 auto 14px;
  transition:all .4s;
}
.value-mini-icon.green{background:linear-gradient(135deg,rgba(76,175,80,.15),rgba(76,175,80,.08))}
.value-mini-icon.navy{background:linear-gradient(135deg,rgba(13,26,46,.1),rgba(13,26,46,.05))}
.value-mini:hover .value-mini-icon{transform:scale(1.1) rotate(5deg)}
.value-mini-icon svg{width:24px;height:24px;color:var(--navy)}
.value-mini-icon.green svg{color:var(--green)}
.value-mini h4{font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:var(--navy);margin-bottom:6px}
.value-mini p{font-size:13px;color:var(--text-muted)}

/* ======================== HOME SERVICES ======================== */
.home-services-section{
  background:linear-gradient(180deg,var(--bg) 0%,#f0f4ff 50%,var(--bg) 100%);
  position:relative;
}
.home-services-section::before{
  content:'';position:absolute;top:0;left:0;right:0;height:1px;
  background:linear-gradient(90deg,transparent,rgba(76,175,80,.2),transparent);
}
.home-services-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-bottom:40px}
.home-svc-card{
  background:rgba(255,255,255,.8);
  backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);
  border:1px solid var(--border);border-radius:20px;
  padding:32px 28px;
  transition:all .5s cubic-bezier(.16,1,.3,1);
  transform-style:preserve-3d;
  position:relative;overflow:hidden;
}
.home-svc-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--navy),var(--green));
  transform:scaleX(0);transform-origin:left;
  transition:transform .5s cubic-bezier(.16,1,.3,1);
}
.home-svc-card:hover::before{transform:scaleX(1)}
.home-svc-card:hover{
  box-shadow:var(--shadow-hover);
  border-color:transparent;transform:translateY(-6px);
  background:rgba(255,255,255,.95);
}
.home-svc-icon{
  width:56px;height:56px;border-radius:16px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:18px;transition:all .4s;
}
.home-svc-icon.navy{background:linear-gradient(135deg,var(--navy),var(--navy-light))}
.home-svc-icon.green-bg{background:linear-gradient(135deg,var(--green),var(--green-dark))}
.home-svc-card:hover .home-svc-icon{transform:scale(1.08) rotate(-5deg)}
.home-svc-icon svg{width:24px;height:24px;color:var(--white)}
.home-svc-card h3{font-size:16px;font-weight:700;color:var(--navy);margin-bottom:12px}
.home-svc-card ul{list-style:none;display:flex;flex-direction:column;gap:8px;margin-bottom:16px}
.home-svc-card ul li{display:flex;align-items:center;gap:8px;font-size:13px;color:var(--text-muted)}
.home-svc-card ul li::before{content:'';width:6px;height:6px;background:var(--green);border-radius:50%;flex-shrink:0}
.svc-security-mini{border-top:1px solid var(--border);padding-top:12px;display:flex;gap:8px;align-items:flex-start}
.svc-security-mini .shield-sm{width:20px;height:20px;color:var(--green);flex-shrink:0;margin-top:2px}
.svc-security-mini p{font-size:12px;color:var(--text-muted);font-style:italic}
.services-cta-banner{
  background:linear-gradient(135deg, #0d1a2e 0%, #162d4a 100%);
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;padding:40px 50px;
  display:flex;align-items:center;justify-content:space-between;gap:32px;flex-wrap:wrap;
  box-shadow:0 20px 40px rgba(0,0,0,.15), inset 0 1px 1px rgba(255,255,255,.05);
  position:relative;overflow:hidden;
}
.services-cta-banner::before{
  content:'';position:absolute;top:0;left:0;width:100%;height:100%;
  background:radial-gradient(circle at right, rgba(76,175,80,.15) 0%, transparent 60%);
  pointer-events:none;
}
.cta-content {
  display:flex;align-items:center;gap:24px;position:relative;z-index:1;
}
.cta-icon {
  width:64px;height:64px;flex-shrink:0;
  background:rgba(76,175,80,.15);border-radius:18px;
  display:flex;align-items:center;justify-content:center;
  color:var(--green);box-shadow:inset 0 0 0 1px rgba(76,175,80,.2);
}
.cta-icon svg { width:32px;height:32px; }
.cta-text h3 {
  color:var(--white);font-size:22px;margin-bottom:6px;
}
.cta-text p {
  color:rgba(255,255,255,.8);font-size:16px;line-height:1.5;max-width:500px;
}
.cta-text p strong { color:var(--white);font-weight:700; }
.services-cta-banner .btn { position:relative;z-index:1; }

/* ======================== STEPS ======================== */
.how-it-works-section{
  background:linear-gradient(180deg,var(--bg) 0%,#eef1fa 100%);
  position:relative;
}
.steps-container{display:flex;align-items:flex-start;justify-content:center;gap:0;flex-wrap:wrap;margin-top:40px}
.step{
  text-align:center;flex:1;min-width:140px;max-width:180px;
  position:relative;padding:0 8px;
  transition:all .4s cubic-bezier(.16,1,.3,1);
}
.step:hover{transform:translateY(-6px)}
.step-number{
  position:absolute;top:-6px;left:50%;
  transform:translateX(-50%) translateX(-28px);
  width:26px;height:26px;
  background:linear-gradient(135deg,var(--green),var(--green-dark));
  color:var(--white);border-radius:50%;
  font-size:12px;font-weight:700;
  display:flex;align-items:center;justify-content:center;z-index:2;
  box-shadow:0 4px 12px rgba(76,175,80,.3);
}
.step-icon{
  width:60px;height:60px;border-radius:18px;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 14px;transition:all .4s;
}
.step:hover .step-icon{transform:scale(1.1) rotate(5deg)}
.step-icon.navy{background:linear-gradient(135deg,var(--navy),var(--navy-light))}
.step-icon.green-bg{background:linear-gradient(135deg,var(--green),var(--green-dark))}
.step-icon svg{width:24px;height:24px;color:var(--white)}
.step h4{font-size:14px;font-weight:700;color:var(--navy);margin-bottom:6px}
.step p{font-size:12px;color:var(--text-muted);line-height:1.5}
.step-connector{display:flex;align-items:center;justify-content:center;padding-top:20px;color:var(--green);font-size:18px;font-weight:700;min-width:24px}

/* ======================== FINAL BANNER ======================== */
.final-banner{
  background:linear-gradient(135deg,var(--navy-dark) 0%,#0a1628 50%,var(--navy) 100%);
  padding:80px 0;position:relative;overflow:hidden;
}
.final-banner::before{
  content:'';position:absolute;top:-50%;left:-50%;width:200%;height:200%;
  background:radial-gradient(circle at 30% 50%,rgba(76,175,80,.06) 0%,transparent 50%);
}
.final-banner-content{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center;position:relative;z-index:1}
.final-heart-icon{
  width:52px;height:52px;
  border:2px solid rgba(76,175,80,.4);
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  margin-bottom:20px;
  background:rgba(76,175,80,.08);
  animation:heartGlow 3s ease-in-out infinite;
}
@keyframes heartGlow{
  0%,100%{box-shadow:0 0 15px rgba(76,175,80,.1)}
  50%{box-shadow:0 0 30px rgba(76,175,80,.25)}
}
.final-heart-icon svg{width:24px;height:24px;color:var(--green)}
.final-banner-text h2{font-size:clamp(24px,3.5vw,36px);color:var(--white);font-weight:700;line-height:1.3}
.final-banner-text em{font-style:italic;color:var(--green)}
.final-banner-img img{width:100%;border-radius:16px;box-shadow:0 24px 64px rgba(0,0,0,.3)}

/* ======================== CONTACT BAR ======================== */
.contact-bar{
  background:linear-gradient(180deg,var(--navy-dark),#060e1a);
  padding:28px 0;position:relative;
}
.contact-bar::before{
  content:'';position:absolute;top:0;left:0;right:0;height:1px;
  background:linear-gradient(90deg,transparent,rgba(76,175,80,.3),transparent);
}
.contact-bar-inner{display:flex;align-items:center;justify-content:center;gap:32px;flex-wrap:wrap}
.contact-bar-item{
  display:flex;align-items:center;gap:10px;
  color:var(--white);font-size:14px;font-weight:500;
  padding:8px 16px;border-radius:30px;
  transition:all .4s;
}
.contact-bar-item:hover{background:rgba(255,255,255,.06)}
.contact-bar-item svg{width:18px;height:18px;color:var(--green)}
.contact-bar-item a{color:var(--white);transition:color .3s}
.contact-bar-item a:hover{color:var(--green)}
.contact-bar-divider{width:1px;height:20px;background:rgba(255,255,255,.12)}

/* ======================== FOOTER ======================== */
.footer-light{
  background:linear-gradient(180deg,#f0f3fa,#e8ecf5);
  padding:44px 0;border-top:1px solid rgba(13,26,46,.06);
}
.footer-simple{display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap}
.footer-simple-logo .footer-logo-img{
  height:50px;width:auto;
  background:transparent;
  padding:0;border-radius:0;
  box-shadow:none;
  transition:all .4s;
}
.footer-simple-logo:hover .footer-logo-img{transform:translateY(-2px);box-shadow:0 8px 24px rgba(13,26,46,.2)}
.footer-simple-slogan p{font-size:16px;color:var(--navy);font-style:italic;font-weight:500}
.footer-simple-social{display:flex;gap:12px}
.social-icon{
  width:40px;height:40px;
  border:2px solid rgba(13,26,46,.15);border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  color:var(--navy);
  transition:all .4s cubic-bezier(.16,1,.3,1);
}
.social-icon:hover{
  background:var(--navy);color:var(--white);
  border-color:var(--navy);
  transform:translateY(-3px);
  box-shadow:0 8px 20px rgba(13,26,46,.2);
}
.social-icon svg{width:16px;height:16px}

/* ======================== NEW ADDITIONS ======================== */
/* Pricing Banner */
.pricing-banner {
  background: var(--navy-dark);
  padding: 80px 20px;
  text-align: center;
  color: var(--white);
  border-radius: 16px;
  margin: 60px auto;
  max-width: 1200px;
  width: calc(100% - 40px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(11, 19, 43, 0.3);
}
.pricing-banner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.pricing-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(11, 19, 43, 0.6);
  z-index: 1;
}
.pricing-banner h2 { font-size: 36px; font-weight: 700; margin-bottom: 12px; position: relative; z-index: 2; }
.pricing-banner p.lead { font-size: 18px; opacity: 0.95; position: relative; z-index: 2; margin:0; }
.pricing-banner p.legal { font-size: 12px; opacity: 0.7; margin-top: 24px; position: relative; z-index: 2; margin-bottom:0; }

/* Partner Banner */
.partner-banner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin: 60px auto;
  max-width: 1200px;
  width: calc(100% - 40px);
  min-height: 350px;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  background: var(--navy);
}
.partner-banner img {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
  transition: transform 5s ease;
}
.partner-banner:hover img {
  transform: scale(1.05);
}
.partner-banner .overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.2) 60%, transparent 100%);
  z-index: 1;
}
.partner-banner-content {
  position: relative; z-index: 2; padding: 50px; color: var(--white); max-width: 700px;
}
.partner-banner-content h2 { font-size: 32px; font-weight: 700; margin-bottom: 16px; }
.partner-banner-content p { font-size: 18px; opacity: 0.9; line-height: 1.6; margin:0; }

/* Assistance Section */
.assistance-section {
  background: #edf2fc;
  padding: 100px 0;
  text-align: center;
}
.assistance-header { margin-bottom: 50px; }
.assistance-header span { color: var(--green); font-weight: 700; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; display: block; margin-bottom: 12px; }
.assistance-header h2 { color: var(--navy); font-size: 40px; font-weight: 700; margin-bottom: 20px; }
.assistance-header p { color: var(--text-muted); font-size: 18px; max-width: 600px; margin: 0 auto; line-height: 1.6; }

.assistance-cards {
  display: flex; justify-content: center; gap: 30px; flex-wrap: wrap;
}
.assistance-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 30px;
  width: 100%; max-width: 340px;
  box-shadow: 0 10px 40px rgba(13,26,46,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.assistance-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(13,26,46,0.1);
}
.assistance-icon {
  width: 64px; height: 64px; background: #edf2fc; color: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
  transition: background 0.3s ease, color 0.3s ease;
}
.assistance-card:hover .assistance-icon {
  background: var(--green); color: var(--white);
}
.assistance-icon svg { width: 28px; height: 28px; }
.assistance-card h4 { color: var(--navy); font-size: 18px; margin-bottom: 12px; }
.assistance-card a { color: var(--green); font-weight: 700; font-size: 20px; text-decoration: none; transition: opacity 0.2s; word-break: break-all; }
.assistance-card a:hover { opacity: 0.8; }

@media (max-width: 768px) {
  .pricing-banner h2 { font-size: 28px; }
  .partner-banner-content { padding: 30px; }
  .partner-banner-content h2 { font-size: 24px; }
  .assistance-header h2 { font-size: 32px; }
}

/* ======================== NEW PREMIUM FOOTER ======================== */
.site-footer {
  --footer-bg: #070f20;
  --footer-bg-card: #0d1b35;
  --footer-top-border: #22c55e;
  --color-green: #22c55e;
  --color-green-glow: rgba(34,197,94,0.15);
  --color-green-dark: #16a34a;
  --text-white: #ffffff;
  --text-muted: #94a3b8;
  --text-dimmed: #4a5f7a;
  --border-subtle: rgba(255,255,255,0.07);
}

.site-footer {
  background-color: var(--footer-bg);
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, rgba(34,197,94,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.footer-top-line {
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, transparent, var(--color-green), transparent);
  animation: footerLineSlide 2s ease-out forwards;
}
@keyframes footerLineSlide {
  to { width: 100%; }
}
.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px 40px;
}
.footer-grid {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.footer-brand {
  flex: 1;
  min-width: 300px;
}
.footer-logo-wrapper {
  display: inline-block;
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin-bottom: 20px;
  transition: box-shadow 0.3s ease;
}
.footer-logo-wrapper:hover {
  box-shadow: 0 0 20px var(--color-green-glow);
}
.footer-logo-wrapper img {
  height: 40px;
}
.footer-tagline {
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--text-muted);
}
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-white);
  text-decoration: none;
  font-size: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}
.footer-contact-item:hover {
  transform: translateX(4px);
  color: var(--color-green);
}
.footer-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.footer-contact-item:hover .footer-contact-icon {
  background: rgba(34,197,94,0.2);
}
.footer-contact-icon svg {
  width: 16px; height: 16px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-white);
  transition: all 0.3s ease;
}
.footer-social-btn:hover {
  background: var(--color-green);
  border-color: var(--color-green);
  transform: scale(1.1) rotate(5deg);
}
.footer-social-btn svg { width: 18px; height: 18px; }

.footer-nav {
  display: flex;
  flex: 2;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-col {
  min-width: 150px;
}
.footer-col h4 {
  color: var(--color-green);
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  transition: color 0.25s ease, transform 0.25s ease;
}
.footer-links a::before {
  content: '\203A';
  color: var(--color-green);
  font-size: 18px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.25s ease;
  margin-right: 0;
  display: inline-block;
  width: 0;
}
.footer-links a:hover {
  color: var(--text-white);
  transform: translateX(4px);
}
.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
  width: 12px;
  margin-right: 4px;
}

.footer-stats {
  max-width: 1200px;
  margin: 40px auto 0;
  background: var(--footer-bg-card);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  padding: 30px 40px;
  position: relative;
  z-index: 1;
  border: 1px solid var(--border-subtle);
}
.footer-stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  justify-content: center;
  border-right: 1px solid var(--border-subtle);
}
.footer-stat-item:last-child { border-right: none; }
.footer-stat-icon { font-size: 24px; }
.footer-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-green);
  display: block;
}
.footer-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 24px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
}
.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0; left: 20px; right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34,197,94,0.3), transparent);
}
.footer-copyright {
  font-size: 13px;
  color: var(--text-dimmed);
}
.footer-legal-links {
  display: flex;
  gap: 16px;
}
.footer-legal-links a {
  color: var(--text-dimmed);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}
.footer-legal-links a:hover {
  color: var(--text-white);
}

@media (max-width: 1024px) {
  .footer-stats { flex-direction: column; gap: 24px; padding: 30px; }
  .footer-stat-item { border-right: none; border-bottom: 1px solid var(--border-subtle); padding-bottom: 24px; justify-content: flex-start; }
  .footer-stat-item:last-child { border-bottom: none; padding-bottom: 0; }
}
@media (max-width: 768px) {
  .footer-grid { flex-direction: column; gap: 40px; }
  .footer-nav { flex-direction: column; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; justify-content: center; }
}

/* ======================== LOCATION & MAP SECTION ======================== */
.location-section {
  background: linear-gradient(180deg, #0a1628 0%, #070f20 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.location-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34,197,94,0.25), transparent);
}
.location-header {
  text-align: center;
  margin-bottom: 60px;
}
.location-header h2 {
  font-family: 'Syne', 'Outfit', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.location-header h2 span {
  color: var(--color-green, #22c55e);
}
.location-header p {
  font-size: 17px;
  color: #94a3b8;
  font-style: italic;
}
/* Eyebrow du header */
.kpc-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #22c55e;
  margin-bottom: 14px;
  padding: 6px 14px;
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 999px;
  background: rgba(34,197,94,0.08);
}

/* ── Bento "Restons en contact" ── */
.kp-contact-bento {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-areas:
    "cta address hours"
    "cta reach reach";
  gap: 20px;
}
.kpc-cta { grid-area: cta; }
.kpc-address { grid-area: address; }
.kpc-hours { grid-area: hours; }
.kpc-reach { grid-area: reach; }

.kpc-tile {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(13,27,53,0.8);
  backdrop-filter: blur(12px);
  padding: 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.kpc-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(34,197,94,0.28);
  box-shadow: 0 18px 50px rgba(0,0,0,0.32);
}
.kpc-ico {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.18);
}
.kpc-ico svg { width: 22px; height: 22px; stroke: #22c55e; }
.kpc-tile h4 {
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 16px 0 8px;
}
.kpc-tile p { color: #94a3b8; font-size: 15px; line-height: 1.6; margin: 0; }
/* Grande tuile CTA */
.kpc-cta {
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  min-height: 320px;
  background:
    radial-gradient(circle at 15% 0%, rgba(34,197,94,0.16), transparent 55%),
    linear-gradient(165deg, rgba(13,27,53,0.9), rgba(7,15,32,0.95));
}
.kpc-glow {
  position: absolute;
  top: -30%;
  right: -20%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(34,197,94,0.22), transparent 65%);
  filter: blur(20px);
  animation: kpcGlow 8s ease-in-out infinite;
  pointer-events: none;
}
.kpc-cta-body { position: relative; z-index: 2; }
.kpc-cta-body p { font-size: 16px; max-width: 42ch; color: #94a3b8; line-height: 1.65; }
.kpc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #d1fae5;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.22);
}
.kpc-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
  animation: kpcBlink 2s ease-in-out infinite;
}
.kpc-cta h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 18px 0 10px;
}
.kpc-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.kpc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.kpc-btn svg { width: 17px; height: 17px; }
.kpc-btn-primary {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  box-shadow: 0 8px 22px rgba(34,197,94,0.28);
}
.kpc-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(34,197,94,0.42); }
.kpc-btn-ghost {
  background: rgba(255,255,255,0.06);
  color: #e2e8f0;
  border: 1px solid rgba(255,255,255,0.12);
}
.kpc-btn-ghost:hover { transform: translateY(-2px); background: rgba(255,255,255,0.1); border-color: rgba(34,197,94,0.4); }

/* Lien adresse */
.kpc-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  color: #22c55e;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: gap 0.25s ease;
}
.kpc-link svg { width: 16px; height: 16px; transition: transform 0.25s ease; }
.kpc-link:hover { gap: 11px; }
.kpc-link:hover svg { transform: translateX(3px); }

/* Horaires */
.kpc-hours-time {
  display: inline-block;
  margin-top: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #22c55e;
}

/* Coordonnées */
.kpc-reach {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: stretch;
}
.kpc-reach-item {
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.kpc-reach-item:hover { background: rgba(34,197,94,0.08); border-color: rgba(34,197,94,0.25); transform: translateY(-2px); }
.kpc-reach-text { display: flex; flex-direction: column; min-width: 0; }
.kpc-reach-label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: #64748b; }
.kpc-reach-value { color: #e2e8f0; font-weight: 600; font-size: 15px; word-break: break-word; }
.kpc-reach-item:hover .kpc-reach-value { color: #22c55e; }

/* Animations */
@keyframes kpcGlow {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.9; }
  50% { transform: translate(-16px, 14px) scale(1.12); opacity: 1; }
}
@keyframes kpcBlink {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* Responsive bento */
@media (max-width: 900px) {
  .kp-contact-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "cta cta"
      "address hours"
      "reach reach";
  }
  .kpc-cta { min-height: 0; }
}
@media (max-width: 560px) {
  .kp-contact-bento {
    grid-template-columns: 1fr;
    grid-template-areas:
      "cta"
      "address"
      "hours"
      "reach";
  }
}

/* Respect de la réduction de mouvement */
@media (prefers-reduced-motion: reduce) {
  .kpc-glow,
  .kpc-badge-dot { animation: none !important; }
}
/* ======================== TESTIMONIALS SECTION ======================== */
.testimonials-section {
  background: linear-gradient(180deg, #0a1628 0%, #060d1e 100%);
  padding: 120px 0 140px;
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(34,197,94,0.04), transparent 70%);
  pointer-events: none;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 16px;
}
.testimonials-header h2 {
  font-family: 'Syne', 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.testimonials-header h2 span { color: #22c55e; }
.testimonials-header p {
  font-size: 17px;
  color: #94a3b8;
  font-style: italic;
}
.testimonials-rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
}
.testimonials-rating-summary .rating-big {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #22c55e;
  line-height: 1;
}
.testimonials-rating-summary .rating-stars-big {
  display: flex; gap: 4px;
}
.testimonials-rating-summary .rating-stars-big svg {
  width: 22px; height: 22px;
  fill: #22c55e; stroke: #22c55e;
}
.testimonials-rating-summary .rating-count {
  font-size: 15px; color: #64748b;
}
.testimonials-track-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  overflow: hidden;
  position: relative;
}
.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: linear-gradient(145deg, rgba(13,27,53,0.85), rgba(7,15,32,0.9));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  padding: 38px 32px;
  backdrop-filter: blur(16px);
  transition: all 0.4s cubic-bezier(.16,1,.3,1);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #22c55e, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.testimonial-card:hover::before { opacity: 1; }
.testimonial-card:hover {
  border-color: rgba(34,197,94,0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(34,197,94,0.05);
}
.testimonial-quote-icon {
  position: absolute;
  top: 20px; right: 24px;
  opacity: 0.08;
}
.testimonial-quote-icon svg {
  width: 48px; height: 48px;
  fill: #22c55e;
}
.testimonial-service {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.15);
  border-radius: 20px;
  font-size: 11px;
  color: #22c55e;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testimonial-stars svg {
  width: 16px; height: 16px;
  fill: #22c55e; stroke: #22c55e;
}
.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-text::before {
  content: '\201C';
  font-size: 48px;
  color: #22c55e;
  font-weight: 800;
  font-family: Georgia, serif;
  line-height: 0;
  margin-right: 4px;
  vertical-align: -12px;
  opacity: 0.6;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  font-family: 'Syne', sans-serif;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  border: 2px solid rgba(255,255,255,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}
.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.avatar-1 { background: linear-gradient(135deg, #22c55e, #0ea5e9); }
.avatar-2 { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.avatar-3 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.avatar-4 { background: linear-gradient(135deg, #06b6d4, #3b82f6); }
.avatar-5 { background: linear-gradient(135deg, #ec4899, #f43f5e); }
.avatar-6 { background: linear-gradient(135deg, #10b981, #14b8a6); }
.avatar-7 { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.avatar-8 { background: linear-gradient(135deg, #f97316, #eab308); }
.avatar-9 { background: linear-gradient(135deg, #e11d48, #be123c); }

.testimonial-author-info h5 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 3px;
}
.testimonial-author-info span {
  font-size: 13px;
  color: #64748b;
  display: flex; align-items: center; gap: 4px;
}
.testimonial-author-info .verified-badge {
  display: inline-flex; align-items: center; gap: 3px;
  color: #22c55e; font-size: 12px;
}
.testimonial-author-info .verified-badge svg {
  width: 13px; height: 13px; fill: #22c55e;
}
.testimonials-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
}
.testimonials-dots {
  display: flex; gap: 8px;
}
.testimonials-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: none; cursor: pointer;
  transition: all 0.4s ease;
  padding: 0;
}
.testimonials-dot.active {
  background: #22c55e;
  width: 32px;
  border-radius: 5px;
  box-shadow: 0 0 14px rgba(34,197,94,0.4);
}
.testimonials-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #94a3b8; cursor: pointer;
  transition: all 0.3s ease;
}
.testimonials-arrow:hover {
  background: #22c55e; border-color: #22c55e; color: #fff;
  transform: scale(1.08);
}
.testimonials-arrow svg { width: 20px; height: 20px; }

@media (max-width: 1024px) {
  .testimonial-card { min-width: calc(50% - 12px); }
  .home-services-grid { grid-template-columns: repeat(2,1fr); }
  .steps-container { flex-wrap: wrap; gap: 16px; }
  .step-connector { display: none; }
}
@media (max-width: 768px) {
  .location-header h2, .testimonials-header h2 { font-size: 28px; }
  .testimonial-card { min-width: 100%; }
  .testimonials-rating-summary .rating-big { font-size: 36px; }
  .home-hero-content, .final-banner-content, .about-values-box { grid-template-columns: 1fr; gap: 32px; }
  .home-services-grid, .values-mini-grid { grid-template-columns: 1fr; }
  .steps-container { flex-direction: column; align-items: center; }
  .step { max-width: 280px; }
  .step-connector { display: none; }
  .contact-bar-inner { flex-direction: column; gap: 16px; }
  .contact-bar-divider { width: 60px; height: 1px; }
  .footer-simple { flex-direction: column; text-align: center; gap: 16px; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE ENHANCEMENTS â€” style.css (site public)
   ComplÃ©ments : 4K, ultra-large, mobile portrait Ã©troit, touch
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Ultra-large 4K+ : utiliser l'espace au lieu d'avoir des marges Ã©normes */
@media (min-width: 1920px) {
  .container { max-width: 1400px; }
  section { padding: 100px 0; }
  .hero h1, h1 { font-size: 56px; }
  h2 { font-size: 38px; }
}

/* Wide 1440-1919px */
@media (min-width: 1440px) and (max-width: 1919px) {
  .container { max-width: 1320px; padding: 0 32px; }
}

/* Tablettes paysage 768-1024px : ajustements fins */
@media (max-width: 1024px) and (min-width: 769px) {
  section { padding: 64px 0; }
  h1 { font-size: 38px; }
  h2 { font-size: 28px; }
}

/* Phones Ã©troits â‰¤ 480px : full-width buttons, fonts plus petites */
@media (max-width: 480px) {
  body { font-size: 14px; }
  .container { padding: 0 16px; }
  section { padding: 40px 0; }
  h1 { font-size: 26px !important; line-height: 1.2; }
  h2 { font-size: 22px !important; line-height: 1.25; }
  h3 { font-size: 18px; }
  p { font-size: 14px; }
  .btn { padding: 12px 22px; font-size: 13px; width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; }
}

/* TrÃ¨s petits â‰¤ 380px : encore plus serrÃ© */
@media (max-width: 380px) {
  .container { padding: 0 12px; }
  section { padding: 32px 0; }
  h1 { font-size: 22px !important; }
  h2 { font-size: 19px !important; }
  h3 { font-size: 16px; }
  .btn { padding: 11px 18px; font-size: 12px; letter-spacing: 0; }
}

/* Touch devices (sans hover) : retirer les effets hover gÃªnants */
@media (hover: none) and (pointer: coarse) {
  .btn:hover { transform: none !important; }
  .pour-qui-card:hover, .info-block:hover,
  .nav-links a:hover { transform: none !important; }
  /* Tap targets minimum */
  a, button, input[type="submit"], input[type="button"] { min-height: 44px; }
  .nav-links a { min-height: 44px; }
}

/* EmpÃªche le zoom iOS au focus des inputs */
@media (max-width: 768px) {
  input, select, textarea {
    font-size: 16px !important;
  }
}

/* Mode Ã©conomie d'Ã©nergie / mouvements rÃ©duits */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-blob, .hero-blob2 { animation: none !important; }
}

/* Mode contraste Ã©levÃ© (forced-colors) */
@media (forced-colors: active) {
  .btn { border: 2px solid CanvasText !important; }
  .pour-qui-card, .info-block { border: 1px solid CanvasText !important; }
}

/* Impression */
@media print {
  nav, footer, .btn, .hero-blob, .hero-blob2, #navbar { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
  section { padding: 16px 0; page-break-inside: avoid; }
  a { color: #000 !important; text-decoration: underline; }
  h1, h2, h3 { page-break-after: avoid; }
  img { max-width: 100% !important; page-break-inside: avoid; }
}

/* Orientation paysage sur petits Ã©crans (tÃ©lÃ©phones tournÃ©s) */
@media (max-width: 900px) and (orientation: landscape) {
  font-family: 'Syne', sans-serif;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  border: 2px solid rgba(255,255,255,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}
.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.avatar-1 { background: linear-gradient(135deg, #22c55e, #0ea5e9); }
.avatar-2 { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.avatar-3 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.avatar-4 { background: linear-gradient(135deg, #06b6d4, #3b82f6); }
.avatar-5 { background: linear-gradient(135deg, #ec4899, #f43f5e); }
.avatar-6 { background: linear-gradient(135deg, #10b981, #14b8a6); }
.avatar-7 { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.avatar-8 { background: linear-gradient(135deg, #f97316, #eab308); }
.avatar-9 { background: linear-gradient(135deg, #e11d48, #be123c); }

.testimonial-author-info h5 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 3px;
}
.testimonial-author-info span {
  font-size: 13px;
  color: #64748b;
  display: flex; align-items: center; gap: 4px;
}
.testimonial-author-info .verified-badge {
  display: inline-flex; align-items: center; gap: 3px;
  color: #22c55e; font-size: 12px;
}
.testimonial-author-info .verified-badge svg {
  width: 13px; height: 13px; fill: #22c55e;
}
.testimonials-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
}
.testimonials-dots {
  display: flex; gap: 8px;
}
.testimonials-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: none; cursor: pointer;
  transition: all 0.4s ease;
  padding: 0;
}
.testimonials-dot.active {
  background: #22c55e;
  width: 32px;
  border-radius: 5px;
  box-shadow: 0 0 14px rgba(34,197,94,0.4);
}
.testimonials-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #94a3b8; cursor: pointer;
  transition: all 0.3s ease;
}
.testimonials-arrow:hover {
  background: #22c55e; border-color: #22c55e; color: #fff;
  transform: scale(1.08);
}
.testimonials-arrow svg { width: 20px; height: 20px; }

@media (max-width: 1024px) {
  .testimonial-card { min-width: calc(50% - 12px); }
  .home-services-grid { grid-template-columns: repeat(2,1fr); }
  .steps-container { flex-wrap: wrap; gap: 16px; }
  .step-connector { display: none; }
}
@media (max-width: 768px) {
  .location-header h2, .testimonials-header h2 { font-size: 28px; }
  .testimonial-card { min-width: 100%; }
  .testimonials-rating-summary .rating-big { font-size: 36px; }
  .home-hero-content, .final-banner-content, .about-values-box { grid-template-columns: 1fr; gap: 32px; }
  .home-services-grid, .values-mini-grid { grid-template-columns: 1fr; }
  .steps-container { flex-direction: column; align-items: center; }
  .step { max-width: 280px; }
  .step-connector { display: none; }
  .contact-bar-inner { flex-direction: column; gap: 16px; }
  .contact-bar-divider { width: 60px; height: 1px; }
  .footer-simple { flex-direction: column; text-align: center; gap: 16px; }
}

/* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
   RESPONSIVE ENHANCEMENTS â€” style.css (site public)
   ComplÃ©ments : 4K, ultra-large, mobile portrait Ã©troit, touch
   â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */

/* Ultra-large 4K+ : utiliser l'espace au lieu d'avoir des marges Ã©normes */
@media (min-width: 1920px) {
  .container { max-width: 1400px; }
  section { padding: 100px 0; }
  .hero h1, h1 { font-size: 56px; }
  h2 { font-size: 38px; }
}

/* Wide 1440-1919px */
@media (min-width: 1440px) and (max-width: 1919px) {
  .container { max-width: 1320px; padding: 0 32px; }
}

/* Tablettes paysage 768-1024px : ajustements fins */
@media (max-width: 1024px) and (min-width: 769px) {
  section { padding: 64px 0; }
  h1 { font-size: 38px; }
  h2 { font-size: 28px; }
}

/* Phones Ã©troits â‰¤ 480px : full-width buttons, fonts plus petites */
@media (max-width: 480px) {
  body { font-size: 14px; }
  .container { padding: 0 16px; }
  section { padding: 40px 0; }
  h1 { font-size: 26px !important; line-height: 1.2; }
  h2 { font-size: 22px !important; line-height: 1.25; }
  h3 { font-size: 18px; }
  p { font-size: 14px; }
  .btn { padding: 12px 22px; font-size: 13px; width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; }
}

/* TrÃ¨s petits â‰¤ 380px : encore plus serrÃ© */
@media (max-width: 380px) {
  .container { padding: 0 12px; }
  section { padding: 32px 0; }
  h1 { font-size: 22px !important; }
  h2 { font-size: 19px !important; }
  h3 { font-size: 16px; }
  .btn { padding: 11px 18px; font-size: 12px; letter-spacing: 0; }
}

/* Touch devices (sans hover) : retirer les effets hover gÃªnants */
@media (hover: none) and (pointer: coarse) {
  .btn:hover { transform: none !important; }
  .pour-qui-card:hover, .info-block:hover,
  .nav-links a:hover { transform: none !important; }
  /* Tap targets minimum */
  a, button, input[type="submit"], input[type="button"] { min-height: 44px; }
  .nav-links a { min-height: 44px; }
}

/* EmpÃªche le zoom iOS au focus des inputs */
@media (max-width: 768px) {
  input, select, textarea {
    font-size: 16px !important;
  }
}

/* Mode Ã©conomie d'Ã©nergie / mouvements rÃ©duits */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-blob, .hero-blob2 { animation: none !important; }
}

/* Mode contraste Ã©levÃ© (forced-colors) */
@media (forced-colors: active) {
  .btn { border: 2px solid CanvasText !important; }
  .pour-qui-card, .info-block { border: 1px solid CanvasText !important; }
}

/* Impression */
@media print {
  nav, footer, .btn, .hero-blob, .hero-blob2, #navbar { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
  section { padding: 16px 0; page-break-inside: avoid; }
  a { color: #000 !important; text-decoration: underline; }
  h1, h2, h3 { page-break-after: avoid; }
  img { max-width: 100% !important; page-break-inside: avoid; }
}

/* Orientation paysage sur petits Ã©crans (tÃ©lÃ©phones tournÃ©s) */
@media (max-width: 900px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 40px 0; }
  section { padding: 40px 0; }
  #navbar { top: 12px; }
}

/* ════════════════════════════════════════════════════════════
   AVIS CLIENTS — eyebrow, invitation (CTA) & modale « laisser un avis »
   ════════════════════════════════════════════════════════════ */

/* Eyebrow au-dessus du titre */
.testimonials-eyebrow {
  display: inline-block;
  padding: 6px 16px;
  margin-bottom: 16px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #22c55e;
}

/* ── Invitation à laisser un avis ── */
.testimonials-cta {
  max-width: 1000px;
  margin: 64px auto 0;
  padding: 34px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(34,197,94,0.10), rgba(13,27,53,0.55));
  border: 1px solid rgba(34,197,94,0.18);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.testimonials-cta::after {
  content: '';
  position: absolute;
  top: -70px; right: -50px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(34,197,94,0.18), transparent 70%);
  pointer-events: none;
}
.testimonials-cta-text { position: relative; z-index: 1; }
.testimonials-cta-text h3 {
  font-family: 'Syne','Outfit',sans-serif;
  font-size: 23px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}
.testimonials-cta-text p {
  font-size: 15px;
  color: #94a3b8;
  margin: 0;
  max-width: 520px;
  line-height: 1.6;
}
.btn-leave-review {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-family: 'Outfit',sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(34,197,94,0.32);
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease;
}
.btn-leave-review svg { width: 19px; height: 19px; }
.btn-leave-review:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(34,197,94,0.45);
}

/* ── Modale ── */
.review-modal {
  position: fixed;
  inset: 0;
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .3s ease, visibility .3s ease;
}
.review-modal.is-open { visibility: visible; opacity: 1; }
.review-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3,8,20,0.72);
  backdrop-filter: blur(6px);
}
.review-modal-card {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 38px 38px 30px;
  border-radius: 26px;
  background: linear-gradient(160deg, #14213f 0%, #0a142b 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 90px rgba(0,0,0,0.55);
  transform: translateY(24px) scale(.97);
  opacity: 0;
  transition: transform .4s cubic-bezier(.16,1,.3,1), opacity .4s ease;
}
.review-modal.is-open .review-modal-card { transform: translateY(0) scale(1); opacity: 1; }
.review-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #94a3b8;
  cursor: pointer;
  transition: all .25s ease;
}
.review-modal-close svg { width: 18px; height: 18px; }
.review-modal-close:hover {
  background: rgba(239,68,68,0.15);
  color: #fca5a5;
  border-color: rgba(239,68,68,0.3);
}
.review-modal-head { text-align: center; margin-bottom: 24px; padding: 0 18px; }
.review-modal-badge {
  display: inline-block;
  padding: 5px 14px;
  margin-bottom: 12px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #22c55e;
}
.review-modal-head h3 {
  font-family: 'Syne','Outfit',sans-serif;
  font-size: 26px; font-weight: 700; color: #fff; margin: 0 0 6px;
}
.review-modal-head p { font-size: 14px; color: #94a3b8; margin: 0; }

/* Honeypot anti-spam — hors écran (pas display:none, pour piéger les bots) */
.review-hp {
  position: absolute !important;
  left: -9999px; top: -9999px;
  width: 1px; height: 1px; overflow: hidden;
}

/* Formulaire */
.review-form { display: flex; flex-direction: column; gap: 18px; }
.review-form.sent { opacity: .9; }
.review-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.review-field { display: flex; flex-direction: column; gap: 7px; position: relative; }
.review-field label {
  font-size: 13px; font-weight: 600; color: #cbd5e1; letter-spacing: .01em;
}
.review-req { color: #22c55e; }
.review-opt { color: #64748b; font-weight: 400; }
.review-field input,
.review-field select,
.review-field textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: #f1f5f9;
  font-family: 'Outfit',sans-serif;
  font-size: 14.5px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.review-field textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.review-field input::placeholder,
.review-field textarea::placeholder { color: #64748b; }
.review-field input:focus,
.review-field select:focus,
.review-field textarea:focus {
  outline: none;
  border-color: rgba(34,197,94,0.6);
  background: rgba(34,197,94,0.05);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.12);
}
.review-field select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.review-field select option { background: #0f2240; color: #f1f5f9; }
.review-counter {
  position: absolute; right: 4px; bottom: -18px;
  font-size: 11px; color: #64748b;
}

/* Notation par étoiles */
.review-stars-field { align-items: center; text-align: center; gap: 8px; }
.review-stars { display: inline-flex; gap: 6px; }
.review-star {
  background: none; border: none; padding: 2px; cursor: pointer; line-height: 0;
}
.review-star svg {
  width: 38px; height: 38px;
  fill: rgba(255,255,255,0.12);
  stroke: rgba(255,255,255,0.18); stroke-width: 1;
  transition: transform .15s ease, fill .15s ease;
}
.review-star:hover svg { transform: scale(1.15); }
.review-star.active svg {
  fill: #f5b301; stroke: #f5b301;
  filter: drop-shadow(0 2px 8px rgba(245,179,1,0.4));
}
.review-stars-hint { font-size: 12.5px; color: #94a3b8; min-height: 16px; }

/* Messages d'état */
.review-feedback {
  display: none;
  padding: 12px 16px; border-radius: 12px; font-size: 13.5px; line-height: 1.5;
}
.review-feedback.show { display: block; }
.review-feedback.error {
  background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.3); color: #fca5a5;
}
.review-feedback.success {
  background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.3); color: #86efac;
}

/* Boutons d'action */
.review-actions { display: flex; gap: 12px; margin-top: 4px; }
.review-btn-ghost {
  flex: 0 0 auto;
  padding: 14px 22px; border-radius: 12px;
  background: transparent; border: 1px solid rgba(255,255,255,0.14);
  color: #cbd5e1; font-family: 'Outfit',sans-serif; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all .2s ease;
}
.review-btn-ghost:hover { background: rgba(255,255,255,0.06); color: #fff; }
.review-btn-submit {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px; border-radius: 12px; border: none;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff; font-family: 'Outfit',sans-serif; font-size: 14.5px; font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(34,197,94,0.3);
  transition: transform .25s ease, box-shadow .25s ease, opacity .2s ease;
}
.review-btn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(34,197,94,0.42); }
.review-btn-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.review-btn-spinner {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.4); border-top-color: #fff;
  border-radius: 50%;
  animation: review-spin .7s linear infinite;
}
.review-btn-submit.loading .review-btn-spinner { display: inline-block; }
.review-btn-submit.loading .review-btn-label { opacity: .85; }
@keyframes review-spin { to { transform: rotate(360deg); } }

.review-note { font-size: 11.5px; color: #64748b; text-align: center; margin: 4px 0 0; line-height: 1.5; }

/* Responsive — invitation & modale */
@media (max-width: 768px) {
  .testimonials-cta {
    flex-direction: column; align-items: flex-start;
    padding: 26px 24px; margin-top: 48px;
  }
  .btn-leave-review { width: 100%; justify-content: center; }
  .review-modal { padding: 0; align-items: flex-end; }
  .review-modal-card {
    max-width: 100%; padding: 30px 22px 24px;
    border-radius: 22px 22px 0 0; max-height: 92vh;
  }
  .review-row { grid-template-columns: 1fr; }
  .review-star svg { width: 34px; height: 34px; }
}
