/* Variables CSS */
:root {
    --primary-blue: #005E84;
    --accent-blue: #0077A8;
    --light-blue: #E8F4F8;
    --dark-navy: #003D5A;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --elegant-dark: #1a202c;
    --success: #10b981;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

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

body {
    font-family: 'Century Gothic', 'Cambria', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    overflow-x: hidden;
    font-size: 16px;
}

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

.section {
    padding: 120px 0;
    position: relative;
}

/* Preheader */
.preheader {
    background: var(--primary-blue);
    color: white;
    padding: 8px 0;
    font-size: 14px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.preheader-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.preheader-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.preheader-links {
    display: flex;
    gap: 16px;
}

.preheader-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.preheader-link:hover {
    color: var(--light-blue);
}

.preheader-separator {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
}

.country-flags {
    display: flex;
    align-items: center;
    gap: 8px;
}

.flag-link {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.flag-link:hover {
    transform: scale(1.1);
}

.flag-link img {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Header Principal */
.main-header {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(0px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 80px;
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 94, 132, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--primary-blue);
    transition: all 0.3s ease;
    z-index: 10;
    width: 12rem;
    height: 12rem;
}

.main-header:not(.scrolled) .logo {
    padding-top: 2rem;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 10rem;
    height: 10rem;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 18px;
    color: var(--elegant-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.main-header:not(.scrolled) .nav-link {
    color: var(--elegant-dark);
}

.main-header:not(.scrolled) .nav-link::before {
    background: rgba(255, 255, 255, 0.15);
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover {
    color: var(--primary-blue);
    transform: translateY(-1px);
}

.main-header:not(.scrolled) .nav-link:hover {
    color: var(--primary-blue);
}

.nav-link.active {
    color: var(--primary-blue);
}

.nav-link.active::before {
    opacity: 1;
}

.main-header:not(.scrolled) .nav-link.active {
    color: var(--primary-blue);
}

.nav-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1rem 0;
    min-width: 260px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-15px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.dropdown-item {
    display: block;
    padding: 14px 28px;
    color: var(--elegant-dark);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    color: var(--primary-blue);
    border-left-color: var(--primary-blue);
    transform: translateX(4px);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.language-selector-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-option {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    background: rgba(0, 94, 132, 0.1);
    border: 1px solid rgba(0, 94, 132, 0.2);
    border-radius: 6px;
    color: var(--elegant-dark);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 40px;
    justify-content: center;
}

.lang-option.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

.user-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(0, 94, 132, 0.1);
    border: 1px solid rgba(0, 94, 132, 0.2);
    border-radius: 50%;
    color: var(--elegant-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.main-header.scrolled .mobile-toggle {
    background: rgba(0, 94, 132, 0.1);
    border-color: rgba(0, 94, 132, 0.2);
}

.mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.mobile-toggle .hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    display: block;
}

.main-header.scrolled .mobile-toggle .hamburger-line {
    background: var(--elegant-dark);
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Navigation Mobile */
.mobile-nav {
    display: none;
    position: fixed;
    top: 125px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    max-height: calc(100vh - 125px);
    overflow-y: auto;
    z-index: 999;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-section {
    border-bottom: 1px solid rgba(0, 94, 132, 0.1);
}

.mobile-nav-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 2rem;
    font-weight: 600;
    color: var(--elegant-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-nav-items {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(248, 250, 252, 0.5);
}

.mobile-nav-section.active .mobile-nav-items {
    max-height: 500px;
}

.mobile-nav-item {
    display: block;
    padding: 14px 3rem;
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.mobile-nav-item:hover {
    color: var(--primary-blue);
    background: rgba(0, 94, 132, 0.05);
}

/* Section Hero */
.hero-section {
    min-height: 100vh;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 125px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 94, 132, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(0, 119, 168, 0.04) 0%, transparent 50%),
    linear-gradient(135deg, rgba(232, 244, 248, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.floating-squares {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    color: rgba(0, 94, 132, 0.08);
    font-size: 14px;
    animation: iconFloat 18s ease-in-out infinite;
    filter: blur(2px);
    text-shadow: none;
    transition: all 0.3s ease;
    opacity: 0.02;
    pointer-events: none;
}

.floating-icon.small {
    font-size: 10px;
    filter: blur(2.5px);
    opacity: 0.015;
}

.floating-icon.medium {
    font-size: 16px;
    filter: blur(2px);
    opacity: 0.025;
}

.floating-icon.large {
    font-size: 20px;
    filter: blur(1.5px);
    opacity: 0.03;
}

@keyframes iconFloat {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
        filter: blur(2px);
    }
    25% {
        transform: translateX(15px) translateY(-10px) rotate(5deg);
        filter: blur(2.5px);
    }
    50% {
        transform: translateX(8px) translateY(-18px) rotate(-3deg);
        filter: blur(3px);
    }
    75% {
        transform: translateX(-12px) translateY(-8px) rotate(2deg);
        filter: blur(2.2px);
    }
    100% {
        transform: translateX(0) translateY(0) rotate(0deg);
        filter: blur(2px);
    }
}

@keyframes iconPulse {
    0%, 100% {
        opacity: 0.02;
        filter: blur(2px) brightness(1);
        transform: scale(1);
    }
    50% {
        opacity: 0.04;
        filter: blur(1.5px) brightness(1.1);
        transform: scale(1.05);
    }
}

.floating-icon.pulse {
    animation: iconPulse 8s ease-in-out infinite;
}

.floating-icon.drift {
    animation: iconFloat 20s linear infinite;
}

.floating-icon.gentle {
    animation: iconFloat 12s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(60deg);
    }
    66% {
        transform: translateY(-5px) rotate(120deg);
    }
}

.hero-content {
    text-align: center;
    color: var(--gray-800);
    max-width: 800px;
    z-index: 2;
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: var(--light-blue);
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(50px);
    font-family: 'Century Gothic', 'Cambria', sans-serif;
}

.hero-title strong {
    font-weight: 700;
    display: inline;
    margin-top: 0;
    color: var(--gray-800);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(50px);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(50px);
    cursor: pointer;
}

.cta-button:hover {
    background: var(--dark-navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: var(--white);
}

.countdown-container {
    margin-top: 4rem;
    background: var(--white);
    border: 2px solid var(--light-blue);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(50px);
}

.countdown-title {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: var(--primary-blue);
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary-blue);
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 400;
    margin-top: 0.5rem;
}

/* Performance Section - styled like services */
.performance-section {
    background: var(--white);
}

.performance-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.performance-category {
    opacity: 0;
    transform: translateY(50px);
}

.performance-category-header {
    text-align: center;
    padding: 1.5rem;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 12px 12px 0 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.performance-list {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 0 0 12px 12px;
    border-top: none;
}

.performance-item {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-700);
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.performance-item:last-child {
    border-bottom: none;
}

.performance-item:hover {
    background: var(--gray-50);
    color: var(--primary-blue);
}

.performance-special {
    background: var(--light-blue);
    color: var(--primary-blue);
    font-weight: 500;
    text-align: center;
}

.performance-number {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.performance-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 400;
}

/* Barre Bleue */
.blue-bar {
    background: var(--primary-blue);
    padding: 2rem 0;
    text-align: center;
    transform: scaleX(0);
    transform-origin: left;
    position: relative;
    overflow: hidden;
}

.blue-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.blue-bar:hover::before {
    transform: translateX(100%);
}

.blue-bar-text {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 500;
    max-width: 900px;
    margin: 0 auto;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 6px 20px;
    background: var(--light-blue);
    color: var(--primary-blue);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.accent {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Approaches Section - styled like services */
.approaches-section {
    background: var(--white);
}

.table-container {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.desktop-table {
    display: block;
}

.table-header {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--primary-blue);
    color: var(--white);
    font-weight: 600;
}

.table-header-cell {
    padding: 2rem;
    height: 146px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 2px solid white;
}

.table-header-cell:last-child {
    border-right: none;
}

.table-header-text {
    font-size: 1.5rem;
    text-align: center;
    margin: 0;
}

.table-body .table-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(-50px);
}

.table-row:hover {
    background: var(--gray-50) !important;
    transform: scale(1.01);
}

.table-row:nth-child(even) {
    background: #f9fafb;
}

.table-cell {
    padding: 2rem;
    height: 146px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 2px solid var(--gray-300);
}

.table-cell:last-child {
    border-right: none;
}

.table-cell-criteria {
    font-size: 1.5rem;
    text-align: center;
    color: var(--primary-blue);
    font-weight: 600;
    margin: 0;
}

.table-cell-value {
    font-size: 1.25rem;
    text-align: center;
    color: black;
    margin: 0;
}

/* Cartes Mobile */
.mobile-cards {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
}

.mobile-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--primary-blue);
}

.mobile-card.migration-card {
    border-top-color: #6b7280;
}

.mobile-card.migration-card .mobile-card-header {
    background: #6b7280;
}

.mobile-card.migration-card .mobile-card-label {
    color: #6b7280;
}

.mobile-card.audit-card {
    border-top-color: #9ca3af;
}

.mobile-card.audit-card .mobile-card-header {
    background: #9ca3af;
}

.mobile-card.audit-card .mobile-card-label {
    color: #9ca3af;
}

.mobile-card-header {
    background: var(--primary-blue);
    color: var(--white);
    padding: 1rem;
    text-align: center;
}

.mobile-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.mobile-card-body {
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.mobile-card-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-card-row:last-child {
    border-bottom: none;
}

.mobile-card-label {
    font-weight: 600;
    color: var(--primary-blue);
}

/* Section Bénéfices */
.benefits-section {
    padding: 5rem 0;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(0, 94, 132, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 119, 168, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(80px);
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--light-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--gray-600);
    line-height: 1.6;
    font-weight: 300;
}

/* Section Formulaire avec background parallax */
.form-section {
    padding: 120px 0;
    position: relative;
    background-image: url('/sky_themes/static/src/img/clients/STD_Infrastructure_projetée[1][1].jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

.form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 94, 132, 0.92) 0%, rgba(6, 182, 212, 0.88) 100%);
    z-index: 1;
}

.form-section .container {
    position: relative;
    z-index: 2;
}

.form-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.form-text {
    color: var(--white);
    margin-bottom: 3rem;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.form-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--white);
}

.form-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    margin-bottom: 1rem;
}

.form-intro-note {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.form-intro-note a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 500;
}

.form-intro-note a:hover {
    color: var(--light-blue);
}

/* Formulaire centré */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.98);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0;
    transform: translateY(50px);
}

.form-container .form-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
    font-size: 0.95rem;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: var(--white);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 94, 132, 0.1);
}

.submit-button {
    width: 100%;
    padding: 16px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-button:hover {
    background: var(--dark-navy);
    transform: translateY(-1px);
}

/* Section Témoignages */
.testimonials-section {
    padding: 5rem 0;
    background: var(--white);
    text-align: center;
}

.testimonial-card {
    max-width: 800px;
    margin: 3rem auto;
    padding: 3rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--light-blue) 100%);
    border-radius: 16px;
    border-left: 4px solid var(--primary-blue);
    opacity: 0;
    transform: translateY(100px);
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gray-800);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    color: var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 600;
}

.author-role {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    height: 12px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--gray-300);
    width: 12px;
}

.dot.active {
    width: 32px;
    background: var(--primary-blue);
}

/* Footer Modern */
.modern-footer {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-blue) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.footer-content {
    padding: 80px 0 40px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.footer-section {
    opacity: 0;
    transform: translateY(30px);
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.footer-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.8), rgba(255,255,255,0.2));
    margin-bottom: 1.5rem;
    border-radius: 1px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-vision {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-media {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.contact-item i {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-top: 2px;
    min-width: 16px;
}

.contact-item span {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.scroll-to-top-wrapper {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.scroll-to-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.scroll-to-top:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: var(--white);
}

.footer-copyright {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.copyright-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.lang-link:hover,
.lang-link.active {
    color: var(--white);
}

.lang-separator {
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive pour les tailles intermédiaires */
@media (max-width: 1920px) {
    .hero-section {
        padding-top: 125px;
        min-height: 95vh;
    }

    .floating-squares {
        opacity: 0.5;
    }

    .floating-icon {
        opacity: 0.015 !important;
        filter: blur(3px) !important;
    }
}

@media (max-width: 1600px) {
    .hero-section {
        padding-top: 125px;
        min-height: 90vh;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .floating-icon {
        opacity: 0.01 !important;
        filter: blur(3.5px) !important;
    }
}

@media (max-width: 1336px) {
    .hero-section {
        padding-top: 125px;
        min-height: 85vh;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .container {
        max-width: 1100px;
        padding: 0 2rem;
    }

    .floating-icon {
        opacity: 0.008 !important;
        filter: blur(4px) !important;
        font-size: 10px !important;
    }
}

@media (max-width: 1272px) {
    .hero-section {
        padding-top: 125px;
        min-height: 80vh;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .countdown-container {
        margin-top: 3rem;
        padding: 1.8rem;
    }

    .container {
        max-width: 1000px;
        padding: 0 1.5rem;
    }

    .floating-icon {
        opacity: 0.005 !important;
        filter: blur(5px) !important;
        font-size: 8px !important;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .container {
        max-width: 900px;
    }

    .floating-icon {
        display: none;
    }
}

@media (max-width: 768px) {
    .preheader {
        display: none;
    }

    .main-header {
        top: 0;
    }

    .hero-section {
        padding-top: 85px;
        min-height: 80vh;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-title strong {
        display: block;
        margin-top: 0.5rem;
    }

    .main-nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

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

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

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

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

    .desktop-table {
        display: none;
    }

    .mobile-cards {
        display: flex;
    }

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

    .copyright-content {
        flex-direction: column;
        text-align: center;
    }

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

    .section {
        padding: 80px 0;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .countdown-container,
    .benefits-container {
        margin-top: 2rem;
        padding: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .performance-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .countdown {
        gap: 1rem;
    }

    .countdown-number,
    .benefits-number {
        font-size: 2rem;
    }

    .benefits-grid {
        gap: 1rem;
    }

    .form-container {
        padding: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }
}

/* Section FAQ */
.faq-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4f8 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(0, 94, 132, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 119, 168, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

/* Image côté gauche */
.faq-image-container {
    position: relative;
    opacity: 0;
    transform: translateX(-50px) rotateY(-15deg);
    transition: all 0.6s ease;
}

.faq-image-wrapper {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
}

.faq-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.faq-image-wrapper:hover .faq-image {
    transform: scale(1.1);
}

.faq-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 94, 132, 0.3) 0%,
        transparent 50%,
        rgba(0, 119, 168, 0.2) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.faq-image-wrapper:hover .faq-image-overlay {
    opacity: 1;
}

.faq-floating-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: scale(0) rotate(-360deg);
    transition: all 0.6s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* FAQ Items côté droit */
.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-blue);
    opacity: 0;
    transform: translateX(50px) rotateX(15deg);
    transition: all 0.6s ease;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.faq-item:hover::before {
    left: 100%;
}

.faq-item:hover {
    transform: translateX(0) translateY(-5px) rotateX(0);
    box-shadow: var(--shadow-xl);
    border-left-color: var(--accent-blue);
}

.faq-item-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.faq-item-text {
    flex: 1;
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question {
    color: var(--primary-blue);
}

.faq-answer {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.faq-item:hover .faq-answer {
    opacity: 1;
}

.faq-item-number {
    width: 32px;
    height: 32px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
    flex-shrink: 0;
    transform: scale(1);
    transition: all 0.3s ease;
}

.faq-item:hover .faq-item-number {
    transform: scale(1.1);
    background: var(--accent-blue);
}

/* CTA Button */
.faq-cta {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

.faq-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, var(--accent-blue), var(--primary-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-cta-button:hover::before {
    opacity: 1;
}

.faq-cta-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.faq-cta-button span,
.faq-cta-button i {
    position: relative;
    z-index: 1;
}

.faq-cta-button i {
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.faq-cta-button:hover i {
    transform: translateX(4px);
}

/* Section underline */
.section-underline {
    width: 80px;
    height: 3px;
    background: var(--primary-blue);
    margin: 1rem auto;
    border-radius: 2px;
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.8s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-image-wrapper {
        height: 250px;
    }

    .faq-item {
        padding: 1rem;
    }

    .faq-item-content {
        flex-direction: column;
        gap: 0.75rem;
    }

    .faq-item-number {
        align-self: flex-start;
    }

    .faq-cta {
        justify-content: center;
    }
}

/* Classes d'animation */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.scale-animate-in {
    opacity: 1 !important;
    transform: scaleX(1) !important;
}

.table-animate-in {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.faq-animate-in {
    opacity: 1 !important;
    transform: translateX(0) rotateX(0) rotateY(0) !important;
}

.faq-icon-animate-in {
    opacity: 1 !important;
    transform: scale(1) rotate(0) !important;
}

/* Approaches Section Styles */
.approaches-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.approach-category {
    opacity: 0;
    transform: translateY(50px);
}

.approach-category-header {
    text-align: center;
    padding: 1.5rem;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 12px 12px 0 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.approach-list {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 0 0 12px 12px;
    border-top: none;
}

.approach-item {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-700);
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.approach-item:last-child {
    border-bottom: none;
}

.approach-item:hover {
    background: var(--gray-50);
    color: var(--primary-blue);
}

.approach-special {
    background: var(--light-blue);
    color: var(--primary-blue);
    font-weight: 500;
}

/* Benefits Container in Hero - styled like countdown */
.benefits-container {
    margin-top: 4rem;
    background: var(--white);
    border: 2px solid var(--light-blue);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(50px);
}

.benefits-title {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: var(--primary-blue);
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefits-item {
    text-align: center;
}

.benefits-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary-blue);
    line-height: 1;
}

.benefits-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 400;
    margin-top: 0.5rem;
}

/* Section Valeur (Innovez, testez, décidez) */
.value-section {
    background: var(--white);
}

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

.value-text {
    opacity: 0;
    transform: translateX(-50px);
}

.value-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gray-800);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.value-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.value-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    transform: translateX(50px);
}

.value-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

/* Section Pourquoi choisir le POC Lab - Design en grille */
.why-poc-section {
    background: var(--gray-50);
}

.benefits-showcase {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-box-large {
    grid-column: span 3;
}

.benefit-box:not(.benefit-box-large) {
    grid-column: span 2;
}

.benefit-box {
    position: relative;
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--primary-blue);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(50px);
    overflow: hidden;
}

.benefit-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.benefit-box:hover::before {
    transform: scaleX(1);
}

.benefit-box:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-10px);
}

.benefit-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 700;
    color: var(--light-blue);
    opacity: 0.3;
    line-height: 1;
}

.benefit-icon-wrap {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 8px 16px rgba(0, 94, 132, 0.2);
    transition: transform 0.3s ease;
}

.benefit-box:hover .benefit-icon-wrap {
    transform: scale(1.1) rotate(5deg);
}

.benefit-heading {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.benefit-text {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Section À qui s'adresse - Design 2x2 équilibré */
.target-section {
    background: var(--white);
}

.target-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.target-box-item {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(50px);
    position: relative;
    overflow: hidden;
}

.target-box-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 94, 132, 0.1), transparent);
    transition: left 0.6s ease;
}

.target-box-item:hover::before {
    left: 100%;
}

.target-box-item:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px) scale(1.02);
}

.target-box-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(0, 94, 132, 0.25);
    transition: all 0.3s ease;
}

.target-box-item:hover .target-box-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 28px rgba(0, 94, 132, 0.35);
}

.target-box-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.target-box-desc {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Section Processus (Comment ça marche) - Funnel inversé */
.process-section {
    background: var(--gray-50);
}

.funnel-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 6rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

/* Pyramide inversée à gauche */
.funnel-pyramid {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.funnel-level {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem;
    margin: 0 auto;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
}

/* Niveau 1 - Le plus large (rouge) */
.funnel-level-1 {
    width: 100%;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 10% 100%);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
    height: 120px;
}

/* Niveau 2 - Moyen (bleu cyan) */
.funnel-level-2 {
    width: 89%;
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
    clip-path: polygon(5% 0%, 95% 0%, 85% 100%, 15% 100%);
    margin-top: -1px;
    box-shadow: 0 8px 20px rgba(8, 145, 178, 0.3);
    height: 120px;
}

/* Niveau 3 - Le plus étroit (orange) - Triangle pointu */
.funnel-level-3 {
    width: 90%;
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    clip-path: polygon(15% 0%, 85% 0%, 50% 100%, 50% 100%);
    margin-top: -1px;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
    height: 140px;
}

/* Icônes centrées dans chaque niveau */
.funnel-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Descriptions à droite */
.funnel-descriptions {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    justify-content: center;
}

.funnel-description {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease;
}

/* Ligne pointillée connectrice */
.funnel-description::before {
    content: '';
    position: absolute;
    left: -4rem;
    top: 50%;
    width: 3rem;
    height: 2px;
    border-top: 2px dashed var(--gray-300);
    transform: translateY(-50%);
}

/* Numérotation */
.funnel-number {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 94, 132, 0.3);
}

.funnel-text {
    flex: 1;
}

.funnel-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.funnel-detail {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Couleurs des descriptions selon le niveau */
.funnel-desc-1 .funnel-number {
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.funnel-desc-2 .funnel-number {
    background: linear-gradient(135deg, #0891b2, #06b6d4);
}

.funnel-desc-3 .funnel-number {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.process-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-blue);
}

.process-tagline {
    font-size: 1.2rem;
    color: var(--primary-blue);
    font-weight: 500;
    font-style: italic;
}

/* Section Clients (Ils nous font confiance) */
.clients-section {
    background: var(--white);
}

.clients-slider {
    margin: 3rem 0;
    overflow: hidden;
    padding: 2rem 0;
}

.clients-track {
    display: flex;
    gap: 4rem;
    align-items: center;
    animation: scrollLogos 25s linear infinite;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.client-logo {
    flex: 0 0 auto;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
}

.client-logo:hover {
    box-shadow: var(--shadow-xl);
    transform: scale(1.08);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.clients-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: var(--gray-50);
    border-radius: 16px;
}

.clients-cta-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.clients-cta-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.clients-cta-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--gray-600);
}

.clients-cta-note a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.clients-cta-note a:hover {
    text-decoration: underline;
}

/* Section Réassurance avec image DC visible */
.reassurance-section {
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.reassurance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(0, 94, 132, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 119, 168, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.reassurance-header {
    text-align: center;
    margin-bottom: 4rem;
}

.reassurance-main-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.reassurance-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    font-weight: 300;
}

.reassurance-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Image DC à gauche */
.reassurance-image-container {
    position: sticky;
    top: 140px;
    opacity: 0;
    transform: translateX(-50px);
}

.reassurance-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 500px;
}

.reassurance-datacenter-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.7s ease;
}

.reassurance-image-wrapper:hover .reassurance-datacenter-image {
    transform: scale(1.05);
}

.reassurance-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 94, 132, 0.3) 0%,
        transparent 40%,
        rgba(0, 119, 168, 0.2) 100%
    );
    z-index: 1;
}

/* Badge flottant principal */
.dc-floating-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 2;
    opacity: 0;
    transform: translateY(-20px);
    animation: floatIn 0.8s ease forwards 0.3s;
}

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

.dc-floating-badge i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.dc-floating-badge span {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 0.95rem;
}

/* Badges stats animés */
.dc-stat-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    z-index: 2;
    opacity: 0;
    animation: slideInStat 0.6s ease forwards;
}

.dc-stat-1 {
    bottom: 6rem;
    right: 2rem;
    animation-delay: 0.5s;
}

.dc-stat-2 {
    bottom: 3rem;
    left: 2rem;
    animation-delay: 0.7s;
}

.dc-stat-3 {
    bottom: 1rem;
    right: 3rem;
    animation-delay: 0.9s;
}

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

.stat-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
}

.stat-text {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 0.85rem;
}

/* Contenu à droite */
.reassurance-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    transform: translateX(50px);
}

.reassurance-feature {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--primary-blue);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.reassurance-feature:nth-child(even) {
    border-left-color: var(--accent-blue);
}

.reassurance-feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-xl);
}

.reassurance-feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--light-blue), rgba(0, 94, 132, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.reassurance-feature:hover .reassurance-feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.reassurance-feature-text {
    flex: 1;
}

.reassurance-feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.reassurance-feature-desc {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Note formulaire */
.form-note {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--light-blue);
    border-radius: 8px;
    color: var(--primary-blue);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.5;
}

.form-note i {
    flex-shrink: 0;
}

/* Responsive pour nouveaux blocs */
@media (max-width: 768px) {
    .value-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefits-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-box-large,
    .benefit-box:not(.benefit-box-large) {
        grid-column: span 1;
    }

    .benefit-box {
        padding: 2rem 1.5rem;
    }

    .benefit-number {
        font-size: 2.5rem;
        top: 1rem;
        right: 1rem;
    }

    .target-boxes {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .target-box-item {
        padding: 2rem;
    }

    .funnel-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .funnel-pyramid {
        max-width: 350px;
        margin: 0 auto;
    }

    .funnel-level-1,
    .funnel-level-2,
    .funnel-level-3 {
        height: 100px;
        padding: 1.5rem 1rem;
    }

    .funnel-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .funnel-descriptions {
        gap: 2rem;
    }

    .funnel-description {
        padding-left: 0;
    }

    .funnel-description::before {
        display: none;
    }

    .funnel-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .funnel-title {
        font-size: 1.25rem;
    }

    .funnel-detail {
        font-size: 0.9rem;
    }

    .clients-track {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .client-logo {
        width: 140px;
        height: 80px;
        padding: 1rem;
    }

    /* Form section responsive */
    .form-section {
        background-attachment: scroll;
    }

    .form-text {
        margin-bottom: 2rem;
    }

    .form-title {
        font-size: 1.8rem;
    }

    .form-subtitle {
        font-size: 1rem;
    }

    .form-container {
        padding: 2rem;
    }

    .form-container .form-title {
        font-size: 1.5rem;
    }

    /* Reassurance section responsive */
    .reassurance-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .reassurance-image-container {
        position: relative;
        top: 0;
    }

    .reassurance-image-wrapper {
        height: 350px;
    }

    .dc-stat-badge {
        padding: 0.5rem 1rem;
    }

    .stat-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .stat-text {
        font-size: 0.75rem;
    }

    .dc-stat-1 {
        bottom: 4rem;
        right: 1rem;
    }

    .dc-stat-2 {
        bottom: 1.5rem;
        left: 1rem;
    }

    .dc-stat-3 {
        bottom: 0.5rem;
        right: 1.5rem;
    }

    .reassurance-content {
        gap: 1.25rem;
    }

    .reassurance-feature {
        padding: 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }
}