/* Variables globales */
:root {
    --primary-color: #000000;
    --secondary-color: #000000;
    --dark-color: #333;
    --light-color: #ffffff;
    --text-color: #444;
    --border-color: #ddd;
    --success-color: #222222;
    --font-primary: 'SupremeLL-Black', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-family: var(--font-primary);	
	
}

p {
    margin-bottom: 20px;
}

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

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

section {
    padding: 80px 0;
}

/* Boutons */
.btn-primary {
    display: inline-block;
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo h1 {
    font-size: 24px;
    margin: 0;
    color: var(--primary-color);
}

.tagline {
    font-size: 14px;
    color: var(--secondary-color);
    margin: 0;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
    font-family: var(--font-primary);
	
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 160px 0 80px;
/*  background: linear-gradient(135deg, #ebf1f5 0%, #d9e1e6 100%); */
	background: #000000;
}

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

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-content h1 {
	font-family: var(--font-primary);
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--light-color);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
	color:#FFFFFF;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Stats Section */
.stats {
    background-color: var(--success-color);
    color: white;
    padding: 40px 0;
}

.stats .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 20px;
    min-width: 200px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--font-primary);	

}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Why Section */
.why-section {
    background-color: var(--light-color);
}

.content-columns {
    display: flex;
    align-items: center;
    gap: 40px;
}

.text-column, .image-column {
    flex: 1;
}

.highlight {
    font-size: 36px;
    color: var(--dark-color);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
    font-family: var(--font-primary);	
}

/* Clients Section */
.clients-section {
    background-color: #000000;
}

.client-types {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.client-type {
    flex: 1;
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.client-type:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.client-type h3 {
    margin-bottom: 15px;
}

.client-note {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
}

/* Benefits Section */
.benefits-section {
    background-color: var(--light-color);
}

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

.benefit {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.benefit-icon {
    font-size: 30px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.benefit h3 {
    margin-bottom: 15px;
}

/* Solution Section */
.solution-section {
    background-color: #000000;
}

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

.solution-feature {
    padding: 30px;
    border-radius: 10px;
    background-color: var(--light-color);
}

.solution-feature h3 {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.solution-feature h3 i {
    margin-right: 10px;
    color: var(--primary-color);
}

.solution-feature ul {
    list-style: none;
}

.solution-feature ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.solution-feature ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Comparison Section */
.comparison-section {
    background-color: var(--light-color);
}

.table-responsive {
    overflow-x: overlay;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th, .comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background-color: var(--primary-color);
    color: white;
}

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

.comparison-table tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.02);
}

/* Testimonials Section */
.testimonials-section {
    background-color: #ebf1f5;
    text-align: center;
}

.testimonial-intro {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 18px;
}

.testimonial-highlight {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
    font-weight: 500;
}

.partners-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.partner-logo {
    max-width: 150px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #000000 0%, #3f4143 100%);
    color: white;
    text-align: center;
}

.contact-section h2 {
    color: white;
}

.contact-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-form {
    text-align: left;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info, .footer-contact, .footer-social {
    flex: 1;
    min-width: 250px;
}

.footer-info h3, .footer-contact h3, .footer-social h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.success-message {
    color: #000 !important;
}

/* Media Queries */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .content-columns {
        flex-direction: column;
    }
    
    .client-types {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
	
.logo {
    text-align:center;
}	
    
    nav ul {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 10px 10px;
    }
	
    nav ul li:last-child {
        width:220px;
    }
	
    .stats .container {
        flex-direction: column;
    }
    
    .stat-item {
        margin-bottom: 20px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .highlight {
        font-size: 20px;
    }
    
    .contact-form-container {
        padding: 20px;
    }
}
