/* Styles inspirés de Rankwave */
:root {
    --rw-primary: #03aebc;
    --rw-secondary: #03757e;
    --rw-accent: #10B981;
    --rw-dark: #1F2937;
    --rw-light: #F9FAFB;
    --rw-gray: #E5E7EB;
    --rw-text: #74777a;
    --rw-text-light: #6B7280;
}

.rw-header {
    background-color: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

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

.rw-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

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

.rw-logo i {
    margin-right: 10px;
    font-size: 1.5rem;
}

.rw-nav {
    display: flex;
    gap: 30px;
}

.rw-nav a {
    color: var(--rw-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

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

.rw-btn {
    padding: 20px 20px;
    border-radius: 6px;
    font-size: 1.25rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.rw-btn-primary {
    background-color: var(--rw-primary);
    color: white;
}

.rw-btn-primary:hover {
    background-color: var(--rw-secondary);
}

.rw-btn-secondary {
    background-color: white;
    color: var(--rw-primary);
    border: 1px solid var(--rw-primary);
}

.rw-btn-secondary:hover {
    background-color: var(--rw-light);
}

.rw-hero {
    padding: 70px 0 50px;
    background-color: var(--rw-light);
    text-align: center;
}

.rw-hero h1 {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--rw-primary);
    margin-bottom: 20px;
}

.rw-hero-subtitle {
    font-size: 1.6rem;
    color: var(--rw-secondary);
    margin-bottom: 15px;
    font-weight: 500;
}

.rw-hero-description {
    font-size: 1.4rem;
    color: var(--rw-text);
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.rw-hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding: 30px;
}

.rw-section {
    padding: 50px 0;
}

.rw-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--rw-primary);
    margin-bottom: 20px;
}

.rw-section-subtitle {
    text-align: center;
    color: var(--rw-text);
    font-size: 1.3rem;
    margin-bottom: 50px;
    font-weight: 400;
}

.rw-method-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.rw-method-step {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.rw-method-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.rw-step-icon {
    width: 60px;
    height: 60px;
    background-color: var(--rw-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--rw-primary);
    font-size: 1.5rem;
}

.rw-method-step h3 {
    font-size: 1.25rem;
    color: var(--rw-dark);
    margin-bottom: 15px;
}

.rw-method-step p {
    color: var(--rw-text-light);
    line-height: 1.6;
}

.rw-stats {
    background-color: var(--rw-dark);
    color: white;
}

.rw-stats h2, .rw-stats .rw-section-subtitle {
    color: white;
}

.rw-stats-chart {
    background-color: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 30px;
    margin-top: 30px;
}

.rw-stats-data {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.rw-stat-item {
    background-color: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 8px;
}

.rw-stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--rw-gray);
    margin-bottom: 5px;
}

.rw-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.rw-stat-variation {
    display: block;
    font-size: 0.9rem;
    color: var(--rw-accent);
}

.rw-stats-footer {
    margin-top: 30px;
    color: var(--rw-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.rw-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.rw-result-item {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

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

.rw-result-item h3 {
    font-size: 1.25rem;
    color: var(--rw-dark);
    margin-bottom: 15px;
}

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

.rw-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.rw-case-item {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.rw-case-item h3 {
    font-size: 1.25rem;
    color: var(--rw-dark);
    margin-bottom: 10px;
}

.rw-case-sector {
    color: var(--rw-primary);
    font-weight: 500;
    margin-bottom: 15px;
}

.rw-case-results {
    margin-bottom: 20px;
    line-height: 1.6;
}

.rw-case-testimonial {
    border-left: 3px solid var(--rw-primary);
    padding-left: 15px;
    font-style: italic;
    color: var(--rw-text-light);
}

.rw-faq-items {
    max-width: 800px;
    margin: 50px auto 0;
}

.rw-faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--rw-gray);
    padding-bottom: 20px;
}

.rw-faq-question {
    font-size: 1.1rem;
    color: var(--rw-dark);
    margin-bottom: 10px;
    cursor: pointer;
}

.rw-faq-answer {
    color: var(--rw-text-light);
    line-height: 1.6;
}

.rw-booking {
    background-color: var(--rw-primary);
    color: white;
}

.rw-booking-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background-color: white;
    color: var(--rw-dark);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.rw-booking-card h2 {
    color: var(--rw-primary);
    margin-bottom: 15px;
}

.rw-booking-subtitle {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--rw-text-light);
}

.rw-booking-description {
    margin-bottom: 20px;
    line-height: 1.6;
}

.rw-booking-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--rw-text-light);
}

.rw-booking-meta i {
    margin-right: 5px;
}

.rw-footer {
    background-color: var(--rw-dark);
    color: white;
    padding: 50px 0;
}

.rw-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.rw-footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 600;
}

.rw-footer-logo i {
    margin-right: 10px;
    font-size: 1.5rem;
}

.rw-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rw-footer-links a {
    color: var(--rw-gray);
    text-decoration: none;
    transition: color 0.2s;
}

.rw-footer-links a:hover {
    color: white;
}

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

.rw-footer-social a {
    color: white;
    font-size: 1.25rem;
}

/* Responsive */
@media (max-width: 768px) {
    .rw-header-inner {
        flex-direction: column;
        gap: 15px;
    }
    
    .rw-nav {
        gap: 15px;
    }
    
    .rw-hero h1 {
        font-size: 2rem;
    }
    
    .rw-section h2 {
        font-size: 2rem;
    }
    
    .rw-hero-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Styles pour les cas clients */
.rw-case-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.rw-case-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    text-align: center;
}

.rw-case-logo {
    height: 60px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    border-radius: 4px;
    padding: 10px;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin-bottom: 10px;
}

.rw-case-title {
    flex: 1;
}

.rw-case-title h3 {
    margin: 0;
    font-size: 1.3rem;
    color: var(--rw-dark);
}

.rw-case-sector {
    margin: 0;
    font-size: 0.95rem;
    color: var(--rw-primary);
    font-weight: 500;
}

.rw-case-results {
    background-color: var(--rw-light);
    padding: 15px;
    border-radius: 6px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--rw-text);
    flex-grow: 1;
}

.rw-case-testimonial {
    margin: 15px 0 0;
    padding: 15px;
    background-color: rgba(3, 174, 188, 0.05);
    border-radius: 6px;
    font-size: 0.9rem;
}