
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root{
  --max: 1200px;
  --green1:#35a84a;
  --green2:#1f5f22;
  --blue1:#2b73ff;
  --blue2:#0b3d5e;
  --text:#0d2233;
  --muted:#5a6b7a;
  --bg:#f7f9fb;
  --card:#ffffff;
  --shadow: 0 18px 40px rgba(8, 30, 45, .14);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:'Montserrat',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;color:var(--text);background:#fff}
a{text-decoration:none;color:inherit}
.container{max-width:var(--max);margin:0 auto;padding:0 22px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:14px 22px;border-radius:999px;font-weight:800;
  border:0;cursor:pointer;white-space:nowrap;
  box-shadow:0 14px 28px rgba(0,0,0,.18);
}
.btn.green{background:linear-gradient(180deg,var(--green1),var(--green2));color:#fff}
.btn.blue{background:linear-gradient(180deg,var(--blue1),var(--blue2));color:#fff}
.btn.ghost{background:#fff;color:var(--text);box-shadow:0 10px 22px rgba(0,0,0,.10);border:1px solid rgba(0,0,0,.08)}

header{
  position:sticky;top:0;z-index:50;
  background:linear-gradient(180deg,#fff 0%, #f3f6f9 100%);
  border-bottom:1px solid rgba(0,0,0,.06);
}
.header-inner{
  height:92px;
  display:grid;
  grid-template-columns: 260px 1fr 260px;
  gap:12px;
  align-items:center;
}
.brand img{height:54px;width:auto;display:block}
.nav{display:flex;justify-content:center;gap:28px;align-items:center;font-weight:600;color:#2a2f35}
.nav a{position:relative;padding:6px 0}
.nav a.active::after{
  content:"";position:absolute;left:0;right:0;bottom:-10px;margin:auto;
  width:62px;height:3px;border-radius:99px;
  background:linear-gradient(90deg,var(--green1),var(--green2));
}
.header-cta{display:flex;flex-direction:column;align-items:flex-end;gap:6px}
.small-note{font-size:12px;color:var(--green2);font-weight:700;display:flex;gap:8px;align-items:center}
.small-note::before{content:"▲";font-size:10px}

/* HERO / carousel */
.hero{
  padding:18px 0 0;
}
.carousel{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  box-shadow: var(--shadow);
  background:#0b2c44;
}
.carousel img.hero-img{
  width:100%;
  height:100%;
  min-height:400px;
  object-fit:cover;
  object-position:left;
  display:block;
}
.carousel .arrow{
  position:absolute;top:50%;transform:translateY(-50%);
  width:44px;height:44px;border-radius:12px;
  background:rgba(255,255,255,.92);
  display:grid;place-items:center;
  box-shadow:0 12px 26px rgba(0,0,0,.25);
  cursor:pointer;user-select:none;
}
.carousel .arrow.left{left:16px}
.carousel .arrow.right{right:16px}
.carousel .arrow svg{width:18px;height:18px;stroke:#1b3b52;stroke-width:3;fill:none}

.carousel .dots{
  position:absolute;left:0;right:0;bottom:14px;
  display:flex;justify-content:center;gap:10px;
}
.carousel .dot{
  width:10px;height:10px;border-radius:99px;
  background:rgba(255,255,255,.5);
  border:1px solid rgba(255,255,255,.35);
  cursor:pointer;
}
.carousel .dot.active{background:#fff}

.hero-cta{
  position:absolute;
  left:7%;
  bottom:18%;
  display:flex;
  flex-direction:column;
  gap:12px;
}
@media (max-width: 900px){
  .header-inner{grid-template-columns:1fr; height:auto; padding:14px 0}
  .nav{justify-content:flex-start;flex-wrap:wrap}
  .header-cta{align-items:flex-start}
  .hero-cta{left:5%; bottom:10%}
}

/* STATS */
.stats{
  margin-top:18px;
  background:linear-gradient(180deg,#ffffff 0%, #f1f5f9 100%);
  border-radius:14px;
  box-shadow: 0 14px 28px rgba(0,0,0,.08);
  padding:18px 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.stat{
  display:flex;gap:14px;align-items:flex-start;
  padding:10px 10px;border-right:1px solid rgba(0,0,0,.06);
}
.stat:last-child{border-right:0}
.stat img{width:54px;height:54px}
.stat b{display:block;font-size:18px}
.stat small{display:block;color:var(--muted);margin-top:4px;font-weight:500}
@media (max-width: 900px){
  .stats{grid-template-columns:1fr}
  .stat{border-right:0;border-bottom:1px solid rgba(0,0,0,.06)}
  .stat:last-child{border-bottom:0}
}

/* SECTION: Solutions */
.section{
  margin-top:26px;
  border-radius:18px;
  overflow:hidden;
  box-shadow: var(--shadow);
  padding:30px 24px 26px;
  color:#fff;
}
.section h2{
  margin:0;
  text-align:center;
  font-size:34px;
  font-weight:900;
}
.section p.sub{
  margin:10px 0 22px;
  text-align:center;
  color:rgba(255,255,255,.80);
  font-weight:500;
}
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
  margin-top:6px;
}
.card{
  background:rgba(255,255,255,.94);
  color:var(--text);
  border-radius:14px;
  overflow:hidden;
  box-shadow: 0 16px 30px rgba(0,0,0,.18);
}
.card .imgwrap{background:#f1f5f9}
.card img{width:100%;height:auto;display:block}
.card .body{padding:14px 14px 16px}
.card h3{margin:0 0 8px;font-size:16px;font-weight:900}
.card .tags{display:flex;flex-wrap:wrap;gap:8px;margin-top:10px}
.tag{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  background:#e7eef5;
  color:#2b3b49;
  font-weight:700;
}
.section .center-cta{display:flex;justify-content:center;margin-top:18px}

/* TESTIMONIAL */
.testi{
  margin-top:18px;
  border-radius:16px;
  background:#ffffff;
  box-shadow: var(--shadow);
  padding:22px 22px;
}
.testi h2{margin:0 0 4px;font-size:28px;font-weight:900;color:#1b3b52}
.testi p.sub{margin:0 0 14px;color:var(--muted);font-weight:500}
.quote{
  display:grid;
  grid-template-columns: 160px 1fr;
  gap:16px;
  background:#f6f8fb;
  border:1px solid rgba(0,0,0,.06);
  border-radius:14px;
  padding:16px;
  align-items:center;
}
.avatar{
  display:flex;align-items:center;justify-content:center;
}
.avatar img{width:92px;height:92px;border-radius:999px;object-fit:cover}
.qtext{color:#2a3b4a}
.qtext p{margin:0 0 10px;font-weight:600}
.qtext small{color:#51606f;font-weight:600}
.brands{display:flex;gap:10px;flex-wrap:wrap;margin-top:10px}
.badge{
  font-size:12px;font-weight:800;
  padding:7px 10px;border-radius:999px;
  background:#fff;border:1px solid rgba(0,0,0,.08);
  color:#2b3b49;
}
@media (max-width:900px){
  .cards{grid-template-columns:1fr}
  .quote{grid-template-columns:1fr}
}

/* CASE */
.case{
  margin-top:18px;
  border-radius:18px;
  overflow:hidden;
  box-shadow: var(--shadow);
  color:#fff;
  padding:26px 22px;
  display:grid;
  grid-template-columns: 420px 1fr;
  gap:18px;
  align-items:center;
  position: relative;
}


.case-card{
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.16);
  border-radius:14px;
  padding:18px;
  inset:0;
  background: rgba(0,0,0,.45); /* ajuste 0.35 à 0.65 */
  pointer-events:auto;
}
.case-card small{display:block;color:rgba(255,255,255,.75);font-weight:700}
.case-card h3{margin:8px 0 6px;font-size:26px;font-weight:900}
.case-card .big{font-size:44px;font-weight:900;margin:8px 0}
.case-card p{margin:8px 0 12px;color:rgba(255,255,255,.82)}
.case-visual img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 20px 40px rgba(0,0,0,.25)}
@media (max-width: 900px){
  .case{grid-template-columns:1fr}
}

/* FOOTER CTA */
.footer-cta{
  margin-top:18px;
  background:linear-gradient(180deg,#071c2a, #04121c);
  color:#fff;
  padding:20px 0;
}
.footer-inner{
  display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap;
}
.footer-inner h2{margin:0;font-size:22px;font-weight:900}
.footer-actions{display:flex;gap:12px;flex-wrap:wrap}
.footer-bottom{
  margin-top:10px;
  color:rgba(255,255,255,.55);
  font-size:12px;
}

/* Bouton hamburger */
.menu-toggle{
  display:none;
  background:none;
  border:none;
  font-size:30px;
  cursor:pointer;
  color:#1b3b52;
}

.mobile-contact{
  display:none;
}

@media (max-width: 900px){

  .header-inner{
    position:relative;
    display:flex;
    justify-content:space-between;
    align-items:center;
  }

  .menu-toggle{
    display:block;
    z-index:1002;
  }

  .desktop-contact{
    display:none;
  }

  .nav{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:#fff;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
    padding:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    border-radius:0 0 16px 16px;
    z-index:1001;
  }

  .nav.active{
    display:flex;
  }

  .nav a{
    width:100%;
    padding:8px 0;
  }

  .mobile-contact{
    display:inline-flex;
    margin-top:8px;
  }
}
