/* ===================================
   HEADER PROFESSIONNEL - STYLE WORDPRESS PREMIUM
   Design sobre, carré, corporate
   =================================== */

/* Hide wave separators for clean look */
.section-separator {
    display: none !important;
}

/* ===================================
   NAVBAR PROFESSIONNELLE
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    box-shadow: none;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 2rem;
    max-width: 1400px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
    color: #111827;
}

.brand-logo {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -1px;
}

.brand-text h1 {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.625rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    position: relative;
}

.nav-menu a::after {
    display: none;
}

.nav-menu a:hover {
    color: #2563eb;
    background: #f3f4f6;
}

.nav-menu a.active {
    color: #2563eb;
    background: #eff6ff;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem;
    background: #f3f4f6;
    border-radius: 6px;
    margin-left: 1rem;
}

.lang-link {
    text-decoration: none;
    color: #6b7280;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.375rem 0.625rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.lang-link:hover {
    color: #2563eb;
}

.lang-link.active {
    color: #ffffff;
    background: #2563eb;
}

.lang-separator {
    display: none;
}

.btn-nav {
    padding: 0.625rem 1.25rem;
    background: #2563eb;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    box-shadow: none;
    margin-left: 1rem;
}

.btn-nav:hover {
    background: #1d4ed8;
    transform: none;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* ===================================
   HERO SECTION PROFESSIONNELLE
   =================================== */

.hero {
    padding: 8rem 0 5rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
    min-height: auto;
    display: block;
}

.hero-bg {
    display: none;
}

/* Hide 3D Globe */
#globe-container {
    display: none !important;
}

.hero .container {
    position: relative;
    z-index: 10;
    display: block;
    max-width: 1200px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #059669;
    margin-bottom: 1.5rem;
    box-shadow: none;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    color: #111827;
}

.gradient-text {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description br {
    display: none;
}

/* Hero Stats - Style Pro */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
    padding: 2rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.stat-item {
    text-align: center;
    padding: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: none;
    -webkit-text-fill-color: #111827;
    color: #111827;
    line-height: 1;
    margin-bottom: 0.375rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: #2563eb;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    box-shadow: none;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: #ffffff;
    color: #374151;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    box-shadow: none;
}

.btn-secondary:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    transform: translateY(-2px);
}

/* Hide Premium Elements in Hero */
.premium-scroll-indicator,
.premium-floating-shapes,
.premium-shape {
    display: none !important;
}

/* ===================================
   MAIN SITE BANNER - More Subtle
   =================================== */

.main-site-banner {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    padding: 0.75rem 0 !important;
    font-size: 0.875rem;
}

.main-site-banner .container {
    gap: 0.75rem !important;
}

.main-site-banner span:last-child {
    background: rgba(255,255,255,0.15) !important;
    font-size: 0.8rem !important;
}

/* ===================================
   SECTION HEADERS - Pro Style
   =================================== */

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3.5rem;
}

.section-tag {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.875rem;
    line-height: 1.2;
    color: #111827;
}

.section-description {
    font-size: 1.0625rem;
    color: #6b7280;
    line-height: 1.7;
}

/* ===================================
   CARDS - Cleaner Style
   =================================== */

.service-card,
.pricing-card,
.tech-category {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

.service-card:hover,
.pricing-card:hover,
.tech-category:hover {
    border-color: #d1d5db;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.service-card::before {
    height: 3px;
    background: #2563eb;
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 968px) {
    .navbar .container {
        padding: 0.75rem 1.5rem;
    }

    .nav-menu,
    .btn-nav,
    .language-switcher {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 7rem 0 4rem;
    }

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

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }
}

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

    .hero-description {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

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

/* ===================================
   DARK MODE ADJUSTMENTS
   =================================== */

[data-theme="dark"] .navbar {
    background: #111827;
    border-bottom-color: #1f2937;
}

[data-theme="dark"] .brand-text h1 {
    color: #f9fafb;
}

[data-theme="dark"] .brand-subtitle {
    color: #9ca3af;
}

[data-theme="dark"] .nav-menu a {
    color: #d1d5db;
}

[data-theme="dark"] .nav-menu a:hover {
    color: #60a5fa;
    background: #1f2937;
}

[data-theme="dark"] .nav-menu a.active {
    color: #60a5fa;
    background: #1e3a5f;
}

[data-theme="dark"] .hero {
    background: linear-gradient(180deg, #111827 0%, #0f172a 100%);
}

[data-theme="dark"] .hero-title {
    color: #f9fafb;
}

[data-theme="dark"] .hero-description {
    color: #9ca3af;
}

[data-theme="dark"] .hero-badge {
    background: #064e3b;
    border-color: #065f46;
    color: #34d399;
}

[data-theme="dark"] .hero-stats {
    background: #1f2937;
    border-color: #374151;
}

[data-theme="dark"] .stat-number {
    color: #f9fafb;
    -webkit-text-fill-color: #f9fafb;
}

[data-theme="dark"] .stat-label {
    color: #9ca3af;
}

[data-theme="dark"] .section-title {
    color: #f9fafb;
}

[data-theme="dark"] .section-tag {
    background: #1e3a5f;
    color: #60a5fa;
}

[data-theme="dark"] .language-switcher {
    background: #1f2937;
}

[data-theme="dark"] .lang-link {
    color: #9ca3af;
}

[data-theme="dark"] .lang-link.active {
    background: #2563eb;
    color: #ffffff;
}
