:root {
    --button-gradient: linear-gradient(90deg, #6a3093, #a044ff);
    --button-gradient-hover: linear-gradient(90deg, #7b3aad, #b35aff);
    --button-glow: rgba(64, 224, 255, 0.5);
    --button-glow-hover: rgba(64, 224, 255, 0.8);
    --animation-timing: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    overflow-x: hidden;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* 0.5 = 50% de noir, donc assombri */
    z-index: 1;
}

.hero>* {
    position: relative;
    z-index: 2;
    /* Pour que le texte apparaisse par-dessus l'overlay */
}
.hero-content {
    max-width: 900px;
    width: 90%;
    text-align: center;
    color: #fff;
    z-index: 2;
    opacity: 0;
    transform: perspective(1000px) rotateX(2deg);
    animation: fadeInContent 1s var(--animation-timing) 0.5s forwards;
    padding: 3rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s var(--animation-timing) 0.8s forwards;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s var(--animation-timing) 1.2s forwards;
}

/* Remplacer uniquement ces styles de bouton dans votre fichier CSS existant */

/* Remplacer ces styles dans votre fichier CSS */

/* Centrage du bouton */
.button-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 2rem;
    height: 60px;
}

.cta-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--button-gradient);
    border: none;
    padding: 0;
    width: 0;
    height: 60px;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 0 0 0 var(--button-glow);
    outline: none;
    animation: buttonAppear 1.5s var(--animation-timing) 2s forwards,
               buttonPulse 2s var(--animation-timing) 3.5s infinite;
    transform-origin: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.button-text {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    animation: fadeInText 0.5s ease-out 2.8s forwards;
    letter-spacing: 0.5px;
    width: 100%;
    height: 100%;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

/* Effet de particules brillantes pour le hover */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--button-gradient-hover);
    opacity: 0;
    transition: opacity 0.4s ease-out;
    z-index: 1;
}

/* Nouveau pseudo-élément pour l'effet de particules */
.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 60%);
    opacity: 0;
    transform: scale(0.5);
    z-index: 1;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
    pointer-events: none;
}

/* Effets de hover améliorés */
.cta-button:hover {
    transform: scale(1.07) translateY(-3px);
    box-shadow: 0 10px 25px rgba(106, 48, 147, 0.5), 0 0 20px 8px var(--button-glow-hover);
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button:hover::after {
    opacity: 0.3;
    transform: scale(1) rotate(25deg);
    animation: particleEffect 2s infinite;
}

.cta-button:hover .button-text {
    letter-spacing: 1px;
}

.cta-button:active {
    transform: scale(0.98) translateY(2px);
    box-shadow: 0 5px 15px rgba(106, 48, 147, 0.3), 0 0 10px 4px var(--button-glow);
    transition: transform 0.1s, box-shadow 0.1s;
}

/* Animation des particules au survol */
@keyframes particleEffect {
    0% {
        opacity: 0.3;
        transform: scale(1) rotate(25deg);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1) rotate(35deg);
    }
    100% {
        opacity: 0.3;
        transform: scale(1) rotate(25deg);
    }
}

@keyframes fadeInContent {
    0% {
        opacity: 0;
        transform: perspective(1000px) rotateX(2deg);
    }
    100% {
        opacity: 1;
        transform: perspective(1000px) rotateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation du bouton ajustée pour garantir que le texte reste centré */
@keyframes buttonAppear {
    0% {
        width: 60px;
        height: 60px;
    }
    50% {
        width: 60px;
        height: 60px;
    }
    100% {
        width: 380px;
        height: 60px;
    }
}

@keyframes fadeInText {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes buttonPulse {
    0% {
        box-shadow: 0 0 0 0 var(--button-glow);
    }
    50% {
        box-shadow: 0 0 15px 5px var(--button-glow);
    }
    100% {
        box-shadow: 0 0 0 0 var(--button-glow);
    }
}



/* CSS pour la section Innovation */
:root {
    --dark-blue: #050214;
    --cyan-border: #1ABFFD;
    --purple-dot: #9747FF;
}

.innovation-section {
    background-color: var(--dark-blue);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.innovation-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.innovation-section .row {
    display: flex;
    flex-wrap: wrap;
}

.innovation-section .col {
    flex: 0 0 50%;
    padding: 0 15px;
}

/* Colonne de texte */
.innovation-section .text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.innovation-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    transform: translateY(30px);
    opacity: 0;
    color: white;
}

.innovation-section .section-paragraph {
    font-size: 1rem;
    margin-bottom: 20px;
    transform: translateY(30px);
    opacity: 0;
    font-weight: 400;
    color: white;
}

.innovation-section .section-paragraph:last-child {
    margin-bottom: 0;
}

/* Colonne d'image */
.innovation-section .image-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.innovation-section .earth-container {
    width: 100%;
    max-width: 500px;
    height: 500px;
    position: relative;
    background-image: url('earth-night.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.innovation-section .frame {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    border: 2px solid var(--cyan-border);
    border-radius: 10px;
    transform: rotate(45deg) scale(0);
    opacity: 0;
}

.innovation-section .dot {
    position: absolute;
    background-color: var(--purple-dot);
    border-radius: 50%;
    transform: scale(0);
    opacity: 0;
}

.innovation-section .dot-1 {
    top: 25%;
    left: 25%;
    width: 20px;
    height: 20px;
}

.innovation-section .dot-2 {
    top: 40%;
    left: 60%;
    width: 15px;
    height: 15px;
}

.innovation-section .dot-3 {
    top: 65%;
    right: 20%;
    width: 30px;
    height: 30px;
}

/* Animations */
.innovation-section .section-title.animate {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.innovation-section .section-paragraph.animate {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.innovation-section .section-paragraph.animate:nth-of-type(1) {
    animation-delay: 0.3s;
}

.innovation-section .section-paragraph.animate:nth-of-type(2) {
    animation-delay: 0.5s;
}

.innovation-section .frame.animate {
    animation: frameAppear 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.7s;
}

.innovation-section .dot.animate {
    animation: dotAppear 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.innovation-section .dot-1.animate {
    animation-delay: 1.1s;
}

.innovation-section .dot-2.animate {
    animation-delay: 1.3s;
}

.innovation-section .dot-3.animate {
    animation-delay: 1.5s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes frameAppear {
    0% {
        opacity: 0;
        transform: rotate(45deg) scale(0);
    }
    100% {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes dotAppear {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    60% {
        transform: scale(1.2);
    }
    80% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}



:root {
    --dark-blue: #050214;
    --dark-purple: #0F0A27;
    --light-purple: #9747FF;
    --glow-color: rgba(151, 71, 255, 0.3);
    --animation-timing: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pillars-section {
    background-color: var(--dark-blue);
    padding: 80px 0;
    color: white;
    overflow: hidden;
    position: relative;
}

.pillars-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pillars-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--animation-timing), transform 0.8s var(--animation-timing);
}

.pillars-section .section-title.animate {
    opacity: 1;
    transform: translateY(0);
}

.pillars-section .pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pillars-section .pillar-card {
    background-color: var(--dark-purple);
    border-radius: 10px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease-out, box-shadow 0.4s ease-out;
    opacity: 0;
    transform: translateY(30px);
}

.pillars-section .pillar-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.pillars-section .pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 0 1px rgba(151, 71, 255, 0.4), 0 5px 15px rgba(151, 71, 255, 0.2);
}

.pillars-section .icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.pillars-section .icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 10, 39, 0.8);
    border-radius: 50%;
    border: 2px solid var(--light-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
    transition: transform 0.4s ease-out;
}

.pillars-section .pillar-card:hover .icon {
    animation: pulse 2s infinite, rotate 0.6s ease-out;
}

.pillars-section .icon svg {
    width: 35px;
    height: 35px;
    color: var(--light-purple);
}

.pillars-section .pillar-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.pillars-section .pillar-description {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(151, 71, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(151, 71, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(151, 71, 255, 0);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}



:root {
    --dark-blue: #050214;
    --cyan-blue: #1ABFFD;
    --purple: #9747FF;
    --text-white: #ffffff;
    --code-bg: rgba(0, 10, 40, 0.6);
    --bounce-timing: cubic-bezier(0.34, 1.56, 0.64, 1);
}

.synergy-section {
    background-color: var(--dark-blue);
    color: var(--text-white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

/* Background graphic elements */
.background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Wireframe graphic element */
.wireframe-element {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%) scale(0);
    opacity: 0;
    width: 200px;
    height: 240px;
    border: 2px solid rgba(26, 191, 253, 0.2);
    border-radius: 12px;
}

.wireframe-line {
    position: absolute;
    left: 20px;
    height: 2px;
    background-color: rgba(26, 191, 253, 0.2);
    width: 100px;
}

.wireframe-line:first-child {
    top: 40px;
}

.wireframe-line:nth-child(2) {
    top: 60px;
}

.wireframe-box {
    position: absolute;
    top: 100px;
    left: 20px;
    width: 150px;
    height: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.wireframe-inner {
    background-color: rgba(26, 191, 253, 0.1);
    border: 1px solid rgba(26, 191, 253, 0.2);
    border-radius: 8px;
}

/* Circle shield element */
.circle-shield-element {
    position: absolute;
    top: 50%;
    left: 300px;
    transform: translateY(-50%) scale(0);
    opacity: 0;
    width: 180px;
    height: 180px;
}

.outer-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(26, 191, 253, 0.2);
    border-radius: 50%;
}

.middle-circle {
    position: absolute;
    top: 15%;
    left: 15%;
    width: 70%;
    height: 70%;
    border: 2px solid rgba(26, 191, 253, 0.3);
    border-radius: 50%;
}

.shield-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Content container */
.content-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.description-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.section-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Code overlay */
.code-overlay {
    position: absolute;
    top: 20px;
    right: 40px;
    width: 300px;
    background-color: var(--code-bg);
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(3px);
    font-family: monospace;
    text-align: left;
    border: 1px solid rgba(26, 191, 253, 0.3);
    overflow: hidden;
}

.code-header {
    background-color: rgba(26, 191, 253, 0.1);
    padding: 6px 12px;
    border-bottom: 1px solid rgba(26, 191, 253, 0.2);
}

.code-title {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.code-content {
    padding: 10px;
}

.code-content pre {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
}

/* Animations */
.wireframe-element.animate {
    animation: bounceIn 0.8s var(--bounce-timing) forwards;
    animation-delay: 0.2s;
}

.circle-shield-element.animate {
    animation: bounceIn 0.8s var(--bounce-timing) forwards;
    animation-delay: 0.5s;
}

.content-container.animate {
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 1.2s;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translateY(-50%) scale(0);
    }
    70% {
        opacity: 1;
        transform: translateY(-50%) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}




:root {
    --purple-button: #7e55e2;
    --purple-button-hover: #8c66f0;
    --dark-bg: #050214;
    --animation-timing: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.vision-section {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 80px 20px;
    overflow: hidden;
}
.vision-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* 0.5 = 50% de noir, donc assombri */
    z-index: 1;
}

.vision-section>* {
    position: relative;
    z-index: 2;
    /* Pour que le texte apparaisse par-dessus l'overlay */
}

.vision-content {
    position: relative;
    max-width: 800px;
    z-index: 2;
}

.vision-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.vision-description {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0;
    transform: translateY(30px);
}

.button-container {
    display: flex;
    justify-content: center;
    height: 60px;
}


.vision-button {
    position: relative;
    background-color: var(--purple-button);
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0;
    width: 0;  /* Sera modifié par l'animation */
    height: 60px;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.3s ease-out, background-color 0.3s ease-out;
}


.button-text {
    opacity: 0;
    white-space: nowrap;
    margin-right: 10px;
    padding: 0 20px; /* Ajout de padding horizontal au texte */
}


.arrow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.vision-button:hover {
    transform: scale(1.05);
    background-color: var(--purple-button-hover);
}

/* Animations */
.vision-title.animate {
    animation: fadeInUp 0.8s var(--animation-timing) forwards;
}

.vision-description.animate {
    animation: fadeInUp 0.8s var(--animation-timing) forwards;
    animation-delay: 0.3s;
}


.vision-button.animate-entry {
    animation: buttonAppear 1.5s var(--animation-timing) forwards;
    animation-delay: 0.8s;
}
.vision-button.animate-pulse {
    animation: buttonPulse 2s ease-in-out infinite;
    animation-fill-mode: both;  /* Préserve les styles de l'état final */
}
.button-text.animate {
    animation: fadeIn 0.5s ease-out forwards;
    animation-delay: 1.6s;
}

.arrow-icon.animate {
    animation: fadeIn 0.5s ease-out forwards;
    animation-delay: 1.8s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes buttonAppear {
    0% {
        width: 60px;
        height: 60px;
    }
    50% {
        width: 60px;
        height: 60px;
    }
    100% {
        width: 420px; /* Augmenté de 380px à 420px */
        height: 60px;
    }
}

@keyframes buttonPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(126, 85, 226, 0.4);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 0 0 10px rgba(126, 85, 226, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(126, 85, 226, 0);
    }
}

/* Responsive styles */
@media (max-width: 992px) {
    .vision-title {
        font-size: 2.4rem;
    }
    
    .vision-description {
        font-size: 1.1rem;
    }
    
    .vision-button {
        height: 55px;
    }
    
    @keyframes buttonAppear {
        0% {
            width: 55px;
            height: 55px;
        }
        50% {
            width: 55px;
            height: 55px;
        }
        100% {
            width: 340px;
            height: 55px;
        }
    }
}
@media (max-width: 992px) {
    @keyframes buttonAppear {
        0% {
            width: 55px;
            height: 55px;
        }
        50% {
            width: 55px;
            height: 55px;
        }
        100% {
            width: 380px; /* Augmenté de 340px à 380px */
            height: 55px;
        }
    }
}

@media (max-width: 768px) {
    @keyframes buttonAppear {
        0% {
            width: 50px;
            height: 50px;
        }
        50% {
            width: 50px;
            height: 50px;
        }
        100% {
            width: 340px; /* Augmenté de 300px à 340px */
            height: 50px;
        }
    }
}

@media (max-width: 480px) {
    @keyframes buttonAppear {
        0% {
            width: 50px;
            height: 50px;
        }
        50% {
            width: 50px;
            height: 50px;
        }
        100% {
            width: 320px; /* Augmenté de 280px à 320px */
            height: 50px;
        }
    }
}
@media (max-width: 768px) {
    .vision-section {
        padding: 60px 20px;
    }
    
    .vision-title {
        font-size: 2rem;
    }
    
    .vision-description {
        font-size: 1rem;
        max-width: 90%;
    }
    
    .vision-button {
        height: 50px;
        font-size: 0.9rem;
    }
    
    @keyframes buttonAppear {
        0% {
            width: 50px;
            height: 50px;
        }
        50% {
            width: 50px;
            height: 50px;
        }
        100% {
            width: 300px;
            height: 50px;
        }
    }
}

@media (max-width: 480px) {
    .vision-title {
        font-size: 1.7rem;
    }
    
    .vision-description {
        font-size: 0.9rem;
    }
    
    .vision-button {
        font-size: 0.8rem;
    }
    
    @keyframes buttonAppear {
        0% {
            width: 50px;
            height: 50px;
        }
        50% {
            width: 50px;
            height: 50px;
        }
        100% {
            width: 280px;
            height: 50px;
        }
    }
}

/* Responsive styles */
@media (max-width: 992px) {
    .synergy-section {
        padding: 80px 0;
    }
    
    .circle-shield-element {
        left: 220px;
        width: 150px;
        height: 150px;
    }
    
    .wireframe-element {
        left: 40px;
        width: 160px;
        height: 200px;
    }
    
    .code-overlay {
        width: 250px;
        top: 30px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .synergy-section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .circle-shield-element {
        left: auto;
        right: 40px;
        width: 120px;
        height: 120px;
    }
    
    .wireframe-element {
        left: 20px;
        width: 120px;
        height: 150px;
    }
    
    .shield-icon {
        width: 40px;
        height: 40px;
    }
    
    .code-overlay {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 400px;
        margin: 20px auto 0;
    }
}

@media (max-width: 480px) {
    .synergy-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 0.9rem;
    }
    
    .circle-shield-element {
        opacity: 0.5;
        right: -20px;
    }
    
    .wireframe-element {
        opacity: 0.5;
        left: -20px;
    }
}




/* Responsive design */
@media (max-width: 992px) {
    .pillars-section .pillars-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 40px;
    }
    
    .pillars-section .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .pillars-section .pillar-card {
        padding: 35px 20px;
    }
}

@media (max-width: 768px) {
    .pillars-section {
        padding: 60px 0;
    }
    
    .pillars-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .pillars-section .pillar-title {
        font-size: 1.3rem;
    }
    
    .pillars-section .pillar-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .pillars-section {
        padding: 40px 0;
    }
    
    .pillars-section .section-title {
        font-size: 1.6rem;
    }
    
    .pillars-section .icon-container {
        width: 70px;
        height: 70px;
    }
    
    .pillars-section .icon svg {
        width: 30px;
        height: 30px;
    }
}






/* Responsivité */
@media (max-width: 992px) {
    .innovation-section .row {
        flex-direction: column;
    }
    
    .innovation-section .col {
        flex: 0 0 100%;
        margin-bottom: 40px;
    }
    
    .innovation-section .image-col {
        margin-top: 30px;
    }
    
    .innovation-section .earth-container {
        height: 400px;
    }
    
    .innovation-section .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .innovation-section {
        padding: 60px 0;
    }
    
    .innovation-section .earth-container {
        height: 350px;
    }
    
    .innovation-section .section-title {
        font-size: 1.8rem;
    }
    
    .innovation-section .section-paragraph {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .innovation-section {
        padding: 40px 0;
    }
    
    .innovation-section .earth-container {
        height: 300px;
    }
    
    .innovation-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
}





/* Responsive design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        width: 95%;
        padding: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cta-button {
        height: 50px;
    }
    
    @keyframes buttonAppear {
        0% {
            width: 50px;
            height: 50px;
        }
        50% {
            width: 50px;
            height: 50px;
        }
        100% {
            width: 340px;
            height: 50px;
        }
    }
    
    .button-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    @keyframes buttonAppear {
        0% {
            width: 50px;
            height: 50px;
        }
        50% {
            width: 50px;
            height: 50px;
        }
        100% {
            width: 300px;
            height: 50px;
        }
    }
    
    .button-text {
        font-size: 0.9rem;
        padding: 0 2rem;
    }
}