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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.75;
    color: #1a1a1a;
    /* Couleur de texte par défaut sombre */
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Utilitaires de Section */
.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--white);
    color: var(--text-primary);
}

.bg-gray {
    background-color: var(--gray-50);
    color: var(--text-primary);
}

.bg-dark {
    background-color: var(--gray-900);
    color: var(--white);
}

.light-section p,
.light-section h1,
.light-section h2,
.light-section h3 {
    color: var(--text-primary) !important;
}

.dark-section p,
.dark-section h1,
.dark-section h2,
.dark-section h3 {
    color: var(--white) !important;
}

/* Label visible uniquement pour les lecteurs d'écran */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

/* Hero Section */
.hero-section {
    padding: 140px 0 100px;
    background: var(--white);
    text-align: center;
    border-bottom: 1px solid var(--gray-100);
}

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

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 48px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 64px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding-top: 48px;
    border-top: 1px solid var(--gray-100);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-stats .stat-item {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
    }
}

/* Variables CSS */
:root {
    /* Palette Premium B2B - High Contrast Emerald & Obsidian */
    --primary-color: #111827;
    /* Obsidian Dark */
    --primary-dark: #000000;
    --emerald-color: #10b981;
    /* Soloprice Green */
    --accent-color: #10b981;
    --white: #ffffff;
    --bg-light: #F9FAFB;

    /* Gris Techniques */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    /* Texte secondaire plus sombre */
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    --text-primary: #111827;
    --text-secondary: #374151;
    /* Darkened from #4b5563 for better contrast */
    --text-muted: #4b5563;
    /* Darkened from #6b7280 for better contrast */

    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    --gradient-hero: linear-gradient(180deg, #FFFFFF 0%, #F3F4F6 100%);
    --gradient-primary: linear-gradient(120deg, #00BFA6 0%, #0F3D2E 100%);
    --gradient-ose: linear-gradient(135deg, #008F7A 0%, #007362 100%);

    --border-radius-sm: 6px;
    --border-radius: 10px;
    --border-radius-lg: 14px;
    --border-radius-xl: 20px;
}

/* Dashboard Utilities */
.dash-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dash-badge.emerald {
    background: rgba(16, 185, 129, 0.1);
    color: var(--emerald-color);
}

.dash-progress-container {
    height: 8px;
    background: var(--gray-100);
    border-radius: 10px;
    overflow: hidden;
}

.dash-progress-bar {
    height: 100%;
    background: var(--emerald-color);
    transition: width 1s ease-in-out;
}

.dash-section-header {
    margin-bottom: 32px;
}

.dash-section-header h1 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.dash-section-header p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Typographie */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    margin-top: 0;
}

h1 {
    font-size: clamp(1.8rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: inherit;
}

.cta-button.primary {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-button.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 1.5px solid var(--gray-200);
}

.cta-button.secondary:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.cta-button.emerald {
    background: #047857;
    /* High contrast emerald CCAG AA */
    color: var(--white);
    border: none;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.cta-button.emerald:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}


/* Bouton fantôme pour fond sombre */
.cta-button.ghost {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.cta-button.ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}


.feature-list {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 1rem;
    color: #ffffff;
    /* Explicitly white for dark sections */
}

.feature-list-item::before {
    content: "✓";
    color: var(--emerald-color);
    font-weight: 800;
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 1.125rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .cta-button {
        padding: 14px 28px;
        font-size: 0.95rem;
        min-height: 48px;
    }

    .cta-button.large {
        padding: 16px 32px;
        font-size: 1rem;
        min-height: 52px;
    }

    .cta-button span {
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 100%;
        min-height: 48px;
    }

    .cta-button.large {
        padding: 14px 28px;
        font-size: 0.95rem;
        min-height: 50px;
    }

    .cta-button {
        white-space: normal;
        word-wrap: break-word;
    }
}

/* Navigation v3.0+ Premium High Performance */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    height: 72px;
    display: flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.nav-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.nav-brand-name {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #fff;
    padding: 8px 24px;
    border-radius: 100px;
    border: 1px solid var(--gray-100);
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.nav-links a, .nav-links a:visited, .nav-market-links a, .nav-market-link, .nav-market-link:visited {
    font-size: 0.85rem;
    font-weight: 700 !important;
    color: var(--text-secondary) !important;
    text-decoration: none !important;
    transition: all 0.2s;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

.nav-links a:hover, .nav-links a.active, .nav-market-links a:hover, .nav-market-links a.active, .nav-market-link:hover, .nav-market-link.active {
    color: var(--emerald-color) !important;
    text-decoration: none !important;
}

.nav-links a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gray-200);
    border-radius: 50%;
    transition: background 0.2s;
}

.nav-links a:hover::before {
    background: var(--emerald-color);
}

.nav-link-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.nav-lang {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    border-left: 1px solid var(--gray-200);
    padding-left: 16px;
    margin-left: 16px;
}

.lang-item {
    color: var(--text-primary);
    font-weight: 600;
}

.lang-divider {
    color: var(--gray-300);
}

.lang-item-link {
    color: var(--text-secondary);
    text-decoration: none;
    opacity: 0.6;
}

.lang-item-link:hover {
    opacity: 1;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    flex-shrink: 0;
    cursor: pointer !important;
    text-decoration: none !important;
    position: relative;
    z-index: 1000;
    transition: opacity 0.2s ease, transform 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.nav-brand:hover {
    opacity: 0.85;
    transform: scale(1.02);
}

.nav-brand:active {
    transform: scale(0.98);
}

.nav-brand a {
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.nav-brand a:hover {
    opacity: 0.8;
}

.nav-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 12px;
    background-color: transparent;
    display: block;
    user-select: none;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.2;
    pointer-events: none;
}

.nav-brand-text a {
    display: flex;
    flex-direction: column;
    gap: 2px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.nav-brand-text a:hover {
    opacity: 0.8;
}

.nav-brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    background: linear-gradient(120deg, #00BFA6 0%, #0F3D2E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
    line-height: 1.2;
    margin-left: 12px;
    transition: opacity 0.2s ease;
}

.nav-brand-tagline {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(15, 61, 46, 0.6);
    display: block;
    line-height: 1.2;
    margin-top: 2px;
}

/* =========================================
   HABURGER MENU (.nav-toggle)
========================================= */
/* =========================================
   HABURGER MENU (.nav-toggle)
========================================= */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10006;
}

@media (max-width: 960px) {
    .nav-toggle { display: flex; }
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-toggle.active span:first-child { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Premium Mobile Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.98); /* Deep Obsidian */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 10005;
    padding: 40px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.mobile-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    letter-spacing: -0.04em;
}

.close-menu {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mobile-menu-links a {
    color: white;
    font-size: 1.75rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: transform 0.2s ease, color 0.2s ease;
}

.mobile-menu-links a:active {
    transform: scale(0.95);
    color: #10b981;
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
    flex-shrink: 0;
}

@media (max-width: 960px) {
    .nav-content { display: none; }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-shrink: 0;
}

.nav-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    font-size: 1rem;
    /* Increased from 0.85rem/0.95rem */
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-links a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00BFA6 0%, #009E8A 100%);
    opacity: 0;
    transform: translateX(-8px) scale(0.5);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.6;
}

.nav-links a:hover {
    color: var(--emerald-color);
}

/* Features v3.0 */
.all-in-one-banner {
    padding: 60px 0 20px;
    background: var(--white);
}

.leadership-content {
    border-bottom: 1px solid var(--gray-100);
}

.leadership-content h2 {
    color: var(--text-primary) !important;
}

.features-section {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

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

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

.feature-card {
    padding: 32px;
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--gray-200);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Directory v3.0 */
.directory-header {
    padding: 120px 0 60px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--gray-200);
}

.search-bar-v3 {
    display: grid;
    grid-template-columns: 2fr 1fr auto;
    gap: 16px;
    background: var(--white);
    padding: 8px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 40px auto 0;
}

.search-input-wrapper,
.search-select-wrapper {
    display: flex;
    align-items: center;
}

.search-input-wrapper input,
.search-select-wrapper select {
    width: 100%;
    padding: 12px 16px;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: var(--text-primary);
}

.search-select-wrapper {
    border-left: 1px solid var(--gray-200);
}

.directory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
    padding: 80px 0;
}

.profile-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--gray-200);
    padding: 32px;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
}

.profile-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

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

.avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
}

.profile-info h3 {
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.profile-role {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 24px;
}

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

.stat-value {
    display: block;
    font-weight: 700;
    font-size: 1rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.profile-bio {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 24px;
    flex-grow: 1;
}

.badge-elite {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gray-100);
    color: var(--text-primary);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    align-self: flex-start;
}


@media (max-width: 640px) {
    .nav-brand-name {
        font-size: 1.2rem;
    }

    .nav-brand-tagline {
        font-size: 0.7rem;
    }

    .nav-logo {
        width: 40px;
        height: 40px;
    }
}

/* Hero v3.0 */
.hero-section {
    padding: 160px 0 100px;
    background: var(--bg-light);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin-bottom: 2rem;
}

.hero-trust-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 2rem;
}

.trust-badge {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--white);
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid var(--gray-200);
}

.hero-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-xl);
}

.hero-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    transform: none !important;
}

.hero-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 400px;
    border: 1px solid var(--gray-200);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.card-dots {
    display: flex;
    gap: 0.5rem;
}

.card-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
}

.card-dots span:first-child {
    background: #ff5f57;
}

.card-dots span:nth-child(2) {
    background: #ffbd2e;
}

.card-dots span:last-child {
    background: #28ca42;
}

.stat-item {
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

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

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

.section-header h2 {
    text-align: center;
}

.section-header p {
    text-align: center;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    padding: 140px 0;
    background: var(--white);
}

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

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(0, 143, 122, 0.1) 0%, rgba(0, 115, 98, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.feature-card:hover .feature-icon {
    transform: none;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.75;
}

/* Collaboration Section (4 Piliers) */
.collaboration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 48px;
}

.collaboration-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

.collaboration-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.collaboration-card .card-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    display: block;
}

.collaboration-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.collaboration-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Vision Section */
.vision-section {
    padding: 140px 0;
    background: var(--white);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}


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

.vision-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-primary);
}


.vision-button-container {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .vision-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .vision-text {
        padding-right: 0;
    }
}

.vision-text h2 {
    color: var(--text-primary);
    margin-bottom: 3rem;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.4;
    text-align: center;
}

.vision-description,
.vision-subtitle {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 400;
}

.vision-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    transform: none !important;
}

.vision-graphic {
    width: 100%;
    max-width: 500px;
    position: relative;
}

.island-illustration {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.island-group {
    position: relative;
    width: 200px;
    height: 200px;
}

.island {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: float 3s ease-in-out infinite;
}

.island-1 {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.island-2 {
    top: 20px;
    right: 20px;
    animation-delay: 1s;
}

.island-3 {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: pulse 2s ease-in-out infinite;
}

.line-1 {
    top: 50px;
    left: 50px;
    width: 80px;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.line-2 {
    top: 50px;
    right: 50px;
    width: 80px;
    transform: rotate(-45deg);
    animation-delay: 0.5s;
}

.line-3 {
    bottom: 50px;
    left: 50%;
    width: 100px;
    transform: translateX(-50%) rotate(90deg);
    animation-delay: 1s;
}

.network-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.center-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 0.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.center-text {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
}

.vision-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.8;
    }
}

@keyframes pulse-urgent {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 30px rgba(239, 68, 68, 0.6);
    }
}

/* Testimonial Section */
.testimonial-section {
    padding: 140px 0;
    background: var(--gray-50);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.testimonial-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.testimonial-quote {
    text-align: left;
}

.testimonial-quote {
    position: relative;
}

.quote-mark {
    font-size: 6rem;
    color: var(--primary-color);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.testimonial-quote blockquote {
    font-size: 1.75rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 2rem;
    font-weight: 500;
}

.testimonial-quote cite {
    display: block;
    font-size: 1.125rem;
    color: var(--primary-color);
    font-weight: 600;
    font-style: normal;
}

.testimonial-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    transform: none !important;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 400px;
    border: 1px solid var(--gray-200);
    position: relative;
    z-index: 1;
}

.testimonial-card h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.testimonial-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.avatar-group {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    margin-right: -10px;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.avatar-more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
}

/* Services Section */
.services-section {
    padding: 140px 0;
    background: var(--white);
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.services-grid .service-card:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2.5rem;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

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

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.service-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(0, 191, 166, 0.1) 0%, rgba(0, 168, 150, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
}

.service-card h3 {
    text-align: left;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    padding-right: 3.5rem;
}

.service-card p {
    text-align: left;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.75;
}

.services-cta {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

/* Transformation Section */
.transformation-section {
    padding: 140px 0;
    background: var(--gray-50);
}

.transformation-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 80px;
    align-items: center;
}

.transformation-text {
    text-align: left;
    padding-right: 3rem;
}

.transformation-button-container {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .transformation-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .transformation-text {
        padding-right: 0;
    }
}

.transformation-text h2 {
    margin-bottom: 2rem;
    font-size: clamp(2rem, 4vw, 2.5rem);
    white-space: nowrap;
}

.transformation-description {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 2;
    font-weight: 400;
}

.transformation-subtitle {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 2;
    font-weight: 400;
}

.transformation-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transform: none !important;
}

.transformation-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 400px;
    border: 1px solid var(--gray-200);
}

.transformation-card h4 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.pioneer-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pioneer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pioneer-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.pioneer-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Pricing v3.0+ High Performance */
.pricing-section {
    padding: 120px 0;
    background: var(--white);
}

.pricing-tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.price-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
}

.price-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.price-card.featured {
    border-color: var(--primary-color);
    background: var(--bg-light);
}

.tier-name {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.tier-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.tier-price {
    font-size: 3rem;
    font-weight: 900;
    margin: 32px 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.tier-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    flex-grow: 1;
}

.tier-features li {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 12px;
}

.tier-features li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
}

.tier-features li:last-child {
    border-bottom: none;
}

/* Profiles Section */
.profile-tiers {
    padding: 80px 0;
    border-top: 1px solid var(--gray-100);
}

.profile-card-special {
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    border: 1px solid var(--gray-200);
}

.profile-card-special h3 {
    font-size: 1.75rem;
    margin-bottom: 24px;
}

/* FAQ Section */
.faq-section {
    padding: 140px 0;
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Final Form Section */
.final-form-section {
    padding: 140px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.final-form-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="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

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

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

.form-header h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 2.5rem);
    white-space: nowrap;
}

.form-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin: 0;
}

.inscription-form {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
    row-gap: 1.5rem;
}

.form-group {
    margin-bottom: 0;
}

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

.form-group.full-width,
.form-group textarea,
.form-group.conditional-field,
.form-group.checkbox-group,
.hero-form-button,
.inscription-form>p {
    grid-column: 1 / -1;
}

.inscription-form>button {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
}

.conditional-field {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.form-hint {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: block;
    line-height: 1.4;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
    min-height: 48px;
    box-sizing: border-box;
}

.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
    resize: vertical;
    min-height: 120px;
    box-sizing: border-box;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 191, 166, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 0.25rem;
}

.checkbox-group label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
    cursor: pointer;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.footer p {
    margin: 0;
    color: var(--gray-400);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
}

.footer-social span {
    color: var(--white);
    font-weight: 600;
}

.footer-social a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-social a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    opacity: 0.4;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social a:hover {
    color: var(--primary-color);
}

.footer-social a:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

/* SEO Content Section */
.seo-content {
    background: var(--white);
    padding: 4rem 0;
    border-top: 1px solid var(--gray-200);
}

.seo-content .container {
    max-width: 1000px;
}

.seo-content h1,
.seo-content h2 {
    color: #000000 !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    text-align: left !important;
}

.seo-content h1 {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
}

.seo-content h2 {
    font-size: 1.5rem !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
}

.seo-content p {
    color: #000000 !important;
    font-size: 1rem !important;
    line-height: 1.8 !important;
    margin-bottom: 1.5rem !important;
    text-align: left !important;
    letter-spacing: 0 !important;
}

/* ==========================================
   SoloPrice Pro Section (global styles)
   ========================================== */
.soloprice-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.soloprice-text h2 {
    color: var(--white) !important;
    margin-bottom: 24px;
    font-size: 2.5rem;
}

.soloprice-text p {
    color: var(--gray-300) !important;
    font-size: 1.25rem;
}

.feature-list {
    padding: 0;
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    width: 100%;
}

.feature-list-item {
    position: relative;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--gray-100);
    font-weight: 500;
    transition: all 0.2s ease;
}

.feature-list-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--emerald-color);
}

.badge.emerald {
    background: rgba(16, 185, 129, 0.1);
    color: var(--emerald-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 16px;
}

/* ==========================================
   Navbar - User logged in state
   ========================================== */
.user-menu-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-profil-btn {
    font-size: 0.875rem !important;
    padding: 0.5rem 1rem !important;
    white-space: nowrap;
}

.nav-logout-btn {
    font-size: 0.875rem !important;
    padding: 0.5rem 1rem !important;
}

/* ==========================================
   Collaboration Grid (section 4 profils)
   ========================================== */
.collaboration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.collaboration-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
}

.collaboration-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.collaboration-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.collaboration-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {

    .hero-content,
    .hero-content-with-form,
    .vision-content,
    .testimonial-content,
    .transformation-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-section {
        padding: 120px 0 60px;
        /* Réduction pour tablette mais garde le titre visible */
        min-height: auto;
    }

    .features-section,
    .vision-section,
    .services-section,
    .transformation-section,
    .testimonial-section,
    .faq-section,
    .final-form-section {
        padding: 100px 0;
    }

    .section-header {
        margin-bottom: 4rem;
    }

    /* Grille OSE */
    .ose-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        margin-top: 48px;
    }

    .ose-card {
        background: var(--white);
        padding: 40px;
        border-radius: var(--border-radius-lg);
        border: 1px solid var(--gray-200);
        transition: all 0.3s ease;
        text-align: left;
    }

    .ose-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary-color);
    }

    .ose-icon {
        width: 56px;
        height: 56px;
        background: var(--gray-100);
        color: var(--primary-color);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 24px;
        font-size: 1.5rem;
        font-weight: 800;
    }

    .ose-card h3 {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    .ose-card p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 0;
    }

    @media (max-width: 992px) {
        .ose-grid {
            grid-template-columns: 1fr;
        }
    }

    /* Comparison Section */
    .comparison-section {
        padding: 100px 0;
        background: var(--white);
    }

    .comparison-wrapper {
        max-width: 900px;
        margin: 48px auto 0;
        background: var(--white);
        border-radius: var(--border-radius-lg);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
        border: 1px solid var(--gray-200);
    }

    .comparison-table {
        width: 100%;
        border-collapse: collapse;
        text-align: left;
    }

    .comparison-table th {
        background: var(--gray-50);
        padding: 20px 24px;
        font-weight: 700;
        color: var(--text-primary);
        border-bottom: 2px solid var(--gray-200);
    }

    .comparison-table td {
        padding: 20px 24px;
        border-bottom: 1px solid var(--gray-100);
        color: var(--text-primary);
        font-size: 0.95rem;
    }

    .comparison-table tr:last-child td {
        border-bottom: none;
    }

    .comparison-table td.highlight {
        color: var(--primary-color);
        font-weight: 700;
        background: rgba(0, 143, 122, 0.05);
    }

    /* Section SoloPrice Pro */
    .soloprice-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }

    .soloprice-text h2 {
        color: var(--white) !important;
        margin-bottom: 24px;
        font-size: 2.5rem;
    }

    .soloprice-text p {
        color: var(--gray-300) !important;
        font-size: 1.25rem;
    }

    .feature-list {
        list-style: none;
        padding: 0;
        margin: 40px 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        width: 100%;
    }

    .feature-list-item {
        position: relative;
        padding: 20px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        color: var(--gray-100);
        font-weight: 500;
        transition: all 0.2s ease;
    }

    .feature-list-item:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: var(--emerald-color);
    }

    .soloprice-actions .subtext {
        font-size: 0.85rem;
        color: var(--gray-400);
        margin-top: 12px;
    }

    .badge.emerald {
        background: rgba(16, 185, 129, 0.1);
        color: var(--emerald-color);
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        display: inline-block;
        margin-bottom: 16px;
    }

    @media (max-width: 968px) {
        .soloprice-container {
            grid-template-columns: 1fr;
            gap: 40px;
        }
    }

    @media (max-width: 768px) {

        .comparison-table th,
        .comparison-table td {
            padding: 16px;
            font-size: 0.85rem;
        }
    }

    .features-grid,
    .services-grid {
        gap: 2rem;
    }

    .feature-card,
    .service-card {
        padding: 2.5rem 2rem;
    }

    .hero-form {
        order: 2;
        position: relative;
        top: auto;
    }

    .hero-text {
        order: 1;
        padding-right: 0;
    }

    .hero-content-with-form {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        text-align: center;
    }

    .hero-problem,
    .hero-solution {
        text-align: center;
    }

    .hero-benefits {
        margin-left: auto;
        margin-right: auto;
    }

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

    .stat-card {
        padding: 1.25rem;
    }

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

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

    .services-grid .service-card:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
    }

    .faq-section,
    .final-form-section {
        padding: 100px 0;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .vision-text h2,
    .transformation-text h2,
    .form-header h2 {
        white-space: normal;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
        font-size: 0.95rem;
        min-height: 48px;
    }

    .cta-button.large {
        padding: 16px 32px;
        font-size: 1rem;
        min-height: 52px;
    }

    .features-grid,
    .services-grid,
    .collaborate-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2.5rem !important;
    }

    .feature-card,
    .service-card,
    .collaborate-card,
    .pricing-card {
        padding: 1.25rem 1.5rem !important;
        /* Réduction : 1.75rem → 1.25rem */
        margin-bottom: 1.5rem !important;
        /* Réduction des marges entre cards */
    }

    /* Optimiser les cards "Pourquoi collaborer" sur mobile */
    .collaborate-card ul {
        margin-bottom: 1.25rem !important;
        /* Réduit encore plus */
    }

    .collaborate-card li {
        padding: 0.5rem 0 !important;
        /* Réduction : 0.625rem → 0.5rem */
        font-size: clamp(0.875rem, 2vw, 0.95rem) !important;
    }

    /* Réduire les gaps dans les grids */
    .features-grid,
    .services-grid,
    .collaborate-grid {
        gap: 1rem !important;
        /* Réduction : de 2rem → 1rem */
        margin-top: 1.5rem !important;
        /* Réduit aussi */
    }

    /* Réduire les listes */
    .pack-features,
    .engagement-list {
        margin: 1rem 0 !important;
    }

    .pack-features li,
    .engagement-list li {
        padding: 0.5rem 0 !important;
    }

    /* Réduction agressive du scroll sur mobile */
    .features-section,
    .vision-section,
    .services-section,
    .transformation-section,
    .testimonial-section,
    .faq-section,
    .final-form-section,
    .why-collaborate-section,
    .pricing-section {
        padding: 40px 0 !important;
        /* Réduction majeure : 60px → 40px */
    }

    .section-header {
        margin-bottom: 1.5rem !important;
        /* Réduction : 2.5rem → 1.5rem */
    }

    /* Réactivation du quiz et de la vidéo sur mobile */
    .quiz-section-mobile {
        display: block;
        margin: 2rem 0;
    }

    .video-section-mobile {
        display: block;
        margin: 2rem 0;
    }

    .inscription-form {
        padding: 2rem;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .form-group {
        margin-bottom: 0;
    }

    /* Réduction du padding hero sur mobile - mais garder assez d'espace pour le titre */
    .hero-section {
        padding-top: 8.5rem !important;
        /* Padding-top très généreux pour compenser navbar, status bar et safe-area - 136px */
        padding-bottom: 2.5rem !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Améliorer la visibilité du titre hero */
    .hero-title {
        font-size: clamp(2rem, 5.5vw, 3rem) !important;
        /* Taille augmentée pour mieux voir */
        margin-bottom: 1.25rem !important;
        /* Margin réduite pour mobile */
        margin-top: 0 !important;
        /* Pas de margin-top pour éviter l'espace inutile */
        line-height: 1.3 !important;
        /* Line-height optimisée */
        font-weight: 800 !important;
    }

    /* Optimiser les titres de section (h2) */
    .section-header h2 {
        font-size: clamp(1.75rem, 4.5vw, 2.5rem) !important;
        margin-bottom: 0.75rem !important;
        /* Réduit pour mobile */
        margin-top: 0 !important;
        line-height: 1.3 !important;
    }

    .section-header p {
        margin-top: 0.5rem !important;
        /* Espace réduit après le titre */
        margin-bottom: 0 !important;
    }

    /* Optimiser les titres dans les cards (h3) */
    .feature-card h3,
    .service-card h3,
    .collaborate-card h3 {
        font-size: clamp(1.25rem, 3vw, 1.5rem) !important;
        margin-bottom: 0.75rem !important;
        /* Réduit pour mobile */
        margin-top: 0 !important;
        line-height: 1.3 !important;
    }

    /* Optimiser les icônes de features sur mobile */
    .feature-icon {
        width: 60px !important;
        height: 60px !important;
        margin: 0 auto 1.25rem !important;
        /* Réduit de 2rem → 1.25rem */
    }

    /* Optimiser les titres généraux sur mobile */
    h1:not(.hero-title):not(.landing-content h1) {
        font-size: clamp(1.875rem, 5vw, 2.5rem) !important;
        margin-bottom: 1rem !important;
        /* Réduit pour mobile */
        margin-top: 0 !important;
        line-height: 1.3 !important;
    }

    h2:not(.section-header h2) {
        font-size: clamp(1.5rem, 4vw, 2rem) !important;
        margin-bottom: 0.875rem !important;
        /* Réduit pour mobile */
        margin-top: 0 !important;
        line-height: 1.3 !important;
    }

    h3:not(.feature-card h3):not(.service-card h3):not(.collaborate-card h3) {
        font-size: clamp(1.25rem, 3vw, 1.5rem) !important;
        margin-bottom: 0.75rem !important;
        /* Réduit pour mobile */
        margin-top: 0 !important;
        line-height: 1.3 !important;
    }

    .hero-content-with-form {
        gap: 1.5rem !important;
        /* Réduction : 2rem → 1.5rem */
    }

    .hero-problem,
    .hero-solution {
        font-size: 1.125rem;
        margin-bottom: 1rem !important;
        /* Réduction des marges */
    }

    .hero-benefits {
        padding: 1rem !important;
        /* Réduction : 1.25rem → 1rem */
        margin-top: 1.5rem !important;
        /* Réduction : de 3rem */
    }

    .hero-benefits p {
        font-size: 0.95rem;
        margin-bottom: 0.375rem !important;
        /* Réduction */
    }

    .hero-form {
        padding: 1.25rem !important;
        /* Réduction : 1.5rem → 1.25rem */
    }

    .hero-form-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem !important;
        /* Réduction */
    }

    /* Réduire les gaps dans les formulaires */
    .inscription-form {
        gap: 1.25rem !important;
        /* Réduction : 1.5rem → 1.25rem */
    }

    .hero-card,
    .vision-card,
    .testimonial-card,
    .transformation-card {
        max-width: 100%;
    }

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

    .stat-card {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-section {
        padding-top: 8rem !important;
        /* Padding-top très généreux pour compenser navbar, status bar et safe-area - 128px */
        padding-bottom: 2rem !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .pricing-hero {
        padding: 2rem 0 1.5rem !important;
        /* Padding réduit pour pricing */
    }

    /* Titre hero encore plus visible sur petits mobiles */
    .hero-title {
        font-size: clamp(1.875rem, 6vw, 2.5rem) !important;
        /* Taille augmentée */
        margin-bottom: 1rem !important;
        /* Encore plus réduit sur petits mobiles */
        margin-top: 0 !important;
        line-height: 1.3 !important;
    }

    /* Section headers encore plus compacts sur petits mobiles */
    .section-header {
        margin-bottom: 0.75rem !important;
        /* Réduction : 1rem → 0.75rem */
    }

    .section-header h2 {
        font-size: clamp(1.5rem, 5vw, 2rem) !important;
        margin-bottom: 0.5rem !important;
        /* Encore plus réduit */
        margin-top: 0 !important;
    }

    .section-header p {
        margin-top: 0.375rem !important;
        /* Espace minimal */
        font-size: clamp(0.95rem, 2.5vw, 1.05rem) !important;
    }

    /* Titres dans cards encore plus compacts */
    .feature-card h3,
    .service-card h3,
    .collaborate-card h3 {
        font-size: clamp(1.125rem, 3.5vw, 1.375rem) !important;
        margin-bottom: 0.625rem !important;
        /* Encore plus réduit */
        margin-top: 0 !important;
    }

    /* Icônes encore plus petites sur petits mobiles */
    .feature-icon {
        width: 50px !important;
        height: 50px !important;
        margin: 0 auto 1rem !important;
        /* Encore plus réduit */
    }

    /* Titres généraux encore plus compacts */
    h1:not(.hero-title):not(.landing-content h1) {
        font-size: clamp(1.75rem, 5.5vw, 2.25rem) !important;
        margin-bottom: 0.875rem !important;
        margin-top: 0 !important;
    }

    h2:not(.section-header h2) {
        font-size: clamp(1.375rem, 4.5vw, 1.75rem) !important;
        margin-bottom: 0.75rem !important;
        margin-top: 0 !important;
    }

    h3:not(.feature-card h3):not(.service-card h3):not(.collaborate-card h3) {
        font-size: clamp(1.125rem, 3.5vw, 1.375rem) !important;
        margin-bottom: 0.625rem !important;
        margin-top: 0 !important;
    }

    .features-section,
    .vision-section,
    .services-section,
    .transformation-section,
    .testimonial-section,
    .faq-section,
    .final-form-section,
    .why-collaborate-section,
    .pricing-section {
        padding: 30px 0 !important;
        /* Encore plus agressif : 50px → 30px */
    }

    .section-header {
        margin-bottom: 1rem !important;
        /* Réduction : 2rem → 1rem */
    }

    .hero-content-with-form {
        gap: 2rem;
    }

    .features-grid,
    .services-grid,
    .collaborate-grid {
        gap: 0.75rem !important;
        /* Réduction : 1.5rem → 0.75rem */
        margin-top: 1.5rem !important;
    }

    .feature-card,
    .service-card,
    .collaborate-card,
    .pricing-card {
        padding: 1rem 1.25rem !important;
        /* Réduction : 1.5rem → 1rem */
        margin-bottom: 1rem !important;
    }

    .collaborate-card .cta-button {
        font-size: clamp(0.9rem, 2vw, 1rem);
        padding: 0.875rem 1.5rem;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .inscription-form {
        padding: 1.5rem;
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .form-group {
        margin-bottom: 0;
    }

    .hero-form {
        padding: 1.25rem;
    }

    .hero-form-title {
        font-size: 1.125rem;
    }

    .hero-problem,
    .hero-solution {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero-benefits {
        padding: 1rem;
        margin-top: 1.5rem;
    }

    .hero-benefits p {
        font-size: 0.875rem;
        margin-bottom: 0.375rem;
    }

    .faq-section,
    .final-form-section {
        padding: 50px 0;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 1rem 1rem;
        font-size: 0.875rem;
    }

    .form-header h2 {
        font-size: 1.5rem;
    }

    .form-header p {
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 14px 24px;
        font-size: 0.875rem;
    }

    .cta-button.large {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .hero-content-with-form {
        gap: 1.5rem;
    }

    .feature-card,
    .service-card {
        padding: 1.5rem 1.25rem;
    }

    .services-grid,
    .features-grid {
        gap: 1.25rem;
    }

    .faq-section,
    .final-form-section {
        padding: 60px 0;
    }

    .faq-question {
        padding: 1.25rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.95rem;
    }

    .form-header h2 {
        font-size: 1.75rem;
    }

    .form-header p {
        font-size: 1rem;
    }

    .seo-content {
        padding: 2rem 0;
    }

    .seo-content h1 {
        font-size: 1.5rem !important;
    }

    .seo-content h2 {
        font-size: 1.25rem !important;
    }

    .seo-content p {
        font-size: 0.95rem !important;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   NAVIGATION CONNECTÉE (USER MENU)
========================================= */
.nav-profil-badge {
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    background: var(--gray-50);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-profil-badge:hover {
    background: var(--gray-100);
    border-color: var(--gray-300);
}

.user-menu-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-greeting {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

.nav-logout-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
    border-radius: 20px;
}

@media (max-width: 960px) {
    .nav-profil-badge {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 12px 16px;
        font-size: 1rem;
        border-radius: 12px;
        margin-top: 8px;
    }

    .user-menu-wrapper {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 12px;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid var(--gray-200);
    }

    .user-greeting {
        text-align: center;
        padding: 0 8px;
        width: 100%;
        font-size: 0.95rem;
    }

    .nav-logout-btn {
        width: 100%;
        justify-content: center;
        padding: 12px;
        font-size: 0.95rem;
    }
}


/* =========================================
   HOME SCOPE BAR (Simplified)
   ========================================= */
.home-scope-bar {
    padding: 15px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
}

.scope-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px 25px;
    flex-wrap: wrap;
    opacity: 0.9;
}

.scope-item {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.scope-item b {
    color: var(--emerald-color);
}

.scope-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gray-300);
}

@media (max-width: 768px) {
    .home-scope-bar {
        padding: 12px 0;
    }
    .scope-item {
        font-size: 0.7rem;
    }
}

/* --- PREMIUM SAAS FUNNEL ENHANCEMENTS --- */

.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.premium-shadow {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08), 0 4px 6px rgba(0,0,0,0.04);
}

.cta-button.primary {
    transition: all 0.3s ease;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.2);
}

html {
    scroll-behavior: smooth;
}


@media (max-width: 960px) {
    /* MOBILE NAVIGATION - UNIVERSAL PREMIUM DRAWER */
    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 18px;
        background: transparent !important;
        border: none !important;
        cursor: pointer;
        padding: 0;
        z-index: 3000 !important; /* Above everything */
        position: relative;
    }
    
    .nav-toggle span {
        width: 100%;
        height: 2px;
        background-color: var(--primary-color) !important;
        border-radius: 4px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transform-origin: center;
    }

    .nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg) !important; }
    .nav-toggle.active span:nth-child(2) { opacity: 0 !important; transform: translateX(10px) !important; }
    .nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg) !important; }

    .nav-content {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important; /* Hidden by default */
        width: 85% !important;
        max-width: 360px !important;
        height: 100vh !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        box-shadow: -15px 0 40px rgba(0,0,0,0.15) !important;
        z-index: 2500 !important;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 100px 40px 60px !important;
        gap: 48px !important;
        margin-left: 0 !important;
    }

    .nav-content.active {
        right: 0 !important;
    }

    .nav-links {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 32px !important;
        width: 100% !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        box-shadow: none !important;
    }

    .nav-links a {
        font-size: 1.4rem !important;
        font-weight: 800 !important;
        color: var(--primary-color) !important;
        width: 100% !important;
        padding: 0 !important;
        display: block !important;
        text-align: left !important;
    }

    .nav-actions {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 20px !important;
        margin-top: auto !important;
    }

    .nav-actions .cta-button, .nav-actions .nav-login {
        width: 100% !important;
        justify-content: center !important;
        padding: 16px !important;
        font-size: 1.1rem !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
    }
}

