/* Polices Google : chargées via <link rel="preload"> dans index.html (non bloquant) */
@import url('pages.css');
@import url('pharma.css');
:root{
  --navy:#0d1a2e;
  --navy-dark:#000a1e;
  --navy-light:#162d4a;
  --green:#4CAF50;
  --green-dark:#2e7d32;
  --green-vif:#4caf1a;
  --white:#fff;
  --bg:#f4f6fb;
  --bg-warm:#f0f2f8;
  --surface:#e8ecf6;
  --surface-card:#ffffff;
  --text:#111c2d;
  --text-muted:#555b6e;
  --border:rgba(13,26,46,.08);
  --shadow:0 4px 24px rgba(0,33,71,.06);
  --shadow-hover:0 20px 50px rgba(0,33,71,.12);
  --radius:4px;
  --radius-lg:8px;
  --radius-xl:16px;
  --radius-full:9999px;
  --pharma-dark:#0d1f14;
  --pharma-main:#1a4a2e;
  --pharma-accent:#4caf1a;
  --glow-green:0 0 30px rgba(76,175,80,.15);
  --glow-navy:0 0 30px rgba(13,26,46,.1);
}
*,*::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:'Montserrat',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:'Montserrat',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:transparent;
  border:1px solid transparent;border-radius:50px;
  transition:all .5s cubic-bezier(.16,1,.3,1);
  box-shadow:none;
}
#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}
.nav-logo-img{
  height:46px;width:auto;
  background:transparent;
  padding:0;border-radius:0;
  box-shadow:none;
  transition:all .5s cubic-bezier(.175,.885,.32,1.275);
  filter: brightness(0) invert(1);
}
#navbar.scrolled .nav-logo-img { filter: none; }
.nav-logo:hover .nav-logo-img{transform:scale(1.05) translateY(-1px);}

/* â”€â”€â”€ Logo HTML+CSS (fallback fiable, sans dÃ©pendre du gros SVG) â”€â”€â”€ */
.nav-logo .logo-mark{
  display:inline-flex;align-items:center;justify-content:center;
  width:38px;height:38px;border-radius:10px;
  background:linear-gradient(135deg,var(--green) 0%,var(--green-dark) 100%);
  color:#fff;flex-shrink:0;
  box-shadow:0 4px 12px rgba(76,175,80,.3);
  transition:transform .4s cubic-bezier(.16,1,.3,1);
}
.nav-logo .logo-mark svg{width:22px;height:22px}
.nav-logo:hover .logo-mark{transform:rotate(-8deg) scale(1.05)}
.nav-logo .logo-text{
  display:flex;flex-direction:column;line-height:1;color:#fff;
  font-family:'Montserrat',sans-serif;
}
.nav-logo .logo-king{
  font-size:18px;font-weight:800;letter-spacing:.5px;
}
.nav-logo .logo-tag{
  font-size:10px;font-weight:500;opacity:.7;
  margin-top:2px;letter-spacing:.05em;text-transform:uppercase;
}
#navbar.scrolled .nav-logo .logo-text{color:var(--navy)}
.nav-links{display:flex;align-items:center;gap:8px;list-style:none}
.nav-links a{
  display:inline-block;
  color:rgba(255,255,255,.8);font-size:14px;font-weight:600;
  padding:10px 18px;border-radius:30px;
  transition:all .4s cubic-bezier(.16,1,.3,1);
  position:relative;
}
.nav-links a:hover,.nav-links a.active{color:var(--white);background:rgba(255,255,255,.15)}
.nav-links a.active::after{
  content:'';position:absolute;bottom:4px;left:50%;transform:translateX(-50%);
  width:20px;height:3px;background:var(--green);border-radius:2px;
}
#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:all .3s}
.nav-phone:hover{color:var(--green)}
#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:'Montserrat',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: 0;
  background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none"%3E%3Cg fill="%23ffffff" fill-opacity="0.03"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
  opacity: 0.5;
}
.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%;border-radius:20px;
  box-shadow:0 24px 64px rgba(0,0,0,0.5);
  animation:vanFloat 4s ease-in-out infinite;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-glass-card {
  position: absolute;
  bottom: -30px;
  left: -30px;
  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: 24px;
  width: 320px;
  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);
}

@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:15px;color:var(--text-muted);line-height:1.7;margin-bottom:12px}
.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(--green);
  padding: 50px 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(76, 175, 80, 0.2);
}
.pricing-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
  animation: blobPulse 10s ease-in-out infinite;
}
.pricing-banner h2 { font-size: 36px; font-weight: 700; margin-bottom: 12px; position: relative; z-index: 1; }
.pricing-banner p.lead { font-size: 18px; opacity: 0.95; position: relative; z-index: 1; margin:0; }
.pricing-banner p.legal { font-size: 12px; opacity: 0.7; margin-top: 24px; position: relative; z-index: 1; 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 ======================== */
:root {
  --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: white;
  padding: 10px 20px;
  border-radius: 8px;
  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: 'â€º';
  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;
}
.location-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 40px;
  align-items: stretch;
}
.location-map-wrapper {
  flex: 1.4;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
  min-height: 380px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.location-map-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 60px rgba(34,197,94,0.12);
}
.location-map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: none;
  filter: saturate(0.85) contrast(1.05);
  transition: filter 0.4s ease;
}
.location-map-wrapper:hover iframe {
  filter: saturate(1) contrast(1);
}
.location-info {
  flex: 0.6;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.location-card {
  background: rgba(13,27,53,0.8);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.location-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34,197,94,0.25);
}
.location-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(34,197,94,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.location-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: #22c55e;
}
.location-card h4 {
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.location-card p, .location-card a {
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s;
}
.location-card a:hover {
  color: #22c55e;
}
.location-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.location-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34,197,94,0.3);
}
.location-btn svg {
  width: 16px;
  height: 16px;
}

/* ======================== TESTIMONIALS SECTION ======================== */
.testimonials-section {
  background: linear-gradient(180deg, #0a1628 0%, #060d1e 100%);
  padding: 100px 0 120px;
  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: 20px;
  padding: 32px 28px;
  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: 15px;
  line-height: 1.75;
  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) {
  .location-grid { flex-direction: column; }
  .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%; }
  .location-map-wrapper { min-height: 280px; }
  .location-map-wrapper iframe { min-height: 280px; }
  .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; }
}


