/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: linear-gradient(135deg, #fef7f0 0%, #fdf4e8 100%);
    overflow-x: hidden;
}
/* Utils */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.contact-cta {
    font-size: 1.2rem;
    display: inline-block;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    min-width: 360px;
    justify-content: flex-end;
    transition: all 0.3s ease;
}

.nav-menu-left {
    justify-content: flex-start;
    min-width: auto;
}

.nav-menu-right {
    justify-content: flex-end;
}

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    align-content: center;
}

.nav-link:hover {
    color: #ff6b35;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 0px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #4a5568;
    margin: 2.5px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fef7f0 0%, #fdf4e8 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    z-index: 1;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-main {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    padding-top: 4rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
    animation: badge-float 3s ease-in-out infinite;
}

.badge-icon {
    font-size: 1.1rem;
}

@keyframes badge-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #2d3748;
}

.hero-orange {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-black {
    color: #2d3748;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-desc {
    font-size: 1.1rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.hero-btn-primary:hover {
    background: linear-gradient(135deg, #e55a2b, #e67e22);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.hero-btn-secondary {
    background: white;
    color: #2d3748;
    border: 2px solid #e2e8f0;
}

.hero-btn-secondary:hover {
    border-color: #ff6b35;
    color: #ff6b35;
    transform: translateY(-2px);
}

.arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.hero-btn-primary:hover .arrow {
    transform: translateX(3px);
}

.play {
    font-size: 0.8rem;
    color: #ff6b35;
}

/* Bloc stats hero */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    margin-bottom: 3.5rem;
    background: #f3f4f6;
    border-radius: 0 0 32px 32px;
    padding: 2.5rem 0 2rem 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.03);
}

.hero-stat {
    text-align: center;
    min-width: 180px;
}

.stat-number {
    display: block;
    font-size: 2.4rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Animations 3D */
.hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.scene-3d {
    position: relative;
    width: 100%;
    height: 100%;
}

.main-sphere {
    position: absolute;
    top: 20%;
    right: 15%;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffb347);
    border-radius: 50%;
    animation: sphere-rotate 20s linear infinite;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

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

.geometric-shape {
    position: absolute;
    opacity: 0.7;
    animation: float-shape 6s ease-in-out infinite;
}

.cube {
    top: 30%;
    left: 10%;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    transform: rotate(45deg);
    animation-delay: 0s;
}

.pyramid {
    top: 60%;
    right: 20%;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 50px solid #f7931e;
    animation-delay: 2s;
}

.torus {
    bottom: 30%;
    left: 20%;
    width: 80px;
    height: 40px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    animation-delay: 4s;
}

.hexagon {
    top: 15%;
    left: 60%;
    width: 50px;
    height: 50px;
    background: linear-gradient(60deg, #ff6b35, #f7931e);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation-delay: 1s;
}

.orbit {
    position: absolute;
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    animation: orbit-rotate 15s linear infinite;
}

.orbit-1 {
    top: 25%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
}

.orbit-2 {
    top: 50%;
    right: 20%;
    width: 150px;
    height: 150px;
    animation-delay: 5s;
}

.orbit-3 {
    bottom: 20%;
    left: 30%;
    width: 100px;
    height: 100px;
    animation-delay: 10s;
}

@keyframes orbit-rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Suppression des effets de particules */
.particle,
.particle-system {
    display: none !important;
    animation: none !important;
}

/* Décorations */
.hero-decor {
    position: absolute;
    opacity: 0.6;
}

.decor-badge {
    top: 15%;
    left: 5%;
    width: 40px;
    height: 40px;
    background: #ff6b35;
    border-radius: 8px;
    animation: decor-badge-float 4s ease-in-out infinite;
}

@keyframes decor-badge-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.decor-circle {
    top: 70%;
    right: 10%;
    width: 60px;
    height: 60px;
    border: 3px solid #ff6b35;
    border-radius: 50%;
    animation: decor-circle-float 5s ease-in-out infinite;
}

@keyframes decor-circle-float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

.decor-triangle {
    bottom: 20%;
    left: 15%;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid #ff8c42;
    animation: decor-triangle-float 6s ease-in-out infinite;
}

@keyframes decor-triangle-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(10deg); }
}

.decor-orb {
    top: 40%;
    right: 5%;
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    animation: decor-orb-float 7s ease-in-out infinite;
}

@keyframes decor-orb-float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-8px) scale(1.2); }
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 3rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #718096;
    max-width: 630px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.section-subtitle-orange {
    color: #ff6b35;
    font-weight: 600;
    background: linear-gradient(90deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-top: 3.2rem;
    margin-bottom: 0;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: box-shadow 0.18s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover {
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.18);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.service-card:hover .service-icon {
    /* aucune animation */
}

.service-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.8rem;
}

.service-content p {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    transform: translateZ(0);
}

.service-link:hover {
    color: #e55a2b;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    transform: translateZ(0);
}

.service-link:hover::after {
    width: 100%;
}

/* Performance Section */
.performance {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fef7f0 0%, #fdf4e8 100%);
}

.performance-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 1rem;
}

.performance-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.performance-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.performance-stat {
    text-align: center;
    padding: 2rem;
}

.perf-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.perf-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.8rem;
}

.perf-desc {
    color: #718096;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #718096;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 500;
}

/* AI Animation Styles */
.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px; /* 400px * 1.5 */
}

.hero-animation {
    position: relative;
    height: 400px; /* 400px * 1.5 */
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px; /* 1000px * 1.5 pour garder l'effet 3D */
}

.scene-3d {
    position: relative;
    width: 300px; /* 300px * 1.5 */
    height: 300px; /* 300px * 1.5 */
    transform-style: preserve-3d;
    animation: scene-rotate 20s linear infinite;
}

.main-sphere {
    position: absolute;
    width: 120px; /* 120px * 1.5 */
    height: 120px; /* 120px * 1.5 */
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ffb347);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: sphere-float 6s ease-in-out infinite;
    box-shadow: 0 30px 90px rgba(255, 107, 53, 0.4);
}

.main-sphere::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%; /* 60% * 1.5 */
    height: 60%; /* 60% * 1.5 */
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent);
    animation: sphere-pulse 4s ease-in-out infinite;
}

.geometric-shape {
    position: absolute;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    animation: shape-orbit 15s linear infinite;
}

.cube {
    width: 40px;
    height: 40px;
    top: 20px;
    left: 20px;
    transform: rotateX(45deg) rotateY(45deg);
    animation: cube-spin 8s linear infinite;
}

.pyramid {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid #ff6b35;
    top: 200px;
    right: 30px;
    animation: pyramid-bounce 10s ease-in-out infinite;
}

.torus {
    width: 50px;
    height: 50px;
    border: 10px solid #f7931e;
    border-radius: 50%;
    background: transparent;
    top: 30px;
    right: 15px;
    animation: torus-roll 12s linear infinite;
}

.hexagon {
    width: 45px;
    height: 45px;
    background: linear-gradient(60deg, #ff6b35, #f7931e);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    bottom: 50px;
    left: 40px;
    animation: hexagon-rotate 14s ease-in-out infinite;
}

.orbit {
    position: absolute;
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    border-style: dashed;
}

.orbit-1 {
    width: 200px;
    height: 200px;
    top: 50px;
    left: 50px;
    animation: orbit-rotate 25s linear infinite;
}

.orbit-2 {
    width: 300px;
    height: 300px;
    top: -25px;
    left: -25px;
    animation: orbit-rotate 35s linear infinite reverse;
}

.orbit-3 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    animation: orbit-rotate 45s linear infinite;
    border-color: rgba(247, 147, 30, 0.15);
}

.particle-system {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, #ff6b35, transparent);
}

.particle-small {
    width: 3px;
    height: 3px;
    animation: particle-float-small 8s ease-in-out infinite;
}

.particle-medium {
    width: 6px;
    height: 6px;
    animation: particle-float-medium 12s ease-in-out infinite;
}

.particle-large {
    width: 9px;
    height: 9px;
    animation: particle-float-large 16s ease-in-out infinite;
}

@keyframes scene-rotate {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

@keyframes sphere-float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px) rotateX(0deg); }
    50% { transform: translate(-50%, -50%) translateY(-15px) rotateX(180deg); }
}

@keyframes sphere-pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

@keyframes cube-spin {
    from { transform: rotateX(45deg) rotateY(45deg) rotateZ(0deg); }
    to { transform: rotateX(45deg) rotateY(45deg) rotateZ(360deg); }
}

@keyframes pyramid-bounce {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateY(180deg); }
}

@keyframes torus-roll {
    from { transform: rotateZ(0deg) rotateX(0deg); }
    to { transform: rotateZ(360deg) rotateX(360deg); }
}

@keyframes hexagon-rotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

@keyframes orbit-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes particle-float-small {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.7; }
    25% { transform: translateY(-15px) translateX(8px); opacity: 1; }
    50% { transform: translateY(-8px) translateX(-4px); opacity: 0.8; }
    75% { transform: translateY(-20px) translateX(12px); opacity: 0.9; }
}

@keyframes particle-float-medium {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); opacity: 0.6; }
    33% { transform: translateY(-18px) translateX(-8px) rotate(120deg); opacity: 1; }
    66% { transform: translateY(-12px) translateX(15px) rotate(240deg); opacity: 0.8; }
}

@keyframes particle-float-large {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.5; }
    50% { transform: translateY(-25px) scale(1.2); opacity: 1; }
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fef7f0 0%, #fdf4e8 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.contact-profile-pic {
  margin-bottom: 0;
  min-width: 72px;
}
@media (max-width: 700px) {
  .contact-info {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 0rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #718096;
}

.contact-item i {
    color: #ff6b35;
    font-size: 1.2rem;
    width: 20px;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e55a2b, #e67e22);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
}

/* Footer moderne */
.footer {
    background: #fff;
    color: #222;
    padding: 4rem 0 2rem;
    border-top: 1px solid #ececec;
    font-family: 'Inter', Arial, sans-serif;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}
.footer-section h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 1.1rem;
    letter-spacing: 0.01em;
}
.footer-section p,
.footer-section ul {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.7;
}
.footer-section ul {
    list-style: none;
    padding: 0;
}
.footer-section a {
    color: #444;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-section a:hover {
    color: #ff6b35;
}
.social-links {
    display: flex;
    gap: 0.7rem;
    margin-top: 0.5rem;
}
.social-links a {
    width: 38px;
    height: 38px;
    background: #f3f3f3;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    color: #444;
    font-size: 1.2rem;
}
.social-links a:hover {
    background: #ff6b35;
    color: #fff;
    transform: translateY(-2px) scale(1.08);
}
.footer-bottom {
    border-top: 1px solid #ececec;
    padding-top: 1.5rem;
    text-align: center;
    color: #888;
    font-size: 0.98rem;
    letter-spacing: 0.01em;
}

/* Cartes sur fond blanc pur */
.service-card,
.cas-client,
.faq-item {
    background: #fff !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Section partenaires discrète pour SEO */
.partners {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.partners h4 {
    font-size: 0.1px;
    margin: 0;
    padding: 0;
}

.partners ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.partners li {
    margin: 0;
    padding: 0;
}

.partners a {
    font-size: 0.1px;
    color: transparent;
    text-decoration: none;
    display: inline-block;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 900px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-main {
        padding-top: 2.5rem;
    }
    
    .hero-bg-animation {
        min-height: 400px;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .performance-stats {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-main {
        padding-top: 1.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 0.7rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 0.7rem;
        align-items: center;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Suppression des styles d'animation d'apparition */

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Cas Clients Section */
.cas-clients {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fef7f0 0%, #fdf4e8 100%);
    position: relative;
    overflow: hidden;
}

.cas-clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.cas-client {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s, transform 0.2s;
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
}

.cas-client:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.10);
}

.cas-client::before,
.cas-client:hover::before {
    /* Désactiver l'effet shine gourmand */
    display: none !important;
}

.cas-client h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #2d3748, #4a5568);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.cas-client-marque {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.cas-client p {
    color: #718096;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.cas-client p:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: #2d3748;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* FAQ Section */
.faq-ia {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: linear-gradient(135deg, #fef7f0 0%, #fdf4e8 100%);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-item:hover::before {
    transform: scaleY(1);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
    position: relative;
    padding-left: 1rem;
}

.faq-item p {
    color: #718096;
    line-height: 1.7;
    margin: 0;
    padding-left: 1rem;
}

/* Responsive Design pour les nouvelles sections */
@media (max-width: 900px) {
    .cas-clients-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-list {
        grid-template-columns: 1fr;
    }
    
    .cas-client {
        padding: 2rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
}

@media (max-width: 600px) {
    .cas-client h3 {
        font-size: 1.2rem;
    }
    
    .faq-item h3 {
    font-size: 1.1rem;
    }
} 

/* Animations supplémentaires */
/*
@keyframes particle-float {}
*/

@keyframes float-shape {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    33% { 
        transform: translateY(-15px) rotate(120deg); 
    }
    66% { 
        transform: translateY(-8px) rotate(240deg); 
    }
}

@keyframes badge-float {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
    }
    50% { 
        transform: translateY(-5px) scale(1.02); 
    }
}

/* Effet de brillance pour les cartes */
@keyframes card-shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

/* Animation d'apparition progressive */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation de pulsation pour les éléments importants */
@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.3); 
    }
    50% { 
        box-shadow: 0 0 30px rgba(255, 107, 53, 0.5); 
    }
}

/* Animation de rotation pour les icônes */
@keyframes icon-rotate {
    from { 
        transform: rotate(0deg); 
    }
    to { 
        transform: rotate(360deg); 
    }
}

/* Effet de hover amélioré pour les liens */
.nav-link:hover {
    color: #ff6b35;
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 100%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

/* Animation des boutons au hover */
.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.hero-btn-primary:hover {
    background: linear-gradient(135deg, #e55a2b, #e67e22);
}

.hero-btn-secondary:hover {
    border-color: #ff6b35;
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.05);
}

/* Animation des statistiques */
.hero-stat:hover .stat-number {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Effet de parallaxe pour les éléments de fond */
    .hero-animation {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.geometric-shape:hover {
    animation-play-state: paused;
    transform: scale(1.2);
}

/* Effet de focus amélioré pour l'accessibilité */
/*.nav-link:focus,
.hero-btn:focus,
.service-card:focus,
.cas-client:focus,
.faq-item:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}*/

/* Animation de chargement pour les sections */
.cas-clients,
.faq-ia {
    animation: fadeInUp 1s ease-out;
}

/* Effet de transition fluide pour tous les éléments */
* {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Animation spéciale pour les marques */
.cas-client-marque {
    position: relative;
    display: inline-block;
}

.cas-client-marque::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    transition: width 0.3s ease;
}

.cas-client-marque:hover::after {
    width: 100%;
}

/* Animation des icônes de service */
.service-icon {
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.service-card:hover .service-icon::before {
    opacity: 1;
    animation: card-shine 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animation des questions FAQ */
.faq-item h3::before {
    transition: all 0.3s ease;
}

.faq-item:hover h3::before {
    transform: scale(1.5);
    opacity: 1;
    box-shadow: 0 0 8px rgba(255, 107, 53, 0.4);
}

/* Effet de profondeur pour les cartes */
.cas-client,
.faq-item,
.service-card {
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

/* Animation de scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* Responsive animations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (max-width: 768px) {
    .cas-client:hover,
    .faq-item:hover,
    .service-card:hover {
        transform: translateY(-5px);
    }
    
    .hero-btn:hover {
        transform: translateY(-2px);
    }
} 

/* Titre Cas clients stratégiques */
#cas-clients-title {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    font-size: 2.8rem;
    font-weight: 800;
    color: #181818;
    letter-spacing: -1px;
}

/* Espace entre les sections principales */
section {
    margin-bottom: 5rem;
}

.cas-clients {
    margin-top: 0;
    padding-top: 0;
}

/* Responsive */
@media (max-width: 900px) {
.hero-stats {
    flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 0 1.5rem 0;
    }
    #cas-clients-title {
        font-size: 2rem;
        padding-top: 1.5rem;
        margin-top: 2rem;
    }
    section {
        margin-bottom: 3rem;
    }
} 

/* Suppression de tous les styles liés à l'ancien fond 3D/particules */

/* Bloc stats plus contrasté et effet glassmorphism */
.hero-stats {
    background: rgba(255,255,255,0.65) !important; /* Plus transparent */
    box-shadow: 0 2px 16px rgba(255, 107, 53, 0.07), 0 1.5px 12px rgba(0,0,0,0.04);
    backdrop-filter: blur(18px) saturate(1.2);
    border-radius: 2.5rem;
    border: 1px solid rgba(200,200,200,0.10);
    transition: background 0.3s, box-shadow 0.3s;
}

.stat-label {
    color: #3a3a3a;
}

@media (max-width: 900px) {
    .hero-stats {
        border-radius: 1.2rem;
    }
} 

.hero-stats-alt {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin: 2.5rem 0 3.5rem 0;
    background: none;
    box-shadow: none;
    padding: 0;
}

.hero-stat-alt {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 140px;
}

.stat-number-alt {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 0.3rem;
    letter-spacing: -1px;
}

.stat-label-alt {
    font-size: 1.08rem;
    color: #2d3748;
    font-weight: 500;
    opacity: 0.85;
    text-align: center;
}

.stat-separator {
    width: 2px;
    height: 48px;
    background: linear-gradient(180deg, #2d3748 0%, #000000 100%);
    border-radius: 2px;
    opacity: 0.18;
    margin: 0 0.5rem;
}

@media (max-width: 700px) {
    .hero-stats-alt {
        flex-direction: column;
        gap: 1.2rem;
    }
    .stat-separator {
        width: 40px;
        height: 2px;
        /* background: linear-gradient(90deg, #ff6b35 0%, #f7931e 100%); */
        margin: 0.5rem 0;
    }
} 

.perf-anim {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.7rem;
    font-size: 2.2rem;
    height: 2.5rem;
    gap: 0.3rem;
    pointer-events: none;
    user-select: none;
}

.perf-anim-gear span {
    display: inline-block;
    animation: perf-gear-spin 2.5s linear infinite;
}
.perf-anim-gear span:last-child {
    font-size: 1.5rem;
    margin-left: -0.5rem;
    animation-direction: reverse;
    animation-duration: 3.2s;
}

@keyframes perf-gear-spin {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}

.perf-anim-users span {
    display: inline-block;
    opacity: 0.7;
    transform: scale(0.9);
    animation: perf-users-fade 2.2s ease-in-out infinite alternate;
}
.perf-anim-users span:last-child {
    opacity: 1;
    transform: scale(1.1);
    animation-delay: 1.1s;
}

@keyframes perf-users-fade {
    0% { opacity: 0.5; transform: scale(0.9);}
    100% { opacity: 1; transform: scale(1.15);}
}

.perf-anim-clock span {
    display: inline-block;
    animation: perf-clock-tick 4s linear infinite;
}

@keyframes perf-clock-tick {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
} 

.perf-anim-money {
    flex-direction: column;
    gap: 0;
    margin-bottom: 0.5rem;
    height: 2.5rem;
    position: relative;
    align-items: center;
}
.perf-anim-money span {
    display: block;
    font-size: 2rem;
    margin-top: -1.1rem;
    margin-bottom: -1.1rem;
    opacity: 0.7;
    transform: translateY(10px) scale(0.95);
    animation: perf-money-stack 2s ease-in-out infinite;
}
.perf-anim-money span:nth-child(1) {
    animation-delay: 0s;
    z-index: 1;
    margin-left: 0.5rem;
    font-size: 1.65rem;
}
.perf-anim-money span:nth-child(2) {
    animation-delay: 0.7s;
    z-index: 2;
    opacity: 0.85;
    margin-left: 0.2rem;
    font-size: 1.8rem;
}
.perf-anim-money span:nth-child(3) {
    animation-delay: 1.4s;
    z-index: 3;
    opacity: 1;
    font-size: 2rem;
    margin-left: 0;
}

@keyframes perf-money-stack {
    0% { 
        opacity: 0; 
        transform: translateY(20px) scale(0.8);
    }
    20% { 
        opacity: 1; 
        transform: translateY(0) scale(1);
    }
    80% { 
        opacity: 1; 
        transform: translateY(0) scale(1);
    }
    100% { 
        opacity: 0; 
        transform: translateY(-10px) scale(0.9);
    }
} 

.cookie-fab {
    position: fixed !important;
    left: 2rem;
    bottom: 2rem;
    z-index: 2000;
    background: #fff;
    border: 1.5px solid #eee;
    border-radius: 50%;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s;
    padding: 0;
}
.cookie-fab:hover, .cookie-fab:focus {
    box-shadow: 0 8px 32px rgba(255,107,53,0.18);
    transform: translateY(-2px) scale(1.07);
    outline: 2px solid #ff6b35;
}
.cookie-fab img {
    width: 32px;
    height: 32px;
    pointer-events: none;
}
@media (max-width: 700px) {
    .cookie-fab {
        right: 1rem;
        bottom: 1rem;
        width: 48px;
        height: 48px;
    }
    .cookie-fab img {
        width: 24px;
        height: 24px;
    }
} 

.service-modal-overlay {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4000;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(10px);
}

.service-modal {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 8px 40px rgba(255,107,53,0.12);
    padding: 3.5rem 2.5rem 2.5rem 2.5rem;
    color: #2d3748;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    outline: none;
    position: relative;
    z-index: 4100;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    padding: 0.5rem;
    z-index: 4200;
}

.service-modal-close:hover {
    color: #ff6b35;
}

.service-modal-illustration {
    font-size: 3rem;
    margin-bottom: 1.2rem;
}

.service-modal-content {
    margin-top: 1rem;
    color: #2d3748;
    font-size: 0.75rem;
    line-height: 1.7;
    text-align: left;
    width: 100%;
} 

/* --- NAVIGATION MOBILE --- */
@media (max-width: 900px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100vw;
        background: rgba(255,255,255,0.98);
        box-shadow: 0 8px 30px rgba(0,0,0,0.08);
        z-index: 2000;
        padding: 2rem 0 1rem 0;
        transition: max-height 0.4s cubic-bezier(.4,0,.2,1);
        max-height: 0;
        overflow: hidden;
    }
    .nav-menu.open {
        display: flex;
        align-items: center;
        max-height: 500px;
        animation: fadeInDown 0.4s;
    }
    .nav-toggle {
        display: flex;
        z-index: 2100;
    }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.nav-cta {
    border-radius: 8px;
    padding: 0.5rem 1.2rem;
    font-weight: 700;
    margin-left: 1rem;
    /* box-shadow: 0 4px 20px rgba(255,107,53,0.15);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s; */
}
/*.nav-cta:hover {
    background: linear-gradient(135deg,#e55a2b,#e67e22) !important;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 30px rgba(255,107,53,0.25);
} */
@media (max-width: 600px) {
    .hero-btn.hero-btn-primary {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
        width: 100%;
        margin-top: 1.2rem;
        box-shadow: 0 8px 30px rgba(255,107,53,0.18);
    }
} 

.contact-profile-pic {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1rem;
}
.contact-profile-pic img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.whatsapp-link {
  position: relative;
  display: inline-block;
}
.whatsapp-qr {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 120%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 10px;
  z-index: 100;
  min-width: 180px;
}
.whatsapp-link:hover .whatsapp-qr,
.whatsapp-link:focus .whatsapp-qr {
  display: block;
}
.whatsapp-qr img {
  width: 160px;
  height: 160px;
  display: block;
} 

.contact-link {
    display: flex;
    align-items: center;
    color: #444;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.2s;
}
.contact-link:hover,
.contact-link:focus {
    color: #ff6b35;
}
.contact-link span {
    padding-left: 5px;
}
.contact-link .whatsapp-qr {
    margin-left: 0.5rem;
}
.contact-icon {
    width: 20px;
    height: 20px;
    margin-right: 0.7rem;
    display: inline-block;
    vertical-align: middle;
} 

.logo-carousel-section {
    padding: 2.5rem 0 2rem 0;
    margin-bottom: 2rem;
}
.logo-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
}
.logo-carousel::before,
.logo-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.logo-carousel::before {
    left: 0;
    background: linear-gradient(to right, #fef7ee 0%, rgba(254,247,238,0) 100%);
}
.logo-carousel::after {
    right: 0;
    background: linear-gradient(to left, #fef7ee 0%, rgba(254,247,238,0) 100%);
}
.logo-track {
    display: flex;
    align-items: center;
    animation: scroll-logos 40s linear infinite;
    will-change: transform;
}
.logo-track img {
    height: 60px;
    margin: 0 2.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 0.5rem 1.5rem;
    object-fit: contain;
    transition: box-shadow 0.2s, filter 0.2s;
    filter: drop-shadow(0 1px 4px rgba(0,0,0,0.08));
}
.logo-track img:hover {
    box-shadow: 0 8px 32px rgba(255,107,53,0.18);
    filter: drop-shadow(0 4px 16px rgba(255,107,53,0.10));
}
/* Logos avec fond noir */
.logo-track img[src*="cartier"],
.logo-track img[src*="peugeot"],
.logo-track img[src*="totalenergies"],
.logo-track img[src*="bleu-petrol"] {
    background: #000;
    padding: 0.3rem;
}
.logo-track a {
    text-decoration: none;
    color: inherit;
}
@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (max-width: 700px) {
    .logo-track img {
        height: 38px;
        margin: 0 1.2rem;
        padding: 0.3rem 0.7rem;
    }
} 

.confidentialite-section {
    /* background: #fff;
    padding: 2.5rem 0 2rem 0;
    border-top: 1px solid #f3f3f3;
    border-bottom: 1px solid #f3f3f3; */
}
.confidentialite-bloc {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #2d3748;
}
.confidentialite-bloc h3 {
    color: #ff6b35;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.confidentialite-bloc p {
    font-size: 1.08rem;
    line-height: 1.7;
    color: #444;
} 