:root {
    --primary-color: #154b8e;
    --primary-dark: #0f3a6e;
    --secondary-color: #bc1823;
    --secondary-soft: #e7adb1;
    --accent-light: #d9e2ed;
    --text-main: #030b14;
    --text-light: #455a64;
    --white: #ffffff;
    --success: #66bb6a;
    --link-blue: #154b8e;
    --divider-color: #d9e2ed;
}

* {
    box-sizing: border-box;
}

html,
body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-main);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #FAFAFA;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    color: var(--text-main);
    font-weight: 700;
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Layout Utilities */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--accent-light);
}

.d-flex {
    display: flex;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    background-color: #bf360c;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
    margin-top: 20px;
}

/* Header */
header {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 240px;
    height: auto;
    transition: width 0.3s ease;
}

.header-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.header-nav a {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.mobile-cta {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.hide-mobile {
    display: flex;
}

.header-nav a:hover {
    color: var(--primary-color);
}

.header-nav a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.header-nav a:hover::after {
    width: 100%;
}

.phone-btn {
    background: var(--secondary-color);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(183, 28, 28, 0.2);
    transition: all 0.3s ease;
}

.phone-btn:hover {
    background-color: #9b1c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(183, 28, 28, 0.3);
    color: #fff;
}

/* Hero */
.hero {
    position: relative;
    background: linear-gradient(rgba(235, 248, 255, 0.9), rgba(235, 248, 255, 0.9)), url('../stairlift_lifestyle.jpg') no-repeat center center/cover;
    padding: 60px 0 80px;
    color: var(--text-main);
    text-align: center;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}


.hero h1 {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-main);
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 400;
}

.highlight-creative {
    position: relative;
    display: inline-block;
    white-space: nowrap;
    color: var(--primary-dark);
    z-index: 1;
}

.highlight-creative::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: -2%;
    width: 104%;
    height: 12px;
    background: #fcd34d;
    z-index: -1;
    transform: skewX(-20deg) rotate(-2deg);
    border-radius: 3px;
    opacity: 0.9;
}

/* Hero Feature Blocks */
.hero-checks {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    justify-content: center;
    width: 100%;
    margin: 20px 0 30px;
}

.hero-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 15px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 0;
}

.check-content {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}

.check-title {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1rem;
}

.check-subtitle {
    font-size: 0.85rem;
    color: var(--text-light);
}

.check-icon {
    color: var(--success);
    font-weight: bold;
    font-size: 1.4rem;
}

/* Form Wrapper */
.form-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
    color: var(--text-main);
}

.form-title {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
}

/* Statistics (Premium Cards) */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    text-align: center;
}

.stat-item {
    background: #fff;
    padding: 35px 20px;
    border-radius: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    border-color: rgba(21, 75, 142, 0.1);
}

.stat-icon-wrapper {
    width: 70px;
    height: 70px;
    background: #f0f7ff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.stat-icon-wrapper svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
}

.stat-item h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin: 0 0 8px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.stat-item p {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.solution-card {
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.solution-card:hover {
    transform: translateY(-5px);
}

.price-tag {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.4rem;
    margin: 15px 0 5px;
}

/* Product Sections Utility Classes (Restored) */
.product-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-row-reverse {
    direction: rtl;
}

.product-row-reverse>* {
    direction: ltr;
}

.product-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.product-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.product-img:hover img {
    transform: scale(1.03);
}

.product-badge {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.product-info h2 {
    margin-top: 0;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.product-features li {
    padding: 7px 0;
    border-bottom: 1px solid var(--accent-light);
    font-size: 0.95rem;
    color: var(--text-light);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-price-box {
    background: var(--accent-light);
    border-radius: 10px;
    padding: 16px 20px;
    margin: 20px 0;
}

.product-price {
    font-size: 1.4rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.product-price strong {
    font-size: 1.8rem;
    font-weight: 700;
}

.product-price-sub {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-top: 4px;
}

.product-btn {
    margin-top: 10px;
}

/* ===== Aides Detail Section (Premium) ===== */
.aides-detail-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.aide-detail-card {
    flex: 0 1 350px;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.aide-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.aide-logo-wrapper {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fbff;
    margin: -30px -30px 20px -30px;
    padding: 20px;
    border-bottom: 2px solid rgba(21, 75, 142, 0.05);
}

.aide-logo-wrapper img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.aide-detail-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.aide-tag {
    display: inline-block;
    background: #e3f2fd;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 15px;
    align-self: flex-start;
}

.aide-detail-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* ===== Video Section (Premium) ===== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    background: #000;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-wrapper:hover {
    transform: scale(1.02);
}

.video-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.video-wrapper:hover .video-thumb {
    opacity: 0.6;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.video-wrapper:hover .video-play-btn {
    background: #fff;
    width: 80px;
    height: 80px;
}

.video-play-btn svg {
    width: 30px;
    height: 30px;
    fill: var(--primary-color);
    margin-left: 5px;
}

.video-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Aid Pictograms Positioning */
.aides-full-width {
    width: 100%;
    max-width: 100%;
    margin: 40px 0 0;
}

/* Aides Pictos */
.aides-pictos {
    margin-top: 40px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
}

.aides-pictos img {
    height: 150px;
    width: auto;
    max-width: 18%;
    object-fit: contain;
    transition: transform 0.3s;
    background: #ffffff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.aides-pictos img:hover {
    transform: scale(1.1);
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.process-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 60px;
    position: relative;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 250px;
}

.process-icon-circle {
    width: 140px;
    height: 140px;
    border: 2px solid var(--text-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: #fff;
}

.process-icon-circle svg {
    width: 60px;
    height: 60px;
    stroke: var(--text-main);
}

.process-arrow {
    color: var(--secondary-color);
    font-size: 2.5rem;
    padding-top: 50px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    font-style: italic;
}

.testimonial-stars {
    color: #f1c40f;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.testimonial-author {
    margin-top: 15px;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
    font-style: normal;
}

/* FAQ */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 18px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-answer.open {
    max-height: 400px;
    padding: 0 20px 18px;
}

/* Final CTA */
.final-cta {
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

/* Footer */
footer {
    background: #263238;
    color: #cfd8dc;
    padding: 60px 0 20px;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

footer h4 {
    color: #fff;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    margin-bottom: 10px;
    color: #b0bec5;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}

/* ===== Quality & Engagement Section (Premium) ===== */
.quality-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.quality-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.quality-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.quality-icon {
    width: 60px;
    height: 60px;
    background: #f0f7ff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
}

.quality-icon svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
}

.quality-card h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.quality-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Feature Boxes (Process & Protection) */
.feature-box-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 60px;
}

.feature-box {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border-left: 5px solid var(--primary-color);
}

.feature-box.alt {
    border-left-color: var(--success);
}

.feature-box h3 {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.4;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: -2px;
    width: 24px;
    height: 24px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
}

.feature-box.alt .check-list li::before {
    background: #e3f2fd;
    color: var(--primary-color);
}

@media (max-width: 992px) {
    header {
        padding: 5px 0;
    }

    .logo img {
        max-width: 210px;
    }

    .hide-mobile {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-nav {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px;
        padding: 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1050;
    }

    body.mobile-menu-open .header-nav {
        right: 0;
    }

    body.mobile-menu-open {
        overflow: hidden;
    }

    /* Backdrop opacity layer when menu open */
    body.mobile-menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1040;
    }

    .header-nav a {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--primary-dark);
    }

    .header-nav a.mobile-cta {
        display: block;
        width: 100%;
        text-align: center;
        background: var(--secondary-color);
        color: #fff;
        padding: 15px;
        border-radius: 12px;
        margin-top: 10px;
    }

    /* Animation hamburger en X */
    body.mobile-menu-open .mobile-menu-toggle span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    body.mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    body.mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .feature-box-container,
    .why-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ===== Why Choose Us Section (Premium) ===== */
.why-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.why-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.benefit-item {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.01);
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: #e3f2fd;
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 22px;
    height: 22px;
}

.benefit-item h4 {
    margin: 0;
    font-size: 1.05rem;
    color: var(--primary-dark);
}

.benefit-item p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.4;
}

.why-highlight-card {
    background: var(--primary-color);
    color: #fff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(21, 75, 142, 0.2);
    position: relative;
    overflow: hidden;
}

.why-highlight-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.why-highlight-card h3 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.why-highlight-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-size: 1rem;
}

.why-highlight-card .btn {
    background-color: #fff;
    color: var(--primary-color) !important;
}

.why-highlight-card .btn:hover {
    background-color: #f8fbff;
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .why-benefits {
        grid-template-columns: 1fr;
    }
}

/* ===== FAQ Section (Premium) ===== */
.faq-accordion-item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 22px 25px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    font-family: inherit;
    position: relative;
    border-left: 4px solid transparent;
}

.faq-question:hover {
    background: #f8fbff;
    color: var(--primary-color);
}

.faq-question[aria-expanded="true"] {
    background: #f0f7ff;
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

.faq-icon {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--primary-color);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
    background: var(--primary-color);
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 25px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-answer.open {
    max-height: 500px;
    padding: 10px 25px 25px 29px;
    /* Extra padding left for the 4px border */
}

.faq-answer p {
    margin: 0;
}

.faq-answer ul {
    margin-top: 12px !important;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-checks {
        flex-wrap: wrap;
        gap: 10px;
    }

    .hero-check-item {
        flex: 1 1 45%;
        padding: 8px 12px;
    }

    .check-title {
        font-size: 0.9rem;
    }

    .form-wrapper {
        padding: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }

    .footer-grid,
    .process-grid {
        grid-template-columns: 1fr !important;
        flex-direction: column;
        align-items: center;
    }

    .process-arrow {
        display: none;
    }

    .aides-pictos {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    .aides-pictos img {
        max-width: 45%;
        height: auto;
    }

    /* Quality Grid Responsive */
    .quality-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Responsive Products Corrective */
    .product-row {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .product-row-reverse {
        direction: ltr;
    }

    .product-img img {
        height: 200px !important;
        /* Force reduction on mobile */
    }

    .product-info {
        text-align: center;
    }

    .product-features li {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero-check-item {
        flex: 1 1 100%;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .quality-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Articles Section */
.articles-section {
    padding: 80px 0;
    background-color: #fff;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.article-card {
    display: block;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border-left: 5px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.article-card:hover {
    transform: translateY(-5px);
    background: #fff;
    border-left-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.article-card h4 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    color: var(--primary-dark);
    line-height: 1.4;
}

.article-date {
    font-size: 0.85rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
}