body.vitrine {
    max-width: none;
    padding: 0;
}

.v-hero {
    background: linear-gradient(135deg, var(--petrol) 0%, var(--petrol-light) 100%);
    color: #fff;
    text-align: center;
    padding: 60px 16px 70px;
}
.v-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--orange);
    margin-bottom: 14px;
    text-transform: uppercase;
}
.v-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 800;
    max-width: 700px;
    margin: 0 auto 16px;
    line-height: 1.25;
    color: #fff;
}
.v-sous-titre { max-width: 560px; margin: 0 auto 30px; font-size: 16px; opacity: .92; line-height: 1.6; }
.v-cta-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.v-btn-primaire, .v-btn-primaire-petit {
    background: var(--orange);
    color: #fff;
    padding: 15px 28px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    border-radius: var(--radius-pill);
    box-shadow: 0 6px 18px rgba(255,106,57,0.35);
}
.v-btn-primaire:hover, .v-btn-primaire-petit:hover { background: var(--orange-dark); }
.v-btn-primaire-petit { padding: 11px 20px; font-size: 14px; margin-top: 16px; box-shadow: none; }
.v-btn-secondaire, .v-btn-secondaire-petit {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.5);
    padding: 13px 26px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    border-radius: var(--radius-pill);
}
.v-btn-secondaire:hover { background: rgba(255,255,255,0.18); }
.v-btn-secondaire-petit {
    color: var(--petrol);
    border: 2px solid var(--petrol);
    background: transparent;
    padding: 10px 20px;
    font-size: 14px;
    margin-top: 16px;
}
.v-btn-secondaire-petit:hover { background: var(--petrol); color: #fff; }

.v-section { max-width: 900px; margin: 0 auto; padding: 56px 16px; }
.v-h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--petrol);
    text-align: center;
    margin-bottom: 8px;
}
.v-intro { text-align: center; color: var(--texte-doux); margin-bottom: 32px; font-size: 15px; }

.v-grille-metiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 18px; }
.v-carte-metier {
    background: #fff;
    border: 1px solid var(--bordure);
    border-top: 4px solid var(--orange);
    border-radius: var(--radius);
    box-shadow: var(--ombre);
    padding: 22px;
    transition: box-shadow .2s, transform .2s;
}
.v-carte-metier:hover { box-shadow: var(--ombre-hover); transform: translateY(-2px); }
.v-icone {
    font-size: 22px;
    margin-bottom: 10px;
    width: 44px; height: 44px;
    background: #E6F9FB;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
}
.v-carte-metier h3 { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700; color: var(--petrol); margin: 0 0 8px; }
.v-carte-metier p { font-size: 14px; line-height: 1.55; margin: 0; color: var(--texte); }

.v-comment { background: #F4F7F7; border-radius: 32px; margin: 0 auto; }
.v-comparatif { background: #F4F7F7; border-radius: 32px; margin: 0 auto; }
.v-etapes { display: flex; flex-direction: column; gap: 18px; max-width: 560px; margin: 0 auto; }
.v-etape { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; line-height: 1.5; }
.v-num {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    background: var(--orange);
    color: #fff;
    width: 34px; height: 34px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.v-tarifs-h { display: flex; flex-direction: column; gap: 20px; max-width: 900px; margin: 0 auto; }
.v-carte-tarif-h {
    display: flex;
    align-items: center;
    gap: 28px;
    border: 1px solid var(--bordure);
    border-top: 4px solid var(--petrol);
    border-radius: var(--radius);
    box-shadow: var(--ombre);
    padding: 28px 32px;
    background: #fff;
}
.v-carte-tarif-h.v-tarif-vedette { border: 2px solid var(--orange); border-top: 4px solid var(--orange); box-shadow: var(--ombre-hover); }
.v-tarif-h-prix { flex: 0 0 220px; text-align: center; }
.v-tarif-h-details { flex: 1; border-left: 1px solid var(--bordure); padding-left: 28px; }
.v-tarif-h-details ul { text-align: left; font-size: 14px; padding-left: 18px; margin: 0 0 14px; color: var(--texte); }
.v-tarif-h-details li { margin-bottom: 8px; }
@media (max-width: 700px) {
    .v-carte-tarif-h { flex-direction: column; }
    .v-tarif-h-details { border-left: none; padding-left: 0; border-top: 1px solid var(--bordure); padding-top: 18px; text-align: center; }
}

.v-grille-tarifs { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 20px; max-width: 640px; margin: 0 auto; }
.v-grille-tarifs-large { max-width: 900px; }
.v-carte-tarif {
    border: 1px solid var(--bordure);
    border-top: 4px solid var(--petrol);
    border-radius: var(--radius);
    box-shadow: var(--ombre);
    padding: 28px 24px;
    text-align: center;
    background: #fff;
}
.v-tarif-vedette { border: 2px solid var(--orange); border-top: 4px solid var(--orange); box-shadow: var(--ombre-hover); }
.v-tarif-label { font-size: 12px; font-weight: 700; letter-spacing: .5px; color: var(--texte-doux); text-transform: uppercase; margin-bottom: 8px; }
.v-tarif-montant { font-family: 'Poppins', sans-serif; font-size: 36px; font-weight: 800; color: var(--orange); margin-bottom: 16px; }
.v-tarif-montant span { font-size: 16px; font-weight: 600; }
.v-carte-tarif ul { text-align: left; font-size: 14px; padding-left: 18px; margin: 0; color: var(--texte); }
.v-carte-tarif li { margin-bottom: 8px; }

.v-table-scroll { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--ombre); }
.v-table { width: 100%; border-collapse: collapse; background: #fff; font-size: 13px; min-width: 620px; }
.v-table th, .v-table td { border-bottom: 1px solid var(--bordure); padding: 12px 14px; text-align: left; vertical-align: top; }
.v-table th { color: #fff; font-weight: 700; }
.v-table th:first-child { border-top-left-radius: var(--radius); background: transparent; }
.v-table th:not(:first-child) { background: var(--petrol); }
.v-table th.v-col-vedette { background: var(--orange); }
.v-table th:last-child { border-top-right-radius: var(--radius); }
.v-col-embauche { background: #F4F6F7; }
.v-col-interim { background: #FBF8F2; }
.v-col-vedette { background: #E6F9FB; font-weight: 700; }
tbody tr:nth-child(even) .v-col-embauche { background: #EEF1F2; }
tbody tr:nth-child(even) .v-col-interim { background: #F5F0E8; }
tbody tr:nth-child(even) .v-col-vedette { background: #D5F3F6; }
.v-note { font-size: 12px; color: var(--texte-doux); margin-top: 16px; line-height: 1.6; }

.v-devis .carte { max-width: 480px; margin: 0 auto; }
.v-confirmation { background: var(--vert); color: #fff; padding: 16px; text-align: center; max-width: 480px; margin: 0 auto; border-radius: var(--radius-petit); font-weight: 600; }

.v-footer { text-align: center; padding: 36px 16px; font-size: 13px; color: var(--texte-doux); }
