/* ===================================
   ASSURANCE MALADIES GRAVES
   Charte Finance - Style CSS
   =================================== */

/* Reset & Variables */
:root {
    /* Couleurs Charte Finance */
    --color-wool: #EDD8E2;        /* Beige rosé très pâle */
    --color-caramel: #D4BFB0;     /* Beige/taupe clair */
    --color-cookies: #C4A89A;     /* Beige/taupe moyen */
    --color-cold-sky: #4A6B7C;    /* Bleu-gris foncé/pétrole */
    --color-frost: #7FA9BE;       /* Bleu-gris moyen/clair */
    
    /* Couleurs complémentaires */
    --color-white: #FFFFFF;
    --color-black: #1a1a1a;
    --color-gray-light: #F5F5F5;
    --color-gray-medium: #E0E0E0;
    --color-gray-dark: #666666;
    
    /* Typographie */
    --font-header: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Breakpoints */
    --breakpoint-mobile: 480px;
    --breakpoint-tablet: 768px;
    --breakpoint-desktop: 1024px;
    --breakpoint-wide: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-black);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typographie */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-header);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: #4A6B7C;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: var(--color-cold-sky);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-frost);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Boutons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: var(--font-header);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #7FA9BE, #4A6B7C);
    color: var(--color-white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #4A6B7C, #7FA9BE);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(127, 169, 190, 0.4);
}

.btn-header {
    background-color: #7FA9BE;
    color: var(--color-white);
    padding: 0.625rem 1.5rem;
    font-size: 0.9rem;
}

.btn-header:hover {
    background-color: #4A6B7C;
}

.btn-block {
    width: 100%;
    display: block;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

/* Header */
.header {
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
}

.logo h1 {
    font-size: 1.25rem;
    color: #4A6B7C;
    margin: 0;
}

.logo img {
    height: 40px;
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-gray-dark);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #7FA9BE;
    border-bottom-color: #4A6B7C;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #E5EEF2 0%, #B8D4E3 100%);
    padding: var(--spacing-xl) 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.hero-text {
    padding-right: var(--spacing-md);
}

.hero-title {
    font-size: 2.75rem;
    color: #4A6B7C;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 1rem;
    color: #4A6B7C;
    font-weight: 500;
}

.feature-icon {
    background-color: #7FA9BE;
    color: var(--color-white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    flex-shrink: 0;
}

/* Formulaire */
.hero-form {
    position: relative;
}

.form-card {
    background-color: var(--color-white);
    border-radius: 20px;
    padding: var(--spacing-lg);
    box-shadow: 0 10px 40px rgba(155, 83, 114, 0.15);
}

.form-title {
    color: #4A6B7C;
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: var(--spacing-xs);
}

.form-subtitle {
    text-align: center;
    color: var(--color-gray-dark);
    margin-bottom: var(--spacing-md);
    font-size: 0.9rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: #4A6B7C;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    padding: 0.875rem 1rem;
    border: 2px solid var(--color-gray-medium);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #7FA9BE;
    box-shadow: 0 0 0 3px rgba(127, 169, 190, 0.15);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: 0;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-gray-dark);
    margin-top: var(--spacing-sm);
    margin-bottom: 0;
}

/* Alerts */
.alert {
    padding: var(--spacing-sm);
    border-radius: 10px;
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Section Communes */
.section-title {
    text-align: center;
    font-size: 2.25rem;
    color: #7FA9BE;
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--color-gray-dark);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Avantages */
.advantages {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.advantage-card {
    background-color: #F5F9FB;
    border-radius: 15px;
    padding: var(--spacing-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #E5F1F5;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(127, 169, 190, 0.25);
    border-color: #7FA9BE;
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    color: #7FA9BE;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-sm);
    background: linear-gradient(135deg, rgba(127, 169, 190, 0.15), rgba(74, 107, 124, 0.1));
    border-radius: 20px;
    transition: all 0.3s ease;
}

.advantage-icon .lucide-icon {
    width: 40px;
    height: 40px;
    stroke-width: 2;
}

.advantage-card:hover .advantage-icon {
    background: linear-gradient(135deg, rgba(127, 169, 190, 0.25), rgba(74, 107, 124, 0.15));
    transform: scale(1.05);
}

.advantage-card h3 {
    color: #7FA9BE;
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.advantage-card p {
    color: var(--color-gray-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Section Réassurance */
.reassurance {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #B8D4E3 0%, #7FA9BE 100%);
}

.reassurance .section-title {
    color: var(--color-white);
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.testimonial-card {
    background-color: var(--color-white);
    border-radius: 15px;
    padding: var(--spacing-md);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
    color: #FFB800;
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.testimonial-text {
    color: var(--color-gray-dark);
    font-style: italic;
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.testimonial-author {
    color: #4A6B7C;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.badge {
    background-color: var(--color-white);
    color: #4A6B7C;
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* CTA Final */
.cta-final {
    padding: var(--spacing-xl) 0;
    background-color: #7FA9BE;
    text-align: center;
}

.cta-title {
    color: var(--color-white);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.cta-subtitle {
    color: #F5F9FB;
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.cta-final .btn-large {
    background-color: #4A6B7C;
    color: var(--color-white);
}

.cta-final .btn-large:hover {
    background-color: var(--color-white);
    color: #4A6B7C;
}
/* ===================================
   OPTION A : ACCORDÉON ALPHABÉTIQUE
   =================================== */

.glossary-section {
    padding: 4rem 0;
    background-color: #FFFFFF;
}

.glossary-section .section-title {
    text-align: center;
    font-size: 2.25rem;
    color: #7FA9BE;
    margin-bottom: 0.5rem;
}

.glossary-section .section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #666666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.glossary-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Groupe par lettre */
.glossary-letter-group {
    margin-bottom: 2rem;
}

.glossary-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7FA9BE, #4A6B7C);
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(127, 169, 190, 0.3);
}

/* Items accordéon */
.glossary-item {
    background-color: #F5F9FB;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    border: 2px solid #E5F1F5;
    overflow: hidden;
    transition: all 0.3s ease;
}

.glossary-item:hover {
    border-color: #7FA9BE;
    box-shadow: 0 4px 15px rgba(127, 169, 190, 0.15);
}

.glossary-item.active {
    border-color: #4A6B7C;
    box-shadow: 0 6px 20px rgba(74, 107, 124, 0.2);
}

.glossary-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #4A6B7C;
    transition: all 0.3s ease;
}

.glossary-question:hover {
    color: #7FA9BE;
}

.glossary-item.active .glossary-question {
    background: linear-gradient(135deg, #7FA9BE 0%, #4A6B7C 100%);
    color: #FFFFFF;
}

.glossary-question span {
    flex: 1;
    line-height: 1.4;
}

.glossary-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    color: #7FA9BE;
    transition: all 0.4s ease;
    background-color: rgba(127, 169, 190, 0.1);
    border-radius: 50%;
    padding: 4px;
}

.glossary-item.active .glossary-icon {
    transform: rotate(180deg);
    color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.2);
}

.glossary-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.3s ease,
                opacity 0.3s ease;
    padding: 0 1.5rem;
    background-color: #FFFFFF;
    opacity: 0;
}

.glossary-item.active .glossary-answer {
    max-height: 500px;
    padding: 1.25rem 1.5rem;
    opacity: 1;
    border-top: 1px solid #E5F1F5;
}

.glossary-answer p {
    color: #555555;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.glossary-answer strong {
    color: #4A6B7C;
    font-weight: 600;
}
/* Footer */
.footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-section h4 {
    color: #7FA9BE;
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
}

.footer-section p {
    color: var(--color-gray-medium);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--color-gray-medium);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #7FA9BE;
}

.footer-bottom {
    border-top: 1px solid var(--color-gray-dark);
    padding-top: var(--spacing-md);
    text-align: center;
}

.footer-bottom p {
    color: var(--color-gray-medium);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: var(--color-gray-dark);
}

/* ===================================
   STYLES VERSION VENDEUR
   =================================== */

/* Badge urgence */
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.urgency-badge i {
    width: 16px;
    height: 16px;
}

/* Titre avec highlight */
.hero-title .highlight {
    color: #7FA9BE;
    position: relative;
    display: inline-block;
}

/* Statistiques de confiance */
.trust-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.trust-stat {
    display: flex;
    flex-direction: column;
}

.trust-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #7FA9BE;
    line-height: 1;
}

.trust-stat-label {
    font-size: 0.9rem;
    color: #4A6B7C;
    font-weight: 600;
}

/* Image du couple */
.hero-couple-image {
    margin: 2rem 0;
}

.hero-couple-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(74, 107, 124, 0.2);
    transition: transform 0.3s ease;
}

.hero-couple-image img:hover {
    transform: scale(1.02);
}

/* Boutons CTA */
.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #7FA9BE, #4A6B7C);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(127, 169, 190, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(127, 169, 190, 0.5);
}

.btn-hero-primary i {
    width: 20px;
    height: 20px;
}

/* Badge promo formulaire */
.form-promo-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #1a1a1a;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    z-index: 10;
}

/* Indicateurs de confiance formulaire */
.form-trust-indicators {
    display: flex;
    justify-content: space-around;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
}

.trust-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.trust-indicator-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-indicator-icon i {
    width: 20px;
    height: 20px;
    color: #28a745;
}

.trust-indicator-text {
    font-size: 0.75rem;
    color: #666;
    text-align: center;
    font-weight: 600;
}

/* ===================================
   SECTION FAQ - Style Moderne
   =================================== */

.faq-section {
    padding: 4rem 0;
    background-color: #F5F9FB;
}

.faq-section .section-title {
    text-align: center;
    font-size: 2.25rem;
    color: #7FA9BE;
    margin-bottom: 0.5rem;
}

.faq-section .section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #666666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(74, 107, 124, 0.1);
    overflow: hidden;
    border: 2px solid #E5F1F5;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #7FA9BE;
    box-shadow: 0 8px 25px rgba(127, 169, 190, 0.2);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: #4A6B7C;
    box-shadow: 0 8px 30px rgba(74, 107, 124, 0.15);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FBFC 100%);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #4A6B7C;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #F5F9FB 0%, #E5EEF2 100%);
    color: #7FA9BE;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #7FA9BE 0%, #4A6B7C 100%);
    color: #FFFFFF;
}

.faq-question span {
    flex: 1;
    line-height: 1.4;
}

.faq-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    color: #7FA9BE;
    transition: all 0.4s ease;
    background-color: rgba(127, 169, 190, 0.1);
    border-radius: 50%;
    padding: 4px;
}

.faq-item:hover .faq-icon {
    background-color: rgba(127, 169, 190, 0.2);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.2);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.4s ease,
                opacity 0.3s ease;
    padding: 0 2rem;
    background-color: #FFFFFF;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 800px;
    padding: 1.5rem 2rem 2rem 2rem;
    opacity: 1;
    border-top: 1px solid #E5F1F5;
}

.faq-answer p {
    color: #555555;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.98rem;
    font-family: 'Inter', sans-serif;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: #4A6B7C;
    font-weight: 600;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablettes */
@media screen and (max-width: 1024px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    /* Header */
    .header-content {
        flex-wrap: wrap;
    }
    
    .nav {
        display: none;
    }
    
    .logo h1 {
        font-size: 1rem;
    }
    
    .btn-header {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Hero */
    .hero {
        padding: var(--spacing-md) 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .hero-text {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-features {
        align-items: center;
    }
    
    /* Form */
    .form-card {
        padding: var(--spacing-md);
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    /* Sections */
    .advantages,
    .reassurance,
    .cta-final {
        padding: var(--spacing-md) 0;
    }
    
    .section-title {
        font-size: 1.625rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 1.875rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: stretch;
    }
    
    .badge {
        text-align: center;
    }
    
    /* Responsive vendeur */
    .urgency-badge {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
    }
    
    .trust-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .trust-stat-number {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-hero-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
        justify-content: center;
    }
    
    .hero-couple-image {
        margin: 1.5rem 0;
    }
    
    .form-promo-badge {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
        right: 10px;
    }
    
    /* Responsive FAQ - Tablette */
    .faq-section {
        padding: 2rem 0;
    }
    
    .faq-section .section-title {
        font-size: 1.625rem;
    }
    
    .faq-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .faq-container {
        gap: 0.75rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 0.95rem;
        gap: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1.25rem 1.5rem 1.5rem 1.5rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .faq-icon {
        width: 24px;
        height: 24px;
        min-width: 24px;
    }
}

/* Mobile */
@media screen and (max-width: 480px) {
    :root {
        --spacing-md: 1rem;
        --spacing-lg: 1.5rem;
        --spacing-xl: 2rem;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    
    .hero-title {
        font-size: 1.625rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .form-card {
        padding: var(--spacing-sm);
    }
    
    .advantage-icon {
        font-size: 2.5rem;
    }
    
    .advantage-icon .lucide-icon {
        width: 32px;
        height: 32px;
    }
    
    /* Responsive FAQ - Mobile */
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem 1.25rem 1.25rem 1.25rem;
    }
    
    .faq-icon {
        width: 22px;
        height: 22px;
        min-width: 22px;
        padding: 3px;
    }
}

/* Print */
@media print {
    .header,
    .nav,
    .btn,
    .hero-form,
    .cta-final {
        display: none;
    }
    
    body {
        font-size: 12pt;
    }
}