* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo h2 {
    color: #4285f4;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #4285f4;
}

/* Mobile Menu Toggle */
    .logo h2 {
        font-size: 1.5rem;
    }
    
    .mobile-menu-toggle {
        display: none;
        flex-direction: column;
        cursor: pointer;
        padding: 5px;
    }

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    margin-top: 70px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: #ff6b6b;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

/* Analyzer Section */
.analyzer {
    padding: 80px 0;
    background: white;
}

.analyzer h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.analyzer-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.analyzer-tool {
    max-width: 800px;
    margin: 0 auto;
}

/* Search Options */
.search-options {
    margin-bottom: 40px;
}

.search-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
}

.tab-btn {
    padding: 12px 24px;
    border: 2px solid #ddd;
    border-radius: 25px;
    background: white;
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: #4285f4;
    color: #4285f4;
}

.tab-btn.active {
    background: #4285f4;
    border-color: #4285f4;
    color: white;
}

.search-tab {
    display: none;
}

.search-tab.active {
    display: block;
}

.search-input-section {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    align-items: center;
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #4285f4;
}

.info-box {
    background: #e3f2fd;
    border: 1px solid #2196f3;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.info-box p {
    margin-bottom: 10px;
    color: #1565c0;
}

.info-box ul {
    margin: 15px 0;
    padding-left: 20px;
    color: #1565c0;
}

.info-box li {
    margin-bottom: 5px;
}

.info-box em {
    font-size: 0.9rem;
    color: #666;
}

.url-input-section {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    align-items: center;
}

.gmb-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.gmb-input:focus {
    outline: none;
    border-color: #4285f4;
}

.analyze-btn {
    background: #4285f4;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.analyze-btn:hover {
    background: #3367d6;
    transform: translateY(-1px);
}

.analysis-results {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 40px;
    margin-top: 30px;
}

/* Business Info Section */
.business-info {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.business-info h3 {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.4rem;
}

.business-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.business-header h4 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
}

.business-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-stars {
    font-size: 1.2rem;
    color: #ffc107;
}

.rating-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
}

.rating-count {
    color: #666;
    font-size: 1rem;
}

.business-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.business-meta p {
    margin: 0;
    color: #666;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
}

/* Rating Simulator Section */
.rating-simulator {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.rating-simulator h3 {
    margin-bottom: 25px;
    color: #333;
    font-size: 1.4rem;
}

.simulator-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.current-state, .projected-state {
    text-align: center;
}

.current-state h4, .projected-state h4 {
    margin-bottom: 15px;
    color: #333;
}

.rating-display {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
}

.current-rating, .projected-rating {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #4285f4;
    margin-bottom: 5px;
}

.projected-rating {
    color: #4caf50;
}

.rating-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.simulator-controls {
    padding: 0 20px;
}

.simulator-controls h4 {
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.review-type-selector {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    justify-content: center;
    background: #f8f9fa;
    padding: 8px;
    border-radius: 50px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.review-type-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 40px;
    background: transparent;
    color: #666;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.review-type-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.review-type-btn:hover::before {
    left: 100%;
}

.review-type-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.review-type-btn.active {
    background: linear-gradient(135deg, #4285f4, #3367d6);
    color: white;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.4);
    transform: translateY(-2px);
}

.review-type-btn.negative {
    color: #ff6b6b;
}

.review-type-btn.negative:hover {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
}

.review-type-btn.negative.active {
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    transform: translateY(-2px);
}

/* Bouton structure */
.review-type-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 140px;
}

.btn-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.btn-text {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1;
}

.btn-subtitle {
    font-size: 0.7rem;
    opacity: 0.8;
    line-height: 1;
}

.slider-container {
    margin-bottom: 20px;
}

.reviews-slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #ddd;
    outline: none;
    -webkit-appearance: none;
}

.reviews-slider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4285f4;
    cursor: pointer;
}

.reviews-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4285f4;
    cursor: pointer;
    border: none;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
}

#slider-value {
    background: #4285f4;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: 600;
}

.impact-metrics {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4caf50;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Target Goals */
.target-goals {
    margin-bottom: 30px;
}

.target-goals h4 {
    margin-bottom: 20px;
    color: #333;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.goal-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.goal-item:hover {
    background: #e3f2fd;
    transform: translateY(-2px);
}

.goal-item.achievable {
    background: #e8f5e8;
    border: 2px solid #4caf50;
}

.goal-rating {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.goal-reviews {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.goal-price {
    font-size: 0.8rem;
    color: #4285f4;
    font-weight: 600;
}

/* Risk Analysis */
.risk-analysis {
    margin-bottom: 30px;
}

.risk-analysis h4 {
    margin-bottom: 20px;
    color: #333;
}

.risk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.risk-item {
    background: #fff5f5;
    border: 2px solid #ff6b6b;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.risk-item:hover {
    background: #ffe8e8;
    transform: translateY(-2px);
}

.risk-item.critical {
    background: #ffebee;
    border-color: #f44336;
}

.risk-rating {
    font-size: 1.2rem;
    font-weight: 700;
    color: #d32f2f;
    margin-bottom: 5px;
}

.risk-reviews {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.risk-impact {
    font-size: 0.8rem;
    color: #f44336;
    font-weight: 600;
}

/* Action CTA */
.action-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 30px;
    color: white;
    text-align: center;
}

.action-cta h4 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.action-cta p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.pricing-suggestion {
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.pricing-suggestion ul {
    text-align: left;
    max-width: 300px;
    margin: 15px auto 20px;
}

.pricing-suggestion li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.pricing-suggestion li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

.order-btn {
    background: #ff6b6b;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.order-btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.score-overview {
    text-align: center;
    margin-bottom: 40px;
}

.main-score {
    margin-bottom: 20px;
}

.score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(#4caf50 0deg, #4caf50 var(--score-angle, 0deg), #eee var(--score-angle, 0deg) 360deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.score-circle::before {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    background: #f8f9fa;
    border-radius: 50%;
    z-index: 1;
}

.score-value {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    z-index: 2;
    position: relative;
}

.score-label {
    font-size: 0.9rem;
    color: #666;
    z-index: 2;
    position: relative;
}

.score-status {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 10px;
}

.analysis-details h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #333;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.criteria-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ddd;
    transition: all 0.3s ease;
}

.criteria-item.good {
    border-left-color: #4caf50;
}

.criteria-item.average {
    border-left-color: #ff9800;
}

.criteria-item.poor {
    border-left-color: #f44336;
}

.criteria-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.criteria-title {
    font-weight: 600;
    font-size: 1rem;
    color: #333;
}

.criteria-score {
    font-weight: 700;
    font-size: 1.1rem;
    padding: 4px 12px;
    border-radius: 20px;
    background: #eee;
    color: #666;
}

.criteria-score.good {
    background: #e8f5e8;
    color: #4caf50;
}

.criteria-score.average {
    background: #fff3e0;
    color: #ff9800;
}

.criteria-score.poor {
    background: #ffebee;
    color: #f44336;
}

.criteria-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.recommendations h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.recommendations-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recommendation-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ff9800;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.recommendation-icon {
    font-size: 1.5rem;
    margin-top: 2px;
}

.recommendation-content h4 {
    margin-bottom: 8px;
    color: #333;
    font-size: 1rem;
}

.recommendation-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: white;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: white;
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: #4285f4;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.3);
}

.pricing-card:hover {
    border-color: #4285f4;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #4285f4;
    margin-bottom: 20px;
}

.price span {
    font-size: 1rem;
    color: #666;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-card li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.pricing-btn {
    background: #4285f4;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.pricing-btn:hover {
    background: #3367d6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.contact-info p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.contact-details p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.contact-form button {
    background: #4285f4;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.contact-form button:hover {
    background: #3367d6;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

/* Responsive Design */

/* Tablettes (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .analyzer h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .pricing-card.featured {
        grid-column: 1 / -1;
        transform: none;
    }
    
    .goals-grid,
    .risk-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 10px;
        max-height: 350px;
        overflow-y: auto;
    }
    
    .goal-item,
    .risk-item {
        padding: 12px;
    }
    
    .goal-rating,
    .risk-rating {
        font-size: 1rem;
    }
    
    .goal-reviews,
    .risk-reviews {
        font-size: 0.8rem;
    }
    
    .goal-price,
    .risk-impact {
        font-size: 0.7rem;
    }
    
    .review-type-selector {
        flex-direction: column;
        gap: 8px;
        padding: 6px;
    }
    
    .review-type-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-width: 120px;
    }
    
    .btn-icon {
        font-size: 1.3rem;
    }
    
    .btn-text {
        font-size: 0.8rem;
    }
    
    .btn-subtitle {
        font-size: 0.6rem;
    }
    
    .simulator-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .impact-metrics {
        flex-direction: column;
        gap: 15px;
    }
    
    .criteria-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Mobiles (jusqu'à 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 20px 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 10px 0;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 20px;
        font-size: 1.1rem;
    }
    
    .logo h2 {
        font-size: 1.3rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
        margin-top: 70px;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 25px;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 1rem;
        border-radius: 30px;
    }
    
    .analyzer {
        padding: 50px 0;
    }
    
    .analyzer h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .analyzer-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .analyzer-tool {
        max-width: 100%;
    }
    
    .search-tabs {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 25px;
    }
    
    .tab-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        border-radius: 25px;
        width: 100%;
    }
    
    .search-input-section {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .search-input {
        padding: 14px 16px;
        font-size: 0.95rem;
        border-radius: 8px;
        width: 100%;
    }
    
    .analyze-btn {
        padding: 14px 28px;
        font-size: 0.95rem;
        border-radius: 25px;
        width: 100%;
    }
    
    .info-box {
        padding: 15px;
        margin-bottom: 25px;
    }
    
    .info-box p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .business-info {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .business-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .business-header h4 {
        font-size: 1.3rem;
        line-height: 1.3;
    }
    
    .business-rating {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .rating-stars {
        font-size: 1.2rem;
    }
    
    .rating-value {
        font-size: 1.4rem;
    }
    
    .rating-count {
        font-size: 0.9rem;
    }
    
    .business-meta {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .business-meta p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .rating-simulator {
        padding: 20px 15px;
        border-radius: 12px;
        margin-top: 20px;
    }
    
    .rating-simulator h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .simulator-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .current-state,
    .projected-state {
        text-align: center;
        padding: 15px;
        border-radius: 10px;
    }
    
    .current-state h4,
    .projected-state h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .current-rating,
    .projected-rating {
        font-size: 2.2rem;
        margin-bottom: 8px;
    }
    
    .rating-label {
        font-size: 0.8rem;
    }
    
    .simulator-controls {
        padding: 0 10px;
    }
    
    .simulator-controls h4 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .review-type-selector {
        flex-direction: row;
        gap: 10px;
        padding: 8px;
        margin-bottom: 20px;
    }
    
    .review-type-toggle {
        margin-bottom: 20px;
    }
    
    .simulator-selector {
        gap: 10px;
        padding: 15px;
        margin-bottom: 25px;
    }
    
    .simulator-btn {
        padding: 15px 20px;
        min-width: 140px;
    }
    
    .simulator-btn .btn-icon {
        font-size: 1.5rem;
    }
    
    .simulator-btn .btn-text {
        font-size: 0.9rem;
    }
    
    .simulator-btn .btn-subtitle {
        font-size: 0.7rem;
    }
    
    .simulator-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .simulator-header h4 {
        font-size: 1.3rem;
    }
    
    .simulator-header p {
        font-size: 0.9rem;
    }
    
    .toggle-label {
        min-width: 180px;
        height: 45px;
    }
    
    .toggle-text {
        font-size: 0.85rem;
    }
    
    .review-type-btn {
        padding: 12px 16px;
        font-size: 0.85rem;
        min-width: 110px;
        flex: 1;
    }
    
    .btn-icon {
        font-size: 1.1rem;
    }
    
    .btn-text {
        font-size: 0.75rem;
    }
    
    .btn-subtitle {
        font-size: 0.6rem;
    }
    
    .slider-container {
        margin-bottom: 25px;
    }
    
    .reviews-slider {
        height: 10px;
    }
    
    .reviews-slider::-webkit-slider-thumb {
        width: 22px;
        height: 22px;
    }
    
    .slider-labels {
        font-size: 0.8rem;
        margin-top: 12px;
    }
    
    #slider-value {
        padding: 4px 10px;
        font-size: 0.8rem;
    }
    
    .impact-metrics {
        flex-direction: row;
        gap: 20px;
        justify-content: space-around;
    }
    
    .metric {
        text-align: center;
        flex: 1;
    }
    
    .metric-value {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .metric-label {
        font-size: 0.7rem;
    }
    
    .target-goals,
    .risk-analysis {
        margin-bottom: 25px;
    }
    
    .target-goals h4,
    .risk-analysis h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .goals-grid,
    .risk-grid {
        grid-template-columns: repeat(auto-fit, minmax(85px, 1fr));
        gap: 10px;
        max-height: 280px;
        overflow-y: auto;
        padding: 5px;
    }
    
    .goal-item,
    .risk-item {
        padding: 12px 8px;
        border-radius: 8px;
    }
    
    .goal-rating,
    .risk-rating {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .goal-reviews,
    .risk-reviews {
        font-size: 0.75rem;
        margin-bottom: 4px;
    }
    
    .goal-price,
    .risk-impact {
        font-size: 0.65rem;
    }
    
    .action-cta {
        padding: 25px 20px;
        border-radius: 12px;
        margin-top: 20px;
    }
    
    .action-cta h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .action-cta p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .pricing-suggestion {
        padding: 20px 15px;
        border-radius: 10px;
    }
    
    .pricing-suggestion p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .pricing-suggestion ul {
        max-width: none;
        margin: 15px 0 20px;
    }
    
    .pricing-suggestion li {
        font-size: 0.85rem;
        margin-bottom: 8px;
        line-height: 1.4;
    }
    
    .order-btn {
        padding: 14px 24px;
        font-size: 1rem;
        border-radius: 25px;
        width: 100%;
    }
    
    .score-overview {
        margin: 25px 0;
        text-align: center;
    }
    
    .score-circle {
        width: 130px;
        height: 130px;
        margin: 0 auto 15px;
    }
    
    .score-value {
        font-size: 2.2rem;
    }
    
    .score-label {
        font-size: 0.85rem;
    }
    
    .score-status {
        font-size: 0.9rem;
        margin-top: 10px;
    }
    
    .analysis-details {
        margin-top: 25px;
    }
    
    .analysis-details h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .criteria-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .criteria-item {
        padding: 18px 15px;
        border-radius: 10px;
    }
    
    .criteria-header {
        margin-bottom: 10px;
    }
    
    .criteria-title {
        font-size: 1rem;
    }
    
    .criteria-score {
        font-size: 1.3rem;
    }
    
    .criteria-description {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .recommendations {
        margin-top: 25px;
    }
    
    .recommendations h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .recommendation-item {
        padding: 15px;
        border-radius: 10px;
        margin-bottom: 15px;
    }
    
    .recommendation-content h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .recommendation-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .services {
        padding: 60px 0;
    }
    
    .services h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 25px 20px;
        border-radius: 12px;
        text-align: center;
    }
    
    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .pricing {
        padding: 60px 0;
    }
    
    .pricing h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .pricing-card {
        padding: 30px 20px;
        border-radius: 12px;
    }
    
    .pricing-card h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .price {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }
    
    .pricing-card ul {
        margin-bottom: 25px;
    }
    
    .pricing-card li {
        font-size: 0.9rem;
        padding: 10px 0;
        line-height: 1.4;
    }
    
    .pricing-btn {
        padding: 14px 28px;
        font-size: 0.95rem;
        border-radius: 25px;
    }
    
    .pricing-card.featured {
        transform: none;
        order: -1;
    }
    
    .contact {
        padding: 60px 0;
    }
    
    .contact h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-info h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .contact-info p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .contact-details p {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .contact-form {
        padding: 25px 20px;
        border-radius: 12px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 14px;
        font-size: 0.95rem;
        border-radius: 8px;
        margin-bottom: 15px;
    }
    
    .contact-form textarea {
        height: 100px;
    }
    
    .contact-form button {
        padding: 14px 28px;
        font-size: 0.95rem;
        border-radius: 25px;
    }
}

/* Très petits écrans (jusqu'à 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .logo h2 {
        font-size: 1.1rem;
    }
    
    .hero {
        padding: 80px 0 50px;
    }
    
    .hero-content h1 {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .analyzer {
        padding: 40px 0;
    }
    
    .analyzer h2 {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .analyzer-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .search-tabs {
        gap: 8px;
    }
    
    .tab-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .search-input {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
    
    .analyze-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .business-info {
        padding: 15px 12px;
    }
    
    .business-header h4 {
        font-size: 1.2rem;
    }
    
    .rating-simulator {
        padding: 15px 12px;
    }
    
    .rating-simulator h3 {
        font-size: 1.2rem;
    }
    
    .current-rating,
    .projected-rating {
        font-size: 2rem;
    }
    
    .review-type-selector {
        gap: 8px;
        padding: 6px;
    }
    
    .review-type-toggle {
        margin-bottom: 15px;
    }
    
    .toggle-label {
        min-width: 160px;
        height: 40px;
    }
    
    .toggle-text {
        font-size: 0.8rem;
    }
    
    .review-type-btn {
        padding: 10px 12px;
        font-size: 0.8rem;
        min-width: 100px;
    }
    
    .btn-icon {
        font-size: 1rem;
    }
    
    .btn-text {
        font-size: 0.7rem;
    }
    
    .btn-subtitle {
        font-size: 0.55rem;
    }
    
    .impact-metrics {
        gap: 15px;
    }
    
    .metric-value {
        font-size: 1.2rem;
    }
    
    .metric-label {
        font-size: 0.65rem;
    }
    
    .goals-grid,
    .risk-grid {
        grid-template-columns: repeat(auto-fit, minmax(75px, 1fr));
        gap: 8px;
        max-height: 250px;
    }
    
    .goal-item,
    .risk-item {
        padding: 10px 6px;
    }
    
    .goal-rating,
    .risk-rating {
        font-size: 0.9rem;
    }
    
    .goal-reviews,
    .risk-reviews {
        font-size: 0.7rem;
    }
    
    .goal-price,
    .risk-impact {
        font-size: 0.6rem;
    }
    
    .action-cta {
        padding: 20px 15px;
    }
    
    .action-cta h4 {
        font-size: 1.1rem;
    }
    
    .action-cta p {
        font-size: 0.9rem;
    }
    
    .pricing-suggestion {
        padding: 15px 12px;
    }
    
    .pricing-suggestion li {
        font-size: 0.8rem;
    }
    
    .order-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .score-circle {
        width: 110px;
        height: 110px;
    }
    
    .score-value {
        font-size: 2rem;
    }
    
    .score-label {
        font-size: 0.8rem;
    }
    
    .criteria-item {
        padding: 15px 12px;
    }
    
    .criteria-title {
        font-size: 0.95rem;
    }
    
    .criteria-score {
        font-size: 1.2rem;
    }
    
    .criteria-description {
        font-size: 0.85rem;
    }
    
    .services h2,
    .pricing h2,
    .contact h2 {
        font-size: 1.6rem;
    }
    
    .service-card,
    .pricing-card {
        padding: 20px 15px;
    }
    
    .service-card h3,
    .pricing-card h3 {
        font-size: 1.3rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .pricing-card li {
        font-size: 0.85rem;
    }
    
    .pricing-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .contact-info h3 {
        font-size: 1.3rem;
    }
    
    .contact-info p,
    .contact-details p {
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .contact-form button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.pricing-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Toggle Switch pour sélection d'avis */
.review-type-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.toggle-container {
    position: relative;
    display: inline-block;
}

.toggle-input {
    display: none;
}

.toggle-label {
    display: flex;
    align-items: center;
    background: #f0f0f0;
    border-radius: 50px;
    padding: 8px;
    cursor: pointer;
    position: relative;
    min-width: 200px;
    height: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.toggle-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: linear-gradient(135deg, #4caf50, #45a049);
    border-radius: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.toggle-input:checked + .toggle-label .toggle-slider {
    left: calc(50% + 2px);
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.toggle-text {
    flex: 1;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
}

.toggle-text.positive-text {
    color: #4caf50;
}

.toggle-text.negative-text {
    color: #ff6b6b;
}

.toggle-input:checked + .toggle-label .toggle-text.positive-text {
    color: white;
}

.toggle-input:not(:checked) + .toggle-label .toggle-text.negative-text {
    color: white;
}

.toggle-label:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Animation du slider */
.toggle-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.toggle-label:hover .toggle-slider::before {
    opacity: 1;
}

/* Simulateurs séparés */
.simulator-section {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.simulator-section.active {
    border-color: #4caf50;
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.2);
}

.negative-simulator.active {
    border-color: #ff6b6b;
    box-shadow: 0 6px 25px rgba(255, 107, 107, 0.2);
}

.simulator-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.simulator-header h4 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #333;
}

.simulator-header p {
    color: #666;
    font-size: 0.95rem;
}

/* Sélecteur de simulateur */
.simulator-selector {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
}

.simulator-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 25px;
    border: none;
    border-radius: 12px;
    background: white;
    color: #666;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-width: 160px;
    position: relative;
    overflow: hidden;
}

.simulator-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.simulator-btn:hover::before {
    left: 100%;
}

.simulator-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.simulator-btn.active {
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: white;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
    transform: translateY(-2px);
}

.simulator-btn.active.negative {
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

.simulator-btn .btn-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.simulator-btn .btn-text {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
}

.simulator-btn .btn-subtitle {
    font-size: 0.8rem;
    opacity: 0.8;
    line-height: 1;
}

/* Sliders spécifiques */
.positive-slider {
    --slider-color: #4caf50;
}

.negative-slider {
    --slider-color: #ff6b6b;
}

.positive-slider::-webkit-slider-thumb {
    background: #4caf50;
}

.negative-slider::-webkit-slider-thumb {
    background: #ff6b6b;
}

.positive-slider::-moz-range-thumb {
    background: #4caf50;
}

.negative-slider::-moz-range-thumb {
    background: #ff6b6b;
}

/* Labels des sliders */
.slider-container label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

/* --- Toggle Switch Moderne --- */
.simulator-toggle-wrapper {
  display: flex;
  justify-content: center;
  margin: 32px 0 24px 0;
}
.simulator-toggle {
  position: relative;
  display: inline-block;
  width: 120px;
  height: 44px;
}
.simulator-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider-toggle {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #f1f3f6;
  border-radius: 30px;
  box-shadow: 0 2px 8px #0001;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
}
.toggle-label {
  font-size: 1.1em;
  font-weight: 600;
  color: #bbb;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.toggle-label-left {
  color: #4caf50;
}
.toggle-label-right {
  color: #ff6b6b;
  justify-content: flex-end;
}
.simulator-toggle input:checked + .slider-toggle .toggle-label-left {
  color: #bbb;
}
.simulator-toggle input:checked + .slider-toggle .toggle-label-right {
  color: #ff6b6b;
}
.simulator-toggle input:not(:checked) + .slider-toggle .toggle-label-left {
  color: #4caf50;
}
.simulator-toggle input:not(:checked) + .slider-toggle .toggle-label-right {
  color: #bbb;
}
.simulator-toggle .slider-toggle:before {
  content: '';
  position: absolute;
  left: 8px;
  top: 6px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #4caf50 60%, #fff 100%);
  border-radius: 50%;
  box-shadow: 0 2px 8px #0002;
  transition: transform 0.3s, background 0.3s;
}
.simulator-toggle input:checked + .slider-toggle:before {
  transform: translateX(60px);
  background: linear-gradient(135deg, #ff6b6b 60%, #fff 100%);
}
.toggle-icon {
  font-size: 1.2em;
}

/* --- Sliders Premium --- */
input[type=range].reviews-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  background: #e0e5ec;
  border-radius: 8px;
  outline: none;
  transition: background 0.3s;
  margin: 8px 0 0 0;
}
input[type=range].reviews-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4caf50 60%, #fff 100%);
  box-shadow: 0 2px 8px #0002;
  cursor: pointer;
  transition: background 0.3s;
}
input[type=range].reviews-slider.negative-slider::-webkit-slider-thumb {
  background: linear-gradient(135deg, #ff6b6b 60%, #fff 100%);
}
input[type=range].reviews-slider:focus {
  background: #d0d7e2;
}
input[type=range].reviews-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4caf50 60%, #fff 100%);
  box-shadow: 0 2px 8px #0002;
  cursor: pointer;
  transition: background 0.3s;
}
input[type=range].reviews-slider.negative-slider::-moz-range-thumb {
  background: linear-gradient(135deg, #ff6b6b 60%, #fff 100%);
}
input[type=range].reviews-slider::-ms-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4caf50 60%, #fff 100%);
  box-shadow: 0 2px 8px #0002;
  cursor: pointer;
  transition: background 0.3s;
}
input[type=range].reviews-slider.negative-slider::-ms-thumb {
  background: linear-gradient(135deg, #ff6b6b 60%, #fff 100%);
}
input[type=range].reviews-slider:disabled {
  opacity: 0.5;
}

/* --- Blocs Simulateur Premium --- */
.rating-simulator {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px #0001, 0 1.5px 4px #0001;
  padding: 32px 24px 24px 24px;
  margin: 32px 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.simulator-section {
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f3f6;
}
.simulator-header h4 {
  font-size: 1.25em;
  font-weight: 700;
  margin-bottom: 2px;
}
.simulator-header p {
  color: #888;
  font-size: 1em;
  margin-bottom: 12px;
}
.simulator-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.current-state, .projected-state {
  background: #f8fafc;
  border-radius: 12px;
  padding: 18px 24px;
  min-width: 160px;
  text-align: center;
  box-shadow: 0 1px 4px #0001;
}
.current-rating, .projected-rating {
  font-size: 2.5em;
  font-weight: 700;
  color: #4caf50;
}
.projected-rating {
  color: #4caf50;
}
.simulator-section.negative-simulator .current-rating,
.simulator-section.negative-simulator .projected-rating {
  color: #ff6b6b;
}
.simulator-controls {
  flex: 1 1 220px;
  min-width: 220px;
  margin: 0 16px;
}
.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.95em;
  color: #888;
  margin-top: 2px;
}
.impact-metrics {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}
.metric {
  text-align: center;
}
.metric-value {
  font-size: 1.1em;
  font-weight: 600;
}
.metric-label {
  font-size: 0.9em;
  color: #888;
}
@media (max-width: 700px) {
  .rating-simulator {
    padding: 16px 4px 12px 4px;
  }
  .simulator-content {
    flex-direction: column;
    gap: 16px;
  }
  .current-state, .projected-state {
    min-width: unset;
    padding: 12px 8px;
  }
}

/* ============================================================================
 * Auteur      : [Ton Nom]
 * Date        : 2024-07-06
 * Version     : 1.0
 * Rôle        : Styles pour la bannière horizontale Google Avis
 * ========================================================================== */
/* Correction du centrage horizontal de la bannière */
.banniere-google-avis {
    width: 100%;
    max-width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    z-index: 900;
    text-align: center;
}
.banniere-google-avis img {
    margin: 0 auto;
    display: block;
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}
@media (max-width: 900px) {
    .banniere-google-avis {
        height: 120px;
    }
}
@media (max-width: 600px) {
    .banniere-google-avis {
        height: 80px;
    }
}

/* Styles pour les modals de paiement Stripe */
.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.payment-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.payment-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px 20px 0 0;
}

.payment-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
}

.payment-modal-body {
    padding: 30px;
}

.product-summary {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.product-summary h4 {
    color: #333;
    margin: 0 0 10px 0;
    font-size: 1.3rem;
}

.product-description {
    color: #666;
    margin: 0 0 15px 0;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 15px 0;
}

.feature-tag {
    background: #4ade80;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.product-price {
    margin-top: 15px;
}

.product-price .price {
    font-size: 2rem;
    font-weight: bold;
    color: #667eea;
}

.payment-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.total-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
}

.total-line {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    padding: 5px 0;
}

.total-line.total {
    border-top: 2px solid #667eea;
    padding-top: 15px;
    margin-top: 15px;
    font-weight: bold;
    font-size: 1.2rem;
    color: #667eea;
}

.pay-button {
    width: 100%;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pay-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 222, 128, 0.3);
}

.pay-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.security-info {
    background: #e8f5e8;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border-left: 4px solid #4ade80;
}

.security-info p {
    margin: 8px 0;
    color: #166534;
    font-weight: 500;
}

/* Loader */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    backdrop-filter: blur(5px);
}

.loader {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Messages d'erreur et de succès */
.error-message,
.success-message {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10002;
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.error-content,
.success-content {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-radius: 10px;
    color: white;
    font-weight: 500;
    min-width: 300px;
}

.error-content {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.success-content {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
}

.error-icon,
.success-icon {
    font-size: 1.2rem;
    margin-right: 10px;
}

.error-close,
.success-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 15px;
    padding: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.error-close:hover,
.success-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive pour les modals */
@media (max-width: 768px) {
    .payment-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .payment-modal-header {
        padding: 15px 20px;
    }
    
    .payment-modal-body {
        padding: 20px;
    }
    
    .product-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-tag {
        width: 100%;
        text-align: center;
    }
    
    .total-line {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}

/* Styles pour la popup Stripe */
.stripe-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.stripe-popup-modal {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideInUp 0.4s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stripe-popup-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stripe-popup-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.stripe-popup-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.stripe-popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.stripe-popup-body {
    padding: 30px;
}

.stripe-product-summary {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
}

.stripe-product-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.stripe-product-summary h4 {
    margin: 0 0 10px 0;
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
}

.stripe-product-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.stripe-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stripe-feature {
    color: #4caf50;
    font-weight: 500;
    font-size: 0.95rem;
}

.stripe-payment-form {
    margin-bottom: 25px;
}

.stripe-form-group {
    margin-bottom: 20px;
}

.stripe-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.stripe-form-group input,
.stripe-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.stripe-form-group input:focus,
.stripe-form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.stripe-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.stripe-price-breakdown {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.stripe-price-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1rem;
}

.stripe-price-line:last-child {
    margin-bottom: 0;
}

.stripe-total {
    border-top: 2px solid #e1e5e9;
    padding-top: 15px;
    margin-top: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
}

.stripe-pay-button {
    width: 100%;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.stripe-pay-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
}

.stripe-pay-button:active {
    transform: translateY(0);
}

.stripe-pay-text {
    font-size: 1.1rem;
}

.stripe-pay-icon {
    font-size: 1.2rem;
}

.stripe-security-info {
    text-align: center;
    margin-top: 25px;
    padding: 20px;
    background: #e8f5e8;
    border-radius: 12px;
    border-left: 4px solid #4caf50;
}

.stripe-security-info p {
    margin: 5px 0;
    font-size: 0.9rem;
    color: #2e7d32;
    font-weight: 500;
}

/* Responsive pour la popup Stripe */
@media (max-width: 768px) {
    .stripe-popup-modal {
        width: 95%;
        margin: 20px;
    }
    
    .stripe-popup-header {
        padding: 20px;
    }
    
    .stripe-popup-header h3 {
        font-size: 1.2rem;
    }
    
    .stripe-popup-body {
        padding: 20px;
    }
    
    .stripe-product-summary {
        padding: 15px;
    }
    
    .stripe-product-icon {
        font-size: 2.5rem;
    }
    
    .stripe-features {
        gap: 6px;
    }
    
    .stripe-feature {
        font-size: 0.9rem;
    }
    
    .stripe-price-breakdown {
        padding: 15px;
    }
    
    .stripe-price-line {
        font-size: 0.95rem;
    }
    
    .stripe-total {
        font-size: 1rem;
    }
    
    .stripe-pay-button {
        padding: 16px 25px;
        font-size: 1rem;
    }
    
    .stripe-security-info {
        padding: 15px;
    }
    
    .stripe-security-info p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .stripe-popup-modal {
        width: 98%;
        margin: 10px;
    }
    
    .stripe-popup-header {
        padding: 15px;
    }
    
    .stripe-popup-header h3 {
        font-size: 1.1rem;
    }
    
    .stripe-popup-body {
        padding: 15px;
    }
    
    .stripe-product-summary {
        padding: 12px;
    }
    
    .stripe-product-icon {
        font-size: 2rem;
    }
    
    .stripe-product-summary h4 {
        font-size: 1.1rem;
    }
    
    .stripe-form-group input,
    .stripe-form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .stripe-price-breakdown {
        padding: 12px;
    }
    
    .stripe-pay-button {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .stripe-pay-text {
        font-size: 1rem;
    }
    
    .stripe-security-info {
        padding: 12px;
    }
    
    .stripe-security-info p {
        font-size: 0.8rem;
    }
}
