* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #dbc275;
    text-decoration: none;
    letter-spacing: 0.1em;
}

.nav-links {
    display: none;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #dbc275;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #1f07a8;
}

/* Menu hamburger */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

.hamburger-menu span {
    width: 25px;
    height: 2px;
    background: #dbc275;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Menu mobile */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
    transform: translateY(50px);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-menu.active .mobile-menu-content {
    transform: translateY(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.mobile-nav-link {
    font-size: 2.5rem;
    font-weight: 300;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.mobile-nav-link:hover {
    color: #dbc275;
    transform: translateY(-5px);
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #dbc275;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.mobile-nav-link:hover::after {
    width: 60px;
}

body.menu-open {
    overflow: hidden;
}

/* Page Header */
.page-header {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(25, 74, 155, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(73, 46, 137, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-header .container {
    max-width: 1600px;
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #dbc275 60%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #94a3b8;
    line-height: 1.7;
    font-weight: 300;
}


/* Pricing Section */
.pricing-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
    backdrop-filter: blur(20px);
}

.pricing-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.pricing-intro h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #dbc275;
}

.pricing-intro p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #94a3b8;
    line-height: 1.7;
    font-weight: 300;
}

/* Indicateur de défilement */
.scroll-indicator {
    display: none;
    text-align: center;
    padding: 1rem;
    color: rgba(219, 194, 117, 0.8);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 1rem;
}

/* Afficher l'indicateur sur mobile */
@media (max-width: 1200px) {
    .scroll-indicator {
        display: block;
    }
}

/* Container pour le tableau avec défilement horizontal */
.pricing-table-container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    overflow-x: auto; /* Défilement horizontal */
    overflow-y: visible;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    /* Styles pour la scrollbar */
    scrollbar-width: thin;
    scrollbar-color: rgba(219, 194, 117, 0.5) rgba(255, 255, 255, 0.1);
}

/* Webkit scrollbar styling */
.pricing-table-container::-webkit-scrollbar {
    height: 12px;
}

.pricing-table-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.pricing-table-container::-webkit-scrollbar-thumb {
    background: rgba(219, 194, 117, 0.5);
    border-radius: 6px;
}

.pricing-table-container::-webkit-scrollbar-thumb:hover {
    background: rgba(219, 194, 117, 0.7);
}

/* Tableau des prix */
.pricing-table {
    width: 100%;
    min-width: 900px; /* Largeur minimale pour éviter la compression */
    border-collapse: collapse;
    background: transparent;
}

/* En-têtes des plans */
.table-header {
    background: linear-gradient(135deg, rgba(31, 7, 168, 0.3) 0%, rgba(15, 23, 42, 0.8) 100%);
}

.table-header th {
    padding: 2.5rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    vertical-align: top;
}

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

.plan-column {
    width: 33.33%;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: #dbc275;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plan-subtitle {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.plan-description {
    color: #e2e8f0;
    font-size: 0.85rem;
    line-height: 1.5;
    font-weight: 300;
    max-width: 250px;
    margin: 0 auto;
}

/* Rangées de catégories */
.category-row {
    background: rgba(31, 7, 168, 0.15);
}

.category-header {
    padding: 1.5rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

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

.feature-category-name {
    font-weight: 600;
    font-size: 1.2rem;
    color: #dbc275;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.category-subtitle {
    font-size: 0.8rem;
    font-style: italic;
    color: #94a3b8;
    font-weight: 300;
}

/* Rangées de fonctionnalités */
.feature-row .feature-cell {
    padding: 2rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    vertical-align: top;
}

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

.feature-row:last-of-type .feature-cell {
    border-bottom: none;
}

/* Listes de fonctionnalités */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    color: #e2e8f0;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-weight: 300;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #dbc275;
    font-weight: bold;
    font-size: 1rem;
}

/* Cellule non incluse */
.not-included {
    text-align: center;
    color: #64748b !important;
}

.not-available {
    font-style: italic;
    font-size: 1rem;
    color: #64748b;
    padding: 2rem 0;
}

/* Rangée CTA */
.cta-row {
    background: rgba(255, 255, 255, 0.03);
}

.cta-cell {
    padding: 2.5rem 2rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Boutons des plans */
.plan-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #1f07a8 0%, #0f172a 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 200px;
    font-size: 0.95rem;
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(31, 7, 168, 0.3);
}

.plan-button.secondary {
    background: transparent;
    border: 2px solid #1f07a8;
    color: #1f07a8;
    padding: 0.9rem 2rem;
}

.plan-button.secondary:hover {
    background: #1f07a8;
    color: white;
}

.enterprise-note {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #94a3b8;
    font-style: italic;
}

/* Business Model Section */
.business-model-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(22, 16, 54, 0.1) 0%, rgba(8, 28, 93, 0.1) 100%);
    position: relative;
}

.business-model-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(31, 7, 168, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(30, 64, 175, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.business-model-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.business-model-content h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 2rem;
    color: #dbc275;
}

.business-model-intro {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 2rem;
}

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

.business-point {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.business-point:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.business-point h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.business-point p {
    color: #94a3b8;
    line-height: 1.6;
    font-weight: 300;
}

/* Footer */
footer {
    background: rgba(15, 23, 42, 0.95);
    padding: 3rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #dbc275;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.footer-content p {
    color: #94a3b8;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.6;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: rgba(6, 182, 212, 0.2);
    color: #06b6d4;
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-links a:hover {
    color: #06b6d4;
}

.copyright {
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-section {
        padding: 3rem 1rem;
    }

    .pricing-table-container {
        margin: 0 1rem;
        border-radius: 16px;
    }
    
    .pricing-table {
        min-width: 1000px; /* Largeur minimale plus importante sur mobile */
    }
    
    .plan-column {
        min-width: 280px; /* Largeur minimale pour chaque colonne */
    }
    
    .table-header th {
        padding: 2rem 1.5rem;
    }
    
    .feature-row .feature-cell {
        padding: 1.5rem;
    }

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

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

    .business-model-section {
        padding: 3rem 1rem;
    }

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

    .business-point {
        padding: 1.5rem;
    }
}