* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #810be1;
    --primary-dark: #6409b3;
    --primary-light: #9a2ef5;
    --text-dark: #1a1a1a;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(129, 11, 225, 0.1);
    --shadow-hover: 0 20px 40px rgba(129, 11, 225, 0.2);
}

html {
    scroll-behavior: smooth;
    height: auto;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Empêcher double scrollbar */
section, .section-unified {
    max-width: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo { display:flex; 
    align-items:center; 
    gap:10px; 
    text-decoration:none; 
}
.logo-image { display:block; 
    width:64px; height:64px; 
    object-fit:contain; 
}
@media (max-width:600px){
  .logo-image { width:36px; height:36px; }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu-btn-mobile {
    display: none;
}

.nav-btn-desktop {
    display: inline-flex;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-btn-desktop {
        display: none !important;
    }
    
    .nav-menu-btn-mobile {
        display: block;
        padding-top: 10px;
        border-top: 1px solid rgba(129, 11, 225, 0.1);
        margin-top: 10px;
    }
    
    .nav-menu-btn-mobile .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 30px 40px;
        gap: 0;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(129, 11, 225, 0.1);
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    /* Overlay when menu is open */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(129, 11, 225, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(129, 11, 225, 0.4);
}

.btn-secondary {
    background: #4C1297;
    color: #ffffff;
    border: 2px solid #4C1297;
}

.btn-secondary:hover {
    background: #3a0e73;
    border-color: #3a0e73;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 18, 151, 0.3);
}

.btn-large {
    padding: 16px 36px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.btn-primary:hover .arrow,
.btn-secondary:hover .arrow {
    transform: translateX(5px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../assets/img/ufo.png') center center / cover no-repeat;
    background-attachment: scroll;
    padding: 180px 20px 80px;
}

/* Hero Responsive */
@media (max-width: 992px) {
    .hero {
        background-position: center center;
        background-size: cover;
        min-height: 100vh;
    }
}

@media (max-width: 768px) {
    .hero {
        background: url('assets/img/mobile.png') center center / cover no-repeat !important;
        min-height: 100svh;
        padding: 180px 15px 40px;
    }
    
    .hero-overlay {
        background: linear-gradient(180deg, rgba(76, 18, 151, 0.5) 0%, rgba(129, 11, 225, 0.6) 100%);
    }
    
    .hero-title {
        font-size: 2.25rem;
        letter-spacing: -0.5px;
        padding: 0 5px;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-top: 115px;
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        width: 100%;
        padding: 0 10px;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-large {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .hero-buttons .btn-video-fancy {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 10px 20px 10px 10px;
    }
}

@media (max-width: 480px) {
    .hero {
        background-position: center center;
        background-size: cover;
        min-height: 100svh;
        padding: 100px 15px 30px;
    }
    
    .hero-overlay {
        background: linear-gradient(180deg, rgba(76, 18, 151, 0.75) 0%, rgba(129, 11, 225, 0.9) 100%);
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.25;
        letter-spacing: -0.3px;
        padding: 0;
        margin-bottom: 12px;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 30px;
        line-height: 1.6;
    }
    
    .hero-badge {
        padding: 8px 16px;
        margin-bottom: 20px;
    }
    
    .hero-badge span {
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        gap: 12px;
        padding: 0 5px;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-large {
        max-width: 280px;
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .hero-buttons .btn-video-fancy {
        max-width: 280px;
        padding: 8px 16px 8px 8px;
        gap: 10px;
    }
    
    .hero-buttons .play-circle {
        width: 44px;
        height: 44px;
    }
    
    .hero-buttons .play-triangle {
        border-width: 7px 0 7px 11px;
    }
    
    .hero-buttons .video-text {
        font-size: 0.9rem;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(180, 130, 200, 0.25), rgba(129, 11, 225, 0.35));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(80, 40, 100, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(129, 11, 225, 0.3);
}

.hero-title {
    font-size: clamp(1.75rem, 5vw + 1rem, 64px);
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15), 0 4px 30px rgba(129, 11, 225, 0.25);
    letter-spacing: -1px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 10px;
}

.gradient-text {
    background: linear-gradient(135deg, #4C1297 0%, #810be1 25%, #9b30ff 50%, #a855f7 75%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
}

.hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 80px;
    line-height: 1.8;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
    font-weight: 400;
    letter-spacing: 0.3px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(12px);
    }
}

/* Metrics Section */
.metrics {
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.metric-card {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #f9fafb, #f3e8ff);
    border-radius: 20px;
    border: 2px solid #e9d5ff;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.metric-value {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.metric-label {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 600;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-title.light {
    color: white;
}

.section-description {
    font-size: 20px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-description.light {
    color: rgba(255, 255, 255, 0.9);
}

/* Section Header Responsive */
@media (max-width: 768px) {
    .section-header {
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .section-description {
        font-size: 1rem;
        padding: 0 10px;
    }
}

/* Features Section */
.features {
    padding: 100px 20px;
    position: relative;
    overflow-x: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(115, 26, 184, 0.08);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-card:hover .feature-image {
    transform: scale(1.1);
}

.light-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.8s ease;
}

.feature-card:hover .light-effect {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.feature-content {
    padding: 30px;
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.feature-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Domains Section */
.domains {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.domain-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.domain-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.domain-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.domain-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.domain-card:hover .domain-image {
    transform: scale(1.1);
}

.domain-content {
    padding: 30px;
}

.domain-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.domain-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

.domain-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 16px;
}

/* Features & Domains Responsive */
@media (max-width: 992px) {
    .features-grid,
    .domains-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .features-grid,
    .domains-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .feature-card,
    .domain-card {
        margin: 0 auto;
        width: 100%;
    }
    
    .feature-image-wrapper,
    .domain-image-wrapper {
        height: 200px;
    }
    
    .feature-content,
    .domain-content {
        padding: 25px 20px;
        text-align: center;
    }
    
    .feature-icon,
    .domain-icon {
        margin: 0 auto 15px;
    }
    
    .feature-content h3,
    .domain-content h3 {
        font-size: 1.25rem;
    }
    
    .feature-content p,
    .domain-content p {
        font-size: 0.95rem;
    }
    
    /* Section CTA responsive */
    .section-cta {
        padding: 35px 20px;
        margin-top: 40px;
    }
    
    .cta-text {
        font-size: 1.2rem;
    }
    
    .cta-subtext {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .features-grid,
    .domains-grid {
        max-width: 100%;
        padding: 0 5px;
    }
    
    .feature-content,
    .domain-content {
        padding: 20px 15px;
    }
    
    .feature-content h3,
    .domain-content h3 {
        font-size: 1.15rem;
    }
    
    .feature-icon {
        font-size: 32px;
    }
    
    .domain-icon {
        font-size: 40px;
    }
}

/* Clients Section */
.clients {
    padding: 100px 20px;
    overflow: hidden;
}

.clients-slider {
    margin-top: 60px;
    overflow: hidden;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients-track {
    display: flex;
    gap: 60px;
    width: max-content;
    will-change: transform;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.client-logo {
    min-width: 200px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-light);
    background: var(--bg-light);
    border-radius: 15px;
    padding: 0 30px;
    transition: all 0.3s ease;
}

.client-logo:hover {
    color: var(--primary-color);
    transform: scale(1.05);
}

/* Pricing Section */
.pricing {
    padding: 100px 20px;
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

.pricing-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.price {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-light);
    margin-right: 5px;
}

.amount {
    font-size: 56px;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1;
}

.period {
    font-size: 18px;
    color: var(--text-light);
    align-self: flex-end;
    margin-left: 5px;
    margin-bottom: 8px;
}

.amount-text {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text-light);
    font-size: 16px;
    border-bottom: 1px solid #f3f4f6;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Locations Section */
.locations {
    padding: 100px 20px;
    position: relative;
    overflow-x: hidden;
}

.locations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Wrapper Carte + Formulaire */
.map-and-form-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
    margin: 4rem 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* ========== CARTE MONDIALE (GAUCHE) ========== */
.worldmap-left-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    min-height: 550px;
    background: rgba(255, 255, 255, 0.02);
    z-index: 3;
    overflow: hidden;
}

.worldmap-left {
    width: 100%;
    height: auto;
    max-width: 100%;

    display: block;
}

/* Map Markers */
.map-marker {
    position: absolute;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
}

.map-marker:hover {
    transform: scale(1.15);
}

.map-marker:hover .marker-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(-45px);
}

.marker-dot {
    width: 12px;
    height: 12px;
    background: rgb(106, 9, 188);
    border-radius: 50%;
    box-shadow: 
        0 0 0 4px rgba(106, 9, 188, 0.3),
        0 0 25px rgba(106, 9, 188, 0.8),
        0 0 50px rgba(106, 9, 188, 0.4);
    position: relative;
    z-index: 2;
    animation: markerGlow 2.5s ease-in-out infinite;
}

@keyframes markerGlow {
    0%, 100% {
        box-shadow: 
            0 0 0 4px rgba(106, 9, 188, 0.3),
            0 0 25px rgba(106, 9, 188, 0.8);
    }
    50% {
        box-shadow: 
            0 0 0 8px rgba(106, 9, 188, 0.2),
            0 0 35px rgba(106, 9, 188, 1);
    }
}

.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: rgba(106, 9, 188, 0.6);
    border-radius: 50%;
    animation: pulse 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(3.5);
    }
}

.marker-tooltip {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: linear-gradient(135deg, #810be1 0%, #a855f7 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(129, 11, 225, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 30;
}

.marker-tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #a855f7;
}

/* ========== FORMULAIRE DE CONTACT (DROITE) ========== */
.map-contact-form-wrapper {
    background: rgba(189,187,187, 0.829);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-header {
    margin-bottom: 2rem;
}

.form-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a202c;
    margin: 0 0 0.5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-subtitle {
    color: #718096;
    margin: 0;
    font-size: 1rem;
}

.map-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.map-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.map-contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.map-contact-form label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.map-contact-form input,
.map-contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
    font-family: 'Inter', sans-serif;
}

.map-contact-form input::placeholder,
.map-contact-form textarea::placeholder {
    color: #cbd5e0;
}

.map-contact-form input:focus,
.map-contact-form textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.map-contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.map-contact-form .btn-primary {
    margin-top: 0.5rem;
}

/* ========== BUREAUX EN PLEINE LARGEUR ========== */
.offices-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.office-card-large {
    background: rgba(85, 85, 85, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.582);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.office-card-large:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
}

.office-flag {
    font-size: 3.5rem;
    text-align: center;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.office-details h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(20, 20, 20, 0.85);
    margin: 0 0 0.75rem 0;
    text-align: center;
}

.office-address {
    color: rgba(20, 20, 20, 0.85);
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    margin: 0 0 1.5rem 0;
}

.office-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.office-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(20, 20, 20, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.office-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.office-link .icon {
    font-size: 1.2rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .map-and-form-wrapper {
        grid-template-columns: 1.2fr 1fr;
    }
}

@media (max-width: 991px) {
    .map-and-form-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .worldmap-left-wrapper {
        min-height: 450px;
        padding: 2rem 1.5rem;
    }
    
    .map-contact-form-wrapper {
        padding: 2.5rem 2rem;
    }
    
    .offices-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .locations {
        padding: 70px 20px;
    }
    
    .worldmap-left-wrapper {
        min-height: 350px;
        padding: 1.5rem 1rem;
    }
    
    .map-contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-title {
        font-size: 1.75rem;
    }
    
    .map-contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .marker-dot {
        width: 16px;
        height: 16px;
    }
    
    .office-card-large {
        padding: 2rem;
    }
    
    .office-flag {
        font-size: 3rem;
    }
}

@media (max-width: 575px) {
    .map-contact-form-wrapper {
        padding: 1.75rem 1.25rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .map-contact-form input,
    .map-contact-form textarea {
        padding: 0.75rem;
    }
}

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 80px 20px 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(129, 11, 225, 0.5), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Footer Logo Column */
.footer-col:first-child {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 8px 24px rgba(129, 11, 225, 0.3);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Footer Columns */
.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: white;
    transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer {
        padding: 60px 20px 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-col:first-child {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .footer {
        padding: 50px 20px 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-col h4 {
        margin-bottom: 1rem;
    }
    
    .footer-col ul li {
        margin-bottom: 0.5rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
    }
}

@media (max-width: 575px) {
    .footer {
        padding: 40px 20px 30px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .footer-col p,
    .footer-col ul li a {
        font-size: 0.9rem;
    }
}
/* ========== FEATURES SHAPES ========== */
.features {
    position: relative;
    overflow: hidden;
}

.features-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.features-shape {
    position: absolute;
    opacity: 0.15;
    animation: floatShape 20s ease-in-out infinite;
}

/* Shapes images PNG */
.features-shape--img1,
.features-shape--img2,
.features-shape--img3,
.features-shape--img4 {
    opacity: 0.25;
    filter: drop-shadow(0 10px 30px rgba(129, 11, 225, 0.2));
}

.features-shape--img1 {
    width: 180px;
    height: auto;
    top: -50px;
    left: -30px;
    animation-delay: 0s;
    transform: rotate(-15deg);
}

.features-shape--img2 {
    width: 200px;
    height: auto;
    top: 15%;
    right: -40px;
    animation-delay: 3s;
    transform: rotate(20deg);
}

.features-shape--img3 {
    width: 150px;
    height: auto;
    bottom: 10%;
    left: 8%;
    animation-delay: 6s;
    transform: rotate(-25deg);
}

.features-shape--img4 {
    width: 170px;
    height: auto;
    bottom: -60px;
    right: 5%;
    animation-delay: 9s;
    transform: rotate(15deg);
}

/* Shapes gradient circles (existants) */
.features-shape--1,
.features-shape--2,
.features-shape--3,
.features-shape--4,
.features-shape--5,
.features-shape--6 {
    border-radius: 50%;
    filter: blur(80px);
}

.features-shape--1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.features-shape--2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: 10%;
    right: -150px;
    animation-delay: 2s;
}

.features-shape--3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), #667eea);
    bottom: 20%;
    left: 5%;
    animation-delay: 4s;
}

.features-shape--4 {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #764ba2, var(--primary-dark));
    top: 50%;
    right: 10%;
    animation-delay: 6s;
}

.features-shape--5 {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, var(--primary-color), #667eea);
    bottom: -100px;
    right: -100px;
    animation-delay: 8s;
}

.features-shape--6 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #667eea, var(--primary-dark));
    top: 70%;
    left: 15%;
    animation-delay: 10s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(var(--initial-rotate, 0deg));
    }
    33% {
        transform: translate(30px, -30px) rotate(calc(var(--initial-rotate, 0deg) + 5deg)) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) rotate(calc(var(--initial-rotate, 0deg) - 5deg)) scale(0.9);
    }
}

.features-shape--img1 { --initial-rotate: -15deg; }
.features-shape--img2 { --initial-rotate: 20deg; }
.features-shape--img3 { --initial-rotate: -25deg; }
.features-shape--img4 { --initial-rotate: 15deg; }

/* Assurer que le contenu reste au-dessus */
.features .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    position: relative;
    z-index: 1;
}

/* Responsive - Réduire les shapes sur mobile */
@media (max-width: 991px) {
    .features-shape {
        opacity: 0.1;
    }
    
    .features-shape--img1,
    .features-shape--img2,
    .features-shape--img3,
    .features-shape--img4 {
        opacity: 0.15;
        width: 120px;
    }
    
    .features-shape--1,
    .features-shape--2,
    .features-shape--3,
    .features-shape--4,
    .features-shape--5,
    .features-shape--6 {
        width: 200px;
        height: 200px;
        filter: blur(60px);
    }
}

@media (max-width: 767px) {
    .features-shape {
        opacity: 0.08;
    }
    
    .features-shape--img1,
    .features-shape--img2,
    .features-shape--img3,
    .features-shape--img4 {
        opacity: 0.12;
        width: 80px;
    }
    
    .features-shape--1,
    .features-shape--2,
    .features-shape--3,
    .features-shape--4,
    .features-shape--5,
    .features-shape--6 {
        width: 150px;
        height: 150px;
        filter: blur(40px);
    }
}

/* ========== SECTION SHAPES GENERIQUES ========== */
.section-with-shapes {
    position: relative;
    background: var(--bg-light);
    overflow: hidden;
}

.section-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.section-shape {
    position: absolute;
    animation: floatShape 20s ease-in-out infinite;
}

/* Shapes images PNG */
.section-shape--img1,
.section-shape--img2 {
    opacity: 0.25;
    filter: drop-shadow(0 10px 30px rgba(129, 11, 225, 0.2));
}

.section-shape--img1 {
    width: 180px;
    height: auto;
    top: -50px;
    left: -30px;
    animation-delay: 0s;
    transform: rotate(-15deg);
    --initial-rotate: -15deg;
}

.section-shape--img2 {
    width: 200px;
    height: auto;
    bottom: -40px;
    right: -40px;
    animation-delay: 4s;
    transform: rotate(20deg);
    --initial-rotate: 20deg;
}

/* Shapes gradient circles - Effet violet comme Features */
.section-shape--circle1,
.section-shape--circle2,
.section-shape--circle3,
.section-shape--circle4 {
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.section-shape--circle1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.section-shape--circle2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: 10%;
    right: -150px;
    animation-delay: 2s;
}

.section-shape--circle3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), #667eea);
    bottom: 20%;
    left: 5%;
    animation-delay: 4s;
}

.section-shape--circle4 {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #764ba2, var(--primary-dark));
    bottom: -100px;
    right: 10%;
    animation-delay: 6s;
}

/* S'assurer que le contenu est au-dessus des shapes */
.section-with-shapes .container,
.section-with-shapes .section-header {
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .section-shape--img1,
    .section-shape--img2 {
        width: 100px;
        opacity: 0.15;
    }
    
    .section-shape--circle1,
    .section-shape--circle2,
    .section-shape--circle3,
    .section-shape--circle4 {
        width: 150px;
        height: 150px;
        filter: blur(50px);
    }
}

/* ========== SECTION CTA ========== */
.section-cta {
    text-align: center;
    margin-top: 60px;
    padding: 50px 30px;
    background: linear-gradient(135deg, rgba(129, 11, 225, 0.05) 0%, rgba(168, 85, 247, 0.08) 100%);
    border-radius: 24px;
    border: 1px solid rgba(129, 11, 225, 0.1);
}

.section-cta-light {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 246, 252, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.cta-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.cta-subtext {
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.section-cta .btn-primary,
.section-cta .btn-secondary {
    padding: 14px 32px;
    font-size: 1rem;
}

.section-cta .btn-primary {
    background: linear-gradient(135deg, #9b30ff 0%, #810be1 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(129, 11, 225, 0.3);
}

.section-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(129, 11, 225, 0.4);
}

.section-cta .btn-secondary {
    background: transparent;
    color: #810be1;
    border: 2px solid #810be1;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.section-cta .btn-secondary:hover {
    background: rgba(129, 11, 225, 0.1);
    transform: translateY(-3px);
}

.section-cta .arrow {
    transition: transform 0.3s ease;
}

.section-cta .btn-primary:hover .arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .section-cta {
        margin-top: 40px;
        padding: 35px 20px;
    }
    
    .cta-text {
        font-size: 1.25rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-cta .btn-primary,
    .section-cta .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ============================================
   ANIMATIONS & MICRO-INTERACTIONS
   ============================================ */

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(129, 11, 225, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(129, 11, 225, 0.6);
    }
}

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger animation delays for grids */
.stagger > *:nth-child(1) { transition-delay: 0.1s; }
.stagger > *:nth-child(2) { transition-delay: 0.2s; }
.stagger > *:nth-child(3) { transition-delay: 0.3s; }
.stagger > *:nth-child(4) { transition-delay: 0.4s; }
.stagger > *:nth-child(5) { transition-delay: 0.5s; }
.stagger > *:nth-child(6) { transition-delay: 0.6s; }

/* Enhanced Button Interactions */
.btn-primary,
.btn-secondary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

/* Card Hover Effects */
.feature-card,
.pricing-card,
.testimonial-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover,
.pricing-card:hover,
.testimonial-card:hover {
    transform: translateY(-10px);
}

/* Gradient Text Animation */
.gradient-text {
    background-size: 200% auto;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

/* Floating Elements */
.floating {
    animation: float 6s ease-in-out infinite;
}

.floating-slow {
    animation: float 8s ease-in-out infinite;
}

.floating-fast {
    animation: float 4s ease-in-out infinite;
}

/* Metric Cards Counter Animation */
.metric-value {
    transition: all 0.3s ease;
}

.metric-card:hover .metric-value {
    transform: scale(1.1);
    color: var(--primary-color);
}

/* Link Underline Animation */
.nav-menu a,
.footer-col a {
    position: relative;
}

.footer-col a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-col a:hover::after {
    width: 100%;
}

/* Input Focus Animation */
input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 4px rgba(129, 11, 225, 0.1);
}

/* Smooth Section Transitions */
section {
    transition: background 0.5s ease;
}

/* Loading Skeleton Animation */
@keyframes skeleton {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: skeleton 1.5s infinite;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .reveal,
    .reveal-left,
    .reveal-right {
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   HARMONIZED BACKGROUNDS SYSTEM
   ============================================ */

/* Unified Section Base */
.section-unified {
    position: relative;
}

/* Alternating Background Pattern */
.bg-white {
    background: #ffffff;
}

.bg-light {
    background: linear-gradient(180deg, #fafbff 0%, #f5f3ff 100%);
}

.bg-gradient-soft {
    background: linear-gradient(135deg, #faf8ff 0%, #f0ebff 50%, #faf8ff 100%);
}

.bg-gradient-violet {
    background: linear-gradient(180deg, #f8f5ff 0%, #efe8ff 50%, #f8f5ff 100%);
}

/* Decorative Shapes Container */
.decorative-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Shape Elements using new shapes folder */
.shape {
    position: absolute;
    opacity: 0;
    animation: shapeFloat 25s ease-in-out infinite;
}

.shape.visible {
    opacity: 1;
}

/* Shape Images */
.shape-img {
    filter: drop-shadow(0 15px 40px rgba(129, 11, 225, 0.2));
    border: none !important;
    outline: none !important;
}

.shape-1 {
    width: 220px;
    height: auto;
    top: 0;
    left: 0;
    opacity: 0.5;
    animation-delay: 0s;
    animation-duration: 20s;
    transform-origin: left top;
}

.shape-2 {
    width: 200px;
    height: auto;
    top: 0;
    right: 0;
    left: auto;
    opacity: 0.45;
    animation-delay: 3s;
    animation-duration: 22s;
    transform-origin: right top;
}

.shape-3 {
    width: 160px;
    height: auto;
    bottom: 15%;
    left: 5%;
    opacity: 0.35;
    animation-delay: 6s;
    animation-duration: 18s;
}

.shape-4 {
    width: 240px;
    height: auto;
    bottom: 5%;
    right: -50px;
    opacity: 0.4;
    animation-delay: 2s;
    animation-duration: 24s;
}

.shape-5 {
    width: 140px;
    height: auto;
    top: 45%;
    left: 10%;
    opacity: 0.35;
    animation-delay: 8s;
    animation-duration: 16s;
}

.shape-6 {
    width: 170px;
    height: auto;
    top: 55%;
    right: 8%;
    opacity: 0.38;
    animation-delay: 4s;
    animation-duration: 21s;
}

.shape-globe {
    width: 550px;
    height: auto;
    top: 50% !important;
    bottom: auto !important;
    right: 0 !important;
    left: auto !important;
    transform: translateY(-50%);
    opacity: 0.7 !important;
    animation: shapeFloat 18s ease-in-out infinite;
    animation-delay: 2s;
    z-index: 1;
}

/* Gradient Orbs - Subtle violet touches */
.gradient-orb {
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0;
    animation: orbPulse 15s ease-in-out infinite;
}

.gradient-orb.visible {
    opacity: 1;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(129, 11, 225, 0.12) 0%, transparent 70%);
    top: -300px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(155, 48, 255, 0.1) 0%, transparent 70%);
    top: 25%;
    right: -250px;
    animation-delay: 5s;
}

.orb-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(129, 11, 225, 0.08) 0%, transparent 70%);
    bottom: -200px;
    left: 15%;
    animation-delay: 10s;
}

/* Floating Dots */
.floating-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #9b30ff, #810be1);
    border-radius: 50%;
    opacity: 0.5;
    animation: dotFloat 12s ease-in-out infinite;
}

.dot-1 { top: 20%; left: 10%; animation-delay: 0s; }
.dot-2 { top: 40%; right: 15%; animation-delay: 2s; }
.dot-3 { bottom: 30%; left: 20%; animation-delay: 4s; }
.dot-4 { top: 60%; left: 5%; animation-delay: 6s; }
.dot-5 { bottom: 15%; right: 10%; animation-delay: 8s; }

/* Subtle Lines */
.subtle-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(129, 11, 225, 0.15), transparent);
    animation: lineSlide 20s linear infinite;
}

.line-1 {
    width: 300px;
    top: 25%;
    left: -100px;
    transform: rotate(-15deg);
    animation-delay: 0s;
}

.line-2 {
    width: 250px;
    bottom: 35%;
    right: -50px;
    transform: rotate(10deg);
    animation-delay: 5s;
}

/* Animations */
@keyframes shapeFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-3deg);
    }
    75% {
        transform: translateY(-25px) rotate(3deg);
    }
}

@keyframes orbPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.08;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.12;
    }
}

@keyframes dotFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-30px) translateX(10px);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-15px) translateX(-5px);
        opacity: 0.3;
    }
    75% {
        transform: translateY(-40px) translateX(15px);
        opacity: 0.5;
    }
}

@keyframes lineSlide {
    0% {
        transform: translateX(-100%) rotate(-15deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateX(calc(100vw + 100%)) rotate(-15deg);
        opacity: 0;
    }
}

/* Section-specific backgrounds */
.section-about {
    background: linear-gradient(180deg, #ffffff 0%, #faf8ff 100%);
}

.section-features {
    background: linear-gradient(180deg, #f8f5ff 0%, #ffffff 100%);
}

.section-metrics {
    background: linear-gradient(180deg, #ffffff 0%, #f5f0ff 100%);
}

.section-services {
    background: linear-gradient(180deg, #f8f5ff 0%, #faf8ff 100%);
}

.section-testimonials {
    background: linear-gradient(180deg, #faf8ff 0%, #ffffff 100%);
}

.section-faq {
    background: linear-gradient(180deg, #ffffff 0%, #f8f5ff 100%);
}

.section-contact {
    background: linear-gradient(180deg, #f5f0ff 0%, #ffffff 100%);
}

/* Content z-index */
.section-unified .container {
    position: relative;
    z-index: 2;
}

/* Smooth section transitions */
.section-unified::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.section-unified::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.8) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* Disable pseudo-elements for first and last sections */
.section-unified.no-top-fade::before {
    display: none;
}

.section-unified.no-bottom-fade::after {
    display: none;
}

/* Responsive shapes */
@media (max-width: 992px) {
    .shape-1, .shape-2, .shape-3, .shape-4, .shape-5, .shape-6 {
        opacity: 0.3;
        width: 140px;
    }
    
    .gradient-orb {
        filter: blur(80px);
    }
    
    .orb-1, .orb-2, .orb-3 {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .shape-1, .shape-2, .shape-3, .shape-4, .shape-5, .shape-6 {
        opacity: 0.25;
        width: 100px;
    }
    
    .floating-dot {
        width: 10px;
        height: 10px;
    }
    
    .section-unified::before,
    .section-unified::after {
        height: 50px;
    }
}

/* Shape Animate In */
.shape.animate-in,
.gradient-orb.animate-in {
    animation: shapeAppear 1s ease forwards;
}

@keyframes shapeAppear {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: var(--shape-opacity, 0.3);
        transform: scale(1) translateY(0);
    }
}

.gradient-orb.animate-in {
    animation: orbAppear 1.5s ease forwards;
}

@keyframes orbAppear {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 0.08;
        transform: scale(1);
    }
}

/* Section visible state */
.section-unified.section-visible {
    opacity: 1;
}

/* Smooth scrolling enhancements */
.section-unified {
    transform: translateZ(0);
    will-change: transform;
}

/* ========================================
   STYLES DÉPLACÉS DEPUIS INDEX.HTML
   ======================================== */

/* ========== FANCY VIDEO BUTTON ========== */
.btn-video-fancy {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    padding: 8px 24px 8px 8px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-video-fancy:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 30px rgba(129, 11, 225, 0.3);
    transform: translateY(-2px);
}

.play-circle {
    position: relative;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-video-fancy:hover .play-circle {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(129, 11, 225, 0.4);
}

.play-triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent #810be1;
    margin-left: 4px;
    transition: border-color 0.3s ease;
}

.btn-video-fancy:hover .play-triangle {
    border-left-color: #9b30ff;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: pulse-video 2s ease-out infinite;
}

.pulse-ring.delay {
    animation-delay: 1s;
}

@keyframes pulse-video {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.video-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .play-circle {
        width: 50px;
        height: 50px;
    }
    
    .play-triangle {
        border-width: 8px 0 8px 12px;
        margin-left: 3px;
    }
    
    .video-text {
        font-size: 1rem;
    }
    
    .btn-video-fancy {
        gap: 12px;
    }
}

/* ========== VIDEO MODAL ========== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    z-index: 1;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-content video {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(129, 11, 225, 0.4);
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 2;
}

.video-modal-close:hover {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
    }
    
    .video-modal-close {
        top: -40px;
        font-size: 2rem;
    }
}

/* ========== ABOUT SECTION ========== */
.about {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(129, 11, 225, 0.1) 0%, rgba(155, 48, 255, 0.1) 100%);
    color: #810be1;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 25px;
    border: 1px solid rgba(129, 11, 225, 0.2);
}

.about-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 30px;
}

.about-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(129, 11, 225, 0.1);
}

.about-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #9b30ff 0%, #810be1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(129, 11, 225, 0.15);
}

.about-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(129, 11, 225, 0.1) 0%, transparent 50%);
}

.about-floating-card {
    position: absolute;
    bottom: -30px;
    left: -40px;
    background: white;
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 4s ease-in-out infinite;
}

.floating-icon {
    font-size: 2rem;
}

.floating-text strong {
    display: block;
    font-size: 1rem;
    color: #1a1a1a;
}

.floating-text span {
    font-size: 0.85rem;
    color: #888;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-visual {
        order: -1;
    }
    
    .about-floating-card {
        bottom: -20px;
        left: 20px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 80px 0;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .about-stat {
        flex: 1;
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .about-image {
        height: 300px;
    }
}

/* ========== SANS UFO-AI SECTION ========== */
.sans-ufo-section {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 50%, #7c3aed 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    min-height: 550px;
}

.sans-ufo-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    height: 400px;
}

.sans-ufo-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    color: white;
    text-align: center;
    z-index: 10;
    white-space: nowrap;
}

.pain-point {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 8px;
    color: white;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.pain-point:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.05) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.pain-point span {
    display: block;
}

@keyframes floatPain {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.pain-point:nth-child(odd) {
    animation: floatPain 4s ease-in-out infinite;
}

.pain-point:nth-child(even) {
    animation: floatPain 4s ease-in-out infinite 0.5s;
}

@media (max-width: 768px) {
    .sans-ufo-section {
        padding: 80px 15px;
        min-height: 650px;
    }
    
    .sans-ufo-container {
        height: 500px;
    }
    
    .sans-ufo-title {
        font-size: 2rem;
    }
    
    .pain-point {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .pain-point:nth-child(2) { top: 5% !important; left: 10% !important; right: auto !important; }
    .pain-point:nth-child(3) { top: 5% !important; right: 5% !important; left: auto !important; }
    .pain-point:nth-child(4) { top: 15% !important; left: 5% !important; }
    .pain-point:nth-child(5) { top: 25% !important; right: 10% !important; left: auto !important; }
    .pain-point:nth-child(6) { top: 35% !important; left: 15% !important; right: auto !important; }
    .pain-point:nth-child(7) { bottom: 35% !important; top: auto !important; left: 5% !important; }
    .pain-point:nth-child(8) { bottom: 25% !important; top: auto !important; right: 5% !important; left: auto !important; }
    .pain-point:nth-child(9) { bottom: 12% !important; top: auto !important; left: 10% !important; }
    .pain-point:nth-child(10) { bottom: 5% !important; top: auto !important; right: 10% !important; left: auto !important; }
}

/* ========== SERVICES DUO SECTION ========== */
.services-duo-section {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.services-duo-wrapper {
    display: flex;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.services-duo-left {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-logo-img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(129, 11, 225, 0.25));
}

.services-connectors {
    flex: 0 0 120px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connector-svg-main {
    width: 120px;
    height: 400px;
    overflow: visible;
}

.connector-svg-main path {
    filter: drop-shadow(0 2px 4px rgba(129, 11, 225, 0.3));
}

.connector-svg-main circle {
    filter: drop-shadow(0 2px 8px rgba(168, 85, 247, 0.6));
}

.services-duo-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-item {
    display: flex;
    align-items: flex-start;
}

.service-content {
    flex: 1;
    background: #fff;
    padding: 28px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(129, 11, 225, 0.08);
    border-left: 4px solid #a855f7;
    transition: all 0.3s ease;
}

.service-content:hover {
    box-shadow: 0 8px 35px rgba(129, 11, 225, 0.12);
    transform: translateX(5px);
}

.service-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #810be1;
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-description {
    font-size: 0.9rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin: 0;
}

.service-tools {
    display: inline-block;
    margin-top: 8px;
    color: #6b7280;
    font-style: italic;
}

@media (max-width: 900px) {
    .services-duo-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .services-duo-left {
        flex: none;
        width: 100%;
        margin-bottom: 20px;
    }
    
    .services-duo-title {
        margin-bottom: 20px;
    }
    
    .services-logo-img {
        width: 100px;
        height: 100px;
    }
    
    .service-connector {
        display: none;
    }
    
    .service-content {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .services-duo-section {
        padding: 60px 15px;
    }
    
    .services-duo-title {
        font-size: 1.5rem;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-number {
        font-size: 1rem;
    }
    
    .service-description {
        font-size: 0.85rem;
    }
}

/* ========== INTERFACE SHOWCASE ========== */
.interface-showcase {
    background: linear-gradient(135deg, #9b30ff 0%, #810be1 50%, #6a0dad 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.interface-container {
    max-width: 1000px;
    margin: 0 auto;
}

.interface-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.interface-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.interface-label {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    color: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.label-navigation {
    top: 15%;
    left: 10%;
    animation: floatLabel 3s ease-in-out infinite;
}

.label-performance {
    bottom: 25%;
    left: 5%;
    background: rgba(100, 100, 120, 0.9);
    color: #fff;
    animation: floatLabel 3s ease-in-out infinite 0.5s;
}

.label-utilisation {
    top: 30%;
    right: 5%;
    background: rgba(100, 100, 120, 0.9);
    color: #fff;
    animation: floatLabel 3s ease-in-out infinite 1s;
}

@keyframes floatLabel {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 768px) {
    .interface-showcase {
        padding: 60px 15px;
    }
    
    .interface-label {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .label-navigation {
        top: 5%;
        left: 5%;
    }
    
    .label-performance {
        bottom: 15%;
        left: 2%;
    }
    
    .label-utilisation {
        top: 20%;
        right: 2%;
    }
}

@media (max-width: 480px) {
    .interface-label {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

/* ========== SIMPLICITE SECTION ========== */
.simplicite-section {
    padding: 100px 20px;
}

.simplicite-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 8px;
    text-align: center;
}

.simplicite-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.simplicite-title {
    font-size: 2.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #810be1 0%, #5b08a1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.simplicite-subtitle {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 60px;
    text-align: center;
}

.simplicite-subtitle strong {
    color: #810be1;
    font-weight: 600;
}

.process-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 1150px;
    margin: 0 auto;
    gap: 10px;
}

.process-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 280px;
}

.line-connector {
    width: 80px;
    height: 3px;
    background: #810be1;
    margin-top: 22px;
    flex-shrink: 0;
}

.step-badge {
    padding: 14px 36px;
    border: 2px solid #810be1;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.15rem;
    color: #333;
    background: #fff;
    white-space: nowrap;
    margin-bottom: 25px;
}

.step-badge-primary {
    background: linear-gradient(135deg, #9b30ff 0%, #810be1 100%);
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(129, 11, 225, 0.35);
}

.step-box {
    padding: 25px 24px;
    border-radius: 20px;
    text-align: center;
    width: 100%;
    min-width: 260px;
}

.step-box-dashed {
    border: 2px dashed #888;
}

.step-box-solid {
    border: 2px solid #810be1;
}

.step-box p {
    margin: 0;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
}

.step-tools {
    margin-top: 10px !important;
    color: #666 !important;
    font-size: 1rem !important;
}

.step-highlight {
    margin-top: 15px !important;
    color: #810be1 !important;
    font-weight: 600;
    font-size: 1.1rem !important;
}

@media (max-width: 900px) {
    .process-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .process-column {
        flex: none;
        width: 100%;
        max-width: 280px;
    }
    
    .line-connector {
        width: 3px;
        height: 30px;
        margin-top: 0;
    }
    
    .simplicite-header {
        flex-direction: column;
        text-align: center;
    }
    
    .simplicite-subtitle {
        margin-left: 0;
        text-align: center;
    }
    
    .simplicite-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .simplicite-section {
        padding: 60px 15px;
    }
    
    .simplicite-title {
        font-size: 1.5rem;
    }
    
    .step-box {
        padding: 18px 15px;
    }
    
    .step-badge {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    
    .step-badge-primary {
        padding: 12px 30px;
    }
}

/* ========== PRICING TOGGLE ========== */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.toggle-label {
    font-size: 1rem;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.toggle-label.active {
    color: #810be1;
    font-weight: 600;
}

.toggle-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 20px;
    margin-left: 8px;
    font-weight: 500;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 32px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ddd;
    border-radius: 34px;
    transition: 0.3s;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.toggle-switch input:checked + .toggle-slider {
    background: linear-gradient(135deg, #9b30ff, #810be1);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(28px);
}

.price-detail {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.pricing-payg-list {
    list-style: none;
    padding: 0;
}

.payg-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.payg-item:last-child {
    border-bottom: none;
}

.payg-qty {
    font-weight: 600;
    color: #333;
}

.payg-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #810be1;
}

.payg-note {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    margin-top: 15px;
    font-style: italic;
}

.pricing-card-enterprise {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.pricing-card-enterprise h3,
.pricing-card-enterprise .amount-text,
.pricing-card-enterprise .price-detail,
.pricing-card-enterprise li {
    color: white;
}

.pricing-card-enterprise li::before {
    color: #a855f7;
}

.pricing-card-enterprise .btn-secondary {
    background: white;
    color: #810be1;
    border-color: white;
}

.pricing-card-enterprise .btn-secondary:hover {
    background: #f3e8ff;
}

@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing-card {
        width: 100%;
        margin: 0 auto;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .pricing-toggle {
        flex-direction: column;
        gap: 10px;
    }
    
    .toggle-label {
        order: 2;
    }
    
    .toggle-switch {
        order: 1;
    }
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials {
    padding: 100px 0;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(155, 48, 255, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(129, 11, 225, 0.15);
    border-color: rgba(155, 48, 255, 0.3);
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9b30ff 0%, #810be1 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.author-info h4 {
    margin: 0;
    font-size: 1rem;
    color: #222;
}

.author-info p {
    margin: 5px 0 0;
    font-size: 0.85rem;
    color: #888;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .testimonial-card {
        padding: 25px;
        text-align: center;
    }
    
    .testimonial-author {
        justify-content: center;
    }
}

/* ========== FAQ SECTION ========== */
.faq {
    padding: 100px 0;
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    border-bottom: 1px solid #eee;
    overflow: hidden;
}

.faq-item:first-child {
    border-top: 1px solid #eee;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    text-align: left;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #810be1;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #810be1;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 25px;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 20px 0;
    }
    
    .faq-container {
        margin-top: 30px;
    }
}

/* ========== GO TO TOP BUTTON ========== */
.go-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #9b30ff 0%, #810be1 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(129, 11, 225, 0.4);
    z-index: 9999;
}

.go-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.go-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(129, 11, 225, 0.6);
}

.go-to-top:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .go-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* ========== CHAT WIDGET ========== */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 100px;
    z-index: 9998;
    font-family: inherit;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9b30ff 0%, #810be1 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(129, 11, 225, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(129, 11, 225, 0.5);
}

.chat-icon, .chat-close {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.chat-icon {
    opacity: 1;
    transform: scale(1);
}

.chat-close {
    position: absolute;
    opacity: 0;
    transform: scale(0);
    color: white;
    font-size: 1.2rem;
}

.chat-widget.open .chat-icon {
    opacity: 0;
    transform: scale(0);
}

.chat-widget.open .chat-close {
    opacity: 1;
    transform: scale(1);
}

.chat-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    animation: chatPulse 2s infinite;
}

.chat-widget.open .chat-notification {
    display: none;
}

@keyframes chatPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 500px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
}

.chat-widget.open .chat-window {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-header {
    background: linear-gradient(135deg, #9b30ff 0%, #810be1 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.chat-header-text h4 {
    margin: 0;
    font-size: 1.1rem;
}

.chat-status {
    font-size: 0.8rem;
    opacity: 0.9;
}

.chat-minimize {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.chat-minimize:hover {
    background: rgba(255, 255, 255, 0.3);
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.chat-message.bot {
    background: #f3f4f6;
    color: #333;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
}

.chat-message.user {
    background: linear-gradient(135deg, #9b30ff 0%, #810be1 100%);
    color: white;
    border-bottom-right-radius: 4px;
    align-self: flex-end;
}

.chat-message p {
    margin: 0;
}

.chat-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.quick-action {
    background: white;
    border: 1px solid #810be1;
    color: #810be1;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-action:hover {
    background: #810be1;
    color: white;
}

.chat-input-form {
    display: flex;
    padding: 15px;
    border-top: 1px solid #eee;
    gap: 10px;
}

.chat-input-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.chat-input-form input:focus {
    border-color: #810be1;
}

.chat-send {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #9b30ff 0%, #810be1 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.chat-send:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .chat-widget {
        right: 20px;
        bottom: 80px;
    }
    
    .chat-window {
        width: calc(100vw - 40px);
        height: 70vh;
        right: -10px;
    }
}

/* ========== CONTACT GLOBE SHAPE ========== */
.contact-globe-wrapper {
    position: absolute;
    top: 50%;
    right: -150px;
    transform: translateY(-50%);
    width: 1400px;
    height: 1400px;
    z-index: 1;
    pointer-events: none;
}

.contact-globe-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    opacity: 1;
    filter: drop-shadow(0 0 60px rgba(129, 11, 225, 0.4)) brightness(1.1) contrast(1.1);
}