/* ==========================================================================
   🎨 FYDELIO — SERVICES.CSS v2.0
   DA unifiée avec index.html — tous les composants partagés sont ici.
   Ne touche JAMAIS : #main-header, .btn de base, .site-footer, .grid-3
   ========================================================================== */

/* ============================================================
   0. VARIABLES LOCALES PARTAGÉES
   ============================================================ */
.nav-link-active {
    color: var(--primary) !important;
    font-weight: 800 !important;
}

/* ============================================================
   1. EYEBROW (petit label au-dessus des h2)
   ============================================================ */
.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--primary);
    margin-bottom: 12px;
}

/* ============================================================
   2. HERO MODERNE — 2 colonnes (partagé avec index)
   ============================================================ */
.hero-modern {
    padding-top: 130px;
    overflow: hidden;
}

.hero-content {
    display: flex;
    gap: 80px;
    align-items: center;
    padding-bottom: 80px;
}

.hero-text-col {
    flex: 1;
    max-width: 560px;
}

.hero-text-col .badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
}

.hero-text-col h1 {
    font-size: 4rem;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-text-col p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 40px;
}

.btn-ghost-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}
.btn-ghost-link:hover { color: var(--primary); gap: 12px; }

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.hero-stat { text-align: left; }
.stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 4px;
}
.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    line-height: 1.4;
}
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
    flex-shrink: 0;
}

/* Colonne photo */
.hero-visual-col {
    flex: 1;
    position: relative;
    min-height: 480px;
}
.hero-photo-stack {
    position: relative;
    width: 100%;
    height: 480px;
}
.hero-photo-main {
    position: absolute;
    top: 0; left: 0;
    width: 82%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.hero-photo-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 8s ease;
}
.hero-photo-main:hover img { transform: scale(1.04); }

.hero-floating-badge {
    position: absolute;
    bottom: 24px; left: 24px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    box-shadow: var(--shadow-md);
}

.hero-photo-secondary {
    position: absolute;
    bottom: -28px; right: 0;
    width: 48%;
    height: 52%;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: var(--shadow-lg);
}
.hero-photo-secondary img {
    width: 100%; height: 100%;
    object-fit: cover;
}

/* ============================================================
   3. BANDE DE LOCALITÉ / CLIENTS
   ============================================================ */
.locality-band {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
}
.locality-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
}
.locality-inner::-webkit-scrollbar { display: none; }
.locality-label {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    white-space: nowrap;
    flex-shrink: 0;
}
.locality-places {
    display: flex;
    align-items: center;
    gap: 14px;
}
.locality-places span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
}
.loc-dot {
    width: 4px; height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.4;
    flex-shrink: 0;
}

/* ============================================================
   4. ICÔNES 3D (Lucide + effet de profondeur)
   ============================================================ */
.card-modern {
    border-radius: 28px !important;
    padding: 44px 36px !important;
}

.card-icon-3d {
    width: 64px; height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    transition: var(--transition);
}
.card-icon-3d i { width: 28px; height: 28px; }

/* Ombre de profondeur pseudo-3D */
.card-icon-3d::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    transform: translateY(6px) scale(0.88);
    filter: blur(8px);
    z-index: -1;
    opacity: 0.5;
    transition: var(--transition);
}
.card:hover .card-icon-3d::before { transform: translateY(10px) scale(0.85); opacity: 0.7; }
.card:hover .card-icon-3d { transform: translateY(-4px); }

/* Variantes */
.card-icon-3d--teal   { background: linear-gradient(145deg, #DCFCE7, #BBF7D0); }
.card-icon-3d--teal i { color: #0F766E; }
.card-icon-3d--teal::before { background: #BBF7D0; }

.card-icon-3d--purple   { background: linear-gradient(145deg, #EDE9FE, #DDD6FE); }
.card-icon-3d--purple i { color: #7C3AED; }
.card-icon-3d--purple::before { background: #DDD6FE; }

.card-icon-3d--amber   { background: linear-gradient(145deg, #FEF3C7, #FDE68A); }
.card-icon-3d--amber i { color: #D97706; }
.card-icon-3d--amber::before { background: #FDE68A; }

.card-icon-3d--red   { background: linear-gradient(145deg, #FEE2E2, #FECACA); }
.card-icon-3d--red i { color: #DC2626; }
.card-icon-3d--red::before { background: #FECACA; }

.card-icon-3d--blue   { background: linear-gradient(145deg, #DBEAFE, #BFDBFE); }
.card-icon-3d--blue i { color: #1D4ED8; }
.card-icon-3d--blue::before { background: #BFDBFE; }

.card-icon-3d--green   { background: linear-gradient(145deg, #D1FAE5, #A7F3D0); }
.card-icon-3d--green i { color: #059669; }
.card-icon-3d--green::before { background: #A7F3D0; }

/* ============================================================
   5. STEP HIGHLIGHT (info dans les nœuds sticky)
   ============================================================ */
.step-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-light);
    border: 1px solid rgba(15,118,110,0.12);
    border-radius: 12px;
    padding: 12px 16px;
    margin-top: 20px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.4;
}

/* ============================================================
   6. STICKY SCROLL — WRAPPER & COLONNES
   ============================================================ */
#sticky-expertise { padding-bottom: 0; }

.sticky-scroll-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.scroll-text-column {
    flex: 1;
    padding: 10vh 0 20vh 0;
}

.scroll-node {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0.15;
    transform: translateX(-30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-node.active { opacity: 1; transform: translateX(0); }

.scroll-node-inner { max-width: 520px; }

.scroll-node-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface);
    color: var(--primary);
    border: 1px solid var(--border);
    padding: 8px 18px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    width: fit-content;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.scroll-node h3 { font-size: 2.4rem; margin-bottom: 20px; line-height: 1.2; letter-spacing: -0.03em; }
.scroll-node p  { font-size: 1.1rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; }

.scroll-node-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.scroll-node-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
}
.scroll-node-list li::before {
    content: "✓";
    display: flex; align-items: center; justify-content: center;
    width: 26px; height: 26px; flex-shrink: 0;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    font-size: 12px; font-weight: 800;
}

/* Colonne visuelle sticky */
.scroll-visual-column {
    flex: 1;
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}
.visual-sticky-frame {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4 / 3;
}
.visual-layer {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(0.96) translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    pointer-events: none;
}
.visual-layer.active { opacity: 1; transform: scale(1) translateY(0); pointer-events: auto; }

.visual-label {
    font-size: 0.82rem; font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    margin-top: 8px;
}

/* ============================================================
   7. PLACEHOLDERS VISUELS
   ============================================================ */
.visual-placeholder {
    width: 100%; flex: 1;
    border-radius: 24px; overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xl);
}

.vp-line { display: block; height: 10px; background: #E2E8F0; border-radius: 100px; margin-bottom: 10px; }
.vp-line-full { width: 100%; } .vp-line-lg { width: 85%; } .vp-line-md { width: 65%; }
.vp-line-sm { width: 50%; } .vp-line-xs { width: 35%; }

/* Navigateur */
.vp-web { display: flex; flex-direction: column; }
.vp-browser-bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: #F1F5F9; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.vp-dot { width: 10px; height: 10px; border-radius: 50%; background: #CBD5E1; }
.vp-dot:nth-child(1) { background: #FC5F57; }
.vp-dot:nth-child(2) { background: #FDBC2C; }
.vp-dot:nth-child(3) { background: #27C840; }
.vp-url-bar { flex: 1; background: white; border-radius: 8px; border: 1px solid var(--border); padding: 5px 12px; font-size: 11px; color: var(--text-muted); font-weight: 600; }
.vp-browser-content { flex: 1; display: flex; flex-direction: column; padding: 20px; gap: 16px; }
.vp-hero-mock { flex: 1; background: linear-gradient(135deg, var(--primary) 0%, #0D9488 100%); border-radius: 16px; padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.vp-hero-badge { display: inline-block; background: rgba(255,255,255,0.2); color: white; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 100px; width: fit-content; }
.vp-hero-title { height: 16px; background: rgba(255,255,255,0.7); border-radius: 6px; width: 80%; }
.vp-hero-sub { height: 10px; background: rgba(255,255,255,0.4); border-radius: 6px; width: 60%; }
.vp-hero-btn { height: 28px; background: white; border-radius: 8px; width: 40%; margin-top: 6px; }
.vp-cards-row { display: flex; gap: 8px; }
.vp-card-mock { flex: 1; height: 60px; background: #F8FAFC; border: 1px solid var(--border); border-radius: 10px; }

/* Instagram */
.vp-social { display: flex; align-items: center; justify-content: center; background: var(--bg-gray); }
.vp-phone-frame { width: 240px; background: white; border-radius: 28px; border: 8px solid #1A1A2E; box-shadow: 0 20px 40px rgba(0,0,0,0.15); overflow: hidden; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.vp-insta-header { display: flex; align-items: center; gap: 10px; }
.vp-insta-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); flex-shrink: 0; }
.vp-insta-username { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.vp-insta-follow { font-size: 10px; font-weight: 700; color: #3897f0; }
.vp-insta-image { height: 200px; background: linear-gradient(160deg, #e0f2f1 0%, #b2dfdb 50%, var(--primary) 100%); border-radius: 8px; position: relative; }
.vp-insta-image::after { content: '🍽'; position: absolute; font-size: 36px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.vp-insta-actions { display: flex; gap: 12px; font-size: 18px; }
.vp-icon-heart { color: #ED4956; }
.vp-insta-likes { font-size: 10px; font-weight: 700; color: var(--text-main); }
.vp-insta-caption { display: flex; flex-direction: column; gap: 6px; }
.vp-stories-row { display: flex; gap: 10px; justify-content: center; }
.vp-story-bubble { width: 44px; height: 44px; border-radius: 50%; background: #CBD5E1; border: 2px solid transparent; }
.vp-story-new { background: white; border: 3px solid; border-image: linear-gradient(135deg, #f09433, #bc1888) 1; border-radius: 50%; }

/* Email */
.vp-email { display: flex; align-items: flex-start; background: #F1F5F9; padding: 16px; }
.vp-email-frame { width: 100%; background: white; border-radius: 16px; border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow-md); }
.vp-email-subject { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; border-bottom: 1px solid var(--border); background: #FAFAFA; }
.vp-email-icon { font-size: 20px; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.vp-email-from { font-size: 10px; color: var(--text-muted); font-weight: 600; }
.vp-email-subject-line { font-size: 11px; font-weight: 700; color: var(--text-main); margin-top: 2px; }
.vp-email-header-band { background: linear-gradient(135deg, var(--primary) 0%, #0D9488 100%); padding: 16px; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.vp-email-logo-mock { width: 32px; height: 32px; background: rgba(255,255,255,0.3); border-radius: 8px; }
.vp-email-hero-text { width: 100%; display: flex; flex-direction: column; gap: 6px; align-items: center; }
.vp-email-hero-text .vp-line { background: rgba(255,255,255,0.5); }
.vp-email-body { padding: 16px; display: flex; flex-direction: column; gap: 0; }
.vp-email-body .vp-line { background: #E2E8F0; }
.vp-email-cta-btn { background: var(--primary); color: white; font-size: 11px; font-weight: 700; padding: 10px 16px; border-radius: 8px; text-align: center; margin: 12px 0; cursor: pointer; }
.vp-email-stat-row { display: flex; border-top: 1px solid var(--border); }
.vp-email-stat { flex: 1; display: flex; flex-direction: column; align-items: center; padding: 10px 6px; border-right: 1px solid var(--border); gap: 2px; }
.vp-email-stat:last-child { border-right: none; }
.vp-stat-val { font-size: 15px; font-weight: 800; color: var(--primary); letter-spacing: -0.02em; transition: transform 0.3s ease; }
.vp-stat-lbl { font-size: 8px; color: var(--text-muted); font-weight: 600; text-align: center; text-transform: uppercase; letter-spacing: 0.04em; }

/* ============================================================
   8. PHOTO VAUCLUSE FULL-WIDTH
   ============================================================ */
.vaucluse-photo-section { margin: 40px 0; }
.vaucluse-photo-wrapper { position: relative; height: 420px; overflow: hidden; }
.vaucluse-photo-img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; transform: scale(1.05); }
.vaucluse-photo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(8,13,26,0.78) 0%, rgba(8,13,26,0.3) 60%, transparent 100%);
    display: flex; align-items: flex-end;
}
.vaucluse-quote { padding: 48px 0; max-width: 560px; }
.vaucluse-quote p { font-size: 1.5rem; font-weight: 700; color: white; line-height: 1.5; margin-bottom: 12px; letter-spacing: -0.02em; }
.vaucluse-quote span { font-size: 0.9rem; color: rgba(255,255,255,0.55); font-weight: 600; }

/* ============================================================
   9. ROADMAP
   ============================================================ */
.roadmap-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0;
}
.roadmap-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 44px 36px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}
.roadmap-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: rgba(15,118,110,0.15); }

.roadmap-icon {
    width: 52px; height: 52px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    transition: var(--transition);
}
.roadmap-card:hover .roadmap-icon { background: var(--primary); }
.roadmap-card:hover .roadmap-icon i { color: white !important; }

.roadmap-number {
    font-size: 3.5rem; font-weight: 800;
    letter-spacing: -0.04em; line-height: 1;
    margin-bottom: 16px;
    -webkit-text-stroke: 2px var(--primary);
    color: transparent;
}
.roadmap-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.roadmap-card p { font-size: 0.98rem; color: var(--text-muted); line-height: 1.7; }

.roadmap-connector {
    width: 60px; height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(15,118,110,0.2) 100%);
    position: relative; flex-shrink: 0;
}
.roadmap-connector::after {
    content: '›'; position: absolute;
    right: -8px; top: 50%; transform: translateY(-50%);
    color: var(--primary); font-size: 20px; line-height: 1;
}

/* ============================================================
   10. FAQ ACCORDÉON
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.faq-item.open { border-color: rgba(15,118,110,0.2); box-shadow: var(--shadow-md); }

.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px;
    padding: 22px 28px; background: none; border: none; cursor: pointer;
    font-family: inherit; font-size: 1.05rem; font-weight: 700;
    color: var(--text-main); text-align: left; transition: color 0.3s ease;
}
.faq-item.open .faq-question { color: var(--primary); }

.faq-icon-wrap {
    width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
    background: var(--bg-gray); display: flex; align-items: center; justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text-muted);
}
.faq-item.open .faq-icon-wrap {
    background: var(--primary);
    color: white;
    transform: rotate(45deg);
}

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 28px 28px; font-size: 1.02rem; color: var(--text-muted); line-height: 1.8; }

/* ============================================================
   11. CTA AVEC PHOTO EN FOND
   ============================================================ */
.cta-photo-section { position: relative; overflow: hidden; margin-top: 80px; }
.cta-photo-bg { position: absolute; inset: 0; z-index: 0; }
.cta-photo-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.cta-photo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(8,13,26,0.88) 0%, rgba(15,118,110,0.6) 100%);
    z-index: 1;
}
.cta-photo-content {
    position: relative; z-index: 2;
    text-align: center;
    padding: 120px 24px;
}
.cta-photo-content h2 { font-size: 3rem; color: white; margin: 20px 0; letter-spacing: -0.03em; line-height: 1.15; }
.cta-photo-content p { font-size: 1.2rem; color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 40px; line-height: 1.7; }
.cta-photo-btn {
    background: white !important; color: var(--primary) !important;
    box-shadow: 0 16px 40px rgba(0,0,0,0.25) !important;
    display: inline-flex; align-items: center; gap: 10px;
}
.cta-photo-btn:hover { transform: translateY(-5px) scale(1.02) !important; box-shadow: 0 24px 48px rgba(0,0,0,0.3) !important; }

/* ============================================================
   12. FOOTER — éléments additionnels
   ============================================================ */
.footer-location { display: flex; align-items: center; gap: 8px; margin-top: 16px; font-size: 0.88rem; color: var(--text-light); font-weight: 600; }
.footer-contact li { display: flex; align-items: center; gap: 10px; }

/* ============================================================
   13. RESPONSIVE — TABLETTE (max 992px)
   ============================================================ */
@media (max-width: 992px) {

    /* Hero : empilé */
    .hero-content {
        flex-direction: column;
        gap: 48px;
        padding-bottom: 48px;
    }
    .hero-text-col { max-width: 100%; }
    .hero-text-col h1 { font-size: 2.8rem; }
    .hero-visual-col { width: 100%; min-height: 300px; }
    .hero-photo-stack { height: 300px; }
    .hero-photo-secondary { bottom: -16px; }

    /* Stats : 3 sur une ligne */
    .hero-stats { gap: 20px; }
    .stat-number { font-size: 1.4rem; }

    /* Sticky scroll : empilé, visuel en haut */
    .sticky-scroll-wrapper {
        flex-direction: column;
        gap: 32px;
        padding: 0 20px;
    }
    .scroll-visual-column {
        position: relative;
        height: auto;
        top: auto;
        padding-top: 0;
        order: -1;
        width: 100%;
    }
    .visual-sticky-frame {
        max-width: 100%;
        aspect-ratio: 16 / 10;
        position: relative;
        height: auto;
    }
    /* Sur tablette : afficher uniquement le 1er layer, les autres masqués */
    .visual-layer {
        position: relative !important;
        inset: auto !important;
        opacity: 0 !important;
        transform: none !important;
        display: none !important;
        pointer-events: none;
    }
    .visual-layer.active,
    .visual-layer:first-child {
        display: flex !important;
        opacity: 1 !important;
        position: relative !important;
    }

    .scroll-text-column { padding: 0; width: 100%; }
    .scroll-node {
        min-height: auto;
        opacity: 1 !important;
        transform: none !important;
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 28px 24px;
        margin-bottom: 14px;
    }
    .scroll-node h3 { font-size: 1.5rem; }
    .scroll-node p  { font-size: 1rem; margin-bottom: 16px; }
    .scroll-node-badge { font-size: 0.72rem; padding: 6px 14px; }

    /* Roadmap : colonne */
    .roadmap-grid { grid-template-columns: 1fr; gap: 0; }
    .roadmap-connector {
        width: 2px; height: 36px;
        margin: 0 auto;
        background: linear-gradient(180deg, var(--primary), rgba(15,118,110,0.15));
    }
    .roadmap-connector::after {
        content: '↓';
        right: 50%; top: auto; bottom: -13px;
        transform: translateX(50%);
    }
    .roadmap-card { padding: 36px 28px; }
}

/* ============================================================
   14. RESPONSIVE — MOBILE (max 767px)
   ============================================================ */
@media (max-width: 767px) {

    /* Hero — on supprime TOUT le visuel photo sur mobile */
    .hero-modern { padding-top: 100px; }
    .hero-visual-col { display: none !important; }
    .hero-text-col { max-width: 100%; }
    .hero-text-col h1 { font-size: clamp(1.9rem, 7vw, 2.4rem); }
    .hero-text-col p { font-size: 1rem; margin-bottom: 28px; }

    /* Sticky scroll — la colonne visuelle est masquée via .mobile-hidden dans le HTML */
    .sticky-scroll-wrapper { flex-direction: column; gap: 16px; padding: 0 16px; }
    .scroll-text-column { padding: 0; width: 100%; }

    /* Stats */
    .hero-stats {
        flex-wrap: wrap;
        gap: 12px;
        padding-top: 20px;
        margin-top: 28px;
    }
    .hero-stat-divider { display: none; }
    .hero-stat {
        flex: 1 1 calc(33% - 12px);
        text-align: center;
    }
    .stat-number { font-size: 1.3rem; }
    .stat-label { font-size: 0.7rem; }

    /* Boutons hero */
    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    .hero-actions .btn-large {
        width: 100%;
        justify-content: center;
        font-size: 15px;
        padding: 16px 20px;
    }

    /* Locality band */
    .locality-band { display: none; }

    /* Section headers */
    .section-eyebrow { font-size: 0.7rem; }

    /* Sticky scroll */
    .sticky-scroll-wrapper { padding: 0 16px; gap: 20px; }
    .visual-sticky-frame { aspect-ratio: 4 / 3; }
    .scroll-node { padding: 22px 18px; border-radius: 18px; margin-bottom: 12px; }
    .scroll-node h3 { font-size: 1.3rem; margin-bottom: 12px; }
    .scroll-node p  { font-size: 0.95rem; margin-bottom: 14px; }
    .scroll-node-list li { font-size: 0.9rem; gap: 10px; }
    .scroll-node-list li::before { width: 22px; height: 22px; font-size: 11px; }
    .step-highlight { font-size: 0.82rem; padding: 10px 14px; }

    /* Placeholder téléphone Instagram — réduction sur mobile */
    .vp-phone-frame { width: 200px; padding: 12px; gap: 10px; }
    .vp-insta-image { height: 150px; }

    /* Photo Vaucluse */
    .vaucluse-photo-section { margin: 24px 0; }
    .vaucluse-photo-wrapper { height: 220px; }
    .vaucluse-photo-overlay {
        background: linear-gradient(to bottom, rgba(8,13,26,0.5) 0%, rgba(8,13,26,0.75) 100%);
        align-items: center;
        justify-content: center;
    }
    .vaucluse-quote { padding: 20px 20px; text-align: center; max-width: 100%; }
    .vaucluse-quote p { font-size: 1rem; margin-bottom: 8px; }
    .vaucluse-quote span { font-size: 0.8rem; }

    /* Cards services */
    .card-modern { padding: 28px 20px !important; border-radius: 20px !important; }
    .card-icon-3d { width: 52px; height: 52px; border-radius: 14px; margin-bottom: 20px; }
    .card-icon-3d i { width: 24px; height: 24px; }

    /* Roadmap */
    .roadmap-card { padding: 28px 20px; border-radius: 20px; }
    .roadmap-icon { width: 44px; height: 44px; border-radius: 12px; margin-bottom: 12px; }
    .roadmap-number { font-size: 2.8rem; margin-bottom: 12px; }
    .roadmap-card h3 { font-size: 1.1rem; }
    .roadmap-card p  { font-size: 0.92rem; }
    .roadmap-connector { height: 28px; }

    /* FAQ */
    .faq-list { gap: 10px; }
    .faq-item { border-radius: 16px; }
    .faq-question { font-size: 0.95rem; padding: 18px 16px; gap: 12px; }
    .faq-icon-wrap { width: 28px; height: 28px; flex-shrink: 0; }
    .faq-answer p { padding: 0 16px 20px; font-size: 0.92rem; }

    /* CTA photo */
    .cta-photo-content { padding: 72px 20px; }
    .cta-photo-content h2 { font-size: clamp(1.6rem, 6vw, 2rem); }
    .cta-photo-content p { font-size: 1rem; margin-bottom: 28px; }
    .cta-photo-btn {
        width: 100%;
        max-width: 340px;
        justify-content: center;
        font-size: 15px !important;
        padding: 16px 24px !important;
    }

    /* Footer */
    .footer-contact li { flex-wrap: wrap; }
    .footer-location { justify-content: center; }
}

/* ============================================================
   15. RESPONSIVE — TRÈS PETIT MOBILE (max 390px)
   ============================================================ */
@media (max-width: 390px) {
    .hero-text-col h1 { font-size: 1.75rem; }
    .hero-photo-stack { height: 200px; }
    .scroll-node h3 { font-size: 1.2rem; }
    .vaucluse-photo-wrapper { height: 180px; }
    .cta-photo-content h2 { font-size: 1.5rem; }
    .faq-question { font-size: 0.88rem; }
}
