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

body {
    font-family: 'League Spartan', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #fafbfc;
}

/* Variables CSS communes à toutes les extensions */
:root {
    --primary-blue: #2980b9;
    --secondary-teal: #16a085;
    --accent-orange: #e67e22;
    --neutral-dark: #2c3e50;
    --neutral-medium: #7f8c8d;
    --neutral-light: #ecf0f1;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
}

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

/* Header */
header {
    font-family: 'League Spartan', sans-serif;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--primary-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

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

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

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

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--neutral-dark);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background: var(--neutral-light);
}

.dropdown-menu .ext-logo {
    height: 20px;
    width: 20px;
    object-fit: contain;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.lang-toggle {
    background: none;
    border: 1px solid var(--neutral-light);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--neutral-dark);
    transition: all 0.3s ease;
}

.lang-toggle:hover {
    border-color: var(--primary-blue);
    background: var(--neutral-light);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.language-selector:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--neutral-dark);
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
}

.lang-option:hover {
    background: var(--neutral-light);
}

/* CTA Button */
.cta-button {
    background: var(--primary-blue);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(41, 128, 185, 0.3);
}

.cta-button::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 ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.cta-button.secondary:hover {
    background: var(--primary-blue);
    color: white;
}

.cta-button.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Highlight */
.highlight {
    color: var(--primary-blue);
    font-weight: 700;
}

/* Hero Section - Redesigned */
.hero {
    margin-top: 80px;
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fbff 0%, #f1f8ff 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(41, 128, 185, 0.1);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--neutral-medium);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: #f9f9f9;
}

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

.feature-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-image {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    /* Rend l'image carrée */
    position: relative;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}

.feature-card h3 {
    color: white;
    position: absolute;
    bottom: 30px;
    left: 20px;
    margin: 0;
    z-index: 2;
    font-size: 2.5rem;
    max-width: 80%;
    line-height: normal;
}

.feature-card:first-child h3,
.feature-card:last-child h3 {
    bottom: auto;
    top: 30px;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card p {
    display: none;
}

.feature-stats {
    display: none;
}

/* SketchUp Mockup */
.sketchup-mockup {
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.mockup-header {
    background: #e5e5e5;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.window-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red {
    background: #ff5f57;
}

.control.yellow {
    background: #ffbd2e;
}

.control.green {
    background: #28ca42;
}

.window-title {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.mockup-toolbar {
    background: #f0f0f0;
    padding: 0.8rem;
    border-bottom: 1px solid #ddd;
}

.tool-group {
    display: flex;
    gap: 0.5rem;
}

.tool-icon {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

.tool-icon img {
    width: 90%;
    height: 90%;
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
}

.tool-icon.active,
.tool-icon:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.mockup-viewport {
    height: 300px;
    background: white;
    position: relative;
    overflow: hidden;
}

.viewport-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.model-preview {
    position: relative;
    width: 200px;
    height: 150px;
}

.wall-element,
.window-element,
.door-element {
    position: absolute;
    border-radius: 2px;
}

.wall-element {
    width: 150px;
    height: 20px;
    background: #ccc;
    top: 60px;
    left: 25px;
}

.window-element {
    width: 40px;
    height: 60px;
    background: var(--secondary-teal);
    top: 30px;
    left: 80px;
    opacity: 0.8;
}

.door-element {
    width: 30px;
    height: 80px;
    background: var(--accent-orange);
    top: 70px;
    left: 140px;
    opacity: 0.8;
}

.time-comparison-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
}

.time-before,
.time-after {
    text-align: center;
}

.time-label {
    display: block;
    font-size: 0.8rem;
    color: var(--neutral-medium);
    margin-bottom: 0.3rem;
}

.time-value {
    font-weight: 700;
    color: var(--neutral-dark);
}

.vs-arrow {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: bold;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--neutral-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* Tools Showcase */
.tools-showcase {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fbff 0%, #f1f8ff 100%);
}

.tools-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.tools-list-column {
    overflow-y: auto;
    max-height: 70vh;
}

.tools-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tool-category {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.tool-category:hover {
    transform: translateY(-5px);
}

.category-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--neutral-light);
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-icon {
    font-size: 2rem;
}

.category-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--neutral-dark);
    flex: 1;
}

.tools-count {
    background: rgba(41, 128, 185, 0.1);
    color: var(--primary-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.category-tools {
    padding: 1rem 0;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 1rem;
}

.tool-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 1/1;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.tool-card.active {
    border: 2px solid var(--primary-blue);
    box-shadow: 0 8px 20px rgba(41, 128, 185, 0.15);
}

.tool-card .tool-name {
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.tool-card .tool-icon {
    width: 60%;
    height: auto;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.tool-card .tool-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tool-card .tool-improvement {
    font-size: 0.8rem;
    color: var(--secondary-teal);
    font-weight: 600;
    margin-top: auto;
}

/* Responsive adjustments for tool grid */
@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .tools-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Tools Video Column */
.tools-video-column {
    position: sticky;
    top: 100px;
    /* Ajustez en fonction de la hauteur du header */
    max-height: calc(100vh - 120px);
    /* Hauteur de la fenêtre moins espace pour header et padding */
    height: fit-content;
    align-self: flex-start;
}

.video-container {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 120px);
}

.video-placeholder {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    min-height: 250px;
    max-height: 300px;
}

.placeholder-message {
    text-align: center;
    padding: 2rem;
}

.placeholder-message img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.placeholder-message p {
    color: var(--neutral-medium);
    font-size: 1.1rem;
}

.video-player {
    flex: 1;
    display: none;
    max-height: 600px;
    margin: 0 auto;
    width: 50%;
    /* Réduire la largeur pour un format portrait */
}

.video-player.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.video-player video {
    width: 100%;
    height: auto;
    min-height: 350px;
    max-height: 550px;
    object-fit: contain;
    background-color: #000;
}

.video-info {
    padding: 1.5rem;
    border-top: 1px solid var(--neutral-light);
}

.video-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: 0.5rem;
}

.video-info p {
    color: var(--neutral-medium);
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .tools-layout {
        grid-template-columns: 1fr;
    }

    .tools-list-column {
        max-height: none;
    }

    .tools-video-column {
        position: relative;
        top: 0;
        max-height: none;
    }

    .video-container {
        margin-top: 2rem;
        max-height: none;
    }

    .video-player {
        width: 80%;
        /* Ajuster la largeur pour les écrans plus petits */
    }
}

@media (max-width: 576px) {
    .video-player {
        width: 100%;
        /* Pleine largeur sur mobile */
    }
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: var(--white);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--neutral-light);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

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

.pricing-card.featured {
    border-color: var(--primary-blue);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(41, 128, 185, 0.15);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.period {
    font-size: 1.2rem;
    color: var(--neutral-medium);
}

.price-desc {
    color: var(--neutral-medium);
    margin-bottom: 1.5rem;
}

.savings {
    background: rgba(230, 126, 34, 0.1);
    color: var(--accent-orange);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.features-list {
    text-align: left;
    margin-bottom: 2rem;
}

.feature-item {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--neutral-dark);
}

.pricing-cta {
    display: block;
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(41, 128, 185, 0.3);
}

.pricing-cta.featured-cta {
    background: var(--gradient-primary);
    box-shadow: 0 8px 25px rgba(41, 128, 185, 0.3);
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(22, 160, 133, 0.1);
    border-radius: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-icon {
    font-size: 2rem;
}

.guarantee-text {
    color: var(--neutral-dark);
    line-height: 1.4;
}

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

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

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

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

.cta-section .cta-button.primary {
    background: white;
    color: var(--primary-blue);
}

.cta-section .cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.video-modal video {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.video-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
}

/* Hero Video */
.hero-video {
    width: 100%;
    height: auto;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes borderRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 968px) {

    .hero-content,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text {
        text-align: center;
    }

    .tools-categories,
    .pricing-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }

    .nav-links {
        display: none;
    }


    .dropdown-menu {
        left: auto;
        right: 0;
        min-width: 200px;
    }

    .container {
        padding: 0 15px;
    }

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

    .hero-ctas {
        justify-content: center;
    }

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

    .pricing-guarantee {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }


    .header-actions {
        gap: 0.5rem;
    }

    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

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

    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* Section En Savoir Plus */
.en-savoir-plus {
    padding: 5rem 0;
    background-color: var(--background-light);
}

.en-savoir-plus .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.en-savoir-plus h1 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.en-savoir-plus h2 {
    font-size: 2.2rem;
    color: var(--neutral-dark);
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
}

.en-savoir-plus p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--neutral-medium);
    margin-bottom: 1.5rem;
}

.en-savoir-plus ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.en-savoir-plus li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--neutral-medium);
}

.en-savoir-plus li strong {
    color: var(--neutral-dark);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .en-savoir-plus h2 {
        font-size: 1.8rem;
    }

    .en-savoir-plus p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .en-savoir-plus {
        padding: 3rem 0;
    }

    .en-savoir-plus h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

/* Resellers Section */
.resellers-section {
    background-color: var(--background-light);
    padding: 5rem 0;
}

.resellers-container {
    margin-top: 3rem;
}

.continent-section {
    margin-bottom: 3rem;
}

.continent-title {
    font-size: 1.8rem;
    color: var(--neutral-dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.continent-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    height: 70%;
    width: 6px;
    background-color: var(--primary-blue);
    border-radius: 3px;
}

.resellers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.reseller-card {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border-radius: 12px;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.reseller-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.reseller-logo {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-light);
    margin-right: 1rem;
}

.reseller-logo img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.reseller-info {
    flex: 1;
}

.reseller-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--neutral-dark);
    margin: 0 0 0.3rem;
}

.reseller-country {
    font-size: 0.95rem;
    color: var(--neutral-medium);
    display: flex;
    align-items: center;
}

.reseller-country::before {
    content: "🌍";
    margin-right: 0.5rem;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .resellers-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

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

    .reseller-logo {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

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