/* Variables globales */
:root {
    --primary-color: #2680EB;
    --primary-light: #EBF5FF;
    --primary-gradient: linear-gradient(135deg, #2680EB, #00D4AA, #47A3FF);
    --secondary-color: #333333;
    --text-color: #333333;
    --text-light: #666666;
    --background-color: #F8F9FA;
    --background-light: #E9ECEF;
    --green: #00D4AA;
    --green-gradient: linear-gradient(135deg, #00D4AA, #00F5D4);
    --teal: #0ED3B5;
    --yellow: #FBBF24;
    --red: #F87171;
    --border-radius: 12px;
    --box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 2000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typographie */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

.highlight {
    color: #000000;
    margin-left: 0.2em;
    margin-right: 0.2em;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

/* Boutons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #2680EB, #00D4AA, #47A3FF);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(38, 128, 235, 0.3);
}

.btn-primary.green {
    background: linear-gradient(90deg, #10B981, #34D399);
}

.btn-primary.green:hover {
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-primary.teal {
    background: linear-gradient(90deg, #0BA5A5, #0ED3B5);
}

.btn-primary.teal:hover {
    box-shadow: 0 4px 12px rgba(11, 165, 165, 0.3);
}

.btn-primary.yellow {
    background: linear-gradient(90deg, #F59E0B, #FBBF24);
}

.btn-primary.yellow:hover {
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 1px solid #9197a1;
}

.btn-secondary:hover {
    background-color: #F9FAFB;
    border-color: #D1D5DB;
}

.btn-connexion {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--border-radius);
}

.btn-connexion:hover {
    background-color: #F9FAFB;
}

.btn-primary i, .btn-secondary i {
    margin-right: 8px;
}

/* Header */
header {
    position: sticky;
    top: 0;
    background-color: var(--background-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: 16px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.logo img {
    height: 48px;
    margin-right: 8px;
}

nav ul {
    display: flex;
    gap: 40px;
}

nav a {
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

nav a:hover, nav a.active {
    color: var(--primary-color);
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-purchase {
    background: var(--green-gradient);
    color: white;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--box-shadow);
}

.btn-purchase:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 212, 170, 0.3);
}

/* Hero Section - Futuristic Design */
.hero {
    padding: 40px 0;
    background: linear-gradient(135deg, 
        #667eea 0%, 
        #764ba2 20%, 
        #2680EB 40%, 
        #00D4AA 60%, 
        #47A3FF 80%, 
        #667eea 100%);
    background-size: 600% 600%;
    animation: heroGradientFlow 20s ease infinite;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
}

/* Modern overlay with geometric patterns */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 170, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(71, 163, 255, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    z-index: 1;
}

/* Circuit Lines Container */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

/* Circuit Animation Styles - Enhanced */
.circuit-line {
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 212, 170, 0.3) 10%, 
        #00D4AA 30%, 
        #00F5D4 50%, 
        #47FFB8 70%, 
        rgba(0, 212, 170, 0.3) 90%, 
        transparent 100%);
    border-radius: 2px;
    opacity: 0;
    z-index: 3;
    box-shadow: 
        0 0 8px #00D4AA,
        0 0 16px rgba(0, 212, 170, 0.5),
        inset 0 0 4px rgba(255, 255, 255, 0.3);
    filter: blur(0.5px);
    will-change: transform, opacity;
}

.circuit-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FFFFFF, transparent);
    transform: translateY(-50%);
    animation: electricPulse 2s infinite ease-in-out;
}

.circuit-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 100%;
    background: radial-gradient(ellipse, #00F5D4, transparent);
    border-radius: 50%;
    animation: sparkle 1.5s infinite ease-in-out;
    opacity: 0.8;
}

.circuit-line-1 {
    top: 15%;
    left: -150px;
    width: 200px;
    animation: pcbFlow1 14s infinite linear;
    animation-delay: 0s;
    transform-origin: left center;
}

.circuit-line-2 {
    top: 70%;
    right: -150px;
    width: 180px;
    animation: pcbFlow2 12s infinite linear;
    animation-delay: 3s;
    transform-origin: right center;
}

.circuit-line-3 {
    top: 35%;
    left: -120px;
    width: 160px;
    animation: pcbFlow3 16s infinite linear;
    animation-delay: 6s;
    transform-origin: left center;
}

.circuit-line-4 {
    top: 85%;
    right: -140px;
    width: 220px;
    animation: pcbFlow4 13s infinite linear;
    animation-delay: 9s;
    transform-origin: right center;
}

.circuit-line-5 {
    top: 25%;
    left: -110px;
    width: 190px;
    animation: pcbFlow5 15s infinite linear;
    animation-delay: 12s;
    transform-origin: left center;
}

/* Enhanced Electric Effects */
@keyframes electricPulse {
    0%, 100% { opacity: 0.3; transform: translateY(-50%) scaleX(0.8); }
    50% { opacity: 1; transform: translateY(-50%) scaleX(1.2); }
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1); }
}

/* PCB-Style Circuit Flow Animations */
@keyframes pcbFlow1 {
    0% { left: -150px; opacity: 0; transform: translateY(0) rotate(0deg); }
    5% { opacity: 0.8; }
    15% { left: 20%; transform: translateY(0) rotate(0deg); }
    25% { left: 20%; transform: translateY(40px) rotate(90deg); }
    40% { left: 35%; transform: translateY(40px) rotate(90deg); }
    50% { left: 35%; transform: translateY(-20px) rotate(0deg); }
    70% { left: 60%; transform: translateY(-20px) rotate(0deg); }
    80% { left: 60%; transform: translateY(30px) rotate(-90deg); }
    95% { opacity: 0.8; }
    100% { left: calc(100% + 150px); opacity: 0; transform: translateY(30px) rotate(-90deg); }
}

@keyframes circuitFlow2 {
    0% { right: -100px; opacity: 0; }
    10% { opacity: 1; }
    50% { right: 50%; transform: translateY(-15px); }
    90% { opacity: 1; }
    100% { right: calc(100% + 100px); opacity: 0; }
}

@keyframes circuitFlow3 {
    0% { left: -100px; opacity: 0; }
    10% { opacity: 1; }
    50% { left: 60%; transform: translateY(-10px); }
    90% { opacity: 1; }
    100% { left: calc(100% + 100px); opacity: 0; }
}

@keyframes circuitFlow4 {
    0% { right: -100px; opacity: 0; }
    10% { opacity: 1; }
    50% { right: 40%; transform: translateY(10px); }
    90% { opacity: 1; }
    100% { right: calc(100% + 100px); opacity: 0; }
}

@keyframes circuitFlow5 {
    0% { left: -100px; opacity: 0; }
    10% { opacity: 1; }
    50% { left: 70%; transform: translateY(25px); }
    90% { opacity: 1; }
    100% { left: calc(100% + 100px); opacity: 0; }
}

/* Enhanced Chipsets */
.chipset {
    position: absolute;
    width: 14px;
    height: 10px;
    background: linear-gradient(45deg, #2a2a2a, #404040);
    border: 1px solid #555;
    border-radius: 3px;
    z-index: 4;
    opacity: 0.4;
    transition: all 0.4s ease;
    box-shadow: 
        inset 0 1px 0 rgba(255,255,255,0.1),
        0 1px 2px rgba(0,0,0,0.3);
}

.chipset::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: radial-gradient(ellipse, #00D4AA, #00F5D4);
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(1px);
}

.chipset::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(45deg, #00D4AA 0%, #00F5D4 50%, #47FFB8 100%);
    border-radius: 1px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.chipset.active {
    opacity: 1;
    box-shadow: 
        0 0 12px #00D4AA,
        0 0 24px rgba(0, 212, 170, 0.6),
        inset 0 1px 0 rgba(255,255,255,0.2);
    transform: scale(1.1);
}

.chipset.active::before {
    opacity: 0.6;
}

.chipset.active::after {
    opacity: 0.8;
}

.chipset-1 {
    top: 18%;
    left: 22%;
    animation: enhancedChipsetGlow1 14s infinite;
    animation-delay: 2s;
    transform: rotate(15deg);
}

.chipset-2 {
    top: 72%;
    right: 28%;
    animation: enhancedChipsetGlow2 12s infinite;
    animation-delay: 5s;
    transform: rotate(-20deg);
}

.chipset-3 {
    top: 42%;
    left: 48%;
    animation: enhancedChipsetGlow3 16s infinite;
    animation-delay: 8s;
    transform: rotate(10deg);
}

.chipset-4 {
    top: 85%;
    right: 22%;
    animation: enhancedChipsetGlow4 13s infinite;
    animation-delay: 11s;
    transform: rotate(-15deg);
}

.chipset-5 {
    top: 28%;
    left: 65%;
    animation: enhancedChipsetGlow5 15s infinite;
    animation-delay: 14s;
    transform: rotate(25deg);
}

.chipset-6 {
    top: 55%;
    left: 15%;
    animation: enhancedChipsetGlow6 11s infinite;
    animation-delay: 17s;
    transform: rotate(-10deg);
}

.chipset-7 {
    top: 35%;
    right: 45%;
    animation: enhancedChipsetGlow7 14s infinite;
    animation-delay: 20s;
    transform: rotate(30deg);
}

/* Chipset Glow Animations */
@keyframes chipsetGlow1 {
    0%, 20%, 80%, 100% { opacity: 0.3; box-shadow: none; }
    25%, 75% { opacity: 1; box-shadow: 0 0 12px #00D4AA; }
}

@keyframes chipsetGlow2 {
    0%, 30%, 70%, 100% { opacity: 0.3; box-shadow: none; }
    35%, 65% { opacity: 1; box-shadow: 0 0 12px #00D4AA; }
}

@keyframes chipsetGlow3 {
    0%, 35%, 65%, 100% { opacity: 0.3; box-shadow: none; }
    40%, 60% { opacity: 1; box-shadow: 0 0 12px #00D4AA; }
}

@keyframes chipsetGlow4 {
    0%, 40%, 60%, 100% { opacity: 0.3; box-shadow: none; }
    45%, 55% { opacity: 1; box-shadow: 0 0 12px #00D4AA; }
}

@keyframes chipsetGlow5 {
    0%, 45%, 55%, 100% { opacity: 0.3; box-shadow: none; }
    50% { opacity: 1; box-shadow: 0 0 12px #00D4AA; }
}

/* Animation pour le gradient de fond moderne */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Animation pour le gradient du Hero */
@keyframes heroGradientFlow {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 0%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 50%; }
}

/* Responsive Circuit Animations */
@media (max-width: 768px) {
    .circuit-line {
        height: 1px;
        box-shadow: 0 0 4px #00D4AA;
    }
    
    .circuit-line-1, .circuit-line-3, .circuit-line-5 {
        width: 200px;
    }
    
    .circuit-line-2, .circuit-line-4 {
        width: 180px;
    }
    
    .chipset {
        width: 8px;
        height: 6px;
    }
    
    .chipset.active {
        box-shadow: 0 0 6px #00D4AA;
    }
    
    @keyframes chipsetGlow1, @keyframes chipsetGlow2, @keyframes chipsetGlow3, @keyframes chipsetGlow4, @keyframes chipsetGlow5 {
        0%, 20%, 80%, 100% { opacity: 0.3; box-shadow: none; }
        25%, 75% { opacity: 1; box-shadow: 0 0 8px #00D4AA; }
    }
}

@media (max-width: 480px) {
    .circuit-line {
        opacity: 0.7;
    }
    
    .circuit-line-1, .circuit-line-3, .circuit-line-5 {
        width: 150px;
    }
    
    .circuit-line-2, .circuit-line-4 {
        width: 130px;
    }
    
    .chipset {
        width: 6px;
        height: 4px;
    }
}

.hero .container {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
}

.hero-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    background-color: var(--background-color);
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--primary-color);
    box-shadow: var(--box-shadow);
}

.badge i {
    margin-right: 8px;
}

.badge.available {
    color: #10B981;
    border: 1px solid #10B981;
}

.badge.unavailable {
    color: #EF4444;
    border: 1px solid #EF4444;
}

#country-flag {
    margin-right: 8px;
    font-size: 1.2rem;
    font-family: "Twemoji Country Flags", "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Android Emoji", "EmojiSymbols", sans-serif;
    display: inline-block;
    line-height: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.cta-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
    width: 100%;
    max-width: 800px;
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .cta-form {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-form input,
    .cta-form select,
    .cta-form .btn-primary {
        width: 100%;
        max-width: 2608px;
    }
}

.cta-form input,
.cta-form select {
    padding: 12px 16px;
    border-radius: var(--border-radius);
    border: 1px solid #E5E7EB;
    font-size: 1rem;
    min-width: 200px;
    flex: 1;
}

.cta-form input:focus,
.cta-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

/* Features Section */
.features {
    padding: 120px 0 60px 0;
    background: linear-gradient(135deg, 
        #667eea 0%, 
        #764ba2 25%, 
        #2680EB 50%, 
        #00D4AA 75%, 
        #47A3FF 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 170, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(71, 163, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(118, 75, 162, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.features::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(1px);
    z-index: 1;
}

.features .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    padding: 32px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background-color: var(--green) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    color: white !important;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 212, 170, 0.3);
}

.feature-icon i {
    color: white !important;
}

/* Styles spécifiques pour forcer le fond vert sur les icônes de la section features */
.features .feature-icon {
    background-color: #00D4AA !important;
    background: #00D4AA !important;
}

.features .feature-card .feature-icon {
    background-color: #00D4AA !important;
    background: #00D4AA !important;
    color: white !important;
}

.features .feature-card .feature-icon i {
    color: white !important;
}

/* Questions Examples Section */
.questions-examples {
    padding: 80px 0;
    background-color: var(--background-light);
    text-align: center;
}

/* Styles modernes pour les pages */
/* Page Fonctionnalités */
.features-detailed {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.features-detailed .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.features-detailed .feature-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.features-detailed .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.features-detailed .feature-card:hover::before {
    transform: scaleX(1);
}

.features-detailed .feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 12px 24px rgba(0, 0, 0, 0.1);
}

.features-detailed .feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(38, 128, 235, 0.3);
    transition: all 0.3s ease;
}

.features-detailed .feature-card:hover .feature-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(38, 128, 235, 0.4);
}

.features-detailed .feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-color);
    font-weight: 700;
}

.features-detailed .feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

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

.features-detailed .feature-card {
    animation: fadeInUp 0.6s ease forwards;
}

.features-detailed .feature-card:nth-child(1) { animation-delay: 0.1s; }
.features-detailed .feature-card:nth-child(2) { animation-delay: 0.2s; }
.features-detailed .feature-card:nth-child(3) { animation-delay: 0.3s; }
.features-detailed .feature-card:nth-child(4) { animation-delay: 0.4s; }
.features-detailed .feature-card:nth-child(5) { animation-delay: 0.5s; }
.features-detailed .feature-card:nth-child(6) { animation-delay: 0.6s; }

/* Page Personas */
.personas-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.personas-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

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

.personas-intro {
    text-align: center;
    margin-bottom: 60px;
}

.personas-intro h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.personas-intro p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.personas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.persona-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.persona-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.persona-card:hover::before {
    transform: scaleX(1);
}

.persona-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25), 0 15px 30px rgba(0, 0, 0, 0.15);
}

.persona-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 20px;
}

.persona-header-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 80px;
    flex: 1;
    gap: 8px;
}

.persona-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.persona-icon i {
    line-height: 1;
    vertical-align: middle;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.persona-card:hover .persona-icon {
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.5);
}

.persona-header-content h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--text-color);
    font-weight: 700;
    line-height: 1.3;
}

.persona-info .persona-role {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    text-align: center;
    margin-bottom: 16px;
}

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

.persona-card:hover .persona-role::before {
    left: 100%;
}

.persona-card:hover .persona-role {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.persona-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.persona-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.skill-tag {
    background: linear-gradient(135deg, var(--primary-color), #4f46e5);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(38, 128, 235, 0.3);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(38, 128, 235, 0.4);
}

.persona-cta {
    display: flex;
    gap: 12px;
}

.btn-persona {
    flex: 1;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-persona.primary {
    background: linear-gradient(135deg, var(--primary-color), #4f46e5);
    color: white;
    box-shadow: 0 4px 12px rgba(38, 128, 235, 0.3);
}

.btn-persona.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(38, 128, 235, 0.4);
}

.btn-persona.secondary {
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-color);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-persona.secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
}

/* Styles spécifiques pour chaque secteur */
.persona-card:nth-child(1) .persona-role {
    background: linear-gradient(135deg, #059669, #10b981);
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
}

.persona-card:nth-child(1):hover .persona-role {
    box-shadow: 0 12px 30px rgba(5, 150, 105, 0.4);
}

.persona-card:nth-child(2) .persona-role {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.persona-card:nth-child(2):hover .persona-role {
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.4);
}

.persona-card:nth-child(3) .persona-role {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
}

.persona-card:nth-child(3):hover .persona-role {
    box-shadow: 0 12px 30px rgba(30, 64, 175, 0.4);
}

.persona-card:nth-child(4) .persona-role {
    background: linear-gradient(135deg, #7c2d12, #ea580c);
    box-shadow: 0 8px 20px rgba(124, 45, 18, 0.3);
}

.persona-card:nth-child(4):hover .persona-role {
    box-shadow: 0 12px 30px rgba(124, 45, 18, 0.4);
}

.persona-card:nth-child(5) .persona-role {
    background: linear-gradient(135deg, #581c87, #7c3aed);
    box-shadow: 0 8px 20px rgba(88, 28, 135, 0.3);
}

.persona-card:nth-child(5):hover .persona-role {
    box-shadow: 0 12px 30px rgba(88, 28, 135, 0.4);
}

.persona-card:nth-child(6) .persona-role {
    background: linear-gradient(135deg, #b45309, #f59e0b);
    box-shadow: 0 8px 20px rgba(180, 83, 9, 0.3);
}

.persona-card:nth-child(6):hover .persona-role {
    box-shadow: 0 12px 30px rgba(180, 83, 9, 0.4);
}

/* Styles pour les tags de secteurs */
.persona-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin: 0;
}

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

.persona-tag:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.persona-tag:hover::before {
    left: 100%;
}

/* Styles spécifiques pour chaque secteur */
.persona-card:nth-child(1) .persona-tag {
    background: linear-gradient(135deg, #059669, #10b981);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.persona-card:nth-child(1) .persona-tag:hover {
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.4);
}

.persona-card:nth-child(2) .persona-tag {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.persona-card:nth-child(2) .persona-tag:hover {
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
}

.persona-card:nth-child(3) .persona-tag {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.persona-card:nth-child(3) .persona-tag:hover {
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}

.persona-card:nth-child(4) .persona-tag {
    background: linear-gradient(135deg, #0891b2, #06b6d4);
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
}

.persona-card:nth-child(4) .persona-tag:hover {
    box-shadow: 0 8px 20px rgba(8, 145, 178, 0.4);
}

.persona-card:nth-child(5) .persona-tag {
    background: linear-gradient(135deg, #be185d, #ec4899);
    box-shadow: 0 4px 12px rgba(190, 24, 93, 0.3);
}

.persona-card:nth-child(5) .persona-tag:hover {
    box-shadow: 0 8px 20px rgba(190, 24, 93, 0.4);
}

.persona-card:nth-child(6) .persona-tag {
    background: linear-gradient(135deg, #b45309, #f59e0b);
    box-shadow: 0 4px 12px rgba(180, 83, 9, 0.3);
}

.persona-card:nth-child(6) .persona-tag:hover {
    box-shadow: 0 8px 20px rgba(180, 83, 9, 0.4);
}

/* Bloc personnalisé */
.custom-persona-block {
    background: white;
    border-radius: 24px;
    padding: 48px;
    margin: 64px 0;
    border: 2px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.custom-persona-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.custom-persona-section {
    position: relative;
    z-index: 1;
    text-align: center;
}

.custom-persona-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}

.custom-persona-section > p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.custom-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.custom-feature {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.custom-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.4);
}

.custom-feature i {
    font-size: 3rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: block;
}

.custom-feature h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 16px;
    -webkit-text-fill-color: #333333;
    background-clip: initial;
    -webkit-background-clip: initial;
}

.custom-feature p {
    color: #555555;
    line-height: 1.6;
    -webkit-text-fill-color: #555555;
    background-clip: initial;
    -webkit-background-clip: initial;
}

/* Page Intégrations */
.integrations-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
}

.integrations-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.3) 0%, transparent 50%);
}

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

.integrations-intro {
    text-align: center;
    margin-bottom: 60px;
}

.integrations-intro h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.integrations-intro p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.integrations-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.integration-category {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.integration-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.integration-category:hover::before {
    transform: scaleX(1);
}

.integration-category:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25), 0 15px 30px rgba(0, 0, 0, 0.15);
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-right: 20px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.integration-category:hover .category-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.5);
}

.category-info h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 700;
}

.category-info .category-count {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

.category-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.integration-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.integration-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.integration-item:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.integration-item .item-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #4f46e5);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin: 0 auto 8px auto;
    transition: all 0.3s ease;
}

.integration-item:hover .item-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(38, 128, 235, 0.3);
}

.integration-item .item-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
}

.category-cta {
    text-align: center;
}

.btn-integration {
    background: linear-gradient(135deg, var(--primary-color), #4f46e5);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(38, 128, 235, 0.3);
}

.btn-integration:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(38, 128, 235, 0.4);
}

/* Animation pour les intégrations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.integration-item {
    animation: float 3s ease-in-out infinite;
}

.integration-item:nth-child(1) { animation-delay: 0s; }
.integration-item:nth-child(2) { animation-delay: 0.5s; }
.integration-item:nth-child(3) { animation-delay: 1s; }
.integration-item:nth-child(4) { animation-delay: 1.5s; }
.integration-item:nth-child(5) { animation-delay: 2s; }
.integration-item:nth-child(6) { animation-delay: 2.5s; }

/* Page API */
.api-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 50%, #581c87 100%);
    position: relative;
    overflow: hidden;
}

.api-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
}

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

.api-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.api-badges .badge {
    background: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.5);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.api-badges .badge:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.api-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.api-section {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.api-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1e3a8a, #3730a3, #581c87);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.api-section:hover::before {
    transform: scaleX(1);
}

.api-section:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25), 0 15px 30px rgba(0, 0, 0, 0.15);
}

.api-section-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.api-section-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3a8a, #3730a3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 16px;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.4);
    transition: all 0.3s ease;
}

.api-section:hover .api-section-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.5);
}

.api-section h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 700;
}

.api-section .section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
}

.api-section p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.code-example {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    position: relative;
    overflow-x: auto;
    border: 1px solid #333;
}

.code-example::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(90deg, #ff5f56, #ffbd2e, #27ca3f);
    border-radius: 12px 12px 0 0;
}

.code-example::after {
    content: '● ● ●';
    position: absolute;
    top: 8px;
    left: 12px;
    color: #333;
    font-size: 12px;
    letter-spacing: 4px;
}

.code-example pre {
    margin: 30px 0 0 0;
    color: #e6e6e6;
    font-family: 'Fira Code', 'Monaco', 'Consolas', monospace;
    font-size: 14px;
    line-height: 1.5;
    overflow-x: auto;
}

.code-example code {
    color: #e6e6e6;
}

.endpoint-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.endpoint-item {
    background: rgba(30, 58, 138, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 8px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.endpoint-item:hover {
    background: rgba(30, 58, 138, 0.15);
    transform: translateX(5px);
}

.endpoint-method {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 12px;
    min-width: 50px;
    text-align: center;
}

.endpoint-method.post { background: #10b981; }
.endpoint-method.put { background: #f59e0b; }
.endpoint-method.delete { background: #ef4444; }

.endpoint-path {
    font-family: 'Fira Code', monospace;
    color: var(--text-color);
    font-weight: 500;
}

.api-cta {
    text-align: center;
    margin-top: 30px;
}

.btn-api {
    background: linear-gradient(135deg, #1e3a8a, #3730a3);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-api:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 58, 138, 0.4);
    color: white;
}

/* Page Sécurité */
.security-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #065f46 0%, #047857 50%, #059669 100%);
    position: relative;
    overflow: hidden;
}

.security-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(16, 185, 129, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(5, 150, 105, 0.2) 0%, transparent 50%);
}

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

.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.security-badges .badge {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-color);
    padding: 16px 24px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.security-badges .badge::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;
}

.security-badges .badge:hover::before {
    left: 100%;
}

.security-badges .badge:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.security-badges .badge i {
    color: #10b981;
    margin-right: 8px;
    font-size: 1.2rem;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.security-feature {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.security-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #065f46, #047857, #059669);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.security-feature:hover::before {
    transform: scaleX(1);
}

.security-feature:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25), 0 15px 30px rgba(0, 0, 0, 0.15);
}

.security-feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.security-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #065f46, #047857);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-right: 20px;
    box-shadow: 0 8px 20px rgba(6, 95, 70, 0.4);
    transition: all 0.3s ease;
}

.security-feature:hover .security-feature-icon {
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(6, 95, 70, 0.5);
}

.security-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 700;
}

.security-feature .feature-level {
    color: #10b981;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.security-feature .feature-level i {
    margin-right: 6px;
}

.security-feature p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.security-checklist {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.security-checklist li {
    display: flex;
    align-items: center;
    padding: 8px 0;
    color: var(--text-color);
    font-weight: 500;
}

.security-checklist li::before {
    content: '✓';
    background: #10b981;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.compliance-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.compliance-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.compliance-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 16px auto;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.compliance-item:hover .compliance-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

.compliance-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 700;
}

.compliance-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.security-cta {
    text-align: center;
    margin-top: 60px;
}

.btn-security {
    background: linear-gradient(135deg, #065f46, #047857);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(6, 95, 70, 0.3);
    text-decoration: none;
    display: inline-block;
    font-size: 1.1rem;
}

.btn-security:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(6, 95, 70, 0.4);
    color: white;
}

/* Sections supplémentaires pour la page sécurité */
.security-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.security-intro {
    text-align: center;
    margin-bottom: 60px;
}

.security-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
    font-weight: 700;
}

.security-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.security-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    background: white;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

.data-protection {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.data-protection-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.data-principles h3,
.user-rights h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-color);
    font-weight: 700;
}

.principle-list,
.rights-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.principle-item,
.right-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.principle-item:hover,
.right-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.principle-item i,
.right-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.principle-item h4,
.right-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 600;
}

.principle-item p,
.right-item p {
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* Pages Entreprise - À propos */
.about-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 50%, #4338ca 100%);
    position: relative;
    overflow: hidden;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(67, 56, 202, 0.2) 0%, transparent 50%);
}

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

.about-intro {
    text-align: center;
    margin-bottom: 80px;
}

.about-intro h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 24px;
    font-weight: 800;
}

.about-intro p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.stat-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 600;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.value-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #1e3a8a, #3730a3, #4338ca);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a, #3730a3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.4);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.5);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-color);
    font-weight: 700;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Pages Entreprise - Carrières */
.careers-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #7c2d12 0%, #dc2626 50%, #ea580c 100%);
    position: relative;
    overflow: hidden;
}

.careers-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(239, 68, 68, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(234, 88, 12, 0.2) 0%, transparent 50%);
}

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

.careers-intro {
    text-align: center;
    margin-bottom: 80px;
}

.careers-intro h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 24px;
    font-weight: 800;
}

.careers-intro p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.job-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.job-category {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.job-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #7c2d12, #dc2626, #ea580c);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.job-category:hover::before {
    transform: scaleX(1);
}

.job-category:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
}

.job-category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7c2d12, #dc2626);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(124, 45, 18, 0.4);
    transition: all 0.3s ease;
}

.job-category:hover .job-category-icon {
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(124, 45, 18, 0.5);
}

.job-category h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-color);
    font-weight: 700;
}

.job-category p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.job-count {
    background: linear-gradient(135deg, #dc2626, #ea580c);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* Pages Entreprise - Blog */
.blog-content {
    padding: 40px 0 80px 0;
    background: linear-gradient(135deg, #581c87 0%, #7c3aed 50%, #8b5cf6 100%);
    position: relative;
    overflow: hidden;
}

.blog-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.2) 0%, transparent 50%);
}

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

.blog-content .section-subtitle {
    color: #000000;
}

/* Filtres des articles */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.filter-tab {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(139, 92, 246, 0.2);
    color: var(--text-color);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
}

.filter-tab:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-2px);
}

.filter-tab.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

/* Section Newsletter */
.newsletter-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 0.3fr 0.7fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 3000px;
    margin: 0 auto;
    width: 100%;
}

.newsletter-text h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 100%;
    word-wrap: break-word;
}

.newsletter-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 500;
}

.benefit i {
    color: #4ade80;
    font-size: 1.1rem;
}

.newsletter-form-main {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 2086px;
}

.newsletter-form h3,
.newsletter-form-main h3 {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.newsletter-form .form-group,
.newsletter-form-main .form-group {
    margin-bottom: 20px;
}

.newsletter-form input,
.newsletter-form select,
.newsletter-form-main input,
.newsletter-form-main select {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form input:focus,
.newsletter-form select:focus,
.newsletter-form-main input:focus,
.newsletter-form-main select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.newsletter-form .checkbox,
.newsletter-form-main .checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.newsletter-form .checkbox input {
    width: auto;
}

.newsletter-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 15px;
}

/* Section Articles Populaires */
.popular-articles {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.popular-articles h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-weight: 700;
}

.popular-grid {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.popular-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.popular-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: rgba(139, 92, 246, 0.2);
}

.popular-rank {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.popular-content h4 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.popular-meta {
    display: flex;
    gap: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Section Ressources */
.blog-resources {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    position: relative;
}

.blog-resources::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
}

.blog-resources h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.blog-resources .blog-articles-grid {
    position: relative;
    z-index: 1;
}

.blog-resources .blog-article-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.blog-resources .blog-article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .newsletter-text h2 {
        font-size: 2rem;
    }
    
    .popular-articles h2,
    .blog-resources h2 {
        font-size: 2rem;
    }
    
    .popular-item {
        flex-direction: column;
        text-align: center;
    }
    
    .popular-rank {
        margin-bottom: 15px;
    }
}

.blog-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.blog-category {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-color);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blog-category::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;
}

.blog-category:hover::before {
    left: 100%;
}

.blog-category:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.blog-category.active {
    background: linear-gradient(135deg, #581c87, #7c3aed);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.blog-post {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.blog-post:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
}

.blog-post-image {
    height: 200px;
    background: linear-gradient(135deg, #581c87, #7c3aed);
    position: relative;
    overflow: hidden;
}

.blog-post-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.blog-post-content {
    padding: 30px;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.blog-post-date {
    background: #f3f4f6;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 500;
}

.blog-post-tag {
    background: linear-gradient(135deg, #581c87, #7c3aed);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.8rem;
}

.blog-post h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-color);
    font-weight: 700;
    line-height: 1.3;
}

.blog-post p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-post-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #581c87, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.author-info h4 {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-color);
    font-weight: 600;
}

.author-info p {
    font-size: 0.8rem;
    margin: 0;
    color: var(--text-light);
}

/* Pages Légales - Documentation */
.documentation-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.documentation-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 75%, rgba(51, 65, 85, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 75% 25%, rgba(30, 41, 59, 0.3) 0%, transparent 50%);
}

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

.doc-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.doc-section {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.doc-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #0f172a, #1e293b, #334155);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.doc-section:hover::before {
    transform: scaleX(1);
}

.doc-section:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
}

.doc-section-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.4);
    transition: all 0.3s ease;
}

.doc-section:hover .doc-section-icon {
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.5);
}

.doc-section h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-color);
    font-weight: 700;
}

.doc-section p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.doc-links li {
    margin-bottom: 12px;
}

.doc-links a {
    color: #0f172a;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.doc-links a:hover {
    color: #1e293b;
    transform: translateX(8px);
}

.doc-links a i {
    margin-right: 8px;
    color: #64748b;
}

/* Pages Légales - Conditions et Confidentialité */
.legal-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 50%, #4b5563 100%);
    position: relative;
    overflow: hidden;
}

.legal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(75, 85, 99, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(55, 65, 81, 0.3) 0%, transparent 50%);
}

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

.legal-nav {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.legal-nav h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-color);
    font-weight: 700;
    display: flex;
    align-items: center;
}

.legal-nav h3 i {
    margin-right: 12px;
    color: #1f2937;
}

.legal-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.legal-nav li {
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.legal-nav li:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

.legal-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    display: block;
    padding: 12px 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.legal-nav a:hover {
    color: #1f2937;
}

.legal-document {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.legal-document::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #1f2937, #374151, #4b5563);
}

.legal-document h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--text-color);
    font-weight: 800;
}

.legal-document .last-updated {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 40px;
    padding: 12px 20px;
    background: #f1f5f9;
    border-radius: 12px;
    border-left: 4px solid #1f2937;
}

.legal-document h3 {
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    color: var(--text-color);
    font-weight: 700;
    position: relative;
    padding-left: 20px;
}

.legal-document h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #1f2937, #374151);
    border-radius: 2px;
}

.legal-document h4 {
    font-size: 1.4rem;
    margin: 30px 0 15px 0;
    color: var(--text-color);
    font-weight: 600;
}

.legal-document p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.legal-document ul, .legal-document ol {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-document li {
    margin-bottom: 8px;
}

.legal-document .highlight {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
    margin: 30px 0;
}

.legal-document .highlight h4 {
    color: #92400e;
    margin-top: 0;
}

.legal-document .highlight p {
    color: #78350f;
    margin-bottom: 0;
}

.legal-contact {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    margin-top: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
}

.legal-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-color);
    font-weight: 700;
}

.legal-contact p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.btn-legal {
    background: linear-gradient(135deg, #1f2937, #374151);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(31, 41, 55, 0.3);
    text-decoration: none;
    display: inline-block;
    font-size: 1.1rem;
}

.btn-legal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(31, 41, 55, 0.4);
    color: white;
}

.questions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.question-bubble {
    background-color: var(--background-color);
    border-radius: 20px;
    padding: 24px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid #F3F4F6;
    position: relative;
    overflow: hidden;
}

.question-bubble:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.question-bubble i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 12px;
    display: block;
}

.question-bubble p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
    line-height: 1.4;
}

.question-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: var(--transition);
}

.question-bubble:hover::before {
    opacity: 1;
}

@media (min-width: 1500px) {
    .questions-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 768px) {
    .questions-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 32px;
    }
    
    .question-bubble {
        padding: 20px 16px;
    }
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.benefit-card {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    padding: 32px;
    box-shadow: var(--box-shadow);
    text-align: left;
    transition: var(--transition);
    border: 1px solid #F3F4F6;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: #E5E7EB;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(0, 212, 170, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--green) !important;
    font-size: 1.2rem;
    z-index: 10;
    position: relative;
}

.benefit-icon i {
    color: var(--green) !important;
    z-index: 11;
    position: relative;
}

/* Agents Section */
.agents {
    padding: 80px 0;
    background-color: var(--background-light);
    text-align: center;
}

.personas {
    padding: 80px 0;
    background-color: var(--background-light);
    text-align: center;
}

.personas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.agents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.agent-card {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    padding: 32px;
    box-shadow: var(--box-shadow);
    text-align: left;
    transition: var(--transition);
    position: relative;
    border: 1px solid #F3F4F6;
}

.agent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: #E5E7EB;
}

.agent-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.agent-icon.green {
    background-color: rgba(52, 211, 153, 0.1);
    color: var(--green);
}

.agent-icon.teal {
    background-color: rgba(14, 211, 181, 0.1);
    color: var(--teal);
}

.agent-icon.yellow {
    background-color: rgba(251, 191, 36, 0.1);
    color: var(--yellow);
}

.agent-badge {
    position: absolute;
    top: 32px;
    right: 32px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
}

.agent-card h3 {
    margin-bottom: 4px;
}

.agent-card h4 {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 16px;
}

.agent-details {
    margin-top: 24px;
    border-top: 1px solid #F3F4F6;
    padding-top: 24px;
}

.agent-detail {
    margin-bottom: 16px;
}

.agent-detail h5 {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.tag {
    background-color: #F3F4F6;
    color: var(--text-light);
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 100px;
}

.agent-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.custom-agent {
    margin-top: 48px;
    text-align: center;
}

.custom-agent p {
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.custom-agent-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    text-align: center;
}

.testimonials-slider {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 24px;
    padding-bottom: 32px;
    scrollbar-width: none; /* Firefox */
}

.testimonials-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.testimonial-card {
    flex: 0 0 400px;
    scroll-snap-align: start;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    padding: 32px;
    box-shadow: var(--box-shadow);
    text-align: left;
    border: 1px solid #F3F4F6;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 16px;
    object-fit: cover;
}

.testimonial-info h4 {
    margin-bottom: 0;
}

.testimonial-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.testimonial-content {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 16px;
}

.testimonial-rating {
    color: #F59E0B;
}

/* Pricing Section */
.pricing {
    padding: 40px 0 80px 0;
    text-align: center;
    background-color: var(--background-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-top: 48px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    padding: 48px 40px;
    box-shadow: var(--box-shadow);
    border: 2px solid var(--primary-color);
    text-align: center;
}

.pricing-card.enterprise {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.price {
    margin-bottom: 32px;
}

.price-amount {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

.features-list {
    list-style: none;
    text-align: left;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.features-list i {
    color: #10B981;
    margin-right: 12px;
    font-size: 1rem;
}

/* Integrations Page Styles */
.integrations-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.integrations-intro {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.integrations-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
    font-weight: 700;
}

.integrations-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.integration-categories {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--text-light);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.integration-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.integration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.integration-card:hover::before {
    transform: scaleX(1);
}

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

.integration-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.integration-logo {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

/* Couleurs spécifiques pour chaque intégration */
.integration-logo .fa-salesforce {
    color: #00A1E0;
}

.integration-logo .fa-hubspot {
    color: #FF7A59;
}

.integration-logo .fa-google {
    color: #4285F4;
}

.integration-logo .fa-microsoft {
    color: #00BCF2;
}

.integration-logo .fa-slack {
    color: #4A154B;
}

.integration-logo .fa-trello {
    color: #0079BF;
}

.integration-logo .fas.fa-file-alt {
    color: #37352F;
}

.integration-logo .fa-shopify {
    color: #96BF48;
}

.integration-logo .fa-wordpress {
    color: #21759B;
}

.integration-logo .fa-chart-line {
    color: #7856FF;
}

.integration-logo .fa-user-tie {
    color: #1A73E8;
}

.integration-logo .fa-calendar-alt {
    color: #006BFF;
}

.integration-header h3 {
    font-size: 1.3rem;
    margin: 0;
    color: var(--text-color);
    font-weight: 700;
    flex: 1;
}

.integration-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.integration-badge.free {
    background: #d1fae5;
    color: #065f46;
}

.integration-badge.premium {
    background: #fef3c7;
    color: #92400e;
}

.integration-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.integration-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
}

.integration-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.integration-features i {
    color: #10b981;
    font-size: 0.8rem;
}

.btn-integration {
    width: 100%;
    padding: 12px 20px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-integration:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.custom-integration-section {
    margin-top: 80px;
    padding: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: white;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.custom-integration-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
}

.custom-integration-section > p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.custom-integration-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.custom-feature {
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.custom-feature i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    opacity: 0.9;
}

.custom-feature h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
    font-weight: 600;
}

.custom-feature p {
    color: #666;
    opacity: 0.8;
    line-height: 1.6;
}

.integration-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.integration-cta .btn-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.integration-cta .btn-primary:hover {
    background: transparent;
    color: white;
}

.integration-cta .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.integration-cta .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.integration-benefits {
    padding: 80px 0;
    background: white;
}

.integration-benefits .container {
    background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.integration-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-color);
    font-weight: 700;
}

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

.benefit-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.benefit-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
    font-weight: 600;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* API Page Styles */
.api-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.api-intro {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.api-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
    font-weight: 700;
}

.api-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.api-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    -webkit-text-fill-color: var(--primary-color);
    background-clip: initial;
    -webkit-background-clip: initial;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    -webkit-text-fill-color: var(--text-light);
    background-clip: initial;
    -webkit-background-clip: initial;
}

.api-quickstart {
    padding: 80px 0;
    background: white;
}

.api-quickstart .container {
    background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.api-quickstart h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-color);
    font-weight: 700;
}

.quickstart-steps {
    display: grid;
    gap: 40px;
}

.step {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 40px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2680EB, #00D4AA, #47A3FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.step h3 {
    font-size: 1.5rem;
    margin: 20px 0 15px 0;
    color: var(--text-color);
    font-weight: 600;
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.code-block {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 20px;
    overflow-x: auto;
    border: 1px solid #333;
}

.code-block pre {
    margin: 0;
    color: #e2e8f0;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

.api-endpoints {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.api-endpoints .container {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.api-endpoints h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-color);
    font-weight: 700;
}

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

.endpoint-category {
    background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.endpoint-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.endpoint-category h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--text-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.endpoint-category h3 i {
    color: var(--primary-color);
}

.endpoint-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.endpoint-item {
    background: white;
    border-radius: 8px;
    padding: 20px;
    display: grid;
    grid-template-columns: 80px 1fr 200px;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-height: 70px;
}

.endpoint-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.endpoint-method {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
}

.endpoint-method.get {
    background: #d1fae5;
    color: #065f46;
}

.endpoint-method.post {
    background: #dbeafe;
    color: #1e40af;
}

.endpoint-method.put {
    background: #fef3c7;
    color: #92400e;
}

.endpoint-method.delete {
    background: #fee2e2;
    color: #991b1b;
}

.endpoint-path {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
    background: #f8fafc;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.endpoint-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsive design for endpoints */
@media (max-width: 768px) {
    .endpoints-grid {
        grid-template-columns: 1fr;
    }
    
    .endpoint-item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px;
        text-align: left;
    }
    
    .endpoint-path {
        white-space: normal;
        word-break: break-all;
        overflow: visible;
        text-overflow: unset;
    }
    
    .endpoint-desc {
        text-align: left;
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
    }
}

.api-sdks {
    padding: 80px 0;
    background: white;
}

.api-sdks .container {
    background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.api-sdks h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
    font-weight: 700;
}

.api-sdks > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sdks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.sdk-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

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

.sdk-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.sdk-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
    font-weight: 600;
}

.sdk-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.sdk-install {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 25px;
}

.sdk-install code {
    color: #e2e8f0;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.api-webhooks {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.api-webhooks .container {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.api-webhooks h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
    font-weight: 700;
}

.api-webhooks > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.webhook-events {
    margin-bottom: 50px;
    padding: 40px;
    background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.webhook-events h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-color);
    font-weight: 600;
    text-align: center;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.event-item {
    background: white;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.event-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.event-item code {
    background: #1a1a1a;
    color: #e2e8f0;
    padding: 8px 12px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    font-weight: 600;
}

.event-item span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.webhook-example {
    padding: 40px;
    background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.webhook-example h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-color);
    font-weight: 600;
    text-align: center;
}

.api-support {
    padding: 80px 0;
    background: white;
}

.api-support .container {
    background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.api-support h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-color);
    font-weight: 700;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.support-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

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

.support-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.support-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
    font-weight: 600;
}

.support-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* API Badges */
.api-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.badge {
    background: #3b82f6;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.5);
    transition: all 0.3s ease;
}

.badge:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.badge i {
    font-size: 0.8rem;
}

/* CTA Final Section */
.cta-final {
    padding: 80px 0;
    background: var(--primary-gradient);
    color: white;
    text-align: center;
}

.cta-final h2 {
    color: white;
    margin-bottom: 16px;
}

.cta-final p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.btn-primary.large {
    padding: 16px 32px;
    font-size: 1.1rem;
    background: var(--primary-gradient);
    color: white;
    border: 4px solid white;
    box-shadow: var(--box-shadow);
}

.btn-primary.large:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(38, 128, 235, 0.3);
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-left {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 32px;
    height: 32px;
}

.footer-logo span {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.footer-left p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-contact p {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact i {
    color: #4285f4;
    width: 16px;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-nav-column h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-nav-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-column li {
    margin-bottom: 12px;
}

.footer-nav-column a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-nav-column a:hover {
    color: #4285f4;
}

.footer-newsletter {
    background: #2a2a2a;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: center;
}

.footer-newsletter h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-newsletter p {
    color: #ccc;
    font-size: 16px;
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form-main {
    max-width: 2086px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #444;
    border-radius: 8px;
    background: #1a1a1a;
    color: #fff;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #4285f4;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #999;
    font-size: 14px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom .fas.fa-flag {
    color: #ff6b6b;
}

.footer-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-badges span {
    background: #2a2a2a;
    color: #ccc;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge-status .fas.fa-circle {
    color: #4caf50;
    font-size: 8px;
}

.badge-compliance {
    background: #1e3a8a;
    color: #93c5fd;
}

.badge-hosting {
    background: #dc2626;
    color: #fca5a5;
}

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

.social-links a {
    color: #999;
    font-size: 18px;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #2a2a2a;
}

.social-links a:hover {
    color: #4285f4;
    background: #333;
}

/* Signup Page Styles */
.signup-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 40px 0 20px 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--background-light) 100%);
}

.signup-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--background-color);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #E5E7EB;
}

.signup-header {
    text-align: center;
    margin-bottom: 32px;
}

.signup-header h1 {
    font-size: 2.5rem;
    margin-bottom: 8px;
    color: var(--text-color);
}

.signup-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.signup-options {
    margin-bottom: 24px;
}

.google-signup {
    margin-bottom: 24px;
}

.btn-google {
    width: 100%;
    padding: 12px 24px;
    background: #fff;
    border: 2px solid #E5E7EB;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-google:hover {
    border-color: #D1D5DB;
    background: #F9FAFB;
}

.btn-google i {
    color: #EA4335;
    font-size: 1.2rem;
}

.divider {
    text-align: center;
    margin: 24px 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #E5E7EB;
}

.divider span {
    background: var(--background-color);
    padding: 0 16px;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 30px;
    display: inline-block;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input {
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.password-input {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input input {
    flex: 1;
    padding-right: 50px;
}

.toggle-password {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: var(--transition);
}

.toggle-password:hover {
    color: var(--primary-color);
    background: rgba(59, 130, 246, 0.1);
}

.password-requirements {
    margin-top: 8px;
    padding: 12px;
    background: #F9FAFB;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
}

.password-requirements p {
    margin: 0 0 8px 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
}

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

.password-requirements li {
    padding: 4px 0;
    font-size: 0.9rem;
    color: var(--text-light);
    transition: var(--transition);
    position: relative;
    padding-left: 20px;
}

.password-requirements li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #EF4444;
    font-weight: bold;
}

.password-requirements li.valid {
    color: #10B981;
}

.password-requirements li.valid::before {
    content: '✓';
    color: #10B981;
}

.password-requirements li.invalid {
    color: #EF4444;
}

.checkbox-group {
    flex-direction: row !important;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
    white-space: nowrap;
    flex-wrap: nowrap;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #E5E7EB;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.error-message {
    color: #EF4444;
    font-size: 0.85rem;
    margin-top: 4px;
    min-height: 20px;
}

.signup-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #E5E7EB;
}

.signup-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.signup-footer a:hover {
    text-decoration: underline;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}

.modal[style*="block"] {
    display: flex !important;
}

.modal-content {
    background-color: var(--background-color);
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    padding: 24px 24px 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    color: var(--text-color);
    font-size: 1.5rem;
}

.close {
    color: var(--text-light);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close:hover {
    color: var(--text-color);
    background: rgba(0, 0, 0, 0.1);
}

.modal-body {
    padding: 24px;
    text-align: center;
}

.success-icon {
    margin-bottom: 16px;
}

.success-icon i {
    font-size: 4rem;
    color: #10B981;
}

.modal-body p {
    margin: 8px 0;
    color: var(--text-light);
    line-height: 1.6;
}

.modal-footer {
    padding: 0 24px 24px 24px;
    text-align: center;
}

/* Login Page Styles */
.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem 0;
}

.login-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h1 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.login-header p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.login-options {
    margin-bottom: 2rem;
}

.google-login {
    margin-bottom: 1.5rem;
}

.btn-google {
    width: 100%;
    padding: 12px 20px;
    background: #4285f4;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-google:hover {
    background: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
}

.divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e0e0e0;
}

.divider span {
    background: white;
    padding: 0 1rem;
    color: #666;
    font-size: 0.9rem;
    margin-top: 30px;
    display: inline-block;
}

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

.login-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
}

.login-form input[type="email"],
.login-form input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.login-form input[type="email"]:focus,
.login-form input[type="password"]:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.password-input {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: #333;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.form-options .checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-wrap: nowrap;
    font-size: 0.9rem;
}

.form-options .checkmark {
    margin-top: 0;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Bouton de connexion avec le même style que btn-primary */
.login-form .btn-primary {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    background: var(--primary-gradient);
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    box-shadow: var(--box-shadow);
}

.login-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(38, 128, 235, 0.3);
}

.forgot-password {
    color: #667eea;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #5a6fd8;
    text-decoration: underline;
}

.login-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.login-footer p {
    color: #666;
    margin: 0;
}

.login-footer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.login-footer a:hover {
    color: #5a6fd8;
    text-decoration: underline;
}

/* Provider Page Styles */
.provider-section {
    min-height: 100vh;
    padding: 100px 0 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.provider-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.provider-header {
    text-align: center;
    margin-bottom: 3rem;
}

.provider-header h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.provider-header h1 i {
    color: #667eea;
    margin-right: 1rem;
}

.provider-header p {
    color: #666;
    font-size: 1.2rem;
    margin: 0;
}

.search-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.search-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    align-items: end;
}

.search-form .form-group {
    display: flex;
    flex-direction: column;
}

.search-form label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.search-form input,
.search-form select {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-form input:focus,
.search-form select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-form .btn-primary {
    width: 100%;
    padding: 12px 15px;
    height: auto;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.numbers-section {
    margin-bottom: 3rem;
}

.numbers-section h2 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.number-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.number-card:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.number-card.selected {
    border-color: #667eea;
    background: #f8f9ff;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.number-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.number-display i {
    color: #10b981;
    font-size: 1.2rem;
}

.phone-number {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #667eea;
}



.selected-section {
    background: #f0f7ff;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border: 2px solid #667eea;
}

.selected-section h2 {
    color: #667eea;
    margin-bottom: 2rem;
}

.selected-number {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
}

.number-info {
    text-align: center;
}

.number-info .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.number-info .price {
    font-size: 1.3rem;
    color: #667eea;
    font-weight: 600;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.feature i {
    color: #10b981;
    font-size: 1.1rem;
}

.payment-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.payment-section h2 {
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.payment-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.payment-summary {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    height: fit-content;
}

.payment-summary h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-top: 2px solid #667eea;
    margin-top: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
}

.payment-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.payment-form h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

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

.payment-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.payment-form input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.payment-form input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

#card-element {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    transition: all 0.3s ease;
}

#card-element:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

#card-errors {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.success-section {
    text-align: center;
    padding: 3rem;
}

.success-content {
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 2rem;
}

.success-icon i {
    font-size: 5rem;
    color: #10b981;
}

.success-section h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.success-section p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.success-actions .btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.success-actions .btn-secondary:hover {
    background: #667eea;
    color: white;
}

/* Responsive Design pour Provider */
@media (max-width: 768px) {
    .provider-container {
        margin: 1rem;
        padding: 2rem 1rem;
    }
    
    .search-form {
        grid-template-columns: 1fr;
    }
    
    .numbers-grid {
        grid-template-columns: 1fr;
    }
    
    .selected-number {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .number-features {
        grid-template-columns: 1fr;
    }
    
    .payment-container {
        grid-template-columns: 1fr;
    }
    
    .success-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .success-actions .btn-primary,
    .success-actions .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* Configuration d'Agent Styles */
.config-hero {
    background: var(--primary-gradient);
    color: white;
    padding: 20px 0 15px;
    text-align: center;
}

.config-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.config-hero .subtitle {
    font-size: 1.2rem;
    color: #000;
    opacity: 1;
}

.agent-config {
    padding: 50px 0;
    background: var(--background-light);
}

.config-form {
    max-width: none;
    width: 100%;
    margin: 0 auto;
}

.config-section {
    margin: 20px auto 0 auto;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 2px solid #ccc;
    max-width: none;
    width: 100%;
}

.config-section h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-description {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Types d'agents */
.agent-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.agent-type-card {
    border: 2px solid #ccc;
    border-radius: var(--border-radius);
    padding: 25px;
    cursor: pointer;
    transition: var(--transition);
    background: white;
}

.agent-type-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.agent-type-card.selected {
    border-color: var(--primary-color);
    background: var(--primary-light);
    color: black;
}

.agent-type-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: white;
}

.agent-type-icon.green {
    background: var(--green-gradient);
}

.agent-type-icon.yellow {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.agent-type-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.agent-type-card p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.agent-personality {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Configuration personnalisée */
.custom-prompt {
    margin-bottom: 20px;
}

.custom-prompt label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.custom-prompt textarea {
    width: 100%;
    min-height: 300px;
    padding: 20px;
    border: 2px solid #ccc;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.6;
    resize: vertical;
    transition: var(--transition);
}

.custom-prompt textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(38, 128, 235, 0.1);
}

.prompt-tips {
    background: var(--background-light);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-top: 20px;
}

.prompt-tips h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.prompt-tips ul {
    list-style: none;
    padding: 0;
}

.prompt-tips li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.prompt-tips li:before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Upload de documents */
.document-upload {
    margin-bottom: 20px;
}

.upload-area {
    border: 2px dashed #ccc;
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    margin-bottom: 30px;
}

.upload-area:hover,
.upload-area.drag-over {
    border-color: var(--primary-color);
    background: var(--primary-light);
    color: white;
}

.upload-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.upload-area:hover .upload-icon,
.upload-area.drag-over .upload-icon {
    color: white;
}

.upload-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    text-decoration: underline;
    cursor: pointer;
    font-size: inherit;
}

.upload-area:hover .upload-btn,
.upload-area.drag-over .upload-btn {
    color: white;
}

.supported-formats {
    margin-top: 15px;
    opacity: 0.7;
}

.document-suggestions {
    margin-bottom: 30px;
}

.document-suggestions h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.doc-suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.doc-suggestion {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--background-light);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
}

.doc-suggestion i {
    color: var(--primary-color);
}

.uploaded-files {
    background: var(--background-light);
    border-radius: var(--border-radius);
    padding: 20px;
}

.uploaded-files h4 {
    margin-bottom: 15px;
    color: var(--text-primary);
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.file-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.file-info i {
    color: var(--primary-color);
}

.file-size {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.remove-file {
    background: none;
    border: none;
    color: var(--error-color);
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: var(--transition);
}

.remove-file:hover {
    background: var(--error-color);
    color: white;
}

/* Paramètres avancés */
.advanced-settings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.setting-group {
    display: flex;
    flex-direction: column;
}

.setting-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.setting-group input,
.setting-group select,
.setting-group textarea {
    padding: 12px;
    border: 2px solid #ccc;
    border-radius: var(--border-radius);
    font-family: inherit;
    transition: var(--transition);
}

.setting-group input:focus,
.setting-group select:focus,
.setting-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(38, 128, 235, 0.1);
}

/* Actions de configuration */
.config-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.config-actions button {
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Modal de prévisualisation */
.config-preview-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    margin: 0;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-secondary);
    padding: 5px;
}

.close-modal:hover {
    color: var(--error-color);
}

.modal-body {
    padding: 20px;
}

.preview-section {
    margin-bottom: 20px;
}

.preview-section h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
}

.prompt-preview {
    background: var(--background-light);
    padding: 15px;
    border-radius: var(--border-radius);
    line-height: 1.6;
    max-height: 200px;
    overflow-y: auto;
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

/* Dashboard Styles */
.dashboard-hero {
    background: var(--primary-gradient);
    color: white;
    text-align: center;
    padding: 20px 0 15px;
}

.dashboard-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.dashboard-hero .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    color: #000;
}

/* Agent Configuration Styles */
.config-settings {
    margin-top: 30px;
}

.agent-status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #28a745;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #dc3545;
}

.status-dot.active {
    background-color: #28a745;
}

.config-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.config-item h4 {
    margin: 0 0 8px 0;
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.config-item p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.config-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.config-actions .btn-primary,
.config-actions .btn-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
}

.toggle-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toggle-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.dashboard-content {
    padding: 60px 0;
    background: var(--background-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

/* Dashboard-specific override to avoid collisions with other pages' generic .stats-grid/.stat-card */
.dashboard-stats-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 20px !important;
    align-items: stretch;
}

.dashboard-stats-grid .stat-card {
    flex: 1 1 0 !important;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}




}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.stat-chart {
    width: 80px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-chart svg {
    width: 100%;
    height: 100%;
}

.stat-card:nth-child(1) .stat-icon,
.stat-card:nth-child(2) .stat-icon,
.stat-card:nth-child(3) .stat-icon,
.stat-card:nth-child(4) .stat-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.stat-info h3 {
    margin: 0 0 10px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.stat-detail {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin: 10px 0;
}

.progress-fill {
    height: 100%;
    background: var(--success-color);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.dashboard-section {
    margin-bottom: 50px;
}

.dashboard-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.call-history {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.call-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.call-filters select {
    padding: 10px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: white;
    font-size: 1rem;
}

.calls-table {
    overflow-x: auto;
}

.calls-table table {
    width: 100%;
    border-collapse: collapse;
}

.calls-table th,
.calls-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.calls-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calls-table td {
    color: var(--text-muted);
}

.status {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status.completed {
    background: #d4edda;
    color: #155724;
}

.status.missed {
    background: #f8d7da;
    color: #721c24;
}

.btn-icon {
    background: none;
    border: none;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.3s ease;
    margin-right: 5px;
}

.btn-icon:hover:not(:disabled) {
    background: var(--primary-color);
    color: white;
}

.btn-icon:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.summary-settings {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.setting-card {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
}

.setting-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.setting-header h3 {
    margin: 0;
    color: var(--text-dark);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: var(--primary-color);
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.setting-content {
    transition: all 0.3s ease;
}

.setting-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.setting-row label {
    min-width: 150px;
    font-weight: 500;
    color: var(--text-dark);
}

.setting-row select,
.setting-row input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
}

.setting-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    position: relative;
}

.success-message {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #d4edda;
    color: #155724;
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.transcript-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: var(--text-dark);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-muted);
    padding: 5px;
}

.modal-body {
    padding: 30px;
    max-height: 400px;
    overflow-y: auto;
}

.transcript-content {
    line-height: 1.6;
    color: var(--text-muted);
    white-space: pre-wrap;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .signup-container {
        margin: 20px;
        padding: 24px;
    }
    
    .signup-header h1 {
        font-size: 2rem;
    }
    
    .modal-content {
        margin: 20% auto;
        width: 95%;
    }
    
    .password-requirements {
        font-size: 0.8rem;
    }
    
    /* Login page responsive */
    .login-container {
        padding: 2rem 1rem;
        margin: 1rem;
    }
    
    .login-header h1 {
        font-size: 1.8rem;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    /* Integrations page responsive */
    .integrations-intro {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .integrations-intro h2 {
        font-size: 2rem;
    }
    
    .integrations-intro p {
        font-size: 1rem;
    }
    
    .integration-categories {
        padding: 30px 20px;
    }
    
    .category-tabs {
        gap: 10px;
    }
    
    .tab-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .integrations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .integration-card {
        padding: 25px 20px;
    }
    
    .integration-header {
        gap: 12px;
    }
    
    .integration-logo {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .integration-header h3 {
        font-size: 1.2rem;
    }
    
    .custom-integration-section {
        margin-top: 60px;
        padding: 40px 20px;
    }
    
    .custom-integration-section h2 {
        font-size: 1.8rem;
    }
    
    .custom-integration-section > p {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .custom-integration-features {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .custom-feature i {
        font-size: 2.5rem;
    }
    
    .custom-feature h4 {
        font-size: 1.2rem;
    }
    
    .integration-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .integration-benefits .container {
        padding: 40px 20px;
    }
    
    .integration-benefits h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .benefit-item {
        padding: 25px 20px;
    }
    
    .benefit-item i {
        font-size: 2.5rem;
    }
    
    .benefit-item h3 {
        font-size: 1.2rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }
    
    /* Configuration d'agent responsive */
    .config-hero h1 {
        font-size: 2rem;
    }
    
    .config-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .agent-types {
        grid-template-columns: 1fr;
    }
    
    .agent-type-card {
        padding: 20px;
    }
    
    .custom-prompt textarea {
        min-height: 250px;
        padding: 15px;
    }
    
    .prompt-tips {
        padding: 15px;
    }
    
    .upload-area {
        padding: 30px 20px;
    }
    
    .doc-suggestions-grid {
        grid-template-columns: 1fr;
    }
    
    .advanced-settings {
        grid-template-columns: 1fr;
    }
    
    .config-actions {
        flex-direction: column;
        gap: 15px;
    }

    /* Dashboard responsive */
    .dashboard-hero {
        padding: 40px 0;
    }

    .dashboard-hero h1 {
        font-size: 2rem;
    }

    .dashboard-stats-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 20px;
    }
    .dashboard-stats-grid .stat-card {
        flex: 1 1 100% !important;
    }

    .stat-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .call-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .calls-table {
        font-size: 0.9rem;
    }

    .calls-table th,
    .calls-table td {
        padding: 10px 8px;
    }

    .setting-row {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .setting-row label {
        min-width: auto;
    }

    .setting-actions {
        flex-direction: column;
    }

    .modal-content {
        width: 95%;
        margin: 20px;
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 20px;
    }
}
    
    .config-actions button {
        width: 100%;
        justify-content: center;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 15px;
    }
/* Remove stray closing brace */

@media (max-width: 768px) {
    header .container {
        flex-wrap: wrap;
    }
    
    nav {
        order: 3;
        width: 100%;
        margin-top: 16px;
    }
    
    nav ul {
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .benefits-grid, .personas-grid {
        grid-template-columns: 1fr;
    }
    
    .custom-persona-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .auth-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .feature-card, .benefit-card, .agent-card {
        padding: 24px;
    }
    
    .agent-actions {
        flex-direction: column;
    }
    
}

/* Test Section Styles */
.test-section {
    margin: 50px auto 0 auto;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 2px solid #ccc;
    max-width: none;
    width: 100%;
    text-align: center;
}

.test-section h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.test-description {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1rem;
}

.test-form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.phone-input-group {
    margin-bottom: 30px;
}

.phone-input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.phone-input-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.phone-input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.agent-status {
    margin-bottom: 30px;
    padding: 20px;
    background: #F9FAFB;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.status-label {
    font-weight: 600;
    color: var(--text-color);
}

.status-text {
    font-weight: 500;
    color: var(--warning-color);
}

.status-text.ready {
    color: var(--success-color);
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: #E5E7EB;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    min-width: 35px;
}

.status-info {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.btn-test {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
}

.btn-test:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(38, 128, 235, 0.3);
}

.btn-test:disabled {
    background: #9CA3AF;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-test:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Responsive pour section de test */
@media (max-width: 768px) {
    .test-section {
        margin-top: 30px;
        padding: 25px 20px;
    }

    .test-section h2 {
        font-size: 1.5rem;
    }

    .progress-container {
        flex-direction: column;
        gap: 10px;
    }

    .progress-text {
        align-self: flex-end;
    }
    
    .footer-nav {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
    
    .footer-nav-column h4 {
        font-size: 14px;
    }
    
    .footer-nav-column a {
        font-size: 12px;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Styles pour le transfert d'appels */
.transfer-settings {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.transfer-config {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.pricing-warning {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #fff5f5;
    border: 1px solid #fed7d7;
    border-radius: 8px;
    margin-top: 15px;
}

.warning-icon {
    color: #e74c3c;
    font-size: 1.2rem;
    margin-top: 2px;
}

.warning-content h4 {
    margin: 0 0 10px 0;
    color: #2d3748;
    font-size: 1rem;
}

.warning-content p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.warning-content small {
    color: #666;
    font-style: italic;
}

/* Styles pour Google Calendar */
.google-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, #4285f4 0%, #34a853 25%, #fbbc05 50%, #ea4335 75%, #4285f4 100%);
    color: white;
    text-align: center;
    line-height: 24px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    margin-right: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.input-help a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.input-help a:hover {
    text-decoration: underline;
    color: var(--primary-dark);
}

.calendar-settings {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.uri-input-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.uri-input-group input {
    flex: 1;
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    color: #6c757d;
}

.btn-copy {
    padding: 10px 12px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
}

.btn-copy:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-copy:active {
    transform: translateY(0);
}

.btn-copy.copied {
    background: #27ae60;
}

.btn-copy.copied i::before {
    content: "\f00c";
}

.btn-test {
    background: #17a2b8;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.btn-test:hover {
    background: #138496;
    transform: translateY(-1px);
}

.btn-test:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Styles pour le bloc de signalement de problème */
.report-issue-section {
    background: #f8f9fa;
    padding: 40px 0;
    margin-top: 40px;
}

.report-issue-block {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #e74c3c;
}

.report-header {
    text-align: center;
    margin-bottom: 30px;
}

.report-header h3 {
    color: #e74c3c;
    font-size: 24px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.report-header p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

.report-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group select,
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}

.form-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.form-actions button {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .form-actions button {
        width: 100%;
        max-width: 300px;
    }
}

/* Styles pour l'historique de transfert */
.transfer-history {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.transfer-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.transfer-filters select {
    padding: 10px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: white;
    font-size: 1rem;
}

.transfers-table {
    overflow-x: auto;
    margin-bottom: 24px;
}

.transfers-table table {
    width: 100%;
    border-collapse: collapse;
}

.transfers-table th,
.transfers-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #f3f4f6;
}

.transfers-table th {
    background: #f9fafb;
    font-weight: 600;
    color: #374151;
}

.origin-type {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.origin-type.landline {
    background: #dbeafe;
    color: #1e40af;
}

.origin-type.mobile {
    background: #fef3c7;
    color: #92400e;
}

.cost {
    font-weight: 600;
    color: #dc2626;
}

.transfer-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.summary-card {
    background: #f8fafc;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
}

.summary-card h4 {
    margin: 0 0 8px 0;
    color: #64748b;
    font-size: 0.9rem;
}

.summary-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.summary-card p {
    margin: 0;
    color: #64748b;
    font-size: 0.8rem;
}

/* Animations pour la validation d'email */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* Styles pour la validation d'email */
.verification-status {
    text-align: center;
    padding: 2rem;
    animation: fadeIn 0.5s ease-out;
}

.status-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.status-icon.loading {
    color: var(--primary-color);
}

.status-icon.success {
    color: var(--success-color);
}

.status-icon.error {
    color: var(--error-color);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.verification-status h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.verification-status p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.error-actions .btn {
    min-width: 150px;
}

/* Responsive pour la validation d'email */
@media (max-width: 768px) {
    .verification-status {
        padding: 1.5rem;
    }
    
    .status-icon {
        font-size: 3rem;
        height: 60px;
    }
    
    .verification-status h2 {
        font-size: 1.25rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-actions .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Phone Number Selector Styles */
.phone-selector-section {
    margin-bottom: 2rem;
}

.phone-selector-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 1.5rem;
    border: 1px solid #E5E7EB;
}

.selector-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.selector-header h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.selector-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

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

.phone-dropdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.phone-dropdown label {
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.9rem;
}

.phone-dropdown select {
    padding: 0.75rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 0.9rem;
    background: white;
    color: var(--text-color);
    transition: var(--transition);
    cursor: pointer;
}

.phone-dropdown select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(38, 128, 235, 0.1);
}

.phone-dropdown select:hover {
    border-color: var(--primary-color);
}

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

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #F8F9FA;
    border-radius: 6px;
    border-left: 3px solid var(--primary-color);
}

.info-label {
    font-weight: 500;
    color: var(--text-light);
    font-size: 0.85rem;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.active {
    background: #D1FAE5;
    color: #065F46;
}

.status-badge.inactive {
    background: #FEE2E2;
    color: #991B1B;
}

/* Responsive pour le sélecteur de numéros */
@media (max-width: 768px) {
    .selector-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .phone-selector-card {
        padding: 1rem;
    }
    
    .selector-header h3 {
        font-size: 1.1rem;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Navbar Styles for Account Page */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: #333;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    background-color: #f8f9ff;
    color: #667eea;
}

.nav-link.active {
    background-color: #667eea;
    color: white;
}

.auth-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-outline:hover {
    background-color: #667eea;
    color: white;
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
    border-radius: 2px;
}

/* Account Page Styles */
.account-main {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
    background: var(--background-light);
    background-image: radial-gradient(#EBF5FF 1px, transparent 1px);
    background-size: 20px 20px;
}

.account-header {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.account-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.account-header h1 i {
    margin-right: 1rem;
    color: var(--primary-color);
    font-size: 1.8rem !important;
    vertical-align: baseline;
    display: inline-block;
}

.account-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.account-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.account-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.account-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.section-header {
    background: var(--primary-gradient);
    color: white;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.section-header h2 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.section-header h2 i {
    margin-right: 0.75rem;
    color: white;
    opacity: 0.9;
}

.section-content {
    padding: 2rem;
}

/* Form Styles */
.profile-form,
.password-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.9rem;
}

.form-group input {
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(38, 128, 235, 0.1);
}

/* Invoice Styles */
.invoice-filters {
    margin-bottom: 1.5rem;
}

.invoice-filters select {
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
}

.invoice-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.invoice-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.invoice-item:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-light);
}

.invoice-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.invoice-number {
    font-weight: 600;
    color: var(--text-color);
    min-width: 120px;
}

.invoice-date {
    color: var(--text-light);
    min-width: 120px;
}

.invoice-amount {
    font-weight: 600;
    color: var(--text-color);
    min-width: 80px;
}

.invoice-status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    min-width: 80px;
    text-align: center;
}

.status-paid {
    background-color: rgba(0, 212, 170, 0.1);
    color: var(--green);
}

.status-unpaid {
    background-color: rgba(248, 113, 113, 0.1);
    color: var(--red);
}

.invoice-actions {
    display: flex;
    gap: 0.5rem;
}

/* Payment Method Styles */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-method {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.payment-method.active {
    border-color: var(--primary-color);
    background-color: var(--primary-light);
}

.payment-method:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-light);
}

.payment-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.payment-info i {
    font-size: 2rem;
    color: var(--primary-color);
}

.card-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.card-number {
    font-weight: 600;
    color: var(--text-color);
}

.card-expiry {
    color: var(--text-light);
    font-size: 0.9rem;
}

.payment-status {
    background-color: rgba(0, 212, 170, 0.1);
    color: var(--green);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.payment-actions {
    display: flex;
    gap: 0.5rem;
}

.add-payment-method {
    width: 100%;
    padding: 1rem;
    border: 2px dashed var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-payment-method:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Button Styles */
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.btn-danger {
    background-color: var(--red);
    color: white;
    border: none;
}

.btn-danger:hover {
    background-color: #e53e3e;
}

/* Responsive Design for Navbar */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        gap: 0;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1rem 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .account-header h1 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .invoice-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .invoice-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        width: 100%;
    }
    
    .invoice-actions {
        width: 100%;
        justify-content: flex-end;
    }
    
    .payment-method {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .payment-actions {
        width: 100%;
        justify-content: flex-end;
    }
    
    .section-content {
        padding: 1rem;
    }
}

/* API Responsive Design */
@media (max-width: 768px) {
    .api-intro {
        padding: 30px 20px;
    }

    .api-intro h2 {
        font-size: 2rem;
    }

    .api-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 20px;
    }

    .api-quickstart .container,
    .api-endpoints .container,
    .api-sdks .container,
    .api-webhooks .container,
    .api-support .container {
        padding: 40px 20px;
    }

    .api-quickstart h2,
    .api-endpoints h2,
    .api-sdks h2,
    .api-webhooks h2,
    .api-support h2 {
        font-size: 2rem;
    }

    .step {
        padding: 30px 20px;
    }

    .step-number {
        left: 20px;
    }

    .endpoints-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .endpoint-category {
        padding: 20px;
    }

    .endpoint-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        min-height: auto;
    }

    .endpoint-path {
        white-space: normal;
        word-break: break-all;
        max-width: 100%;
    }

    .endpoint-desc {
        white-space: normal;
        max-width: 100%;
        word-wrap: break-word;
    }

    .endpoint-method {
        align-self: flex-start;
    }

    .sdks-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sdk-card {
        padding: 25px 20px;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .webhook-events,
    .webhook-example {
        padding: 30px 20px;
    }

    .support-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .support-card {
        padding: 25px 20px;
    }

    .api-badges {
        gap: 10px;
    }

    .badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Styles pour la section Exemples de Code */
.api-examples {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.api-examples .container {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.api-examples h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-color);
    font-weight: 700;
}

.examples-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.examples-tabs .tab-btn {
    padding: 12px 24px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--text-light);
}

.examples-tabs .tab-btn.active,
.examples-tabs .tab-btn:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.tab-content {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-pane h4 {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.code-block {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 25px;
    overflow-x: auto;
    border: 1px solid #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.code-block pre {
    margin: 0;
    color: #e2e8f0;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive pour les exemples de code */
@media (max-width: 768px) {
    .api-examples {
        padding: 60px 0;
    }
    
    .api-examples .container {
        padding: 40px 20px;
        margin: 0 20px;
    }
    
    .api-examples h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .tab-buttons {
        gap: 10px;
    }
    
    .examples-tabs .tab-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .tab-content {
        padding: 20px;
    }
    
    .code-block {
        padding: 20px;
        font-size: 0.8rem;
    }
}

/* Nouveaux styles pour les sections restructurées de la page sécurité */
.data-protection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.data-principles-block h3,
.data-rights-block h3 {
    color: #a8d5cc;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.principles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.principle-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(45, 90, 79, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(45, 90, 79, 0.1);
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(45, 90, 79, 0.15);
}

.principle-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.principle-icon i {
    color: white;
    font-size: 1.2rem;
}

.principle-content h4 {
    color: #2d5a4f;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.principle-content p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.right-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(45, 90, 79, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(45, 90, 79, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.right-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(45, 90, 79, 0.15);
}

.right-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.right-icon i {
    color: white;
    font-size: 1rem;
}

.right-content h4 {
    color: #2d5a4f;
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.right-content p {
    color: #6b7280;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Styles pour l'équipe sécurité */
.security-team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.team-description-block .team-intro p {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.7;
}

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

.stat-card {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(45, 90, 79, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(45, 90, 79, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(45, 90, 79, 0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.stat-icon i {
    color: white;
    font-size: 1.5rem;
}

.stat-card .stat-number {
    color: #2d5a4f;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-card .stat-label {
    color: #6b7280;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
}

/* Styles pour la gestion des incidents */
.incident-management-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.incident-process-block h3,
.incident-commitments-block h3 {
    color: #a8d5cc;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.step-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(45, 90, 79, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(45, 90, 79, 0.1);
    position: relative;
}

.step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(45, 90, 79, 0.15);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    min-height: 40px;
}

.step-number {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    position: absolute;
    top: -15px;
    left: 15px;
    transition: all 0.3s ease;
    z-index: 1;
    opacity: 0;
    transform: scale(0.8);
}

.step-card:hover .step-number {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.step-header h4 {
    color: #2d5a4f;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.step-card p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.commitments-grid {
    display: grid;
    gap: 20px;
}

.commitment-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(45, 90, 79, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(45, 90, 79, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.commitment-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(45, 90, 79, 0.15);
}

.commitment-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.commitment-icon i {
    color: white;
    font-size: 1.1rem;
}

.commitment-content h4 {
    color: #2d5a4f;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.commitment-content p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Styles pour le contact sécurité */
.security-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(45, 90, 79, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(45, 90, 79, 0.1);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(45, 90, 79, 0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    color: white;
    font-size: 1.8rem;
}

.contact-content h3 {
    color: #2d5a4f;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-content p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Styles pour les ressources sécurité */
.security-resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.resource-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(45, 90, 79, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(45, 90, 79, 0.1);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(45, 90, 79, 0.15);
}

.resource-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.resource-icon i {
    color: white;
    font-size: 1.8rem;
}

.resource-content h3 {
    color: #2d5a4f;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.resource-content p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Styles pour les blocs restructurés */

/* Blocs génériques pour toutes les pages */
.about-section,
.blog-section,
.careers-section,
.docs-section,
.privacy-section,
.terms-section,
.legal-section {
    margin-bottom: 3rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.about-section-header,
.blog-section-header,
.careers-section-header,
.docs-section-header,
.privacy-section-header,
.terms-section-header,
.legal-section-header {
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--green));
    color: white;
}

.about-section-header h2,
.blog-section-header h2,
.careers-section-header h2,
.docs-section-header h2,
.privacy-section-header h2,
.terms-section-header h2,
.legal-section-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.about-section-content,
.blog-section-content,
.careers-section-content,
.docs-section-content,
.privacy-section-content,
.terms-section-content,
.legal-section-content {
    padding: 2rem;
}

/* Sous-sections */
.about-subsection,
.blog-subsection,
.careers-subsection,
.docs-subsection,
.privacy-subsection,
.terms-subsection,
.legal-subsection {
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
}

.about-subsection-header,
.blog-subsection-header,
.careers-subsection-header,
.docs-subsection-header,
.privacy-subsection-header,
.terms-subsection-header,
.legal-subsection-header {
    margin-bottom: 1rem;
}

.about-subsection-header h3,
.blog-subsection-header h3,
.careers-subsection-header h3,
.docs-subsection-header h3,
.privacy-subsection-header h3,
.terms-subsection-header h3,
.legal-subsection-header h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin: 0;
}

.about-subsection-content,
.blog-subsection-content,
.careers-subsection-content,
.docs-subsection-content,
.privacy-subsection-content,
.terms-subsection-content,
.legal-subsection-content {
    color: var(--text-color);
    line-height: 1.6;
}

/* Styles spécifiques pour les grilles et cartes */
.about-team-grid,
.about-values-grid,
.blog-posts-grid,
.careers-positions-grid,
.docs-categories-grid,
.privacy-principles-grid,
.terms-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.about-team-member,
.about-value-card,
.blog-post-card,
.careers-position-card,
.docs-category-card,
.privacy-principle-card,
.terms-service-card {
    background: var(--background-light);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: var(--transition);
    border: 1px solid #e5e7eb;
}

.about-team-member:hover,
.about-value-card:hover,
.blog-post-card:hover,
.careers-position-card:hover,
.docs-category-card:hover,
.privacy-principle-card:hover,
.terms-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--box-shadow);
}

/* Headers de cartes */
.about-team-header,
.about-value-header,
.blog-post-header,
.careers-position-header,
.docs-category-header,
.privacy-principle-header,
.terms-service-header {
    margin-bottom: 1rem;
}

.about-team-header h4,
.about-value-header h4,
.blog-post-header h4,
.careers-position-header h4,
.docs-category-header h4,
.privacy-principle-header h4,
.terms-service-header h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin: 0;
}

/* Contenu de cartes */
.about-team-content,
.about-value-content,
.blog-post-content,
.careers-position-content,
.docs-category-content,
.privacy-principle-content,
.terms-service-content {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Styles spécifiques pour les mentions légales */
.legal-content-block {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.legal-navigation {
    background: var(--background-light);
    padding: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.legal-nav-header h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.legal-nav-content ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.legal-nav-content li {
    padding: 0.5rem 0;
}

.legal-nav-content a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.legal-nav-content a:hover {
    color: var(--primary-color);
}

/* Styles pour les détails spécifiques */
.legal-company-details,
.legal-director-info,
.legal-hosting-info,
.legal-contact-methods,
.legal-trademark-info,
.legal-data-protection,
.legal-cookies-types,
.legal-browser-settings,
.legal-jurisdiction-details,
.legal-mediation-info,
.legal-updates {
    margin-top: 1.5rem;
}

.legal-detail-card,
.legal-director-card,
.legal-hosting-card,
.legal-contact-method,
.legal-trademark,
.legal-cookie-type {
    background: var(--background-light);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--green);
}

.legal-detail-header,
.legal-director-header,
.legal-hosting-header,
.legal-contact-header,
.legal-trademark-header,
.legal-cookie-header {
    margin-bottom: 1rem;
}

.legal-detail-header h4,
.legal-director-header h4,
.legal-hosting-header h4,
.legal-contact-header h4,
.legal-trademark-header h4,
.legal-cookie-header h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin: 0;
}

/* Styles pour les conditions générales */
.terms-security-requirements,
.terms-prohibited-uses,
.terms-pricing-structure,
.terms-data-principles,
.terms-dispute-resolution,
.terms-version-info {
    margin-top: 1.5rem;
}

.terms-security-requirement,
.terms-pricing-item,
.terms-resolution-step {
    background: var(--background-light);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--teal);
}

.terms-requirement-header,
.terms-pricing-header,
.terms-step-header {
    margin-bottom: 1rem;
}

.terms-requirement-header h4,
.terms-pricing-header h4,
.terms-step-header h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin: 0;
}

/* Tables pour les SLA */
.terms-sla-table-container {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.terms-sla-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.terms-sla-table th,
.terms-sla-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.terms-sla-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.terms-sla-table tr:hover {
    background: var(--background-light);
}

/* Responsive design pour les nouvelles sections */
@media (max-width: 768px) {
    .data-protection-grid,
    .security-team-grid,
    .incident-management-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .principles-grid,
    .rights-grid,
    .process-steps-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stats-grid,
    .security-contact-grid,
    .security-resources-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .commitments-grid {
        gap: 15px;
    }
    
    .about-team-grid,
    .about-values-grid,
    .blog-posts-grid,
    .careers-positions-grid,
    .docs-categories-grid,
    .privacy-principles-grid,
    .terms-services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .legal-nav-content ul {
        grid-template-columns: 1fr;
    }
    
    .about-section-header,
    .blog-section-header,
    .careers-section-header,
    .docs-section-header,
    .privacy-section-header,
    .terms-section-header,
    .legal-section-header {
        padding: 1.5rem;
    }
    
    .about-section-content,
    .blog-section-content,
    .careers-section-content,
    .docs-section-content,
    .privacy-section-content,
    .terms-section-content,
    .legal-section-content {
        padding: 1.5rem;
    }
}

/* Modern About Page Styles - Redesigned */

/* Hero Section */
.about-hero {
    position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
}

.about-hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.decoration-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.decoration-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.decoration-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

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

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-hero-badge i {
    color: #ff6b6b;
    font-size: 1.1rem;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 50px;
    opacity: 0.95;
}

.about-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.about-hero-stat {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.about-hero-stat:hover {
    transform: translateY(-5px);
}

.about-hero-stat .stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.about-hero-stat .stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    color: #666;
}

/* Mission & Vision Section */
.about-mission-vision {
    padding: 100px 0;
    background: #f8fafc;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-card, .vision-card {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before, .vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.mission-icon, .vision-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: white;
}

.mission-card h2, .vision-card h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 600;
}

.mission-card p, .vision-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.mission-features, .vision-goals {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item, .goal-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.feature-item i, .goal-item i {
    color: #667eea;
    font-size: 1.1rem;
    width: 20px;
}

.feature-item span, .goal-item span {
    color: #2d3748 !important;
    font-weight: 500;
}

.mission-card .feature-item span {
    color: #2d3748 !important;
    font-weight: 500;
}

/* Story Section */
.about-story {
    padding: 100px 0;
    background: white;
}

.story-content {
    max-width: 1000px;
    margin: 0 auto;
}

.story-header {
    text-align: center;
    margin-bottom: 80px;
}

.story-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: white;
}

.story-header h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 15px;
    font-weight: 700;
}

.story-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    font-style: italic;
}

.story-timeline {
    position: relative;
    padding-left: 50px;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #667eea, #764ba2);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    padding-left: 60px;
}

.timeline-marker {
    position: absolute;
    left: -30px;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 15px;
    font-weight: 600;
}

.timeline-content p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Values Section - Modern */
.about-values-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.values-header {
    text-align: center;
    margin-bottom: 80px;
}

.values-header h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 700;
}

.values-header p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card-modern {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.value-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card-modern:hover::before {
    transform: scaleX(1);
}

.value-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.2);
}

.value-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.value-card-modern:hover .value-icon-modern {
    transform: scale(1.1) rotate(5deg);
}

.value-card-modern h3 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 600;
}

.value-card-modern p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 25px;
}

.value-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Team Section */
.about-team {
    padding: 100px 0;
    background: white;
}

.team-header {
    text-align: center;
    margin-bottom: 80px;
}

.team-header h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 700;
}

.team-header p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.team-member {
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.member-photo {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.photo-placeholder {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.member-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-info {
    padding: 30px;
}

.member-info h4 {
    font-size: 1.3rem;
    color: #1a202c;
    margin-bottom: 8px;
    font-weight: 600;
}

.member-role {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.member-description {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.expertise-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.member-social {
    display: flex;
    gap: 12px;
}

.member-social a {
    width: 35px;
    height: 35px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.team-join {
    max-width: 500px;
    margin: 0 auto;
}

.join-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.join-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    backdrop-filter: blur(10px);
}

.join-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.join-card p {
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Statistics Section */
.about-statistics {
    padding: 100px 0;
    background: #1a202c;
    color: white;
}

.statistics-header {
    text-align: center;
    margin-bottom: 80px;
}

.statistics-header h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.statistics-header p {
    font-size: 1.2rem;
    color: #a0aec0;
    max-width: 600px;
    margin: 0 auto;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.stat-card .stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: white;
}

.stat-content {
    margin-bottom: 25px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    display: inline-block;
    margin-bottom: 8px;
}

.stat-plus, .stat-separator {
    font-size: 2rem;
    color: #667eea;
    font-weight: 700;
}

.stat-label {
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-description {
    font-size: 0.9rem;
    color: #a0aec0;
    line-height: 1.5;
}

.stat-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
    transition: width 2s ease;
    width: 0;
}

/* CTA Section */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.about-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-cta p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    padding: 18px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: white;
    color: #667eea;
    border: 3px solid white;
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-secondary {
    background: #000000;
    color: white;
    border: 3px solid #000000;
}

.cta-buttons .btn-secondary:hover {
    background: #333333;
    border-color: #333333;
    transform: translateY(-3px);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    opacity: 0.9;
}

.cta-feature i {
    color: #4ade80;
    font-size: 1.1rem;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mission-card, .vision-card {
        padding: 30px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 20px;
    }
    
    /* Blog responsive */
    .blog-hero {
        padding: 60px 0 50px 0;
    }
    
    .blog-hero h1 {
        font-size: 2.5rem;
    }
    
    .blog-hero-stats {
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .blog-categories {
        gap: 8px;
    }
    
    .category-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .blog-articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-article-content {
        padding: 20px;
    }
    
    /* Responsive pour le bloc Article à la Une */
    .featured-article-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .featured-article-content {
        padding: 30px 20px;
    }
    
    .featured-content-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .featured-article-content h3 {
        font-size: 1.5rem;
    }
    
    .featured-article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .featured-article-actions {
        flex-direction: column;
        gap: 16px;
    }
    
    .article-engagement {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .featured-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .pagination-controls {
        flex-direction: column;
        gap: 15px;
    }
    
    .pagination-numbers {
        order: -1;
    }
    
    .pagination-jump {
        flex-direction: column;
        gap: 8px;
    }
}

/* Styles modernes pour la page Blog */
.blog-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 0 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Styles pour les badges hero dans la section blog */
.blog-hero .hero-badges {
    margin-bottom: 30px;
}

.blog-hero .badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

.blog-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-hero p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.blog-hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-search-container {
    max-width: 800px;
    margin: 0 auto;
}

.blog-search-box {
    position: relative;
    margin-bottom: 30px;
}

.blog-search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 18px;
}

.blog-search-box input {
    width: 100%;
    padding: 18px 20px 18px 55px;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    font-size: 16px;
    color: #374151;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-search-box input:focus {
    outline: none;
    background: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.blog-search-box input::placeholder {
    color: #9ca3af;
}

.blog-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.category-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.category-btn.active {
    background: white;
    color: #667eea;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.category-btn i {
    font-size: 16px;
}

/* Styles pour le bloc Article à la Une */
.featured-article-container {
    margin: 40px 15px 60px 15px;
}

.featured-article-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
    position: relative;
    min-height: 500px;
}

.featured-article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.featured-article-image {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    height: 300px;
}

.featured-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-article-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
}

.featured-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.featured-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.featured-badge.trending {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
}

.featured-badge.exclusive {
    background: linear-gradient(135deg, #feca57, #ff9ff3);
    color: white;
}

.featured-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.featured-stats {
    display: flex;
    gap: 20px;
}

.featured-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.featured-stats .stat-item i {
    font-size: 16px;
}

.featured-article-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.featured-content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.featured-category {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-reading-time {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 600;
}

.featured-article-content h3 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #1f2937;
    background: linear-gradient(135deg, #1f2937 0%, #4f46e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.featured-article-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 30px;
}

.featured-article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: #1f2937;
    font-size: 16px;
}

.author-title {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.article-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 600;
}

.featured-article-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.btn-featured-primary {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-featured-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.article-engagement {
    display: flex;
    gap: 12px;
}

.engagement-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #64748b;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.engagement-btn:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
}

.engagement-btn.like:hover {
    background: #ef4444;
    border-color: #ef4444;
}

.engagement-btn.share:hover {
    background: #10b981;
    border-color: #10b981;
}

.engagement-btn.bookmark:hover {
    background: #f59e0b;
    border-color: #f59e0b;
}

/* Styles pour les cartes d'articles */
.blog-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin: 40px 15px 0 15px;
}

.blog-article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
    position: relative;
}

.blog-article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.blog-article-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.blog-article-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
}

.blog-article-category {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.blog-article-category.ia {
    background: rgba(139, 69, 19, 0.9);
    color: white;
}

.blog-article-category.business {
    background: rgba(34, 197, 94, 0.9);
    color: white;
}

.blog-article-category.tech {
    background: rgba(59, 130, 246, 0.9);
    color: white;
}

.blog-article-category.case-study {
    background: rgba(168, 85, 247, 0.9);
    color: white;
}

.blog-article-category.guide {
    background: rgba(245, 158, 11, 0.9);
    color: white;
}

.blog-article-category.news {
    background: rgba(239, 68, 68, 0.9);
    color: white;
}

.blog-article-category.trending {
    background: rgba(239, 68, 68, 0.9);
    color: white;
}

.blog-article-category.hot {
    background: rgba(245, 158, 11, 0.9);
    color: white;
}

.blog-article-category.new {
    background: rgba(34, 197, 94, 0.9);
    color: white;
}

.blog-article-category.innovation {
    background: rgba(59, 130, 246, 0.9);
    color: white;
}

.blog-article-category.cas-usage {
    background: rgba(168, 85, 247, 0.9);
    color: white;
}

.blog-article-category.resource {
    background: rgba(99, 102, 241, 0.9);
    color: white;
}

.blog-article-category.webinar {
    background: rgba(16, 185, 129, 0.9);
    color: white;
}

.blog-article-category.documentation {
    background: rgba(107, 114, 128, 0.9);
    color: white;
}

.blog-article-category.podcast {
    background: rgba(139, 69, 19, 0.9);
    color: white;
}

.blog-article-category.community {
    background: rgba(245, 101, 101, 0.9);
    color: white;
}

.blog-bookmark-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.blog-bookmark-btn:hover {
    background: white;
    transform: scale(1.1);
}

.blog-bookmark-btn i {
    color: #6b7280;
    font-size: 16px;
}

.blog-article-content {
    padding: 30px;
}

.blog-article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.meta-left {
    display: flex;
    gap: 16px;
}

.blog-article-date,
.blog-article-read-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.blog-article-date i,
.blog-article-read-time i {
    font-size: 12px;
}

.blog-article-views {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.blog-article-views i {
    font-size: 12px;
}

.blog-article-icon {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.blog-article-icon i {
    color: #6b7280;
    font-size: 16px;
}

.blog-article-card.resource .blog-article-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-article-card.resource .blog-article-image img {
    display: none;
}

.blog-trending-badge,
.blog-featured-badge,
.blog-new-badge,
.blog-expert-badge,
.blog-recommended-badge,
.blog-breaking-badge,
.blog-success-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-trending-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
}

.blog-featured-badge {
    background: linear-gradient(135deg, #feca57, #ff9ff3);
    color: white;
}

.blog-new-badge {
    background: linear-gradient(135deg, #48cae4, #023e8a);
    color: white;
}

.blog-expert-badge {
    background: linear-gradient(135deg, #a8e6cf, #3d5a80);
    color: white;
}

.blog-recommended-badge {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    color: white;
}

.blog-breaking-badge {
    background: linear-gradient(135deg, #fd79a8, #e84393);
    color: white;
}

.blog-success-badge {
    background: linear-gradient(135deg, #00b894, #00a085);
    color: white;
}

.blog-article-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    color: #1f2937;
    transition: color 0.3s ease;
}

.blog-article-card:hover h3 {
    color: #667eea;
}

.blog-article-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 15px;
}

.blog-article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.blog-article-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    position: relative;
}

.author-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f1f5f9;
}

.author-status {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    border: 2px solid white;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 14px;
}

.author-role {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}

.blog-article-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 500;
}

.like-btn {
    color: #6b7280;
}

.like-btn:hover {
    background: #fef2f2;
    color: #ef4444;
}

.share-btn {
    color: #6b7280;
}

.share-btn:hover {
    background: #f0f9ff;
    color: #3b82f6;
}

.view-count {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #9ca3af;
    font-weight: 500;
}

/* Styles pour la pagination moderne */
.blog-pagination {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 60px;
    padding: 30px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    position: relative;
    z-index: 1000;
}

.pagination-info {
    text-align: center;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: white;
    color: #64748b;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    position: relative;
    z-index: 1001;
}

.pagination-btn:hover:not(:disabled) {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-number {
    width: 40px;
    height: 40px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    color: #64748b;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    position: relative;
    z-index: 1001;
}

.page-number:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.page-number.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.pagination-dots {
    color: #9ca3af;
    font-weight: 600;
    padding: 0 8px;
}

.pagination-jump {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #64748b;
}

.page-jump-input {
    width: 60px;
    padding: 8px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.page-jump-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.page-jump-btn {
    padding: 8px 16px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    position: relative;
    z-index: 1001;
}

.page-jump-btn:hover {
    background: #5a67d8;
    transform: translateY(-1px);
}

/* ===== PRESS PAGE STYLES ===== */

/* Press Hero Section */
.press-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.press-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.press-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.press-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.press-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.press-hero .highlight {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.press-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.press-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.press-stat {
    text-align: center;
}

.press-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    color: #ffd700;
}

.press-stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.press-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.press-hero-btn {
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.press-hero-btn.primary {
    background: white;
    color: #667eea;
}

.press-hero-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.press-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.press-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

/* Press Sections Common Styles */
.press-releases-section,
.press-kit-section,
.press-contact-section,
.press-mentions-section {
    padding: 80px 0;
}

.press-releases-section {
    background: #f8fafc;
}

.press-kit-section {
    background: white;
}

.press-contact-section {
    background: #f8fafc;
}

.press-mentions-section {
    background: white;
}

.press-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #667eea;
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.press-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a202c;
}

.press-section-header .highlight {
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Press Releases */
.press-releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.press-release-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e2e8f0;
}

.press-release-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.press-release-card.featured {
    border: 2px solid #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.press-release-priority {
    position: absolute;
    top: -10px;
    right: 20px;
}

.priority-badge {
    background: #ffd700;
    color: #1a202c;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.press-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.press-category-badge.financing {
    background: #dcfce7;
    color: #166534;
}

.press-category-badge.partnership {
    background: #dbeafe;
    color: #1e40af;
}

.press-category-badge.certification {
    background: #fef3c7;
    color: #92400e;
}

.press-release-card.featured .press-category-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.press-release-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.press-release-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.8;
}

.press-release-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.press-release-content p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.press-release-highlights {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.press-release-card.featured .highlight-item {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.press-release-footer {
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.press-release-card.featured .press-release-footer {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.press-release-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.press-btn-primary {
    background: #667eea;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.press-btn-primary:hover {
    background: #5a67d8;
    transform: translateY(-1px);
}

.press-release-card.featured .press-btn-primary {
    background: white;
    color: #667eea;
}

.press-btn-share {
    background: none;
    border: 1px solid #e2e8f0;
    color: #64748b;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.press-btn-share:hover {
    background: #f1f5f9;
    color: #1a202c;
}

.press-release-card.featured .press-btn-share {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.press-release-card.featured .press-btn-share:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Press Kit */
.press-kit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.press-kit-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.press-kit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.press-kit-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.press-kit-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.press-kit-icon.logos {
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.press-kit-icon.documents {
    background: linear-gradient(45deg, #f093fb, #f5576c);
}

.press-kit-icon.data {
    background: linear-gradient(45deg, #4facfe, #00f2fe);
}

.press-kit-badge {
    background: #f1f5f9;
    color: #64748b;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.press-kit-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a202c;
}

.press-kit-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.press-kit-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
}

.press-kit-footer {
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.press-kit-btn {
    background: #667eea;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
}

.press-kit-btn:hover {
    background: #5a67d8;
    transform: translateY(-1px);
}

.press-kit-all {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.press-kit-all-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.press-kit-all-content p {
    opacity: 0.9;
    line-height: 1.6;
}

.press-kit-all-btn {
    background: white;
    color: #667eea;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.press-kit-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Press Contact */
.press-contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.press-contact-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.press-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.press-contact-card.primary {
    border: 2px solid #667eea;
}

.press-contact-avatar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.avatar-placeholder {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.contact-status {
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
}

.status-text {
    font-size: 12px;
    color: #10b981;
    font-weight: 500;
}

.press-contact-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a202c;
}

.contact-role {
    color: #64748b;
    margin-bottom: 16px;
    font-weight: 500;
}

.contact-specialties {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.specialty-tag {
    background: #f1f5f9;
    color: #64748b;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.press-contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #64748b;
}

.contact-item a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #5a67d8;
}

.press-contact-actions {
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.contact-btn {
    background: #667eea;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
}

.contact-btn:hover {
    background: #5a67d8;
    transform: translateY(-1px);
}

.contact-btn.primary {
    background: #667eea;
}

.press-contact-general {
    background: #f8fafc;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
}

.general-contact-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a202c;
}

.general-contact-content p {
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.6;
}

.general-contact-info {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

/* Press Mentions */
.press-mentions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.press-mention-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
}

.press-mention-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.press-mention-card.featured {
    border: 2px solid #667eea;
}

.mention-priority {
    position: absolute;
    top: -10px;
    right: 20px;
}

.press-mention-source {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.source-logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.source-logo.international {
    background: linear-gradient(45deg, #4facfe, #00f2fe);
}

.source-logo.business {
    background: linear-gradient(45deg, #f093fb, #f5576c);
}

.source-logo.tech {
    background: linear-gradient(45deg, #43e97b, #38f9d7);
}

.source-info {
    display: flex;
    flex-direction: column;
}

.source-name {
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 4px;
}

.source-category {
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 500;
}

.press-mention-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
    color: #1a202c;
}

.mention-excerpt {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mention-highlights {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.highlight-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f1f5f9;
    color: #64748b;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.press-mention-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.mention-meta {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: #64748b;
}

.mention-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.mention-btn {
    background: #667eea;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.mention-btn:hover {
    background: #5a67d8;
    transform: translateY(-1px);
}

.press-mentions-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.mentions-cta-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.mentions-cta-content p {
    opacity: 0.9;
    line-height: 1.6;
}

.mentions-cta-btn {
    background: white;
    color: #667eea;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.mentions-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .press-hero {
        padding: 80px 0 60px;
    }
    
    .press-hero h1 {
        font-size: 2.5rem;
    }
    
    .press-hero-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .press-hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .press-releases-grid,
    .press-kit-grid,
    .press-contacts-grid,
    .press-mentions-grid {
        grid-template-columns: 1fr;
    }
    
    .press-kit-all,
    .press-mentions-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .press-kit-all-btn,
    .mentions-cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .general-contact-info {
        flex-direction: column;
        gap: 16px;
    }
    
    .press-mention-footer {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .mention-meta {
        flex-direction: column;
        gap: 8px;
    }
}

/* ===== PARTNERS PAGE STYLES ===== */

/* Partners Hero Section */
.partners-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.partners-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.partners-hero .container {
    position: relative;
    z-index: 2;
}

.partners-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.partners-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.partners-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.partners-hero .highlight {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partners-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.partners-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.hero-stat {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 8px;
}

.hero-stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.partners-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-btn {
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-btn.primary {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a1a;
}

.hero-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 14px;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Partners Tech Section */
.partners-tech-section {
    padding: 80px 0;
    background: #f8fafc;
}

.partners-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.partners-tech-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.partners-tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

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

.partners-tech-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.tech-logo {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.tech-priority {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.tech-priority.high {
    background: #fee2e2;
    color: #dc2626;
}

.tech-priority.medium {
    background: #fef3c7;
    color: #d97706;
}

.partners-tech-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1e293b;
}

.tech-category {
    display: inline-block;
    padding: 4px 12px;
    background: #e0e7ff;
    color: #3730a3;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 16px;
}

.partners-tech-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tech-features {
    margin-bottom: 24px;
}

.tech-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #475569;
}

.feature-icon {
    color: #10b981;
}

.partners-tech-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.tech-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tech-integration {
    font-size: 12px;
    color: #64748b;
}

.tech-status {
    font-size: 12px;
    font-weight: 500;
    color: #10b981;
}

.tech-action {
    padding: 8px 16px;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-action:hover {
    background: #5a67d8;
    transform: translateY(-1px);
}

/* Partners Integration Section */
.partners-integration-section {
    padding: 80px 0;
    background: white;
}

.partners-integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.partners-integration-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.partners-integration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
}

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

.partners-integration-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.integration-logo {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.integration-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.integration-status.active {
    background: #dcfce7;
    color: #166534;
}

.integration-status.beta {
    background: #fef3c7;
    color: #d97706;
}

.partners-integration-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1e293b;
}

.integration-category {
    display: inline-block;
    padding: 4px 12px;
    background: #dcfce7;
    color: #166534;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 16px;
}

.partners-integration-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.integration-features {
    margin-bottom: 24px;
}

.integration-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #475569;
}

.partners-integration-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.integration-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.integration-setup {
    font-size: 12px;
    color: #64748b;
}

.integration-users {
    font-size: 12px;
    font-weight: 500;
    color: #10b981;
}

.integration-action {
    padding: 8px 16px;
    background: #10b981;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.integration-action:hover {
    background: #059669;
    transform: translateY(-1px);
}

/* Partners Distribution Section */
.partners-distribution-section {
    padding: 80px 0;
    background: #f8fafc;
}

.partners-distribution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.partners-distribution-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.partners-distribution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

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

.partners-distribution-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.distribution-logo {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.distribution-priority {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.distribution-priority.premium {
    background: #fef3c7;
    color: #d97706;
}

.distribution-priority.certified {
    background: #dcfce7;
    color: #166534;
}

.partners-distribution-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1e293b;
}

.distribution-category {
    display: inline-block;
    padding: 4px 12px;
    background: #fef3c7;
    color: #d97706;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 16px;
}

.partners-distribution-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.distribution-highlights {
    margin-bottom: 24px;
}

.distribution-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #475569;
}

.highlight-icon {
    color: #f59e0b;
}

.partners-distribution-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.distribution-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.distribution-region {
    font-size: 12px;
    color: #64748b;
}

.distribution-clients {
    font-size: 12px;
    font-weight: 500;
    color: #f59e0b;
}

.distribution-action {
    padding: 8px 16px;
    background: #f59e0b;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.distribution-action:hover {
    background: #d97706;
    transform: translateY(-1px);
}

.distribution-cta {
    margin-top: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: white;
}

.distribution-cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.distribution-cta p {
    font-size: 1.125rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-btn.primary {
    background: white;
    color: #667eea;
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Partners Program Section */
.partners-program-section {
    padding: 80px 0;
    background: white;
}

.partners-program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.partners-program-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.partners-program-card.bronze::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #cd7f32, #b8860b);
}

.partners-program-card.silver::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c0c0c0, #a8a8a8);
}

.partners-program-card.gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
}

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

.program-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.program-icon.bronze {
    background: linear-gradient(135deg, #cd7f32, #b8860b);
    color: white;
}

.program-icon.silver {
    background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
    color: white;
}

.program-icon.gold {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a1a;
}

.partners-program-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1e293b;
}

.program-subtitle {
    color: #64748b;
    margin-bottom: 24px;
    font-size: 14px;
}

.program-benefits {
    text-align: left;
    margin-bottom: 24px;
}

.program-benefits h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #374151;
}

.program-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #475569;
}

.benefit-icon {
    color: #10b981;
}

.program-requirements {
    text-align: left;
    margin-bottom: 24px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.program-requirements h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #374151;
}

.program-requirement {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #475569;
}

.requirement-icon {
    color: #f59e0b;
}

.program-action {
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
}

.program-action.bronze {
    background: linear-gradient(135deg, #cd7f32, #b8860b);
    color: white;
}

.program-action.silver {
    background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
    color: white;
}

.program-action.gold {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a1a;
}

.program-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.program-comparison {
    margin-top: 48px;
    background: #f8fafc;
    border-radius: 20px;
    padding: 40px;
}

.program-comparison h3 {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1e293b;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table th,
.comparison-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #374151;
}

.comparison-table td {
    color: #64748b;
}

.comparison-table .check {
    color: #10b981;
    font-weight: 600;
}

.comparison-table .cross {
    color: #ef4444;
    font-weight: 600;
}

/* Partners Contact Section */
.partners-contact-section {
    padding: 80px 0;
    background: #f8fafc;
}

.partners-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.partners-contact-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.partners-contact-card.tech::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.partners-contact-card.commercial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
}

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

.contact-type-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.type-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.type-icon.tech {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.type-icon.commercial {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.type-label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partners-contact-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1e293b;
}

.contact-category {
    display: inline-block;
    padding: 4px 12px;
    background: #e0e7ff;
    color: #3730a3;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 16px;
}

.partners-contact-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-highlights {
    margin-bottom: 24px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #475569;
}

.highlight-icon {
    color: #10b981;
}

.partners-contact-footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.contact-person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.person-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.person-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.person-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 14px;
}

.person-role {
    color: #64748b;
    font-size: 12px;
}

.contact-actions {
    display: flex;
    gap: 12px;
}

.contact-btn {
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center;
}

.contact-btn.primary {
    background: #667eea;
    color: white;
}

.contact-btn.primary:hover {
    background: #5a67d8;
    transform: translateY(-1px);
}

.contact-btn.secondary {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.contact-btn.secondary:hover {
    background: #e2e8f0;
    transform: translateY(-1px);
}

.contact-cta {
    margin-top: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    flex-wrap: wrap;
    gap: 24px;
}

.cta-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.cta-content p {
    font-size: 1.125rem;
    opacity: 0.9;
}

.cta-stats {
    display: flex;
    gap: 32px;
}

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

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .partners-hero {
        padding: 80px 0 60px;
    }
    
    .partners-hero h1 {
        font-size: 2.5rem;
    }
    
    .partners-hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .partners-hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .partners-tech-grid,
    .partners-integration-grid,
    .partners-distribution-grid,
    .partners-program-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .contact-actions {
        flex-direction: column;
    }
    
    .comparison-table {
        font-size: 14px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }
}

/* ===== CAREERS PAGE STYLES ===== */

/* Careers Hero Section */
.careers-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.careers-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.careers-hero .container {
    position: relative;
    z-index: 2;
}

.careers-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.careers-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.careers-hero h1 .highlight {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.careers-hero-stats {
    display: flex;
    gap: 48px;
    margin: 48px 0;
    justify-content: center;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.hero-stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

.careers-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    animation: bounce 2s infinite;
}

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

/* Careers Culture Section - Modern Design */
.careers-culture-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
}

.careers-culture-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.careers-culture-section .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.careers-culture-section h2 {
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.careers-culture-section .careers-section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

/* Culture Hero Section */
.culture-hero-wrapper {
    position: relative;
    padding: 80px 0;
    margin-bottom: 60px;
}

.culture-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.culture-hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

.culture-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
}

.culture-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.culture-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.culture-stat-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.culture-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.culture-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.culture-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Culture Values Container */
.culture-values-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.culture-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

/* Culture Value Cards */
.culture-value-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.culture-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
}

.culture-value-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.culture-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.culture-value-card:hover .culture-card-glow {
    opacity: 1;
}

.culture-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.culture-icon-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.culture-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    opacity: 0.1;
}

.innovation-icon .culture-icon-bg {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.collaboration-icon .culture-icon-bg {
    background: linear-gradient(135deg, #10b981, #059669);
}

.growth-icon .culture-icon-bg {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.balance-icon .culture-icon-bg {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.culture-icon {
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 2;
}

.innovation-icon .culture-icon {
    color: #f59e0b;
}

.collaboration-icon .culture-icon {
    color: #059669;
}

.growth-icon .culture-icon {
    color: #7c3aed;
}

.balance-icon .culture-icon {
    color: #0891b2;
}

.culture-card-badge {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    color: #667eea;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.culture-card-content {
    position: relative;
    z-index: 2;
}

.culture-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.culture-card-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 15px;
}

.culture-features-list {
    margin-bottom: 24px;
}

.culture-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #4b5563;
}

.feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    flex-shrink: 0;
}

.culture-card-metric {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.metric-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 12px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Culture Testimonials */
.culture-testimonials-section {
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.testimonials-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 50px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-content p {
    font-style: italic;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.author-role {
    font-size: 14px;
    color: #6b7280;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .culture-values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .culture-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .culture-value-card {
        padding: 30px 20px;
    }
    
    .culture-stat-number {
        font-size: 2.5rem;
    }
}

/* ===== CAREERS BENEFITS SECTION - MODERN DESIGN ===== */
.careers-benefits-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

/* Benefits Hero Background */
.benefits-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.benefits-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

.floating-icon-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.floating-icon-3 {
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.floating-icon-4 {
    top: 70%;
    right: 10%;
    animation-delay: 3s;
}

.floating-icon-5 {
    top: 40%;
    left: 50%;
    animation-delay: 4s;
}

.floating-icon-6 {
    top: 80%;
    right: 40%;
    animation-delay: 5s;
}

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

.benefits-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

/* Benefits Stats */
.benefits-stats-container {
    margin: 60px 0;
    position: relative;
    z-index: 2;
}

.benefits-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.benefit-stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Modern Benefits Grid */
.benefits-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.benefit-modern-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.benefit-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.benefit-modern-card:hover::before {
    opacity: 1;
}

.benefit-modern-card:hover .card-glow-effect {
    opacity: 1;
}

.card-glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.premium-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 193, 7, 0.1) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.card-header {
    padding: 30px 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.benefit-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.icon-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.premium-icon .icon-background {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 193, 7, 0.2) 100%);
}

.remote-icon .icon-background {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.3) 0%, rgba(139, 195, 74, 0.2) 100%);
}

.learning-icon .icon-background {
    background: linear-gradient(135deg, rgba(63, 81, 181, 0.3) 0%, rgba(103, 58, 183, 0.2) 100%);
}

.health-icon .icon-background {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.3) 0%, rgba(156, 39, 176, 0.2) 100%);
}

.vacation-icon .icon-background {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.3) 0%, rgba(255, 193, 7, 0.2) 100%);
}

.equity-icon .icon-background {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.3) 0%, rgba(0, 150, 136, 0.2) 100%);
}

.benefit-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-badge {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 193, 7, 0.2) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.card-content {
    padding: 20px 30px 30px;
    position: relative;
    z-index: 2;
}

.benefit-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.benefit-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
}

.benefit-features-modern {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.feature-item span {
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
}

.benefit-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-value {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.metric-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Benefits CTA Section */
.benefits-cta-section {
    margin-top: 80px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.benefits-cta-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.benefits-cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.benefits-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-modern,
.btn-secondary-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    border: 2px solid transparent;
}

.btn-primary-modern {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    color: #667eea;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
    color: #667eea;
}

.btn-secondary-modern {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .careers-benefits-section {
        padding: 80px 0;
    }
    
    .benefits-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .benefits-modern-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .benefit-modern-card {
        margin: 0 10px;
    }
    
    .card-header {
        padding: 20px 20px 0;
    }
    
    .card-content {
        padding: 15px 20px 20px;
    }
    
    .benefit-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .benefit-icon {
        width: 30px;
        height: 30px;
    }
    
    .benefit-title {
        font-size: 20px;
    }
    
    .benefits-cta-content h3 {
        font-size: 24px;
    }
    
    .benefits-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-modern,
    .btn-secondary-modern {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .floating-icon {
        font-size: 1.5rem;
    }
}

/* Careers Testimonials Section */
.careers-testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.careers-testimonials-section .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.careers-testimonials-section h2 .highlight {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-stats {
    display: flex;
    gap: 48px;
    margin: 48px 0;
    justify-content: center;
}

.testimonial-stat {
    text-align: center;
}

.testimonial-stat-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fbbf24;
}

.testimonial-stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

.testimonials-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.author-location {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Careers Jobs Section */
.careers-jobs-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.careers-jobs-section .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.careers-jobs-section h2 .highlight {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.jobs-stats {
    display: flex;
    gap: 48px;
    margin: 48px 0;
    justify-content: center;
}

.job-stat {
    text-align: center;
}

.job-stat-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #8b5cf6;
}

.job-stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.jobs-search-bar {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 48px;
}

.search-input-group {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.search-input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.search-btn {
    padding: 16px 32px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.jobs-filters {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-select {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: white;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: #8b5cf6;
}

.filter-count {
    background: #8b5cf6;
    color: white;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Job Cards */
.job-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e2e8f0;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
    border-radius: 20px 20px 0 0;
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #8b5cf6;
}

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

.job-title-section {
    flex: 1;
}

.job-priority-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 16px;
}

.job-badges {
    display: flex;
    gap: 8px;
    margin: 16px 0;
}

.team-badge {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.job-highlights {
    display: flex;
    gap: 16px;
    margin: 20px 0;
}

.job-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 14px;
}

.skills-primary {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.skill-primary {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    color: #475569;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #e2e8f0;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.job-salary {
    font-size: 1.2rem;
    font-weight: 700;
    color: #059669;
}

.job-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #64748b;
    font-size: 14px;
}

/* Newsletter Popup - Modern Style */
.newsletter-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-popup.show {
    opacity: 1;
    visibility: visible;
}

.newsletter-popup-content {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: scale(0.7) translateY(50px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-popup.show .newsletter-popup-content {
    transform: scale(1) translateY(0);
}

.newsletter-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #64748b;
}

.newsletter-popup-close:hover {
    background: rgba(0, 0, 0, 0.15);
    transform: rotate(90deg);
    color: #374151;
}

.newsletter-popup-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669, #047857);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    position: relative;
    overflow: hidden;
    animation: pulse-success 2s ease-in-out infinite;
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
}

.newsletter-popup-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: ripple-effect 3s ease-in-out infinite;
}

.newsletter-popup-icon i {
    color: white;
    font-size: 2.2rem;
    z-index: 2;
    position: relative;
    animation: icon-float 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Icône d'erreur */
.newsletter-popup-icon.error {
    background: linear-gradient(135deg, #ef4444, #dc2626, #b91c1c);
    box-shadow: 0 15px 35px rgba(239, 68, 68, 0.4);
    animation: shake-error 0.5s ease-in-out;
}

.newsletter-popup-content.error .newsletter-popup-icon::before {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
}

.newsletter-popup-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 16px 0;
    background: linear-gradient(135deg, #1f2937, #374151);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-popup-content h3.success {
    background: linear-gradient(135deg, #059669, #047857);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-popup-content h3.error {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-popup-content p {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 32px 0;
}

.newsletter-popup-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    border-radius: 16px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.newsletter-popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669, #047857);
}

/* Animations */
@keyframes pulse-success {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes ripple-effect {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    70% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes icon-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-3px) rotate(-2deg);
    }
    75% {
        transform: translateY(3px) rotate(2deg);
    }
}

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

.job-actions {
    display: flex;
    gap: 12px;
}

.save-btn {
    padding: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #64748b;
}

.save-btn:hover {
    background: #f1f5f9;
    color: #8b5cf6;
}

.apply-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

/* Careers Process Section */
.careers-process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

.careers-process-section .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.process-stats {
    display: flex;
    gap: 48px;
    margin: 48px 0;
    justify-content: center;
}

.process-stat {
    text-align: center;
}

.process-stat-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fbbf24;
}

.process-stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

.process-timeline {
    position: relative;
    margin: 64px 0;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.timeline-step {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    width: 200px;
    transition: all 0.3s ease;
}

.timeline-step:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fbbf24;
    transform: translateY(-8px);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: white;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-duration {
    color: #fbbf24;
    font-size: 14px;
    font-weight: 600;
}

.process-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 64px 0;
}

.process-feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.process-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.2rem;
    color: white;
}

.process-cta {
    text-align: center;
    margin-top: 64px;
}

.process-cta-btn {
    padding: 16px 32px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #0f172a;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.process-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(251, 191, 36, 0.4);
}

/* FontAwesome Icons Size Control - Commenté pour permettre les tailles naturelles */
/* .fas, .fab, .far {
    font-size: 1rem !important;
} */

/* Navigation icons */
nav .fas {
    font-size: 0.9rem !important;
    margin-right: 6px;
}

/* Hero section icons */
.careers-hero-stat-icon .fas {
    font-size: 1.5rem !important;
}

.careers-hero-btn-primary .fas,
.careers-hero-btn-secondary .fas {
    font-size: 1rem !important;
}

.careers-hero-scroll .fas {
    font-size: 0.9rem !important;
}

/* Section badges icons */
.careers-section-badge .fas,
.section-badge .fas {
    font-size: 0.9rem !important;
}

/* Benefits section icons */
.benefits-hero-background .fas {
    font-size: 1.2rem !important;
}

/* Process section icons */
.step-icon .fas {
    font-size: 1.2rem !important;
}

.feature-icon .fas {
    font-size: 1rem !important;
}

.process-cta-btn .fas {
    font-size: 1rem !important;
}

/* Jobs section icons */
.jobs-search-btn .fas {
    font-size: 1rem !important;
}

.jobs-filter-btn .fas {
    font-size: 0.9rem !important;
}

/* General icon containers */
.icon-container .fas,
.icon-wrapper .fas {
    font-size: 1.2rem !important;
}

/* Testimonials section icons */
.testimonials-modern-section .fas {
    font-size: 1rem !important;
    width: auto !important;
    height: auto !important;
}

.testimonials-stats .fas {
    font-size: 1.5rem !important;
    width: auto !important;
    height: auto !important;
}

.testimonial-card .fas {
    font-size: 0.9rem !important;
    width: auto !important;
    height: auto !important;
}

/* Jobs section icons */
.jobs-modern-section .fas {
    font-size: 1rem !important;
    width: auto !important;
    height: auto !important;
}

.jobs-stat-icon .fas {
    font-size: 1.5rem !important;
    width: auto !important;
    height: auto !important;
}

.jobs-card .fas {
    font-size: 0.9rem !important;
    width: auto !important;
    height: auto !important;
}

.jobs-badge .fas {
    font-size: 0.8rem !important;
    width: auto !important;
    height: auto !important;
}

.jobs-highlight .fas {
    font-size: 0.9rem !important;
    width: auto !important;
    height: auto !important;
}

/* SVG Icons Size Control */
/* Testimonials section SVG icons */
.testimonials-modern-section svg {
    width: 1.2rem !important;
    height: 1.2rem !important;
    max-width: 1.2rem !important;
    max-height: 1.2rem !important;
}

.testimonials-stats-grid svg {
    width: 1.5rem !important;
    height: 1.5rem !important;
    max-width: 1.5rem !important;
    max-height: 1.5rem !important;
}

.testimonial-modern-card svg {
    width: 1rem !important;
    height: 1rem !important;
    max-width: 1rem !important;
    max-height: 1rem !important;
}

/* Jobs section SVG icons */
.jobs-modern-section svg {
    width: 1.2rem !important;
    height: 1.2rem !important;
    max-width: 1.2rem !important;
    max-height: 1.2rem !important;
}

.jobs-stats svg {
    width: 1.5rem !important;
    height: 1.5rem !important;
    max-width: 1.5rem !important;
    max-height: 1.5rem !important;
}

.jobs-modern-card svg {
    width: 1rem !important;
    height: 1rem !important;
    max-width: 1rem !important;
    max-height: 1rem !important;
}

.jobs-badge svg {
    width: 0.9rem !important;
    height: 0.9rem !important;
    max-width: 0.9rem !important;
    max-height: 0.9rem !important;
}

/* Office section SVG icons */
.careers-office-section svg {
    width: 1.1rem !important;
    height: 1.1rem !important;
    max-width: 1.1rem !important;
    max-height: 1.1rem !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .careers-hero h1 {
        font-size: 2.5rem;
    }
    
    .careers-hero-stats,
    .testimonials-stats,
    .jobs-stats,
    .process-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .timeline-steps {
        flex-direction: column;
        gap: 32px;
    }
    
    .timeline-line {
        display: none;
    }
    
    .jobs-search-bar {
        padding: 16px;
    }
    
    .search-input-group {
        flex-direction: column;
    }
    
    .jobs-filters {
        justify-content: center;
    }
    
    .job-footer {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .job-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    /* Mobile icon adjustments */
    .fas, .fab, .far {
        font-size: 0.9rem !important;
    }
    
    .careers-hero-stat-icon .fas {
        font-size: 1.2rem !important;
    }
}

/* ===== CAREERS PROCESS SECTION STYLES ===== */
.careers-process-section {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    overflow: hidden;
}

.careers-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.careers-process-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.careers-process-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(38, 128, 235, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.careers-process-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.careers-process-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.careers-process-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
    z-index: 2;
}

.careers-process-stat {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.careers-process-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.careers-process-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.careers-process-stat-label {
    color: var(--text-light);
    font-weight: 500;
}

.careers-process-timeline {
    position: relative;
    margin: 4rem 0;
    z-index: 2;
}

.careers-process-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.careers-process-step:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.careers-process-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.careers-process-step-connector {
    position: absolute;
    left: 35px;
    top: 70px;
    bottom: -30px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), transparent);
}

.careers-process-step:last-child .careers-process-step-connector {
    display: none;
}

.careers-process-step-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(38, 128, 235, 0.3);
}

.careers-process-step-content {
    flex: 1;
}

.careers-process-step-number {
    display: inline-block;
    background: rgba(38, 128, 235, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.careers-process-step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.careers-process-step-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.careers-process-step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.careers-process-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 170, 0.1);
    color: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.careers-process-feature .fas {
    font-size: 0.8rem !important;
}

.careers-process-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 500;
}

.careers-process-duration .fas {
    color: var(--primary);
    font-size: 0.8rem !important;
}

.careers-process-cta {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.careers-process-cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.careers-process-cta-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.careers-process-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.careers-process-btn-primary {
    background: var(--primary-gradient);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.careers-process-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(38, 128, 235, 0.4);
}

.careers-process-btn-secondary {
    background: white;
    color: var(--primary);
    padding: 1rem 2rem;
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.careers-process-btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Process section responsive */
@media (max-width: 768px) {
    .careers-process-title {
        font-size: 2.5rem;
    }
    
    .careers-process-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .careers-process-step-connector {
        display: none;
    }
    
    .careers-process-cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .careers-process-btn-primary,
    .careers-process-btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ===== MODERN JOBS SECTION STYLES ===== */
.jobs-hero {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    overflow: hidden;
}

.jobs-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
    z-index: 1;
}

.jobs-hero .container {
    position: relative;
    z-index: 2;
}

.jobs-floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.jobs-floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

.jobs-floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.jobs-floating-icon:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.jobs-floating-icon:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.jobs-floating-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.jobs-hero-content {
    text-align: center;
    color: white;
}

.jobs-hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.jobs-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.jobs-stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.jobs-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.jobs-stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.jobs-search-section {
    background: white;
    padding: 3rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.jobs-search-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.jobs-search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.jobs-search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(38, 128, 235, 0.1);
}

.jobs-search-btn {
    padding: 1rem 2rem;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.jobs-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(38, 128, 235, 0.3);
}

.jobs-filters-section {
    background: #f8fafc;
    padding: 2rem 0;
}

.jobs-filters-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-color);
}

.jobs-filters-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.jobs-filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.jobs-filter-btn:hover {
    border-color: var(--primary-color);
    background: var(--primary-light);
}

.jobs-filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.jobs-filter-count {
    background: rgba(0, 0, 0, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
}

.jobs-filter-btn.active .jobs-filter-count {
    background: rgba(255, 255, 255, 0.2);
}

.jobs-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

.jobs-modern-card {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.jobs-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.jobs-modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.jobs-card-pattern {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(38, 128, 235, 0.05), rgba(0, 212, 170, 0.05));
    border-radius: 50%;
}

.jobs-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(38, 128, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.jobs-modern-card:hover .jobs-card-glow {
    opacity: 1;
}

.jobs-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.jobs-card-title {
    flex: 1;
}

.jobs-card-title h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.jobs-card-badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.jobs-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.jobs-badge.remote {
    background: #dcfce7;
    color: #166534;
}

.jobs-badge.full-time {
    background: #dbeafe;
    color: #1e40af;
}

.jobs-badge.senior {
    background: #fef3c7;
    color: #92400e;
}

.jobs-card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.jobs-card-content {
    position: relative;
    z-index: 2;
}

.jobs-card-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.jobs-card-skills {
    margin-bottom: 1.5rem;
}

.jobs-skills-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.jobs-skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.jobs-skill-tag {
    padding: 0.25rem 0.75rem;
    background: #f1f5f9;
    color: #475569;
    border-radius: 16px;
    font-size: 0.875rem;
    font-weight: 500;
}

.jobs-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    position: relative;
    z-index: 2;
}

.jobs-card-salary {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--primary-color);
}

.jobs-card-actions {
    display: flex;
    gap: 0.75rem;
}

.jobs-action-btn {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.jobs-action-btn.primary {
    background: var(--primary-color);
    color: white;
}

.jobs-action-btn.primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.jobs-action-btn.secondary {
    background: #f8fafc;
    color: var(--text-color);
    border: 1px solid #e5e7eb;
}

.jobs-action-btn.secondary:hover {
    background: #f1f5f9;
}

.jobs-cta-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
    text-align: center;
}

.jobs-cta-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.jobs-cta-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.jobs-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.jobs-cta-btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.jobs-cta-btn.primary {
    background: var(--primary-gradient);
    color: white;
}

.jobs-cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(38, 128, 235, 0.3);
}

.jobs-cta-btn.secondary {
    background: white;
    color: var(--text-color);
    border: 2px solid #e5e7eb;
}

.jobs-cta-btn.secondary:hover {
    border-color: var(--primary-color);
    background: var(--primary-light);
}

/* ===== MODERN PROCESS SECTION STYLES ===== */
.process-hero {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    overflow: hidden;
}

.process-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
    z-index: 1;
}

.process-hero .container {
    position: relative;
    z-index: 2;
}

.process-floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.process-floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

.process-floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.process-floating-icon:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.process-floating-icon:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.process-floating-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.process-hero-content {
    text-align: center;
    color: white;
}

.process-hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.process-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.process-stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.process-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.process-stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.process-timeline-section {
    padding: 4rem 0;
    background: white;
}

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

.process-step-card {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.process-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.process-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.process-card-pattern {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(38, 128, 235, 0.05), rgba(0, 212, 170, 0.05));
    border-radius: 50%;
}

.process-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(38, 128, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step-card:hover .process-card-glow {
    opacity: 1;
}

.process-step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.process-step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.process-step-title h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-color);
}

.process-step-duration {
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 500;
}

.process-step-content {
    position: relative;
    z-index: 2;
}

.process-step-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.process-step-features {
    margin-bottom: 1.5rem;
}

.process-features-label {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.process-features-list {
    list-style: none;
    padding: 0;
}

.process-features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.process-features-list li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
}

.process-cta-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
    text-align: center;
}

.process-cta-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.process-cta-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.process-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.process-cta-btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.process-cta-btn.primary {
    background: var(--primary-gradient);
    color: white;
}

.process-cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(38, 128, 235, 0.3);
}

.process-cta-btn.secondary {
    background: white;
    color: var(--text-color);
    border: 2px solid #e5e7eb;
}

.process-cta-btn.secondary:hover {
    border-color: var(--primary-color);
    background: var(--primary-light);
}

/* ===== MODERN OFFICE SECTION STYLES ===== */
.office-hero {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    overflow: hidden;
}

.office-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
    z-index: 1;
}

.office-hero .container {
    position: relative;
    z-index: 2;
}

.office-floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.office-floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

.office-floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.office-floating-icon:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.office-floating-icon:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.office-floating-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.office-hero-content {
    text-align: center;
    color: white;
}

.office-hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.office-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.office-gallery-section {
    padding: 4rem 0;
    background: white;
}

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

.office-gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
}

.office-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.office-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.office-gallery-item:hover img {
    transform: scale(1.05);
}

.office-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.office-gallery-item:hover .office-gallery-overlay {
    transform: translateY(0);
}

.office-gallery-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.office-gallery-description {
    font-size: 0.875rem;
    opacity: 0.9;
}

.office-features-section {
    padding: 4rem 0;
    background: #f8fafc;
}

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

.office-feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.office-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.office-feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.office-feature-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--primary-color);
}

.office-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.office-feature-description {
    color: var(--text-light);
    line-height: 1.6;
}

.office-address-section {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.office-address-content {
    max-width: 600px;
    margin: 0 auto;
}

.office-address-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
}

.office-address-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--primary-color);
}

.office-address-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.office-address-details {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.office-address-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.office-address-btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.office-address-btn.primary {
    background: var(--primary-gradient);
    color: white;
}

.office-address-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(38, 128, 235, 0.3);
}

.office-address-btn.secondary {
    background: white;
    color: var(--text-color);
    border: 2px solid #e5e7eb;
}

.office-address-btn.secondary:hover {
    border-color: var(--primary-color);
    background: var(--primary-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .jobs-hero h2,
    .process-hero h2,
    .office-hero h2 {
        font-size: 2rem;
    }
    
    .jobs-stats-grid,
    .process-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .jobs-search-container {
        flex-direction: column;
    }
    
    .jobs-filters-grid {
        justify-content: center;
    }
    
    .jobs-modern-grid,
    .process-timeline-grid,
    .office-gallery-grid,
    .office-features-grid {
        grid-template-columns: 1fr;
    }
    
    .jobs-cta-actions,
    .process-cta-actions,
    .office-address-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== CAREERS OFFICE SECTION STYLES ===== */
.careers-office-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.careers-office-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="office-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e2e8f0" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23office-pattern)"/></svg>');
    opacity: 0.5;
}

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

.careers-office-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 60px;
    position: relative;
}

.careers-office-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.careers-office-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.careers-office-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.careers-office-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.careers-office-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.careers-office-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.careers-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px 15px 15px;
    font-weight: 500;
    font-size: 0.9rem;
}

.careers-office-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.careers-office-details h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
}

.careers-office-details p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 30px;
}

.careers-office-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.careers-office-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.careers-office-feature:last-child {
    border-bottom: none;
}

.careers-office-feature i {
    width: 20px;
    color: #667eea;
    font-size: 1.1rem;
}

.careers-office-feature span {
    color: #2d3748;
    font-weight: 500;
}

.careers-office-address {
    padding-top: 30px;
    border-top: 2px solid #e2e8f0;
}

.careers-office-address h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 15px;
}

.careers-office-address p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 15px;
}

.careers-office-transport {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #f7fafc;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.careers-office-transport i {
    color: #667eea;
}

.careers-office-transport span {
    color: #2d3748;
    font-weight: 500;
    font-size: 0.9rem;
}

/* ===== CAREERS JOIN SECTION STYLES ===== */
.careers-join-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.careers-join-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="join-pattern" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><polygon points="15,5 25,20 5,20" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23join-pattern)"/></svg>');
}

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

.careers-join-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.careers-join-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.careers-join-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    line-height: 1.6;
}

.careers-join-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.careers-join-actions .btn-primary,
.careers-join-actions .btn-secondary {
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 200px;
    justify-content: center;
}

.careers-join-actions .btn-primary {
    background: white;
    color: #667eea;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.careers-join-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    color: #5a67d8;
}

.careers-join-actions .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.careers-join-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.careers-contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.careers-contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
}

.careers-contact-info i {
    color: rgba(255, 255, 255, 0.7);
    width: 16px;
}

/* ===== RESPONSIVE DESIGN FOR CAREERS SECTIONS ===== */
@media (max-width: 768px) {
    .careers-office-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .careers-office-gallery {
        grid-template-columns: 1fr;
    }
    
    .careers-office-info {
        position: static;
        padding: 30px 20px;
    }
    
    .careers-office-section h2 {
        font-size: 2.5rem;
    }
    
    .careers-join-content h2 {
        font-size: 2.5rem;
    }
    
    .careers-join-content p {
        font-size: 1.1rem;
    }
    
    .careers-join-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .careers-contact-info {
        flex-direction: column;
        gap: 20px;
    }
}
/* Dashboard 5 columns stats grid */
.dashboard-stats-grid {
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 15px !important;
}

@media (max-width: 1200px) {
    .dashboard-stats-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .dashboard-stats-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Dashboard buttons centering */
.phone-dropdown #savePrimaryLanguageBtn {
    display: block;
    margin: 15px auto 0 auto;
    padding: 12px 30px;
    width: auto;
    min-width: 200px;
}

.setting-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

/* Config-agent section titles centered */
.config-card > h2,
.test-section > h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.config-card > h2 i,
.config-card > h2 .google-icon {
    margin-right: 10px;
}

/* Résumé hebdomadaire buttons centered */
.setting-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

/* Config-agent ALL section titles centered and same size */
.config-card h2 {
    text-align: center !important;
    font-size: 1.8rem !important;
    margin-bottom: 15px !important;
    color: var(--primary-color) !important;
}

/* Config-agent section titles centered */
.config-section > h2 {
    text-align: center !important;
    font-size: 1.8rem !important;
    margin-bottom: 15px !important;
}

/* Config-agent buttons smaller and centered */
.config-section .config-actions {
    display: flex !important;
    justify-content: center !important;
    gap: 15px !important;
    flex-wrap: wrap !important;
}

.config-section .config-actions .btn-primary,
.config-section .config-actions .btn-secondary {
    width: auto !important;
    min-width: 150px !important;
    max-width: 280px !important;
    padding: 12px 25px !important;
}

/* Config-agent buttons text no wrap */
.config-section .config-actions .btn-primary,
.config-section .config-actions .btn-secondary {
    white-space: nowrap !important;
}

/* Config-agent buttons more horizontal padding */
.config-section .config-actions .btn-primary,
.config-section .config-actions .btn-secondary {
    padding-left: 35px !important;
    padding-right: 35px !important;
}

/* Config-agent buttons even more horizontal padding */
.config-section .config-actions .btn-primary,
.config-section .config-actions .btn-secondary {
    padding-left: 50px !important;
    padding-right: 50px !important;
}

/* Config-agent buttons wider */
.config-section .config-actions .btn-primary,
.config-section .config-actions .btn-secondary {
    max-width: 380px !important;
}

/* ==================== KYC Section Styles ==================== */
.kyc-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.kyc-documents-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.kyc-document-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--bg-tertiary);
    border-radius: 10px;
    border-left: 4px solid var(--border-color);
    position: relative;
}

.kyc-document-card.status-pending { border-left-color: #f0ad4e; }
.kyc-document-card.status-approved { border-left-color: #28a745; }
.kyc-document-card.status-rejected { border-left-color: #dc3545; }

.kyc-document-card .doc-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
    text-align: center;
}

.kyc-document-card .doc-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.kyc-document-card .doc-type { font-weight: 600; color: var(--text-primary); }
.kyc-document-card .doc-name { font-size: 0.85rem; color: var(--text-secondary); }
.kyc-document-card .doc-date { font-size: 0.8rem; color: var(--text-muted); }

.kyc-document-card .doc-status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.badge-warning { background: rgba(240, 173, 78, 0.15); color: #f0ad4e; }
.badge-success { background: rgba(40, 167, 69, 0.15); color: #28a745; }
.badge-danger { background: rgba(220, 53, 69, 0.15); color: #dc3545; }

.rejection-reason { font-size: 0.75rem; color: #dc3545; max-width: 200px; text-align: right; }

.btn-delete-doc {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.25rem;
    opacity: 0.6;
    transition: opacity 0.2s, color 0.2s;
}
.btn-delete-doc:hover { opacity: 1; color: #dc3545; }

.kyc-upload-section {
    background: var(--bg-tertiary);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.file-upload-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.file-upload-wrapper .file-name {
    color: var(--text-secondary);
    font-size: 0.9rem;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.kyc-status-banner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    font-size: 0.95rem;
}

.kyc-status-banner.status-success { background: rgba(40, 167, 69, 0.1); color: #28a745; border: 1px solid rgba(40, 167, 69, 0.3); }
.kyc-status-banner.status-warning { background: rgba(240, 173, 78, 0.1); color: #f0ad4e; border: 1px solid rgba(240, 173, 78, 0.3); }
.kyc-status-banner.status-info { background: rgba(23, 162, 184, 0.1); color: #17a2b8; border: 1px solid rgba(23, 162, 184, 0.3); }
.kyc-status-banner i { font-size: 1.25rem; }

.no-documents { color: var(--text-secondary); font-style: italic; padding: 1rem; text-align: center; }
.no-documents i { margin-right: 0.5rem; }

/* Pricing Grid for 3 cards */
.pricing-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    max-width: 1400px !important;
    gap: 24px !important;
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Featured pricing card (Pro) */
.pricing-card.featured {
    border: 2px solid var(--primary, #007bff);
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.2);
    position: relative;
}

.pricing-card.featured::before {
    content: "Populaire";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary, #007bff), #00d4ff);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Fix featured card - remove hover overlay effect */
.pricing-card.featured::before {
    pointer-events: none;
    z-index: 10;
}

.pricing-card.featured:hover {
    transform: scale(1.02);
}

/* Uniform hover effect for all pricing cards */
.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

/* Override - Clean pricing cards styling */
.pricing-card.featured {
    border: 2px solid var(--primary-color, #007bff) !important;
    transform: none !important;
    box-shadow: var(--box-shadow) !important;
    position: relative !important;
    overflow: visible !important;
    background-color: var(--background-color, #fff) !important;
}

.pricing-card.featured::before {
    content: "Populaire" !important;
    position: absolute !important;
    top: -12px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: linear-gradient(135deg, #007bff, #00d4ff) !important;
    color: white !important;
    padding: 4px 16px !important;
    border-radius: 20px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    pointer-events: none !important;
    z-index: 10 !important;
    width: auto !important;
    height: auto !important;
    right: auto !important;
    bottom: auto !important;
}

.pricing-card.featured::after {
    display: none !important;
}

/* Uniform hover for all pricing cards */
.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.pricing-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
}

/* PRICING GRID - Cross-browser fix */
.pricing-grid {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
    gap: 24px !important;
    max-width: 1400px !important;
    margin: 48px auto 0 auto !important;
}

.pricing-card {
    -webkit-box-flex: 0 !important;
    -ms-flex: 0 0 calc(33.333% - 20px) !important;
    flex: 0 0 calc(33.333% - 20px) !important;
    max-width: 420px !important;
    min-width: 300px !important;
    box-sizing: border-box !important;
}

@media screen and (max-width: 1200px) {
    .pricing-card {
        -ms-flex: 0 0 calc(50% - 15px) !important;
        flex: 0 0 calc(50% - 15px) !important;
        max-width: 450px !important;
    }
}

@media screen and (max-width: 768px) {
    .pricing-card {
        -ms-flex: 0 0 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}
