/* Variables CSS */
:root {
    --primary-color: #00A878;
    --primary-dark: #008060;
    --primary-light: #E8F5F1;
    --secondary-color: #2C3E50;
    --text-dark: #1a1a1a;
    --text-gray: #666;
    --text-light: #999;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
}

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

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo-img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

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

/* Buttons */
.btn-primary-small {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary-small:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary-large {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-primary-large:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary-large {
    background: transparent;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 700;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

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

.btn-exercise {
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

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

/* Hero Section */
.hero {
    background: var(--white);
    color: var(--text-dark);
    padding: 4rem 0;
    padding-top: 9rem;
    text-align: center;
}

.breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--text-gray);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--text-dark);
}

.separator {
    margin: 0 0.5rem;
    color: var(--text-light);
}

.current {
    color: var(--text-dark);
    font-weight: 600;
}

.step-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-light);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 168, 120, 0.15);
}

.step-icon {
    font-size: 1.5rem;
}

.step-number {
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.hero-description p {
    margin-bottom: 1rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 600px;
    margin: 3rem auto;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Modules Section */
.modules {
    padding: 5rem 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.module-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.module-number {
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
}

.module-duration {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.module-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.module-intro {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.module-content {
    border-top: 2px solid var(--border-color);
    padding-top: 2rem;
}

.module-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.module-content h4:first-child {
    margin-top: 0;
}

.module-list {
    list-style: none;
    padding-left: 0;
}

.module-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
}

.module-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.2rem;
}

.module-example {
    background: var(--white);
    border: 2px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: var(--radius-sm);
}

.module-example h4 {
    margin-top: 0;
    color: var(--secondary-color);
}

.module-insight {
    background: var(--white);
    border: 2px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: var(--radius-sm);
}

.module-insight h4 {
    margin-top: 0;
    color: var(--primary-dark);
}

.module-warning {
    background: var(--white);
    border: 2px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: var(--radius-sm);
}

.module-warning h4 {
    margin-top: 0;
    color: var(--secondary-color);
}

.module-exercise {
    background: var(--white);
    border: 2px solid var(--primary-color);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: var(--radius-md);
}

.module-exercise h4 {
    margin-top: 0;
    color: var(--primary-dark);
}

.myowo-integration {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: var(--radius-md);
}

.myowo-integration h4 {
    margin-top: 0;
    color: var(--primary-dark);
}

.entrepreneur-profile {
    background: #f8f9fa;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
}

.entrepreneur-profile h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.entrepreneur-profile p {
    margin-bottom: 0.5rem;
}

.fear-item {
    background: #f8f9fa;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: var(--radius-md);
}

.fear-item h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.commitment-box {
    background: var(--white);
    border: 2px solid var(--primary-color);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.commitment-box h4 {
    margin-top: 0;
    color: var(--secondary-color);
}

.commitment-text {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-top: 1rem;
}

.commitment-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.module-note {
    font-style: italic;
    color: var(--text-gray);
    margin-top: 1rem;
}

/* CTA Section */
.cta-section {
    background: var(--secondary-color);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-note {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

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

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding-top: 7.5rem;
    }

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

    .hero-subtitle {
        font-size: 1.3rem;
    }

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

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

    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

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

    .module-card {
        padding: 1.5rem;
    }

    .module-title {
        font-size: 1.5rem;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons a {
        width: 100%;
        max-width: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 7rem;
    }

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

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 2rem auto;
    }

    /* Quiz sur mobile */
    .quiz-question-text {
        font-size: 1.25rem;
    }

    .quiz-option {
        padding: 1rem;
    }

    .option-letter {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }

    .option-text {
        font-size: 1rem;
    }

    .results-header {
        padding: 1.5rem;
    }

    .featured-badge {
        right: 12px;
    }
}

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

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

.module-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Styles spécifiques Étape 2 */

.module-featured {
    border: 3px solid var(--primary-color);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--secondary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.opportunity-source {
    background: #f8f9fa;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
}

.opportunity-source h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.quiz-preview {
    background: var(--primary-light);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: var(--radius-md);
}

.quiz-sample {
    background: var(--white);
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary-color);
}

.quiz-sample ul {
    list-style: none;
    padding-left: 1rem;
}

.quiz-sample li {
    padding: 0.5rem 0;
}

.quiz-note {
    font-style: italic;
    color: var(--text-gray);
    margin-top: 1rem;
    text-align: center;
}

.quiz-results {
    background: #E8F5F1;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: var(--radius-md);
    border: 2px dashed var(--primary-color);
}

.btn-quiz {
    background: var(--primary-color);
    color: var(--white);
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.btn-quiz:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.business-category {
    margin: 3rem 0;
}

.business-category h4 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-color);
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.business-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: all 0.3s;
}

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

.business-card h5 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.business-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.capital,
.profit {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
}

.business-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.category-note {
    font-style: italic;
    color: var(--text-gray);
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: var(--radius-sm);
}

.feasibility-grid {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.criterion {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
}

.criterion h5 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feasibility-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: var(--white);
}

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

.feasibility-table th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.feasibility-table tr:nth-child(even) {
    background: #f8f9fa;
}

.feasibility-table tr:last-child {
    background: var(--primary-light);
    font-weight: 700;
}

.mvp-strategies {
    margin: 2rem 0;
}

.strategy {
    background: #f8f9fa;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
}

.strategy h6 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.decision-framework {
    margin: 2rem 0;
}

.decision-criteria {
    background: var(--primary-light);
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
}

.decision-criteria h5 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

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

    .business-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    .feasibility-table {
        font-size: 0.9rem;
        display: block;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        min-width: 680px;
    }

    .feasibility-table th,
    .feasibility-table td {
        padding: 0.7rem;
    }
}

/* ========================================
   STYLES DU QUIZ DU BÂTISSEUR
   ======================================== */

.module-featured {
    border: 3px solid var(--primary-color);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--secondary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

#quiz-intro {
    text-align: center;
}

#start-quiz-btn {
    margin: 2rem auto;
    display: block;
}

#quiz-container,
#quiz-results {
    margin-top: 2rem;
}

/* Barre de progression */
.quiz-progress {
    margin-bottom: 3rem;
}

.quiz-progress-bar {
    width: 100%;
    height: 8px;
    background: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.quiz-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    transition: width 0.3s ease;
}

.quiz-progress-text {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Question */
.quiz-question {
    margin-bottom: 2rem;
}

.quiz-question-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.4;
}

/* Options */
.quiz-options {
    display: grid;
    gap: 1rem;
}

.quiz-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
    width: 100%;
}

.quiz-option:hover {
    border-color: var(--primary-color);
    background: var(--primary-light);
    transform: translateX(5px);
}

.quiz-option.selected {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white);
}

.option-letter {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
}

.quiz-option.selected .option-letter {
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.option-text {
    flex: 1;
    font-size: 1.05rem;
    line-height: 1.5;
}

/* Bouton retour */
.btn-quiz-back {
    background: transparent;
    color: var(--text-gray);
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.btn-quiz-back:hover {
    color: var(--primary-color);
}

/* Résultats */
#quiz-results {
    animation: fadeIn 0.5s ease-in;
}

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

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

.results-header {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.results-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.results-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.results-description {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Scores */
.results-scores {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.results-scores h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.score-bar-container {
    margin-bottom: 1.5rem;
}

.score-bar-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.score-bar {
    width: 100%;
    height: 30px;
    background: #f0f0f0;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.score-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    transition: width 1s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    color: var(--white);
    font-weight: 700;
}

/* Forces */
.results-strengths {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.results-strengths h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

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

.strength-badge {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
}

/* Business recommandés */
.results-businesses {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.results-businesses h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.businesses-intro {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

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

.business-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: #f8f9fa;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all 0.3s;
}

.business-card:hover {
    border-color: var(--primary-color);
    background: var(--primary-light);
    transform: translateY(-3px);
}

.business-icon {
    font-size: 1.8rem;
}

.business-name {
    font-weight: 600;
    color: var(--text-dark);
}

/* Actions */
.results-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

/* Partage */
.results-share {
    background: var(--white);
    border: 2px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    text-align: center;
}

.results-share p {
    margin: 0;
    color: var(--text-dark);
}

/* Responsive */
@media (max-width: 768px) {
    .quiz-question-text {
        font-size: 1.3rem;
    }

    .quiz-option {
        padding: 1rem;
    }

    .option-letter {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .option-text {
        font-size: 0.95rem;
    }

    .results-icon {
        font-size: 3.5rem;
    }

    .results-title {
        font-size: 1.8rem;
    }

    .results-description {
        font-size: 1rem;
    }

    .businesses-grid {
        grid-template-columns: 1fr;
    }

    .results-actions {
        flex-direction: column;
    }

    .results-actions button {
        width: 100%;
    }
}