        /* ============================================
           RESET & BASE
           ============================================ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            overflow-x: hidden;
            background: #fff;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
        }

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

        /* ============================================
           HEADER / NAVIGATION
           ============================================ */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            padding: 15px 0;
        }

        .header.scrolled {
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
        }

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

        .logo img {
            height: 40px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 35px;
        }

        .nav-links a {
            font-size: 15px;
            font-weight: 500;
            color: #1a1a2e;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a:hover {
            color: #2dd4a8;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #2dd4a8;
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .lang-switch {
            font-size: 14px;
            font-weight: 500;
            color: #1a1a2e;
            cursor: pointer;
            padding: 5px 10px;
            border-radius: 5px;
            transition: background 0.3s;
        }

        .lang-switch:hover {
            background: #f0f0f0;
        }

        .btn-consultation {
            background: linear-gradient(135deg, #2dd4a8, #20b090);
            color: #fff;
            padding: 10px 25px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .btn-consultation:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(45, 212, 168, 0.4);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #1a1a2e;
            border-radius: 3px;
            transition: all 0.3s;
        }

        /* ============================================
           HERO SECTION
           ============================================ */
        .hero {
            padding: 140px 0 80px;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
			background: linear-gradient(135deg, #f0fdf9 0%, #f5f9ff 30%, #fefefe 60%, #fdf2f8 100%);
        }

        .hero .container {
            display: flex;
            align-items: center;
            gap: 60px;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            flex: 1;
            max-width: 550px;
        }

        .hero-content h1 {
            font-size: 48px;
            font-weight: 800;
            color: #1a1a2e;
            line-height: 1.15;
            margin-bottom: 20px;
        }

        .hero-content p {
            font-size: 16px;
            color: #6c757d;
            line-height: 1.7;
            margin-bottom: 35px;
        }

        .hero-buttons {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #2dd4a8, #20b090);
            color: #fff;
            padding: 14px 30px;
            border-radius: 30px;
            font-size: 15px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(45, 212, 168, 0.4);
        }

        .btn-primary .btn-icon {
            width: 30px;
            height: 30px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn-secondary {
            color: #1a1a2e;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: color 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: none;
            border: none;
        }

        .btn-secondary:hover {
            color: #2dd4a8;
        }

        .hero-image {
            flex: 1;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-image-wrapper {
            position: relative;
            width: 500px;
            height: 500px;
        }

        .hero-image-wrapper .blob-bg {
            position: absolute;
            top: -30px;
            right: -30px;
            width: 110%;
            height: 110%;
            z-index: 0;
        }

        .hero-image-wrapper .main-photo {
            position: relative;
            z-index: 1;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
        }

        .hero-decoration-1 {
            position: absolute;
            top: 50px;
            right: -50px;
            width: 200px;
            opacity: 0.6;
            z-index: 0;
        }

        .hero-decoration-2 {
            position: absolute;
            bottom: -50px;
            left: -100px;
            width: 150px;
            opacity: 0.4;
            z-index: 0;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
            color: #2dd4a8;
            font-size: 24px;
            z-index: 5;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-15px); }
            60% { transform: translateX(-50%) translateY(-7px); }
        }
		


/* ============================================
   FLOATING ELEMENTS - MINI ANIMATIONS
   ============================================ */
.floating-element {
    position: absolute;
    z-index: 10;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

/* --- Mini Chart (en haut à gauche de l'image) --- */
.floating-chart {
    top: 20px;
    left: -40px;
    background: #fff;
    padding: 10px 12px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    animation: floatUpDown 3s ease-in-out infinite;
}

/* --- Mini Code Window (en bas à gauche) --- */
.floating-code {
    bottom: 60px;
    left: -55px;
    animation: floatUpDown 4s ease-in-out infinite 0.5s;
}

.mini-code-window {
    background: #1e1e2e;
    border-radius: 10px;
    padding: 8px 10px;
    width: 100px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.mini-code-dots {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
}

.mini-code-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: block;
}

.mini-code-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.code-line {
    height: 3px;
    border-radius: 3px;
    opacity: 0.7;
    animation: codeLineGrow 2s ease-in-out infinite alternate;
}

.code-line:nth-child(1) { animation-delay: 0s; }
.code-line:nth-child(2) { animation-delay: 0.3s; }
.code-line:nth-child(3) { animation-delay: 0.6s; }
.code-line:nth-child(4) { animation-delay: 0.9s; }

@keyframes codeLineGrow {
    0% { opacity: 0.4; transform: scaleX(0.8); }
    100% { opacity: 1; transform: scaleX(1); }
}

/* --- Mini Database (en haut à droite) --- */
.floating-database {
    top: -10px;
    right: 30px;
    animation: floatUpDown 3.5s ease-in-out infinite 1s;
}

.mini-db {
    background: #fff;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    font-size: 18px;
    color: #2dd4a8;
}

/* --- Mini Donut Chart (à droite) --- */
.floating-donut {
    top: 50%;
    right: -35px;
    transform: translateY(-50%);
    background: #fff;
    padding: 8px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    animation: floatLeftRight 3s ease-in-out infinite 0.7s;
}

.donut-animate {
    animation: donutSpin 4s linear infinite;
    transform-origin: center;
}

@keyframes donutSpin {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -94; }
}

/* --- Mini Gear (en bas à droite) --- */
.floating-gear {
    bottom: 30px;
    right: -25px;
    animation: floatUpDown 3s ease-in-out infinite 1.5s;
}

.mini-gear {
    background: linear-gradient(135deg, #ff6b8a, #ff8fa3);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(255, 107, 138, 0.3);
    font-size: 16px;
    color: #fff;
}

.mini-gear i {
    animation: gearSpin 4s linear infinite;
}

@keyframes gearSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- Mini Trend Line (en haut milieu) --- */
.floating-trend {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 8px 10px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    animation: floatUpDown 3.5s ease-in-out infinite 0.3s;
}

.trend-line-animate {
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    animation: drawLine 2.5s ease-in-out infinite alternate;
}

@keyframes drawLine {
    0% { stroke-dashoffset: 120; }
    100% { stroke-dashoffset: 0; }
}

.trend-dot-animate {
    animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { r: 3; opacity: 1; }
    50% { r: 5; opacity: 0.7; }
}

/* --- Mini Cloud (milieu gauche) --- */
.floating-cloud {
    top: 45%;
    left: -30px;
    animation: floatLeftRight 4s ease-in-out infinite 0.8s;
}

.mini-cloud {
    background: linear-gradient(135deg, #74b9ff, #5fa8f5);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(116, 185, 255, 0.3);
    font-size: 16px;
    color: #fff;
}

/* --- Mini Terminal (en bas milieu) --- */
.floating-terminal {
    bottom: -10px;
    left: 45%;
    animation: floatUpDown 3s ease-in-out infinite 2s;
}

.mini-terminal {
    background: #1e1e2e;
    padding: 6px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.terminal-prompt {
    color: #2dd4a8;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    font-weight: 700;
}

.terminal-text {
    color: #fff;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    animation: blink 0.8s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ============================================
   ANIMATIONS PRINCIPALES DE FLOTTEMENT
   ============================================ */
@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes floatLeftRight {
    0%, 100% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(10px);
    }
}

/* Hover sur les mini éléments */
.floating-element:hover {
    transform: scale(1.15) !important;
    z-index: 20;
}

/* ============================================
   RESPONSIVE - MASQUER SUR MOBILE
   ============================================ */
@media (max-width: 1024px) {
    .floating-chart {
        left: -20px;
        top: 30px;
    }
    .floating-code {
        left: -30px;
        bottom: 70px;
    }
    .floating-donut {
        right: -20px;
    }
    .floating-gear {
        right: -10px;
    }
    .floating-cloud {
        left: -15px;
    }
}

@media (max-width: 768px) {
    .floating-element {
        transform: scale(0.75);
    }
    .floating-chart {
        left: -15px;
        top: 10px;
    }
    .floating-code {
        display: none;
    }
    .floating-database {
        right: 10px;
        top: -5px;
    }
    .floating-donut {
        right: -15px;
    }
    .floating-gear {
        right: -5px;
        bottom: 20px;
    }
    .floating-trend {
        display: none;
    }
    .floating-cloud {
        display: none;
    }
    .floating-terminal {
        display: none;
    }
}

@media (max-width: 480px) {
    .floating-element {
        transform: scale(0.6);
    }
    .floating-donut,
    .floating-gear,
    .floating-database {
        display: none;
    }
}

/* ============================================
   SECTION EXPERTISES
   ============================================ */

.expertises {
  background: #f8f8fb;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.expertises::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 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' fill-rule='evenodd'%3E%3Cg fill='%231a1a2e' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.expertises .container {
  position: relative;
  z-index: 1;
}

/* ---- Header ---- */
.expertises-header {
  margin-bottom: 56px;
}

.expertises-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #00c9a7;
  background: rgba(0, 201, 167, .08);
  border: 1px solid rgba(0, 201, 167, .25);
  border-radius: 50px;
  padding: 5px 14px;
  margin-bottom: 18px;
}

.expertises-header .section-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: #0f0f1a;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.expertises-header .section-title em {
  font-style: normal;
  color: #00c9a7;
}

.expertises-header .section-subtitle {
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 0;
}

/* ---- Grille : CSS Grid, pas flex ---- */
.expertise-grid-kwantic {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

/* ---- Card ---- */
.kw-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, .06);
  overflow: hidden;
  cursor: default;
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1),
              box-shadow .3s ease;
}

.kw-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .09);
}

/* ---- Barre colorée en bas ---- */
.kw-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
}

.kw-card:hover .kw-bar {
  transform: scaleX(1);
}

/* ---- Intérieur ---- */
.kw-card-inner {
  padding: 26px 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ---- Icône ---- */
.kw-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: color-mix(in srgb, var(--c) 12%, white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: var(--c);
  flex-shrink: 0;
  transition: background .3s, transform .3s;
}

.kw-card:hover .kw-icon-wrap {
  background: color-mix(in srgb, var(--c) 20%, white);
  transform: scale(1.08);
}

/* ---- Texte ---- */
.kw-content h3 {
  font-size: 14.5px;
  font-weight: 700;
  color: #0f0f1a;
  margin-bottom: 8px;
  line-height: 1.3;
}

.kw-content p {
  font-size: 12.5px;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

/* ---- Flèche masquée ---- */
.kw-arrow {
  display: none;
}

/* ============================================
   CENTRAGE DERNIÈRE LIGNE INCOMPLÈTE
   On utilise un wrapper flex autour de la grille
   ============================================ */

/* On enveloppe les 2 dernières cartes dans un
   sous-groupe centré via une classe dédiée */
/* Centre les 2 dernières cartes — grille active 4 col / gap 22px */
.kw-last-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 22px;
}

.kw-last-row .kw-card {
  flex: 0 0 calc((100% - 66px) / 4); /* même largeur qu'une colonne 4-col */
  width: calc((100% - 66px) / 4);
}

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

@media (max-width: 1200px) {
  .expertise-grid-kwantic {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1024px) {
  .kw-last-row .kw-card {
    flex: 0 0 calc((100% - 22px) / 2); /* grille passe à 2 col */
    width: calc((100% - 22px) / 2);
  }
}

@media (max-width: 900px) {
  .expertise-grid-kwantic {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .expertises {
    padding: 70px 0;
  }

  .expertises-header {
    margin-bottom: 40px;
  }

  .expertise-grid-kwantic {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .kw-last-row {
    flex-direction: column;
  }

  .kw-last-row .kw-card {
    flex: 0 0 100%;
    width: 100%;
  }
}

@media (max-width: 400px) {
  .expertise-grid-kwantic {
    grid-template-columns: 1fr;
  }
}
        /* ============================================
           SECTION TRANSFORMATION DIGITALE
           ============================================ */
        .transformation {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .transformation .container {
            display: flex;
            align-items: center;
            gap: 80px;
        }

        .transformation-image {
            flex: 1;
            position: relative;
        }

        .transformation-image-wrapper {
            position: relative;
            width: 450px;
            height: 450px;
        }

        .transformation-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50% 40% 50% 60% / 60% 50% 40% 50%;
        }

        .transformation-content {
            flex: 1;
        }

        .transformation-content h2 {
            font-size: 34px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .transformation-content p {
            font-size: 15px;
            color: #6c757d;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .btn-learn-more {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
            font-weight: 600;
            color: #1a1a2e;
            cursor: pointer;
            transition: color 0.3s;
        }

        .btn-learn-more:hover {
            color: #2dd4a8;
        }

        .btn-learn-more .play-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #2dd4a8, #20b090);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 14px;
            transition: transform 0.3s;
        }

        .btn-learn-more:hover .play-icon {
            transform: scale(1.1);
        }

        /* ============================================
           SECTION STATISTIQUES
           ============================================ */
        .stats {
            padding: 60px 0;
            background: #fff;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
        }

        .stat-item {
            padding: 30px 20px;
        }

        .stat-icon {
            font-size: 36px;
            margin-bottom: 15px;
            color: #2dd4a8;
        }

        .stat-icon i {
            background: linear-gradient(135deg, #2dd4a8, #20b090);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-number {
            font-size: 42px;
            font-weight: 800;
            color: #1a1a2e;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 14px;
            color: #6c757d;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* ============================================
           SECTION CITATION / BANDEAU
           ============================================ */
        .quote-banner {
            background: linear-gradient(135deg, #1a8a6e, #15705a, #0d5c48);
            padding: 60px 0;
            text-align: center;
            margin: 40px 0;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .quote-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
        }

        .quote-banner p {
            font-size: 24px;
            color: #fff;
            font-weight: 600;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.5;
            position: relative;
            z-index: 1;
        }

        .quote-banner .quote-icon {
            font-size: 40px;
            color: rgba(255, 255, 255, 0.3);
            margin-bottom: 20px;
        }

        /* ============================================
           SECTION SOLUTIONS
           ============================================ */
        .solutions {
            padding: 80px 0;
            position: relative;
        }

        .solutions-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 50px;
        }

        .solutions-header .section-title {
            margin-bottom: 0;
        }

        .btn-projects {
            background: linear-gradient(135deg, #2dd4a8, #20b090);
            color: #fff;
            padding: 10px 25px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn-projects:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(45, 212, 168, 0.4);
        }

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

        .solution-card {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
            background: #fff;
        }

        .solution-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .solution-card-image {
            width: 100%;
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .solution-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .solution-card:hover .solution-card-image img {
            transform: scale(1.05);
        }

        .solution-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: #2dd4a8;
            color: #fff;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        .solution-card-content {
            padding: 20px;
            text-align: center;
        }

        .solution-card-content h3 {
            font-size: 16px;
            font-weight: 700;
            color: #1a1a2e;
        }

        /* ============================================
           SECTION CULTURE
           ============================================ */
        .culture {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .culture .container {
            display: flex;
            align-items: center;
            gap: 80px;
        }

        .culture-content {
            flex: 1;
        }

        .culture-content h2 {
            font-size: 34px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 35px;
            line-height: 1.3;
        }

        .pillar-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .pillar-item {
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }

        .pillar-check {
            width: 28px;
            height: 28px;
            min-width: 28px;
            background: linear-gradient(135deg, #2dd4a8, #20b090);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 12px;
            margin-top: 3px;
        }

        .pillar-text h4 {
            font-size: 17px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 5px;
        }

        .pillar-text p {
            font-size: 14px;
            color: #6c757d;
            line-height: 1.6;
        }

        .culture-image {
            flex: 1;
            position: relative;
        }

        .culture-image-wrapper {
            position: relative;
            width: 450px;
            height: 450px;
        }

        .culture-image-wrapper .culture-photo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
        }

        .culture-decoration {
            position: absolute;
            z-index: -1;
        }

        .culture-decoration-1 {
            top: -40px;
            right: -60px;
            width: 200px;
            opacity: 0.5;
        }

        .culture-decoration-2 {
            bottom: -30px;
            left: -50px;
            width: 150px;
            opacity: 0.4;
        }

        /* ============================================
           SECTION VALEURS
           ============================================ */
        .values {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
            background: #fafbfc;
        }

        .values .container {
            display: flex;
            align-items: center;
            gap: 80px;
        }

        .values-content {
            flex: 1;
        }

        .values-content h2 {
            font-size: 34px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 35px;
            line-height: 1.3;
        }

        .values-image {
            flex: 1;
            position: relative;
        }

        .values-image-wrapper {
            position: relative;
            width: 450px;
            height: 450px;
        }

        .values-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
        }

        /* ============================================
           SECTION CONTACT
           ============================================ */
        .contact {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .contact .container {
            display: flex;
            align-items: center;
            gap: 80px;
        }

        .contact-image {
            flex: 0.8;
            position: relative;
        }

        .contact-image-wrapper {
            width: 380px;
            height: 400px;
            overflow: hidden;
            border-radius: 20px;
        }

        .contact-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .contact-form-wrapper {
            flex: 1;
        }

        .contact-form-wrapper h2 {
            font-size: 34px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 35px;
            line-height: 1.3;
        }

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

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 16px 20px;
            background: #f5f5f7;
            border: 2px solid transparent;
            border-radius: 12px;
            font-family: 'Poppins', sans-serif;
            font-size: 15px;
            color: #333;
            transition: all 0.3s;
            outline: none;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: #2dd4a8;
            background: #fff;
            box-shadow: 0 0 0 4px rgba(45, 212, 168, 0.1);
        }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: #aaa;
        }

        .contact-form textarea {
            height: 140px;
            resize: vertical;
        }

        .btn-send {
            background: linear-gradient(135deg, #2dd4a8, #20b090);
            color: #fff;
            padding: 14px 35px;
            border-radius: 30px;
            font-size: 15px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            align-self: flex-start;
        }

        .btn-send:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(45, 212, 168, 0.4);
        }

        .btn-send:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none !important;
            box-shadow: none !important;
        }

        .btn-send.loading .btn-text,
        .btn-send.loading .btn-icon-send {
            display: none;
        }

        .btn-send.loading .btn-loading {
            display: inline-flex !important;
            align-items: center;
            gap: 8px;
        }

        /* ===== Form Validation ===== */
        .form-group {
            position: relative;
        }

        .input-error {
            display: none;
            color: #ff4757;
            font-size: 12px;
            margin-top: 5px;
            padding-left: 5px;
            font-weight: 500;
        }

        .form-group.error input,
        .form-group.error textarea {
            border-color: #ff4757 !important;
            background: #fff5f5 !important;
        }

        .form-group.error .input-error {
            display: block;
        }

        .form-group.valid input,
        .form-group.valid textarea {
            border-color: #2dd4a8 !important;
        }

        /* ===== Success & Error Messages ===== */
        .form-alert {
            display: none;
            text-align: center;
            padding: 35px 30px;
            border-radius: 16px;
            margin-bottom: 25px;
            animation: fadeInUp 0.5s ease;
        }

        .form-alert.show {
            display: block;
        }

        .form-alert.success {
            background: linear-gradient(135deg, #f0fff4, #e6fffa);
            border: 2px solid #2dd4a8;
        }

        .form-alert.error {
            background: linear-gradient(135deg, #fff5f5, #ffe0e0);
            border: 2px solid #ff4757;
        }

        .form-alert .alert-icon {
            font-size: 45px;
            margin-bottom: 12px;
        }

        .form-alert.success .alert-icon {
            color: #2dd4a8;
        }

        .form-alert.error .alert-icon {
            color: #ff4757;
        }

        .form-alert h3 {
            font-size: 20px;
            color: #1a1a2e;
            margin-bottom: 8px;
            font-weight: 700;
        }

        .form-alert p {
            font-size: 14px;
            color: #6c757d;
            line-height: 1.5;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }

        .shake {
            animation: shake 0.4s ease;
        }

        /* ============================================
           FOOTER
           ============================================ */
        .footer {
            background: #0d1b2a;
            color: #fff;
            padding: 70px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-col h4 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #fff;
        }

        .footer-logo {
            height: 35px;
            margin-bottom: 15px;
            filter: brightness(0) invert(1);
        }

        .footer-col p {
            font-size: 13px;
            color: #8899aa;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .footer-socials {
            display: flex;
            gap: 12px;
        }

        .footer-socials a {
            width: 38px;
            height: 38px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 16px;
            transition: all 0.3s;
        }

        .footer-socials a:hover {
            background: #2dd4a8;
            transform: translateY(-3px);
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            font-size: 14px;
            color: #8899aa;
            transition: color 0.3s;
        }

        .footer-col ul li a:hover {
            color: #2dd4a8;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 12px;
        }

        .footer-contact-item i {
            color: #2dd4a8;
            font-size: 14px;
            margin-top: 3px;
        }

        .footer-contact-item span {
            font-size: 13px;
            color: #8899aa;
            line-height: 1.5;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            font-size: 13px;
            color: #8899aa;
        }

        .footer-bottom-links {
            display: flex;
            gap: 20px;
        }

        .footer-bottom-links a {
            font-size: 13px;
            color: #8899aa;
            transition: color 0.3s;
        }

        .footer-bottom-links a:hover {
            color: #2dd4a8;
        }

        /* ============================================
           DECORATIVE BLOBS
           ============================================ */
        .blob-decoration {
            position: absolute;
            z-index: 0;
            pointer-events: none;
        }

        /* ============================================
           ANIMATIONS (Scroll Reveal)
           ============================================ */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

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

        .reveal-left {
            opacity: 0;
            transform: translateX(-60px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal-left.active {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(60px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal-right.active {
            opacity: 1;
            transform: translateX(0);
        }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 1024px) {
            .hero .container {
                flex-direction: column;
                text-align: center;
            }

            .hero-content {
                max-width: 100%;
            }

            .hero-content h1 {
                font-size: 38px;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-image-wrapper {
                width: 380px;
                height: 380px;
            }

            .expertise-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .transformation .container,
            .culture .container,
            .values .container,
            .contact .container {
                flex-direction: column;
                text-align: center;
            }

            .transformation-image-wrapper,
            .culture-image-wrapper,
            .values-image-wrapper {
                width: 350px;
                height: 350px;
            }

            .pillar-item {
                text-align: left;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .solutions-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .solutions-header {
                flex-direction: column;
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #fff;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
                gap: 15px;
            }

            .nav-links.active {
                display: flex;
            }

            .hamburger {
                display: flex;
            }

            .hero-content h1 {
                font-size: 32px;
            }

            .section-title {
                font-size: 28px;
            }

            .expertise-grid {
                grid-template-columns: 1fr;
            }

            .solutions-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }

            .hero-image-wrapper {
                width: 300px;
                height: 300px;
            }

            .transformation-image-wrapper,
            .culture-image-wrapper,
            .values-image-wrapper {
                width: 300px;
                height: 300px;
            }

            .contact .container {
                flex-direction: column;
            }

            .contact-image-wrapper {
                width: 100%;
                height: 300px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            .quote-banner p {
                font-size: 18px;
                padding: 0 20px;
            }

            .btn-consultation {
                display: none;
            }

            .lang-switch {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 28px;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .stat-number {
                font-size: 32px;
            }

            .contact-form-wrapper h2,
            .culture-content h2,
            .values-content h2,
            .transformation-content h2 {
                font-size: 26px;
            }
        }

		/* ============================================
   EXPERTISES - style "illustrations/cartes"
   ============================================ */
.expertise-grid-kwantic{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

@media (max-width: 1024px){
  .expertise-grid-kwantic{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px){
  .expertise-grid-kwantic{ grid-template-columns: 1fr; }
}

.kw-card{
  position: relative;
  text-align: left;
  padding: 26px 24px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(17, 24, 39, 0.08);
  border: 1px solid rgba(17,24,39,0.06);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

/* petits traits diagonaux (style concurrent mais original) */
.kw-card::before{
  content:"";
  position:absolute;
  right:-40px;
  top:18px;
  width:140px;
  height:140px;
  background:
    linear-gradient(135deg, rgba(0,0,0,0) 0%,
      rgba(0,0,0,0) 38%,
      color-mix(in srgb, var(--accent) 35%, transparent) 38%,
      color-mix(in srgb, var(--accent) 35%, transparent) 45%,
      rgba(0,0,0,0) 45%,
      rgba(0,0,0,0) 55%,
      color-mix(in srgb, var(--accent2) 55%, transparent) 55%,
      color-mix(in srgb, var(--accent2) 55%, transparent) 62%,
      rgba(0,0,0,0) 62%);
  transform: rotate(12deg);
  opacity: .9;
  pointer-events:none;
}

.kw-card::after{
  content:"";
  position:absolute;
  left:-60px;
  bottom:-70px;
  width:180px;
  height:180px;
  background: radial-gradient(circle at 30% 30%,
    color-mix(in srgb, var(--accent2) 60%, transparent),
    transparent 60%);
  opacity:.7;
  pointer-events:none;
}

.kw-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.12);
}

.kw-illu{
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--accent) 18%, white),
    color-mix(in srgb, var(--accent2) 26%, white));
  border: 1px solid color-mix(in srgb, var(--accent) 25%, #ffffff);
}

.kw-illu i{
  color: color-mix(in srgb, var(--accent) 85%, #111827);
  font-size: 20px;
}

.kw-card h3{
  font-size: 16px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 10px;
}

.kw-card p{
  margin: 0;
  color: #6b7280;
  font-size: 13.5px;
  line-height: 1.6;
}

/* ============================================================
   PAGE DEVIS — styles encapsules .quote-page / .quote-wizard
   ============================================================ */

/* ---- Layout page ---- */
.quote-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #f0fdf9 0%, #f5f9ff 40%, #fefefe 70%, #fdf2f8 100%);
  padding-top: 100px;
  padding-bottom: 60px;
  font-family: 'Poppins', sans-serif;
}

.quote-page .container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Back link ---- */
.quote-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  text-decoration: none;
  margin-bottom: 28px;
  transition: color .2s;
}
.quote-back:hover { color: #2dd4a8; }
.quote-back i { font-size: 13px; }

/* ---- Hero block ---- */
.quote-hero {
  text-align: center;
  margin-bottom: 36px;
}
.quote-hero h1 {
  font-size: clamp(26px, 5vw, 36px);
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 10px;
}
.quote-hero p {
  font-size: 15px;
  color: #6b7280;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---- Progress bar ---- */
.quote-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  position: relative;
}
.quote-progress::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 80px);
  height: 2px;
  background: #e5e7eb;
  z-index: 0;
}
.quote-step-bullet {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 160px;
  cursor: default;
}
.quote-step-bullet .bullet {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #9ca3af;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e5e7eb;
  transition: all .3s;
}
.quote-step-bullet .bullet-label {
  font-size: 11px;
  font-weight: 500;
  color: #9ca3af;
  text-align: center;
  transition: color .3s;
  white-space: nowrap;
}
.quote-step-bullet.active .bullet {
  background: linear-gradient(135deg, #2dd4a8, #20b090);
  border-color: #2dd4a8;
  color: #fff;
  box-shadow: 0 4px 14px rgba(45,212,168,.4);
}
.quote-step-bullet.active .bullet-label { color: #2dd4a8; font-weight: 600; }
.quote-step-bullet.done .bullet {
  background: #2dd4a8;
  border-color: #2dd4a8;
  color: #fff;
}
.quote-step-bullet.done .bullet-label { color: #2dd4a8; }

/* ---- Card wizard ---- */
.quote-wizard {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(17,24,39,.08);
  border: 1px solid rgba(0,0,0,.06);
  overflow: hidden;
}

.quote-step-panel {
  display: none;
  padding: 40px 40px 32px;
  animation: qFadeIn .3s ease;
}
.quote-step-panel.active { display: block; }

@keyframes qFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.quote-step-panel h2 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 6px;
}
.quote-step-panel .step-subtitle {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 28px;
}

/* ---- Form grid ---- */
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.quote-grid .full { grid-column: 1 / -1; }

/* ---- Form group ---- */
.qf-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.qf-group label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}
.qf-group .req { color: #f87171; margin-left: 2px; }

.qf-input,
.qf-select,
.qf-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #1a1a2e;
  background: #fafafa;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.qf-input:focus,
.qf-select:focus,
.qf-textarea:focus {
  border-color: #2dd4a8;
  box-shadow: 0 0 0 3px rgba(45,212,168,.15);
  background: #fff;
}
.qf-input.error,
.qf-select.error,
.qf-textarea.error {
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgba(248,113,113,.12);
}
.qf-textarea { resize: vertical; min-height: 100px; }
.qf-select { cursor: pointer; }

.qf-error {
  font-size: 11.5px;
  color: #ef4444;
  display: none;
  margin-top: 2px;
}
.qf-error.visible { display: block; }

/* ---- Cards choix projet ---- */
.quote-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 4px;
}
.qf-card-option {
  position: relative;
}
.qf-card-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.qf-card-option label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 10px;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  background: #fafafa;
  cursor: pointer;
  font-size: 12.5px;
  font-weight: 500;
  color: #374151;
  text-align: center;
  transition: all .2s;
  line-height: 1.3;
  user-select: none;
}
.qf-card-option label i {
  font-size: 20px;
  color: #9ca3af;
  transition: color .2s;
}
.qf-card-option input:checked + label {
  border-color: #2dd4a8;
  background: rgba(45,212,168,.07);
  color: #1a1a2e;
  box-shadow: 0 4px 12px rgba(45,212,168,.2);
}
.qf-card-option input:checked + label i { color: #2dd4a8; }
.qf-card-option label:hover {
  border-color: #2dd4a8;
  background: rgba(45,212,168,.04);
}

/* ---- Radio group ---- */
.qf-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.qf-radio-option {
  position: relative;
}
.qf-radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.qf-radio-option label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 30px;
  background: #fafafa;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  transition: all .2s;
  user-select: none;
}
.qf-radio-option input:checked + label {
  border-color: #2dd4a8;
  background: rgba(45,212,168,.1);
  color: #0d7a5f;
  font-weight: 600;
}
.qf-radio-option label:hover { border-color: #2dd4a8; }

/* ---- Checkbox consent ---- */
.qf-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}
.qf-checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid #d1d5db;
  border-radius: 4px;
  cursor: pointer;
  accent-color: #2dd4a8;
  margin-top: 2px;
}
.qf-checkbox-row label {
  font-size: 13px;
  color: #6b7280;
  cursor: pointer;
  line-height: 1.5;
}
.qf-checkbox-row label a { color: #2dd4a8; }

/* ---- Conditional fields ---- */
.qf-conditional { display: none; }
.qf-conditional.visible { display: contents; }

/* ---- Navigation buttons ---- */
.quote-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px 32px;
  border-top: 1px solid #f3f4f6;
  gap: 12px;
}
.quote-nav-left { flex: 1; }
.quote-nav-right { display: flex; gap: 12px; }

.qbtn {
  padding: 12px 26px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.qbtn-secondary {
  background: #f3f4f6;
  color: #374151;
}
.qbtn-secondary:hover { background: #e5e7eb; }
.qbtn-primary {
  background: linear-gradient(135deg, #2dd4a8, #20b090);
  color: #fff;
  box-shadow: 0 4px 14px rgba(45,212,168,.3);
}
.qbtn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(45,212,168,.45);
}
.qbtn-primary:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

/* ---- Overlay confirmation ---- */
.quote-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.55);
  backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.quote-overlay.show { display: flex; }
.quote-overlay-card {
  background: #fff;
  border-radius: 24px;
  padding: 50px 44px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 30px 80px rgba(0,0,0,.18);
  animation: qFadeIn .4s ease;
}
.quote-overlay-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2dd4a8, #20b090);
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(45,212,168,.35);
}
.quote-overlay-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}
.quote-overlay-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}
.quote-overlay-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #e5e7eb;
  border-top-color: #2dd4a8;
  border-radius: 50%;
  animation: spin .8s linear infinite;
  margin: 20px auto 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Responsive ---- */
@media (max-width: 640px) {
  .quote-page { padding-top: 80px; }
  .quote-step-panel { padding: 28px 20px 20px; }
  .quote-nav { padding: 18px 20px 24px; flex-wrap: wrap; }
  .quote-grid { grid-template-columns: 1fr; }
  .quote-grid .full { grid-column: 1; }
  .quote-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-progress::before { width: calc(100% - 40px); }
  .quote-step-bullet .bullet-label { font-size: 10px; }
}

/* Fix: inline-flex ne doit pas ecraser l'attribut hidden sur les boutons */
.qbtn[hidden] { display: none !important; }

/* Réserve l'espace du header avant injection (évite le layout shift) */
.site-header-slot { min-height: 88px; }
