/* ════════════════════════════════════════════════════════
   HOMEPAGE — DESIGN MODERNE & ÉPURÉ — MOBILE FIRST
   Utilise les variables globales du projet (base-layout.css)
   ════════════════════════════════════════════════════════ */

/* ── HERO ───────────────────────────────────────────────── */
.hp-hero {
    position: relative;
    min-height: calc(100svh - 60px);
    background: linear-gradient(140deg, #0f0c29 0%, #1e1b4b 30%, #312e81 60%, #1a3a6b 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 3.5rem 0 4rem;
}
.hp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 75% 70% at 75% 45%, rgba(99,102,241,.18) 0%, transparent 55%),
        radial-gradient(circle at 10% 85%, rgba(16,185,129,.14) 0%, transparent 45%),
        radial-gradient(circle at 90% 10%, rgba(96,165,250,.10) 0%, transparent 40%);
    pointer-events: none;
}
.hp-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .hp-hero-inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.hp-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(16,185,129,.12);
    border: 1px solid rgba(16,185,129,.28);
    color: #6ee7b7;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .375rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}
.hp-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: #fff;
    margin-bottom: 1.25rem;
}
.hp-hero-title .accent {
    background: linear-gradient(90deg, #34d399 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hp-hero-desc {
    font-size: clamp(.9375rem, 2vw, 1.0625rem);
    line-height: 1.75;
    color: rgba(255,255,255,.7);
    margin-bottom: 2rem;
    max-width: 500px;
}
.hp-hero-desc strong { color: #34d399; font-weight: 700; }
.hp-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.hp-badge {
    display: inline-flex;
    align-items: center;
    gap: .375rem;
    font-size: .8125rem;
    font-weight: 500;
    color: rgba(255,255,255,.88);
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    padding: .375rem .875rem;
    border-radius: 999px;
    backdrop-filter: blur(6px);
    transition: background .2s;
    -webkit-tap-highlight-color: transparent;
}
.hp-badge:hover { background: rgba(255,255,255,.13); }
.hp-badge i { color: #34d399; font-size: .7rem; }

/* ── SEARCH CARD ─────────────────────────────────────────── */
.hp-search-card {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 1.5rem;
    padding: 1.75rem;
    box-shadow: 0 30px 70px -20px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.06);
}
@media (min-width: 640px) { .hp-search-card { padding: 2.25rem; } }
.hp-search-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: .25rem;
    display: flex;
    align-items: center;
    gap: .625rem;
}
.hp-search-card-title i { color: var(--primary-color); }
.hp-search-card-sub {
    font-size: .875rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}
.hp-search-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: .875rem;
    margin-bottom: 1.125rem;
}
@media (min-width: 480px) {
    .hp-search-grid { grid-template-columns: 1fr 1fr; }
}
.hp-field label {
    display: block;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: .375rem;
}
.hp-field label i {
    color: var(--primary-color);
    margin-right: .25rem;
    font-size: .7rem;
}
.hp-field .form-control,
.hp-field .form-select {
    border: 2px solid var(--border-color);
    border-radius: .75rem;
    padding: .6875rem 1rem;
    font-size: 15px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    min-height: 46px;
    transition: border-color .2s, box-shadow .2s, background .2s;
    width: 100%;
}
.hp-field .form-control:focus,
.hp-field .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99,102,241,.12);
    background: #fff;
    outline: none;
}
.hp-search-btn {
    width: 100%;
    padding: .9rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: var(--gradient-primary);
    border: none;
    border-radius: .875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 52px;
    transition: filter .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 15px rgba(99,102,241,.32);
    -webkit-tap-highlight-color: transparent;
}
.hp-search-btn:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(99,102,241,.42);
}
.hp-search-btn:active { transform: translateY(0); }

/* ── SECTIONS ─────────────────────────────────────────────── */
.hp-section { padding: 5rem 0; }
.hp-section-alt { background: var(--bg-secondary); }
.hp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.hp-section-head {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 3.5rem;
}
.hp-eyebrow {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--primary-color);
    background: var(--primary-light);
    padding: .25rem .875rem;
    border-radius: 999px;
    margin-bottom: .875rem;
}
.hp-section-title {
    font-size: clamp(1.75rem, 4vw, 2.625rem);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -.025em;
    line-height: 1.15;
    margin-bottom: .875rem;
}
.hp-section-sub {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ── HOW IT WORKS ────────────────────────────────────────── */
.hp-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    counter-reset: steps;
    position: relative;
}
@media (min-width: 768px) {
    .hp-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    .hp-steps::before {
        content: '';
        position: absolute;
        top: 2rem;
        left: calc(100% / 6);
        right: calc(100% / 6);
        height: 2px;
        background: repeating-linear-gradient(
            90deg,
            var(--primary-color) 0, var(--primary-color) 8px,
            transparent 8px, transparent 20px
        );
        opacity: .2;
        z-index: 0;
    }
}
.hp-step {
    position: relative;
    z-index: 1;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 1.25rem;
    padding: 2rem 1.75rem;
    text-align: center;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    counter-increment: steps;
}
.hp-step::before {
    content: counter(steps);
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    width: 28px;
    height: 28px;
    background: var(--primary-light);
    color: var(--primary-color);
    font-size: .8125rem;
    font-weight: 700;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hp-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(99,102,241,.35);
}
.hp-step-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 8px 20px rgba(99,102,241,.25);
    transition: transform .3s;
}
.hp-step:hover .hp-step-icon { transform: scale(1.1) rotate(-4deg); }
.hp-step h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: .625rem;
}
.hp-step p {
    font-size: .9375rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* ── GP CARDS ────────────────────────────────────────────── */
.hp-gps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}
.hp-gp-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 1.25rem;
    padding: 1.75rem;
    text-align: center;
    transition: transform .3s, box-shadow .3s;
    position: relative;
    overflow: hidden;
}
.hp-gp-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}
.hp-gp-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.hp-gp-card:hover::after { transform: scaleX(1); }
.hp-gp-avatar {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
    box-shadow: 0 8px 20px rgba(99,102,241,.22);
    overflow: hidden;
    flex-shrink: 0;
}
.hp-gp-avatar img { width: 100%; height: 100%; object-fit: cover; }
.hp-gp-verified {
    position: absolute;
    bottom: 0; right: -2px;
    width: 22px; height: 22px;
    background: var(--accent-color);
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .55rem;
}
.hp-gp-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: .375rem;
}
.hp-gp-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .25rem;
    color: var(--warning-color);
    font-size: .8125rem;
    margin-bottom: 1rem;
}
.hp-gp-stars span { color: var(--text-secondary); }
.hp-gp-btn {
    display: inline-flex;
    align-items: center;
    gap: .375rem;
    padding: .5rem 1.25rem;
    font-size: .875rem;
    font-weight: 600;
    color: var(--primary-color);
    background: var(--primary-light);
    border-radius: 999px;
    text-decoration: none;
    transition: background .2s, color .2s;
    min-height: 38px;
}
.hp-gp-btn:hover { background: var(--primary-color); color: #fff; }
.hp-gp-btn i { font-size: .7rem; }

/* ── GP REVIEW SNIPPET ───────────────────────────────────── */
.hp-review-snippet {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-left: 3px solid var(--primary-color);
    border-radius: .75rem;
    padding: .75rem .875rem;
    margin: .75rem 0;
    text-align: left;
}
[data-theme="dark"] .hp-review-snippet {
    background: rgba(255,255,255,.04);
    border-color: rgba(255,255,255,.07);
    border-left-color: var(--primary-color);
}
.hp-review-text {
    font-size: .8rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0 0 .45rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hp-review-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    flex-wrap: wrap;
}
.hp-review-author {
    font-size: .74rem;
    font-weight: 600;
    color: var(--text-muted);
}
.hp-review-author::before { content: '\2014\00a0'; }
.hp-review-mini-stars {
    display: flex;
    gap: 1px;
    color: #f59e0b;
    font-size: .58rem;
    flex-shrink: 0;
}
.hp-review-verified {
    display: inline-flex;
    align-items: center;
    gap: .2rem;
    font-size: .68rem;
    color: #10b981;
    font-weight: 600;
    margin-left: .3rem;
}

/* ── DESTINATIONS ────────────────────────────────────────── */
.hp-dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 1.25rem;
}
.hp-dest-card {
    background: var(--bg-primary);
    border: 1.5px solid var(--border-color);
    border-radius: 1.25rem;
    padding: 1.5rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .5rem;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    position: relative;
    overflow: hidden;
}
.hp-dest-card--top {
    border-color: rgba(99,102,241,.3);
    background: linear-gradient(145deg, var(--bg-primary) 65%, rgba(99,102,241,.05) 100%);
}
.hp-dest-badge {
    position: absolute;
    top: .75rem;
    right: .75rem;
    background: var(--gradient-primary);
    color: #fff;
    font-size: .6875rem;
    font-weight: 700;
    padding: .2rem .6rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: .2rem;
    letter-spacing: .01em;
    white-space: nowrap;
}
.hp-dest-badge--fire { background: linear-gradient(135deg,#f97316,#ef4444); }
.hp-dest-badge--alt  { background: linear-gradient(135deg,#8b5cf6,#6366f1); }
.hp-dest-country {
    font-size: .75rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: -.25rem;
}
.hp-dest-rating {
    display: flex;
    align-items: center;
    gap: .25rem;
    font-size: .8125rem;
    font-weight: 700;
    color: #f59e0b;
}
.hp-dest-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(99,102,241,.35);
}
.hp-dest-flag { font-size: 2.25rem; line-height: 1; }
.hp-dest-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}
.hp-dest-price {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}
.hp-dest-meta {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
    justify-content: center;
}
.hp-dest-meta span {
    font-size: .8125rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: .25rem;
}
.hp-dest-cta {
    margin-top: .25rem;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: .25rem;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .25s, transform .25s;
}
.hp-dest-card:hover .hp-dest-cta { opacity: 1; transform: translateY(0); }

/* ── STATS BAND ──────────────────────────────────────────── */
.hp-stats {
    background: var(--gradient-dark);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.hp-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 20% 50%, rgba(99,102,241,.13) 0%, transparent 55%),
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(16,185,129,.09) 0%, transparent 55%);
}
.hp-stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
    text-align: center;
}
@media (min-width: 768px) {
    .hp-stats-grid { grid-template-columns: repeat(4, 1fr); }
    .hp-stat:not(:last-child) { border-right: 1px solid rgba(255,255,255,.07); }
}
.hp-stat-num {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.03em;
    line-height: 1;
    display: block;
    margin-bottom: .5rem;
}
.hp-stat-label {
    font-size: .9375rem;
    color: rgba(255,255,255,.6);
    font-weight: 500;
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
.hp-testi-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .hp-testi-grid { grid-template-columns: repeat(3, 1fr); }
}
.hp-testi-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 1.25rem;
    padding: 1.75rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform .3s, box-shadow .3s;
}
.hp-testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.hp-testi-quote {
    font-size: 4rem;
    line-height: .7;
    color: var(--primary-light);
    font-family: Georgia, serif;
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    pointer-events: none;
    user-select: none;
    font-weight: 700;
}
.hp-testi-stars {
    display: flex;
    gap: .2rem;
    color: var(--warning-color);
    font-size: .875rem;
    margin-bottom: .875rem;
}
.hp-testi-text {
    font-size: .9375rem;
    line-height: 1.7;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}
.hp-testi-author {
    display: flex;
    align-items: center;
    gap: .875rem;
    border-top: 1px solid var(--border-light);
    padding-top: 1rem;
    margin-top: auto;
}
.hp-testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.hp-testi-name {
    font-size: .9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}
.hp-testi-role {
    font-size: .8125rem;
    color: var(--text-muted);
    margin: 0;
}

/* ── PLANS D'ABONNEMENT ──────────────────────────────────── */
.hp-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.hp-plan-card {
    background: #fff;
    border-radius: 1rem;
    border: 2px solid var(--border-color, #e2e8f0);
    padding: 2rem 1.75rem;
    position: relative;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    display: flex;
    flex-direction: column;
}
.hp-plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(99,102,241,.12);
    border-color: var(--primary-color, #6366f1);
}
.hp-plan-popular {
    border-color: var(--primary-color, #6366f1);
    box-shadow: 0 0 0 3px rgba(99,102,241,.1);
}
.hp-plan-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6366f1, #10b981);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .3rem 1rem;
    border-radius: 0 0 .5rem .5rem;
}
.hp-plan-header { text-align: center; margin-bottom: 1.5rem; }
.hp-plan-name { font-size: 1.25rem; font-weight: 700; color: var(--text-primary, #1e293b); margin-bottom: .75rem; }
.hp-plan-price { display: flex; align-items: baseline; justify-content: center; gap: .2rem; }
.hp-plan-amount { font-size: 2.5rem; font-weight: 800; color: var(--primary-color, #6366f1); }
.hp-plan-period { font-size: .9rem; color: var(--text-muted, #94a3b8); }
.hp-plan-trial { margin-top: .75rem; font-size: .8125rem; color: #065f46; background: #ecfdf5; border: 1px solid #10b981; border-radius: .375rem; padding: .3rem .75rem; display: inline-block; }
.hp-plan-features { list-style: none; padding: 0; margin: 0 0 1.5rem; flex: 1; }
.hp-plan-features li { display: flex; align-items: center; gap: .625rem; padding: .5rem 0; border-bottom: 1px solid var(--border-color, #e2e8f0); font-size: .875rem; color: var(--text-secondary, #64748b); }
.hp-plan-features li:last-child { border-bottom: none; }
.hp-plan-features li i { color: #10b981; font-size: .75rem; flex-shrink: 0; }
.hp-plan-action { margin-top: auto; }
.hp-plan-btn { display: flex; align-items: center; justify-content: center; gap: .5rem; width: 100%; padding: .75rem 1.25rem; border-radius: .75rem; font-size: .9375rem; font-weight: 600; text-decoration: none; transition: transform .2s, box-shadow .2s; }
.hp-plan-btn-primary { background: linear-gradient(135deg, #6366f1, #10b981); color: #fff; }
.hp-plan-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(99,102,241,.35); color: #fff; }
.hp-plan-btn-secondary { background: #fff; color: var(--text-primary, #1e293b); border: 2px solid var(--border-color, #e2e8f0); }
.hp-plan-btn-secondary:hover { border-color: var(--primary-color, #6366f1); color: var(--primary-color, #6366f1); }
.hp-plans-cta { text-align: center; margin-top: 1rem; }
.hp-plans-see-all { display: inline-flex; align-items: center; gap: .625rem; color: var(--primary-color, #6366f1); font-weight: 600; font-size: .9375rem; text-decoration: none; padding: .625rem 1.25rem; border: 2px solid var(--primary-color, #6366f1); border-radius: .75rem; transition: background .2s, color .2s; }
.hp-plans-see-all:hover { background: var(--primary-color, #6366f1); color: #fff; }

/* ── NEWSLETTER ──────────────────────────────────────────── */
.hp-newsletter {
    background: linear-gradient(140deg, #0f0c29 0%, #1e1b4b 40%, #1a3a6b 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.hp-newsletter::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hp-nl-inner {
    position: relative;
    z-index: 1;
    max-width: 660px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1.5rem;
}
.hp-nl-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(99,102,241,.2);
    border: 1px solid rgba(99,102,241,.4);
    color: #a5b4fc;
    font-size: 1.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.hp-newsletter h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.03em;
    margin-bottom: .875rem;
}
.hp-nl-inner > p {
    font-size: 1.0625rem;
    color: rgba(255,255,255,.65);
    line-height: 1.7;
    margin-bottom: 2rem;
}
.hp-nl-form {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    max-width: 480px;
    margin: 0 auto 1.25rem;
}
@media (min-width: 520px) { .hp-nl-form { flex-direction: row; } }
.hp-nl-input-wrap { position: relative; flex: 1; }
.hp-nl-input-wrap i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,.35);
    pointer-events: none;
    font-size: .875rem;
}
.hp-nl-input {
    width: 100%;
    padding: .875rem 1rem .875rem 2.75rem;
    border: 2px solid rgba(255,255,255,.1);
    border-radius: .875rem;
    background: rgba(255,255,255,.07);
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    transition: border-color .2s, background .2s;
    min-height: 50px;
}
.hp-nl-input::placeholder { color: rgba(255,255,255,.35); }
.hp-nl-input:focus {
    outline: none;
    border-color: rgba(99,102,241,.7);
    background: rgba(255,255,255,.1);
}
.hp-nl-btn {
    padding: .875rem 1.5rem;
    font-size: .9375rem;
    font-weight: 600;
    color: #fff;
    background: var(--gradient-primary);
    border: none;
    border-radius: .875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 50px;
    white-space: nowrap;
    transition: filter .2s, transform .15s;
    box-shadow: 0 4px 15px rgba(99,102,241,.4);
}
.hp-nl-btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.hp-nl-privacy {
    font-size: .8125rem;
    color: rgba(255,255,255,.38);
    margin: 0;
}
.hp-nl-privacy a { color: rgba(255,255,255,.6); text-decoration: underline; }
.hp-alert {
    display: none;
    margin-top: 1rem;
    padding: .875rem 1.25rem;
    border-radius: .75rem;
    font-size: .9375rem;
    font-weight: 500;
    align-items: center;
    gap: .625rem;
    text-align: left;
}
.hp-alert.show { display: flex; }
.hp-alert-success { background: rgba(16,185,129,.13); color: #34d399; border: 1px solid rgba(16,185,129,.22); }
.hp-alert-error   { background: rgba(239,68,68,.13);  color: #fca5a5; border: 1px solid rgba(239,68,68,.22); }

/* ── CTA BAND ────────────────────────────────────────────── */
.hp-cta-band {
    padding: 1.125rem 0;
    background: var(--primary-light);
    border-bottom: 1px solid rgba(99,102,241,.15);
}
.hp-cta-band-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: .875rem;
    padding: 0 1.5rem;
    text-align: center;
}
.hp-cta-band-text {
    font-size: .9375rem;
    color: var(--primary-dark);
    font-weight: 500;
}
.hp-cta-band-btn {
    padding: .5rem 1.375rem;
    font-size: .875rem;
    font-weight: 700;
    color: #fff;
    background: var(--primary-color);
    border-radius: 999px;
    text-decoration: none;
    transition: background .2s, transform .15s;
    white-space: nowrap;
}
.hp-cta-band-btn:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); }

/* ── ANIMATIONS ──────────────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    .fade-up { opacity: 1; transform: none; transition: none; }
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ── CAROUSEL OVERRIDES ──────────────────────────────────── */
.hp-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: box-shadow .2s, transform .2s, color .2s;
    z-index: 5;
    box-shadow: var(--shadow-md);
}
@media (min-width: 768px) { .hp-carousel-btn { display: flex; } }
.hp-carousel-btn:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-50%) scale(1.1);
    color: var(--primary-color);
}
.hp-carousel-prev { left: -18px; }
.hp-carousel-next { right: -18px; }
.hp-carousel-icon { font-size: .8rem; }

/* ── STAGGERED ANIMATION HELPERS ─────────────────────────── */
/* Steps "comment ça marche" */
.hp-step--d1 { transition-delay: .12s; }
.hp-step--d2 { transition-delay: .24s; }

/* Stats band */
.hp-stat--d1 { transition-delay: .1s; }
.hp-stat--d2 { transition-delay: .2s; }
.hp-stat--d3 { transition-delay: .3s; }

/* ── STATS RATING HELPERS ─────────────────────────────────── */
.hp-stat-suffix { font-size: 1.25rem; opacity: .55; }
.hp-stat-star   { font-size: 1.25rem; color: #fbbf24; vertical-align: baseline; }

/* ── DESTINATIONS : état vide ─────────────────────────────── */
.hp-dest-empty { grid-column: 1 / -1; }
