/* ==============================
   SUR MESURE PREMIUM 2026
================================= */

.surmesure-hero{
  position:relative;
  padding:120px 20px;
  background:radial-gradient(circle at 20% 20%, rgba(124,92,255,0.15), transparent 50%),
             radial-gradient(circle at 80% 80%, rgba(90,61,255,0.12), transparent 50%),
             #070b1a;
  overflow:hidden;
}

.surmesure-bg-glow{
  position:absolute;
  width:600px;
  height:600px;
  background:radial-gradient(circle, rgba(124,92,255,0.25), transparent 70%);
  filter:blur(120px);
  top:-200px;
  right:-200px;
  pointer-events:none;
}

.surmesure-container{
  max-width:900px;
  margin:auto;
  text-align:center;
}

.surmesure-chip{
  display:inline-block;
  padding:8px 18px;
  border-radius:30px;
  background:rgba(124,92,255,0.15);
  border:1px solid rgba(124,92,255,0.3);
  font-size:13px;
  margin-bottom:25px;
}

.surmesure-title{
  font-size:48px;
  font-weight:700;
  margin-bottom:20px;
}

.surmesure-subtitle{
  max-width:700px;
  margin:0 auto 50px;
  color:#9CA3AF;
  font-size:18px;
}

.surmesure-form{
  background:rgba(255,255,255,0.03);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,0.05);
  padding:40px;
  border-radius:24px;
  box-shadow:0 0 40px rgba(124,92,255,0.15);
}

.form-row{
  display:flex;
  gap:20px;
  margin-bottom:20px;
}

.surmesure-form input,
.surmesure-form textarea{
  width:100%;
  padding:16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.08);
  background:rgba(255,255,255,0.05);
  color:#fff;
  font-size:15px;
  outline:none;
  transition:0.3s;
}

.surmesure-form input:focus,
.surmesure-form textarea:focus{
  border-color:#7C5CFF;
  box-shadow:0 0 20px rgba(124,92,255,0.3);
}

.surmesure-form textarea{
  min-height:140px;
  resize:none;
  margin-bottom:25px;
}

.form-cta{
  width:100%;
  padding:16px;
  font-size:16px;
}

.surmesure-trust{
  margin-top:25px;
  font-size:14px;
  color:#9CA3AF;
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}

/* MOBILE */
@media(max-width:768px){

  .surmesure-title{
    font-size:32px;
  }

  .form-row{
    flex-direction:column;
  }

  .surmesure-form{
    padding:25px;
  }

}

/* =========================
   INVESTMENT PREMIUM 2026
========================= */

.investment-section {
  position: relative;
  padding: 140px 20px;
  text-align: center;
  overflow: hidden;
}

.investment-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 2;
}

/* Halo violet */
.investment-halo {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124,92,255,0.25) 0%, transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(80px);
  animation: pulseHalo 6s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes pulseHalo {
  from { opacity: 0.5; transform: translateX(-50%) scale(1); }
  to { opacity: 0.8; transform: translateX(-50%) scale(1.1); }
}

/* Titre */
.investment-title {
  font-size: 56px;
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: -1px;
}

/* Intro */
.investment-intro {
  font-size: 20px;
  color: #bfc4d6;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Prix */
.investment-price {
  font-size: 28px;
  margin-bottom: 15px;
}

.price-highlight {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(135deg,#7C5CFF,#A48BFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Sous texte */
.investment-sub {
  color: #9ca3af;
  margin-bottom: 35px;
}

/* Bloc psychologique rassurant */
.investment-trust {
  font-size: 14px;
  color: #a8b0c5;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

/* Micro animation */
.investment-title,
.investment-intro,
.investment-price,
.investment-sub,
.investment-trust {
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.investment-title { animation-delay: 0.1s; }
.investment-intro { animation-delay: 0.2s; }
.investment-price { animation-delay: 0.3s; }
.investment-sub { animation-delay: 0.4s; }
.investment-trust { animation-delay: 0.5s; }

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

/* CTA Premium */

.btn-premium-large {
  display: inline-block;
  margin-top: 30px;
  padding: 18px 48px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(135deg,#7C5CFF,#5A3DFF);
  color: #fff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
  box-shadow: 0 0 40px rgba(124,92,255,.35);
}

.btn-premium-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 60px rgba(124,92,255,.6);
}

/* Light sweep */
.btn-premium-large::before {
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(120deg,transparent,rgba(255,255,255,.4),transparent);
  transition:all .6s ease;
}

.btn-premium-large:hover::before {
  left:100%;
}

.cta-note {
  font-size:14px;
  margin-top:12px;
  color:#9CA3AF;
}

.process-section {
  padding:120px 20px;
  background:linear-gradient(to bottom,#060c1f,#0b1228);
}

.process-title {
  text-align:center;
  font-size:42px;
  margin-bottom:80px;
}

.process-timeline {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:40px;
}

.process-step {
  padding:30px;
  border-radius:20px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.05);
  transition:.3s;
}

.process-step:hover {
  transform:translateY(-6px);
  border-color:rgba(124,92,255,.4);
}

.step-number {
  font-size:22px;
  color:#7C5CFF;
  margin-bottom:15px;
}

.clients-section {
  padding:100px 20px;
}

.clients-logos {
  margin-top:40px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:60px;
  opacity:.6;
}

.clients-logos img {
  max-height:50px;
  transition:.3s;
}

.clients-logos img:hover {
  opacity:1;
  transform:scale(1.05);
}


/* ==============================
   PERFORMANCE SECTION PREMIUM
================================= */

.performance-section{
  position:relative;
  padding:140px 0;
  background:radial-gradient(circle at 50% 20%, rgba(124,92,255,0.15), transparent 60%);
  overflow:hidden;
}

.performance-bg-glow{
  position:absolute;
  width:600px;
  height:600px;
  background:radial-gradient(circle, rgba(124,92,255,0.25), transparent 70%);
  top:-200px;
  left:50%;
  transform:translateX(-50%);
  filter:blur(120px);
  opacity:0.7;
  pointer-events:none;
}

.performance-header{
  text-align:center;
  max-width:800px;
  margin:0 auto 80px;
}

.section-chip{
  display:inline-block;
  padding:8px 18px;
  border-radius:30px;
  background:rgba(124,92,255,0.15);
  color:#BCAFFF;
  font-size:14px;
  margin-bottom:20px;
}

.performance-title{
  font-size:42px;
  margin-bottom:20px;
}

.performance-subtitle{
  color:#9CA3AF;
  font-size:18px;
  line-height:1.6;
}

.performance-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:30px;
}

.performance-card{
  padding:40px;
  border-radius:24px;
  background:rgba(255,255,255,0.03);
  backdrop-filter:blur(12px);
  border:1px solid rgba(124,92,255,0.15);
  transition:all 0.4s ease;
}

.performance-card:hover{
  transform:translateY(-6px);
  border-color:rgba(124,92,255,0.4);
  box-shadow:0 20px 60px rgba(124,92,255,0.25);
}

.performance-card h3{
  margin-bottom:15px;
  font-size:20px;
}

.performance-card p{
  color:#9CA3AF;
  line-height:1.6;
}

/* ============================
   APPROACH SECTION PREMIUM
============================ */

.approach-section{
  position:relative;
  padding:120px 0;
  overflow:hidden;
}

.approach-bg-glow{
  position:absolute;
  width:600px;
  height:600px;
  background:radial-gradient(circle, rgba(124,92,255,0.18), transparent 70%);
  top:-200px;
  right:-150px;
  filter:blur(80px);
  pointer-events:none;
}

.approach-container{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap:80px;
  align-items:start;
}

.section-chip{
  display:inline-block;
  padding:6px 14px;
  border-radius:20px;
  background:rgba(124,92,255,0.15);
  font-size:13px;
  margin-bottom:20px;
}

.approach-title{
  font-size:42px;
  line-height:1.2;
  margin-bottom:25px;
}

.approach-intro{
  color:#9CA3AF;
  font-size:18px;
  max-width:500px;
}

.approach-right{
  display:grid;
  gap:25px;
}

.approach-card{
  padding:30px;
  border-radius:20px;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.06);
  backdrop-filter:blur(10px);
  transition:all 0.35s ease;
}

.approach-card h3{
  margin-bottom:10px;
  font-size:20px;
}

.approach-card p{
  color:#9CA3AF;
}

.approach-card:hover{
  transform:translateY(-6px);
  border-color:rgba(124,92,255,0.4);
  box-shadow:0 20px 40px rgba(124,92,255,0.15);
}

/* ================= CLIENT LOGOS ================= */

.client-logos {
  padding: 120px 0;
  background: linear-gradient(180deg, #060c1d 0%, #050914 100%);
  position: relative;
  overflow: hidden;
}

.client-logos::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(130,80,255,0.25) 0%, transparent 70%);
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(80px);
  z-index: 0;
}

.logos-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 70px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.logo-item {
  opacity: 0.65;
  transition: all 0.4s ease;
}

.logo-item img {
  max-height: 80px;
  max-width: 220px;
  object-fit: contain;
  opacity: 0.85;
  transition: all .4s ease;
}

.logo-item:hover img {
  opacity: 1;
  transform: scale(1.06);
}

.logo-item:hover {
  opacity: 1;
  transform: translateY(-6px);
}

.logo-item:hover img {
  filter: grayscale(0%) brightness(1.1);
}

.client-logos{
  position: relative;
  padding: 120px 0;
  background: radial-gradient(circle at center, 
              rgba(124,92,255,0.15) 0%, 
              rgba(5,10,30,1) 60%);
  text-align: center;
}

.logo-showcase{
  margin-top: 60px;
}

.client-logo{
  width: 220px;
  height: auto;

  /* IMPORTANT */
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;

  transition: transform .4s ease, filter .4s ease;
}

/* Micro animation premium */
.client-logo:hover{
  transform: scale(1.05);
  filter: drop-shadow(0 0 30px rgba(124,92,255,0.5));
}



.client-logo{
  opacity: 0;
  transform: translateY(20px);
}

.client-logo.is-visible{
  opacity: 1;
  transform: translateY(0);
  transition: all .8s cubic-bezier(.16,1,.3,1);
}



.trust-logos img {
  max-height: 90px;
  object-fit: contain;
  transition: transform .4s ease, filter .4s ease, opacity .4s ease;
  opacity: 0.95;
}

/* Hover subtil premium */
.trust-logos img:hover {
  transform: scale(1.08);
}
.trust-logos {
  position: relative;
}

.trust-logos::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(120,75,255,0.15), transparent 70%);
  filter: blur(60px);
  z-index: 0;
}

.trust-logos img {
  position: relative;
  z-index: 2;
}


.logo-item img {
  max-height: 80px;
  object-fit: contain;
  transition: all .4s ease;
}

.logo-item:hover img {
  transform: translateY(-6px);
  filter: drop-shadow(0 0 25px rgba(124,92,255,.4));
}

/* ================= CLIENT LOGOS CLEAN ================= */

.client-logos {
  position: relative;
  padding: 120px 0;
  background: radial-gradient(circle at center,
              rgba(124,92,255,0.12) 0%,
              rgba(5,10,30,1) 60%);
  text-align: center;
}

.logos-title {
  font-size: 34px;
  margin-bottom: 60px;
}

.logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

.client-logo {
  max-height: 90px;
  width: auto;
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
  transition: transform .4s ease, filter .4s ease;
}

.client-logo:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 0 30px rgba(124,92,255,0.4));
}

/* ================= PREMIUM MOBILE HERO FIX ================= */

@media (max-width: 768px) {

.hero {
    padding: 60px 20px 80px;
    text-align: center;
}

.hero h1 {
    font-size: 34px;
    line-height: 1.2;
}

.hero p {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 20px;
}

.hero .cta {
    display: block;
    width: 100%;
    margin: 30px auto 0;
    text-align: center;
}

}

/* ================= PREMIUM CTA ================= */

.cta {
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(124,58,237,0.4);
    transition: 0.3s ease;
}

.cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(124,58,237,0.6);
}

/* ================= BURGER PREMIUM ================= */

.burger span {
    background: linear-gradient(90deg, #9f7aea, #7c3aed);
    height: 3px;
    width: 28px;
}

.burger {
    padding: 8px;
}

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

.hero h1,
.hero p,
.hero .cta {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
}

.hero p { animation-delay: 0.2s; }
.hero .cta { animation-delay: 0.4s; }

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



/* ================= FINAL BURGER FIX ================= */

.burger {
    display: none;
    position: relative;
    z-index: 9999;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
}

@media (max-width: 992px) {

    nav ul {
        display: none !important;
    }

    .burger {
        display: flex !important;
    }

}

/* ================= OFFERS RESPONSIVE FIX ================= */

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .offers-grid {
        grid-template-columns: 1fr !important;
    }

    .offers-grid > * {
        width: 100% !important;
    }
}

