/* ── POINT FORT & AIDES ─────────────────────────────────── */
.vs-point-fort {
    background: var(--green-50);
    border-left: 4px solid var(--green-500);
    border-radius: 0 8px 8px 0;
    padding: 0.875rem 1.25rem;
    color: var(--green-800);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin-top: 1rem;
}

.vs-aides-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.vs-aide-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}
.vs-aide-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.vs-aide-card h3 { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.5rem; }
.vs-aide-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; margin: 0; }

@media (max-width: 900px) { .vs-aides-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .vs-aides-grid { grid-template-columns: 1fr; } }

/* ── MAILLAGE INTERNE ───────────────────────────────────── */
.vs-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.vs-link-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    text-decoration: none;
    color: var(--gray-800);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s;
}
.vs-link-card:hover {
    border-color: var(--green-500);
    color: var(--green-700);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.vs-link-icon { font-size: 1.3rem; }

.vs-villes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.vs-ville-link {
    padding: 0.5rem 1rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    text-decoration: none;
    color: var(--gray-700);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
}
.vs-ville-link:hover {
    background: var(--green-600);
    color: #fff;
    border-color: var(--green-600);
}
.vs-ville-link-all {
    background: var(--green-50);
    border-color: var(--green-300);
    color: var(--green-700);
    font-weight: 700;
}

/* ── HUB PAGES ──────────────────────────────────────────── */
.hub-villes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.hub-ville-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    text-decoration: none;
    color: var(--gray-800);
    transition: all 0.2s;
}
.hub-ville-card:hover {
    border-color: var(--green-500);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}
.hub-ville-icon { font-size: 1.5rem; }
.hub-ville-card div { flex: 1; }
.hub-ville-card strong { display: block; font-size: 1rem; color: var(--gray-900); }
.hub-ville-card span { font-size: 0.8rem; color: var(--gray-500); }
.hub-ville-arrow { color: var(--green-600); font-weight: 700; }

@media (max-width: 900px) {
    .vs-links-grid { grid-template-columns: repeat(2, 1fr); }
    .hub-villes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
    .vs-links-grid { grid-template-columns: 1fr; }
    .hub-villes-grid { grid-template-columns: 1fr; }
}

/* ── PAGES VILLE × SERVICE ──────────────────────────────── */

/* Hero */
.vs-hero {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
}
.vs-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--green-800, #166534);
}
.vs-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,31,15,0.82), rgba(13,26,46,0.72));
}
.vs-hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 5rem 1.5rem;
}
.vs-hero-content h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin: 0.5rem 0 0.75rem;
    line-height: 1.2;
}
.vs-hero-content .svc-hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.75rem;
}
.svc-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Intro */
.svc-intro-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 3rem;
    align-items: start;
}
.svc-intro-text h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}
.svc-intro-text p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.svc-intro-trust {
    background: var(--green-50, #f0fdf4);
    border: 1px solid var(--green-200, #bbf7d0);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.trust-item {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green-700, #15803d);
}

/* Avantages */
.svc-adv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.svc-adv-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    color: var(--gray-700);
}
.svc-adv-check {
    color: var(--green-600);
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Étapes */
.svc-steps { display: flex; flex-direction: column; gap: 1.5rem; }
.svc-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--gray-50);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
}
.svc-step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green-600);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.svc-step-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.4rem;
}
.svc-step-content p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; margin: 0; }

/* Zone */
.vs-zone-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.vs-zone-content p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* CTA final */
.svc-cta-section {
    background: linear-gradient(135deg, #0f1f0f 0%, #0d1a2e 100%);
    color: #fff;
    text-align: center;
    padding: 80px 1.5rem;
}
.svc-cta-section h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}
.svc-cta-section p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 2rem;
    font-size: 1rem;
}
.svc-cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.btn-outline-white {
    border: 2px solid rgba(255,255,255,0.6);
    color: #fff;
    background: transparent;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* Sections */
.svc-section { padding: 72px 0; }
.svc-section.bg-white { background: #fff; }
.svc-section.bg-light { background: var(--gray-50); }
.svc-section-head { text-align: center; margin-bottom: 48px; }
.svc-section-head h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; color: var(--gray-900); margin-bottom: 0.5rem; }
.svc-section-head p { color: var(--gray-500); font-size: 1rem; }

/* Responsive */
@media (max-width: 900px) {
    .svc-intro-layout { grid-template-columns: 1fr; }
    .svc-adv-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .vs-hero { min-height: 360px; }
    .svc-step { flex-direction: column; }
    .svc-cta-btns { flex-direction: column; align-items: center; }
}
