/* ===== CSS MODERNE POUR LA PAGE D'ACCUEIL ===== */
/* Design responsive avec animations et support thème clair/sombre */

/* Réinitialisation pour la page d'accueil */
body {
    margin: 0;
    padding: 0;
}

.site-content {
    padding: 0;
}

/* Réduction des marges pour la page d'accueil */
.site-content .container {
    max-width: 80%;
    margin: 0 auto;
    padding: 0 10px;
}

/* ===== SECTION HERO AVEC VAGUE ===== */
.home-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 0;
    padding: 0;
}

:root[data-theme="dark"] .home-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #000000 100%);
}

.home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.05) 0%, transparent 70%);
    z-index: 1;
}

:root[data-theme="dark"] .home-hero::before {
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    fill: #dee2e6;
    opacity: 0.8;
    z-index: 2;
}

:root[data-theme="dark"] .hero-wave {
    fill: #495057;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0;
    padding: clamp(40px, 4vh, 50px) 0 100px 0 !important;
}

.hero-text {
    max-width: 600px;
}

.hero-tagline {
    display: inline-block;
    background: linear-gradient(135deg, #495057 0%, #6c757d 50%, #343a40 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 25px;
    box-shadow: 0 8px 32px rgba(73, 80, 87, 0.4);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

:root[data-theme="dark"] .hero-tagline {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    color: #495057;
    box-shadow: 0 8px 32px rgba(248, 249, 250, 0.3);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-title span {
    background: linear-gradient(135deg, #495057 0%, #6c757d 50%, #343a40 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

:root[data-theme="dark"] .hero-title span {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-actions {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.action-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.action-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;
}

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

.primary-button {
    background: linear-gradient(135deg, #495057 0%, #6c757d 50%, #343a40 100%);
    color: white;
    box-shadow: 0 8px 32px rgba(73, 80, 87, 0.4);
}

:root[data-theme="dark"] .primary-button {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    color: #495057;
    box-shadow: 0 8px 32px rgba(248, 249, 250, 0.3);
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(73, 80, 87, 0.6);
    color: white;
}

:root[data-theme="dark"] .primary-button:hover {
    box-shadow: 0 12px 48px rgba(248, 249, 250, 0.5);
    color: #495057;
}

.secondary-button {
    background: var(--card-bg);
    color: var(--text-color);
    border: 2px solid #6c757d;
    box-shadow: var(--card-shadow);
}

:root[data-theme="dark"] .secondary-button {
    border: 2px solid #e9ecef;
}

.secondary-button:hover {
    background: linear-gradient(135deg, #495057 0%, #6c757d 50%, #343a40 100%);
    color: white;
    transform: translateY(-3px);
}

:root[data-theme="dark"] .secondary-button:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    color: #495057;
}

/* ===== HERO IMAGE ===== */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease-out 0.4s both;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    z-index: 2;
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

.blob-shape {
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #495057 0%, #6c757d 50%, #343a40 100%);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

:root[data-theme="dark"] .blob-shape {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
}

/* ===== SECTIONS COMMUNES ===== */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #495057 0%, #6c757d 50%, #343a40 100%);
    border-radius: 2px;
}

:root[data-theme="dark"] .section-title::after {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* ===== SECTION FONCTIONNALITÉS ===== */
.features {
    padding: 70px 0;
    background: var(--light-color);
    margin-top: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #495057, #6c757d);
    opacity: 0.05;
    transition: width 0.3s ease, opacity 0.3s ease;
}

:root[data-theme="dark"] .feature-card::before {
    background: linear-gradient(180deg, #f8f9fa, #e9ecef);
}

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

.feature-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #495057, #6c757d);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    box-shadow: 0 8px 32px rgba(73, 80, 87, 0.3);
    transition: transform 0.3s ease;
}

:root[data-theme="dark"] .feature-icon {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #495057;
    box-shadow: 0 8px 32px rgba(248, 249, 250, 0.3);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

.feature-description {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

/* ===== SECTION POURQUOI VOTRE AVIS COMPTE ===== */
.why-feedback {
    padding: 80px 0;
    background: var(--card-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.impact-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.stats-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.central-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.impact-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: var(--card-shadow);
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.impact-card:hover {
    transform: translateY(-8px);
    border-color: #6c757d;
    box-shadow: 0 8px 32px rgba(73, 80, 87, 0.3);
}

:root[data-theme="dark"] .impact-card:hover {
    border-color: #e9ecef;
    box-shadow: 0 8px 32px rgba(248, 249, 250, 0.3);
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #495057, #6c757d);
}

:root[data-theme="dark"] .impact-card::before {
    background: linear-gradient(90deg, #f8f9fa, #e9ecef);
}

.impact-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #495057;
    margin-bottom: 12px;
    line-height: 1;
}

:root[data-theme="dark"] .impact-number {
    color: #e9ecef;
}

.impact-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.impact-content p {
    color: var(--text-muted);
    line-height: 1.4;
    font-size: 0.85rem;
}

.impact-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #495057;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    opacity: 0.8;
}

:root[data-theme="dark"] .impact-icon {
    background: #e9ecef;
    color: #495057;
}

.central-image .image-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
    width: 400px;
    height: 400px;
}

.central-image .image-container:hover {
    transform: scale(1.02);
}

.central-image .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.central-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(73, 80, 87, 0.8), rgba(108, 117, 125, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

:root[data-theme="dark"] .central-image .image-overlay {
    background: linear-gradient(45deg, rgba(248, 249, 250, 0.8), rgba(233, 236, 239, 0.8));
}

.central-image .image-container:hover .image-overlay {
    opacity: 1;
}

.central-image .overlay-content {
    text-align: center;
    color: white;
}

.central-image .overlay-content i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.central-image .overlay-content span {
    font-size: 1.3rem;
    font-weight: 600;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.impact-showcase {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.impact-stats {
    padding: 30px;
    background: var(--light-color);
    border-radius: var(--border-radius);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

.impact-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 20px 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: var(--card-shadow);
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.impact-card:hover {
    transform: translateY(-8px);
    border-color: #6c757d;
    box-shadow: 0 8px 32px rgba(73, 80, 87, 0.3);
}

:root[data-theme="dark"] .impact-card:hover {
    border-color: #e9ecef;
    box-shadow: 0 8px 32px rgba(248, 249, 250, 0.3);
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #495057, #6c757d);
}

:root[data-theme="dark"] .impact-card::before {
    background: linear-gradient(90deg, #f8f9fa, #e9ecef);
}

.impact-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #495057;
    margin-bottom: 8px;
    line-height: 1;
}

:root[data-theme="dark"] .impact-number {
    color: #e9ecef;
}

.impact-content h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.impact-content p {
    color: var(--text-muted);
    line-height: 1.3;
    font-size: 0.75rem;
}

.impact-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #495057;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    opacity: 0.8;
}

:root[data-theme="dark"] .impact-icon {
    background: #e9ecef;
    color: #495057;
}

.impact-image {
    position: relative;
}

.impact-image .image-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
}

.impact-image .image-container:hover {
    transform: scale(1.03);
}

.impact-image .image-container img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.impact-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(73, 80, 87, 0.8), rgba(108, 117, 125, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

:root[data-theme="dark"] .impact-image .image-overlay {
    background: linear-gradient(45deg, rgba(248, 249, 250, 0.8), rgba(233, 236, 239, 0.8));
}

.impact-image .image-container:hover .image-overlay {
    opacity: 1;
}

.impact-image .overlay-content {
    text-align: center;
    color: white;
}

.impact-image .overlay-content i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.impact-image .overlay-content span {
    font-size: 1.3rem;
    font-weight: 600;
}

/* ===== SECTION TÉMOIGNAGES ===== */
.testimonials {
    padding: 100px 0;
    background: var(--light-color);
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 6rem;
    color: #495057;
    font-family: serif;
    opacity: 0.3;
}

:root[data-theme="dark"] .testimonial-card::before {
    color: #e9ecef;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #495057, #6c757d);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
}

:root[data-theme="dark"] .author-image {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #495057;
}

.author-details h4 {
    color: var(--text-color);
    margin: 0;
    font-weight: 600;
}

.author-details p {
    color: #495057;
    margin: 5px 0 0;
    font-size: 0.9rem;
}

:root[data-theme="dark"] .author-details p {
    color: #e9ecef;
}

/* ===== SECTION CTA ===== */
.cta {
    background: linear-gradient(135deg, #495057 0%, #6c757d 50%, #343a40 100%);
    color: white;
    text-align: center;
    padding: 80px 40px;
    margin: 60px 0;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

:root[data-theme="dark"] .cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #000000 100%);
    color: white;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 10s ease-in-out infinite;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.cta-button {
    background: white;
    color: #495057;
    padding: 18px 40px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

:root[data-theme="dark"] .cta-button {
    background: #f8f9fa;
    color: #1a1a1a;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: #495057;
}

:root[data-theme="dark"] .cta-button:hover {
    box-shadow: 0 15px 40px rgba(248, 249, 250, 0.3);
    color: #1a1a1a;
}

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

@keyframes float {

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

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

/* Classes d'animation pour l'Intersection Observer */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.animate,
.fade-in-left.animate,
.fade-in-right.animate {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.stagger-animation:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger-animation:nth-child(2) {
    transition-delay: 0.2s;
}

.stagger-animation:nth-child(3) {
    transition-delay: 0.3s;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {

    .hero-content,
    .benefit-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-image,
    .benefit-image {
        order: -1;
    }

    .benefit-list .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 991px) {

    /* Layout impact responsive tablette */
    .impact-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-column {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .central-image .image-container {
        width: 350px;
        height: 250px;
    }
}

/* Tablette et écrans moyens */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .home-hero {
        min-height: 70vh;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .action-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .features,
    .why-feedback,
    .testimonials {
        padding: 60px 0;
    }

    .features-grid,
    .testimonial-container {
        grid-template-columns: 1fr;
    }

    .benefit-item:hover {
        transform: none;
    }

    /* Layout impact responsive mobile */
    .stats-column {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .central-image .image-container {
        width: 300px;
        height: 200px;
    }

    .impact-card {
        min-height: 120px;
        padding: 20px 15px;
    }

    .impact-number {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .impact-content h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .impact-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {

    .hero-content,
    .features .container,
    .why-feedback .container,
    .testimonials .container,
    .cta .container {
        padding: 0 15px;
    }

    .cta {
        margin: 40px 15px;
        padding: 60px 30px;
    }

    /* Layout impact très petit écran */
    .impact-layout {
        gap: 20px;
    }

    .central-image .image-container {
        width: 250px;
        height: 180px;
    }

    .impact-card {
        min-height: 100px;
        padding: 15px 10px;
    }

    .impact-number {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }

    .impact-content h3 {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }

    .impact-content p {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .impact-icon {
        width: 30px;
        height: 30px;
        top: 10px;
        right: 10px;
        font-size: 0.8rem;
    }
}