/* ═══════════════════════════════════════════════════════
   accueil.css — AER Services
   Entièrement responsive : Mobile / Tablette / Desktop
   ═══════════════════════════════════════════════════════ */

:root {
    --primary:    #1a365d;
    --secondary:  #2b6cb0;
    --accent:     #f6ad55;
    --light:      #f8fafc;
    --success:    #2f855a;
    --aer-blue:   #1a365d;
    --aer-orange: #f6ad55;
    --aer-text:   #4a5568;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #333; line-height: 1.6; overflow-x: hidden; min-width: 320px; }
img, video { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ════════════════════════════════
   NAVBAR
════════════════════════════════ */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.logo-img { height: 60px; width: auto; }

.nav-right-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex: 1;
}

/* ── Barre infos contact (desktop) ── */
.top-info-row {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
    align-items: center;
}

.top-info-row a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}
.top-info-row a:hover { color: var(--secondary); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--secondary); }

.nav-cta {
    background: var(--accent);
    color: white !important;
    padding: 8px 18px;
    border-radius: 6px;
}

.login-link {
    border: 1.5px solid #2563eb;
    padding: 7px 18px;
    border-radius: 8px;
    color: #2563eb !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 26px; height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Lang switcher */
.lang-switcher { display: flex; gap: 6px; align-items: center; }
.lang-btn {
    background: none;
    border: 1.5px solid rgba(0,0,0,0.15);
    color: #334155;
    padding: 4px 8px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
    transition: all 0.2s;
}
.lang-btn:hover  { border-color: var(--accent); color: var(--accent); }
.lang-btn.active { background: var(--accent); border-color: var(--accent); color: white; }


/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.hero-layout { display: flex; align-items: center; gap: 60px; }
.hero-content { flex: 1; }

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(26,54,93,0.1);
    color: var(--aer-blue);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

h1 {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    line-height: 1.15;
    color: var(--aer-blue);
    margin-bottom: 25px;
}

#typing { color: var(--aer-orange); }

.hero-subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.2rem);
    color: var(--aer-text);
    max-width: 550px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-main {
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
    display: inline-block;
    text-align: center;
}
.btn-primary { background: var(--aer-blue); color: white; }
.btn-ghost   { border: 2px solid var(--aer-blue); color: var(--aer-blue); background: transparent; }
.btn-main:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(26,54,93,0.15); }

.hero-visual { flex: 1; display: flex; justify-content: center; }

.visual-card {
    background: white;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 300px;
}

.card-icon { font-size: 2rem; margin-bottom: 10px; display: block; }

.fake-chart {
    height: 100px;
    background: linear-gradient(90deg, #e2e8f0 0%, #f6ad55 100%);
    clip-path: polygon(0 100%, 20% 70%, 40% 80%, 60% 40%, 80% 50%, 100% 0, 100% 100%);
    margin-top: 20px;
    border-radius: 8px;
}


/* ════════════════════════════════
   SECTIONS GÉNÉRALES
════════════════════════════════ */
section { padding: 80px 0; }

.subtitle {
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: block;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 40px;
    line-height: 1.2;
}


/* ════════════════════════════════
   COMMENT ÇA MARCHE
════════════════════════════════ */
.how-it-works { background: var(--light); text-align: center; }

.steps-flex {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.step-item { flex: 1; min-width: 200px; }

.step-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.icon-bg {
    width: 90px; height: 90px;
    background: #fff;
    border-radius: 24px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.step-number-circle {
    position: absolute; top: -10px; right: -10px;
    background: var(--accent); color: white;
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    border: 3px solid var(--light);
    font-size: 0.72rem;
}


/* ════════════════════════════════
   SECTION OFFRES
════════════════════════════════ */
.offers-section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.offer-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}
.offer-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }

.offer-card.featured {
    background: var(--primary);
    color: white;
    border: none;
    box-shadow: 0 12px 40px rgba(26,54,93,0.2);
}

.offer-tag {
    display: inline-block;
    background: var(--accent); color: white;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.72rem; font-weight: 800;
    margin-bottom: 12px;
}

.offer-icon { font-size: 2.5rem; margin-bottom: 12px; display: block; }

.card-header {
    padding-bottom: 18px;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 18px;
}
.offer-card.featured .card-header { border-bottom-color: rgba(255,255,255,0.15); }

.card-header h3 { font-size: 1.3rem; color: var(--primary); font-weight: 800; margin-bottom: 4px; }
.offer-card.featured .card-header h3 { color: white; }

.target { font-weight: 700; color: var(--secondary); text-transform: uppercase; font-size: 0.78rem; }
.offer-card.featured .target { color: #93c5fd; }

.rate-badge {
    display: inline-flex;
    flex-direction: column;
    background: rgba(246,173,85,0.12);
    border: 1.5px solid rgba(246,173,85,0.4);
    border-radius: 12px;
    padding: 10px 14px;
    margin-top: 12px;
    gap: 2px;
}
.rate-badge span:first-child { font-size: 0.7rem; font-weight: 600; color: #94a3b8; text-transform: uppercase; }
.rate-badge .rate-value { font-size: 1.5rem; font-weight: 800; color: var(--accent); }
.offer-card.featured .rate-badge { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }

.card-body { flex-grow: 1; display: flex; flex-direction: column; gap: 16px; }
.card-desc { font-size: 0.9rem; color: #64748b; line-height: 1.6; }
.offer-card.featured .card-desc { color: #cbd5e1; }

.alloc-section { background: #f8fafc; border-radius: 14px; padding: 14px 16px; }
.offer-card.featured .alloc-section { background: rgba(255,255,255,0.07); }
.alloc-title { font-size: 0.75rem; font-weight: 700; color: #475569; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.offer-card.featured .alloc-title { color: #93c5fd; }
.alloc-bar-row { display: flex; flex-direction: column; gap: 7px; }
.alloc-item { display: grid; grid-template-columns: 80px 1fr 34px; align-items: center; gap: 8px; font-size: 0.8rem; color: #475569; font-weight: 600; }
.offer-card.featured .alloc-item { color: #cbd5e1; }
.bar-track { background: rgba(0,0,0,0.06); border-radius: 50px; height: 7px; overflow: hidden; }
.offer-card.featured .bar-track { background: rgba(255,255,255,0.1); }
.bar-fill { height: 100%; border-radius: 50px; transition: width 0.8s ease; }
.bar-actions   { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.bar-immo      { background: linear-gradient(90deg, #10b981, #34d399); }
.bar-oblig     { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.bar-liquidite { background: linear-gradient(90deg, #94a3b8, #cbd5e1); }
.bar-garanti   { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }
.pct { font-size: 0.78rem; font-weight: 800; color: var(--primary); text-align: right; }
.offer-card.featured .pct { color: white; }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.stat-box { background: #f1f5f9; border-radius: 12px; padding: 10px 12px; }
.offer-card.featured .stat-box { background: rgba(255,255,255,0.08); }
.stat-val { font-size: 1rem; font-weight: 800; color: var(--primary); display: block; }
.offer-card.featured .stat-val { color: white; }
.stat-lbl { font-size: 0.7rem; color: #64748b; display: block; margin-top: 2px; line-height: 1.3; }
.offer-card.featured .stat-lbl { color: #94a3b8; }

.fiscal-box {
    display: flex; align-items: flex-start; gap: 10px;
    background: rgba(246,173,85,0.08);
    border: 1px solid rgba(246,173,85,0.25);
    border-radius: 12px; padding: 12px 14px;
}
.offer-card.featured .fiscal-box { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.15); }
.fiscal-icon { font-size: 1.1rem; flex-shrink: 0; }
.fiscal-text { font-size: 0.8rem; color: #64748b; line-height: 1.5; }
.offer-card.featured .fiscal-text { color: #cbd5e1; }
.fiscal-text strong { color: var(--primary); }
.offer-card.featured .fiscal-text strong { color: white; }

.points-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.points-list li { font-size: 0.84rem; color: #475569; padding-left: 18px; position: relative; line-height: 1.5; }
.points-list li::before { content: "✓"; position: absolute; left: 0; color: #10b981; font-weight: 800; }
.offer-card.featured .points-list li { color: #cbd5e1; }
.offer-card.featured .points-list li::before { color: #34d399; }

.btn-offer {
    display: block; text-align: center;
    padding: 14px; border-radius: 12px;
    text-decoration: none; font-weight: 700;
    background: #f1f5f9; color: var(--primary);
    margin-top: 20px; transition: 0.2s;
    font-size: 0.9rem;
}
.btn-offer:hover { background: #e2e8f0; }
.featured-btn { background: var(--secondary); color: white !important; }
.featured-btn:hover { background: #1d4ed8 !important; }


/* ════════════════════════════════
   SECTION FRAIS
════════════════════════════════ */
.fees-highlight {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}
.glass-card {
    background: white;
    border-radius: 28px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(26,54,93,0.08);
}
.glass-card h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); margin-bottom: 40px; color: var(--primary); }
.fees-display { display: flex; justify-content: center; align-items: center; gap: 50px; flex-wrap: wrap; }
.fee-block { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.fee-block .amount { font-size: clamp(2.5rem, 6vw, 3.5rem); font-weight: 900; color: var(--primary); letter-spacing: -2px; }
.fee-block .label { font-size: 0.85rem; font-weight: 600; color: #64748b; text-transform: uppercase; letter-spacing: 1px; }
.fee-divider { width: 2px; height: 70px; background: #e2e8f0; border-radius: 2px; }


/* ════════════════════════════════
   FEATURES
════════════════════════════════ */
.features-section { background: #f8fafc; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.feature-item {
    background: white; padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.3s;
}
.feature-item:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(26,54,93,0.1); }
.feature-icon { font-size: 2.2rem; margin-bottom: 16px; }
.feature-item h3 { font-size: 1.1rem; color: var(--primary); margin-bottom: 10px; font-weight: 700; }
.feature-item p { color: #64748b; font-size: 0.9rem; line-height: 1.6; }


/* ════════════════════════════════
   FAQ
════════════════════════════════ */
.faq-section { background: #fff; }
.faq-grid { max-width: 800px; margin: 40px auto 0; }
.faq-item { border-bottom: 1px solid #e2e8f0; }
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 0; cursor: pointer;
}
.faq-question h4 { font-size: 1rem; color: var(--primary); font-weight: 600; padding-right: 20px; line-height: 1.4; }
.faq-icon { font-size: 1.4rem; color: var(--secondary); flex-shrink: 0; transition: transform 0.3s; }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease-out;
    color: #718096; line-height: 1.6; font-size: 0.92rem;
}
.faq-item.active .faq-answer { max-height: 300px; padding-bottom: 20px; }
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--accent); }


/* ════════════════════════════════
   FEEDBACK & AVIS
════════════════════════════════ */
.feedback-area { padding: 80px 0; background: var(--light); }
.feedback-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 50px;
    align-items: start;
}

.vertical-scroll-window {
    height: 500px;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}
.vertical-rail {
    display: flex; flex-direction: column; gap: 18px;
    animation: scrollVertical 30s linear infinite;
}
.vertical-rail:hover { animation-play-state: paused; }
@keyframes scrollVertical {
    0%   { transform: translateY(0); }
    100% { transform: translateY(calc(-100% + 500px)); }
}

.review-card {
    background: white; padding: 22px;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    border-left: 5px solid var(--accent);
}
.review-card .stars { font-size: 1rem; margin-bottom: 8px; }
.review-card p { font-size: 0.88rem; color: #475569; line-height: 1.55; margin-bottom: 8px; }
.review-card .user { font-size: 0.78rem; color: #94a3b8; font-weight: 600; }

.form-container {
    background: white; padding: 36px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(26,54,93,0.08);
    border: 1px solid #e2e8f0;
}
.form-container h2 { color: var(--primary); font-size: 1.5rem; margin-bottom: 6px; }
.form-subtitle { color: #64748b; font-size: 0.88rem; margin-bottom: 28px; }

.input-group { margin-bottom: 18px; }
.input-group label {
    display: block; font-weight: 700; font-size: 0.82rem;
    color: var(--primary); margin-bottom: 7px;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.full-input {
    width: 100%; padding: 13px 16px;
    border: 2px solid #f1f5f9; border-radius: 12px;
    background: #f8fafc; font-family: inherit; font-size: 0.95rem;
    transition: all 0.3s;
}
.full-input:focus { outline: none; border-color: var(--secondary); background: white; box-shadow: 0 0 0 4px rgba(43,108,176,0.1); }

.rating-section { margin-bottom: 22px; }
.rating-section label { display: block; font-weight: 700; font-size: 0.82rem; color: var(--primary); margin-bottom: 8px; }
.stars-options { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 4px; }
.stars-options input { display: none; }
.stars-options label { font-size: 1.8rem; color: #cbd5e0; cursor: pointer; transition: color 0.2s; }
.stars-options label:hover,
.stars-options label:hover ~ label,
.stars-options input:checked ~ label { color: var(--accent); }

.btn-submit {
    width: 100%; padding: 15px;
    background: var(--primary); color: white;
    border: none; border-radius: 12px;
    font-weight: 700; font-size: 0.95rem; cursor: pointer;
    display: flex; justify-content: center; align-items: center; gap: 10px;
    transition: all 0.3s;
}
.btn-submit:hover { background: var(--secondary); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(26,54,93,0.2); }
.arrow-icon { transition: transform 0.3s; }
.btn-submit:hover .arrow-icon { transform: translateX(5px); }


/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.main-footer { background: #fff; padding: 70px 0 40px; border-top: 1px solid #e2e8f0; }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid #f1f5f9; }
.footer-logo-img { height: 80px; width: auto; margin-bottom: 10px; }
.footer-brand p { color: #64748b; margin-top: 12px; font-size: 0.9rem; max-width: 300px; }
.footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
.link-group h4 { font-size: 0.95rem; margin-bottom: 16px; font-weight: 800; color: var(--primary); }
.link-group a { display: block; text-decoration: none; color: #64748b; margin-bottom: 8px; font-size: 0.88rem; transition: color 0.2s; }
.link-group a:hover { color: var(--secondary); }
.footer-bottom { padding-top: 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 0.82rem; color: #64748b; }
.partners { display: flex; align-items: center; gap: 12px; font-size: 0.82rem; color: #64748b; flex-wrap: wrap; }
.partner-name { font-weight: 700; color: var(--primary); opacity: 0.6; }


/* ════════════════════════════════
   REVEAL ANIMATION
════════════════════════════════ */
.reveal { opacity: 1; transform: translateY(0); transition: 1s all ease; }
.reveal.hidden { opacity: 0; transform: translateY(30px); }
.reveal.active { opacity: 1 !important; transform: translateY(0) !important; }


/* ════════════════════════════════════════════
   RESPONSIVE — TABLETTE  (max 1023px)
════════════════════════════════════════════ */
@media (max-width: 1023px) {

    /* Hamburger visible */
    .hamburger { display: flex; }

    .nav-right-stack {
        width: 100%;
        order: 3;
        align-items: stretch;
    }

    /* ── Barre infos : bandeau compact sous le logo ── */
    .top-info-row {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 16px;
        width: 100%;
        background: #f1f5f9;
        border-top: 1px solid #e2e8f0;
        border-bottom: 1px solid #e2e8f0;
        padding: 8px 16px;
        font-size: 0.8rem;
        color: #475569;
        order: 1;
    }

    .top-info-row span {
        display: flex;
        align-items: center;
        gap: 4px;
        white-space: nowrap;
    }

    /* Menu déroulant mobile */
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: white;
        padding: 16px 0 20px;
        border-top: 1px solid #e2e8f0;
        gap: 4px;
        order: 2;
    }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; margin: 0; }
    .nav-links li a { display: block; padding: 12px 20px; border-radius: 10px; }
    .nav-links li a:hover { background: #f1f5f9; }

    .lang-switcher { padding: 8px 20px; flex-wrap: wrap; }

    /* Offres */
    .offers-grid { grid-template-columns: 1fr 1fr; }
    .offer-card.featured { order: -1; }

    /* Features */
    .features-grid { grid-template-columns: repeat(2, 1fr); }

    /* Feedback */
    .feedback-grid { grid-template-columns: 1fr; }
    .form-container { order: -1; }
}


/* ════════════════════════════════════════════
   RESPONSIVE — MOBILE  (max 767px)
════════════════════════════════════════════ */
@media (max-width: 767px) {

    section { padding: 60px 0; }

    /* Barre infos : 1 colonne sur petit mobile */
    .top-info-row {
        flex-direction: column;
        align-items: center;
        gap: 5px;
        padding: 10px 16px;
        font-size: 0.78rem;
        text-align: center;
    }

    /* Hero */
    .hero-section { padding: 50px 0; text-align: center; }
    .hero-layout { flex-direction: column; gap: 36px; }
    .hero-content { order: 1; }
    .hero-visual  { order: 2; width: 100%; }
    .visual-card  { max-width: 100%; }
    .hero-subtitle { max-width: 100%; }
    .hero-btns { justify-content: center; }
    .btn-main { width: 100%; max-width: 280px; }

    /* Steps */
    .steps-flex { flex-direction: column; gap: 30px; }
    .step-item { max-width: 100%; }

    /* Offres */
    .offers-grid { grid-template-columns: 1fr; }
    .offer-card.featured { order: -1; }

    /* Features */
    .features-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .feature-item { padding: 20px; }

    /* Frais */
    .glass-card { padding: 36px 20px; }
    .fees-display { flex-direction: column; gap: 24px; }
    .fee-divider { width: 60px; height: 2px; }

    /* FAQ */
    .faq-question h4 { font-size: 0.92rem; }

    /* Footer */
    .footer-top { flex-direction: column; }
    .footer-links { flex-direction: column; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .partners { justify-content: center; }
}


/* ════════════════════════════════════════════
   RESPONSIVE — PETIT MOBILE  (max 480px)
════════════════════════════════════════════ */
@media (max-width: 480px) {

    .container { padding: 0 16px; }

    /* Hero */
    h1 { font-size: 1.7rem; }
    .hero-btns { flex-direction: column; align-items: center; }
    .btn-main { max-width: 100%; }

    /* Features : 1 colonne */
    .features-grid { grid-template-columns: 1fr; }

    /* Offres */
    .offer-card { padding: 22px; }
    .alloc-item { grid-template-columns: 70px 1fr 28px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }

    /* Frais */
    .fee-block .amount { font-size: 2.4rem; }

    /* Feedback */
    .form-container { padding: 24px 18px; }
    .vertical-scroll-window { height: 380px; }

    /* Footer */
    .footer-logo-img { height: 60px; }

    /* Barre infos très compact */
    .top-info-row { font-size: 0.73rem; gap: 4px; }
}