/* ============================================
   SF SECURITY V2 - Design Lucile (turquoise + orange)
   Charte : --blue-deep #187787, --orange #ff6b1a, --cream #faf7f2
   Fonts  : Fraunces (display) + Manrope (body)
   ============================================ */

body.sfv2 {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.sfv2 ::selection { background: var(--orange); color: white; }

/* === Topbar === */
.sfv2-topbar {
    background: var(--blue-night);
    color: var(--cream);
    font-size: 13px;
    padding: 10px 0;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 100;
}
.sfv2-topbar__inner {
    max-width: 1400px; margin: 0 auto; padding: 0 32px;
    display: flex; justify-content: space-between; align-items: center;
    gap: 24px;
}
.sfv2-topbar__left { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.sfv2-topbar__right { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.sfv2-topbar a { color: var(--cream); transition: color 0.2s; text-decoration: none; }
.sfv2-topbar a:hover { color: var(--orange-bright); }
.sfv2-topbar__tagline { color: rgba(250,247,242,0.7); }

.sfv2-pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,107,26,0.15);
    color: var(--orange-bright);
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.sfv2-pill::before {
    content: '';
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--orange-bright);
    box-shadow: 0 0 0 0 var(--orange-bright);
    animation: sfv2-pulse 2s infinite;
}
@keyframes sfv2-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,107,26,0.6); }
    70% { box-shadow: 0 0 0 8px rgba(255,107,26,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,107,26,0); }
}

@media (max-width: 768px) {
    .sfv2-topbar__tagline { display: none; }
    .sfv2-topbar__email { display: none; }
}

/* === Header / Nav === */
body.sfv2 #site-header.sfv2-header {
    position: sticky; top: 0;
    background: rgba(250,247,242,0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(24,119,135,0.08);
    z-index: 99;
}
body.sfv2 .sfv2-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 14px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}
body.sfv2 .sfv2-logo {
    display: flex; align-items: center; gap: 12px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.02em;
    color: var(--blue-deep);
    text-decoration: none;
}
body.sfv2 .sfv2-logo__mark {
    width: 42px; height: 42px;
    background: var(--blue-deep);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--cream);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out);
}
body.sfv2 .sfv2-logo:hover .sfv2-logo__mark { transform: rotate(-8deg) scale(1.05); }
body.sfv2 .sfv2-logo__mark::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1.5px solid var(--orange);
    border-radius: 4px;
}
body.sfv2 .sfv2-logo__text { display: flex; flex-direction: column; line-height: 1.1; }
body.sfv2 .sfv2-logo__sub {
    display: block;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: var(--gray-4);
    text-transform: uppercase;
    margin-top: 2px;
}

body.sfv2 .sfv2-nav-menu {
    display: flex;
    gap: 4px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
body.sfv2 .sfv2-nav-menu > li > a {
    font-size: 14px;
    font-weight: 500;
    color: var(--blue-deep);
    padding: 8px 14px;
    border-radius: 6px;
    position: relative;
    text-decoration: none;
    transition: color 0.2s;
}
body.sfv2 .sfv2-nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 14px; right: 14px;
    height: 1.5px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}
body.sfv2 .sfv2-nav-menu > li > a:hover::after { transform: scaleX(1); }

/* === Buttons V2 === */
.sfv2-btn,
body.sfv2 .sfv2-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.01em;
    border: none;
    cursor: pointer;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s, background 0.3s, color 0.3s;
    font-family: var(--font-body);
    white-space: nowrap;
    text-decoration: none;
}
.sfv2-btn-primary,
body.sfv2 .sfv2-btn-primary,
body.sfv2 a.sfv2-btn-primary {
    background: var(--orange) !important;
    background-image: none !important;
    color: white !important;
    box-shadow: 0 4px 14px rgba(255,107,26,0.35);
}
.sfv2-btn-primary:hover,
body.sfv2 .sfv2-btn-primary:hover,
body.sfv2 a.sfv2-btn-primary:hover {
    background: var(--orange-bright) !important;
    background-image: none !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,107,26,0.45);
}
.sfv2-btn-secondary {
    background: var(--blue-deep);
    color: var(--cream);
}
.sfv2-btn-secondary:hover {
    background: var(--blue-night);
    color: var(--cream);
    transform: translateY(-2px);
}
.sfv2-btn-ghost {
    background: transparent;
    color: var(--blue-deep);
    border: 1.5px solid rgba(24,119,135,0.2);
}
.sfv2-btn-ghost:hover {
    background: var(--blue-deep);
    color: var(--cream);
    border-color: var(--blue-deep);
}
.sfv2-btn-ghost-light {
    background: transparent;
    color: var(--cream);
    border: 1.5px solid rgba(255,255,255,0.2);
}
.sfv2-btn-ghost-light:hover {
    background: var(--cream);
    color: var(--blue-deep);
    border-color: var(--cream);
}
.sfv2-arrow {
    transition: transform 0.3s var(--ease-out);
    display: inline-block;
}
.sfv2-btn:hover .sfv2-arrow { transform: translateX(4px); }

/* === HERO === */
.sfv2-hero {
    position: relative;
    padding: 80px 32px 120px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(255,107,26,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 0% 100%, rgba(24,119,135,0.04) 0%, transparent 60%),
        var(--cream);
}
.sfv2-hero__grid-bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(24,119,135,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(24,119,135,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 0%, transparent 80%);
    pointer-events: none;
}
.sfv2-hero__inner {
    max-width: 1400px; margin: 0 auto;
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
    align-items: center;
}
@media (max-width: 1024px) {
    .sfv2-hero__inner { grid-template-columns: 1fr; gap: 48px; }
    .sfv2-hero { padding: 48px 24px 80px; }
}

.sfv2-hero__badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: white;
    border: 1px solid rgba(24,119,135,0.1);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--blue-deep);
    margin-bottom: 28px;
    box-shadow: 0 4px 12px rgba(24,119,135,0.04);
}
.sfv2-hero__badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 #10b981;
    animation: sfv2-pulse-green 2s infinite;
}
@keyframes sfv2-pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
    70% { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

body.sfv2 .sfv2-hero__title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6.5vw, 88px);
    line-height: 0.96;
    font-weight: 500;
    letter-spacing: -0.035em;
    color: var(--blue-deep);
    margin-bottom: 28px;
    font-variation-settings: "opsz" 144;
}
.sfv2-accent {
    font-style: italic;
    font-weight: 400;
    color: var(--orange);
    position: relative;
    display: inline-block;
}
.sfv2-accent::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 8px;
    background: var(--orange-soft);
    z-index: -1;
    border-radius: 4px;
}
.sfv2-hero__lede {
    font-size: 19px;
    color: var(--gray-4);
    max-width: 560px;
    line-height: 1.55;
    margin-bottom: 36px;
}
.sfv2-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.sfv2-hero__trust {
    display: flex; gap: 32px; flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid rgba(24,119,135,0.1);
}
.sfv2-trust-item { display: flex; flex-direction: column; gap: 2px; }
.sfv2-trust-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--blue-deep);
    line-height: 1;
}
.sfv2-trust-num sup { color: var(--orange); font-size: 18px; }
.sfv2-trust-num .sfv2-symbol { color: var(--orange); }
.sfv2-trust-label {
    font-size: 12px;
    color: var(--gray-4);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 500;
}

/* Hero photo (image accueilSF) */
.sfv2-hero__visual {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 4/5;
    margin-left: auto;
    justify-self: end;
}
.sfv2-hero__photo {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(24,119,135,0.4);
    transform: rotate(-3deg);
    transition: transform 0.6s var(--ease-out);
    background: var(--blue-deep);
}
.sfv2-hero__visual:hover .sfv2-hero__photo { transform: rotate(-1deg) scale(1.01); }
.sfv2-hero__photo .sfv2-hero__img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center right;
    display: block;
    max-width: none;
}
.sfv2-hero__photo-tag {
    position: absolute;
    top: 24px; left: 24px;
    z-index: 2;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(13,77,88,0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.15);
}
/* Legacy shield (no longer rendered) */
.sfv2-shield {
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(24,119,135,0.4);
    transform: rotate(-3deg);
    transition: transform 0.6s var(--ease-out);
}
.sfv2-hero__visual:hover .sfv2-shield { transform: rotate(-1deg) scale(1.01); }
.sfv2-shield__pattern {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,107,26,0.18) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255,107,26,0.12) 0%, transparent 50%);
}
.sfv2-shield__grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}
.sfv2-shield__content {
    position: absolute; inset: 0;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--cream);
}
.sfv2-shield__tag {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange-bright);
    font-weight: 600;
}
.sfv2-shield__svg {
    width: 80%;
    margin: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}
.sfv2-shield__meta {
    display: flex; justify-content: space-between;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(250,247,242,0.7);
}
.sfv2-shield__meta strong { color: var(--cream); font-weight: 600; }

.sfv2-hero__card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 18px 22px;
    box-shadow: 0 20px 40px rgba(24,119,135,0.15);
    display: flex;
    gap: 14px;
    align-items: center;
    border: 1px solid rgba(24,119,135,0.06);
    z-index: 2;
}
.sfv2-hero__card--1 {
    bottom: -20px; left: -32px;
    animation: sfv2-float 6s ease-in-out infinite;
}
.sfv2-hero__card--2 {
    top: 8%; right: -28px;
    animation: sfv2-float 7s ease-in-out infinite reverse;
}
@keyframes sfv2-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.sfv2-hero__card-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}
.sfv2-hero__card--1 .sfv2-hero__card-icon { background: var(--orange-soft); color: var(--orange); }
.sfv2-hero__card--2 .sfv2-hero__card-icon { background: var(--blue-light); color: var(--blue-electric); }
.sfv2-hero__card-text { display: flex; flex-direction: column; gap: 2px; }
.sfv2-hero__card-title { font-weight: 700; font-size: 14px; color: var(--blue-deep); }
.sfv2-hero__card-sub { font-size: 12px; color: var(--gray-4); }

@media (max-width: 1024px) {
    .sfv2-hero__visual { max-width: 380px; margin: 0 auto; }
    .sfv2-hero__card--1 { left: -16px; }
    .sfv2-hero__card--2 { right: -16px; }
}

/* === Ticker === */
.sfv2-ticker-section {
    background: var(--blue-deep);
    color: var(--cream);
    padding: 28px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.sfv2-ticker-label {
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(250,247,242,0.5);
    margin-bottom: 18px;
    padding: 0 32px;
}
.sfv2-ticker {
    display: flex;
    animation: sfv2-ticker 40s linear infinite;
    width: max-content;
    gap: 80px;
}
.sfv2-ticker-item {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: rgba(250,247,242,0.4);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
}
.sfv2-ticker-item::after {
    content: '★';
    color: var(--orange);
    font-size: 14px;
    margin-left: 80px;
}
@keyframes sfv2-ticker {
    to { transform: translateX(-50%); }
}

/* === Stats === */
.sfv2-stats {
    background: var(--cream);
    padding: 60px 32px;
    border-bottom: 1px solid rgba(24,119,135,0.08);
}
.sfv2-stats__grid {
    max-width: 1400px; margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
@media (max-width: 900px) { .sfv2-stats__grid { grid-template-columns: repeat(2, 1fr); } }

.sfv2-stat {
    padding: 32px;
    border-right: 1px solid rgba(24,119,135,0.1);
    position: relative;
    transition: background 0.3s;
}
.sfv2-stat:last-child { border-right: none; }
@media (max-width: 900px) {
    .sfv2-stat:nth-child(2) { border-right: none; }
    .sfv2-stat:nth-child(1), .sfv2-stat:nth-child(2) { border-bottom: 1px solid rgba(24,119,135,0.1); }
}
.sfv2-stat:hover { background: white; }
.sfv2-stat__num {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 500;
    color: var(--blue-deep);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
}
.sfv2-stat__num .sfv2-symbol { color: var(--orange); font-size: 0.5em; margin-left: 2px; font-weight: 400; }
.sfv2-stat__label { font-size: 13px; color: var(--gray-4); font-weight: 500; line-height: 1.4; }

/* === Sections shared === */
.sfv2-section { padding: 120px 32px; position: relative; }
@media (max-width: 768px) { .sfv2-section { padding: 80px 24px; } }
.sfv2-container { max-width: 1400px; margin: 0 auto; }

.sfv2-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 20px;
}
.sfv2-eyebrow::before {
    content: '';
    width: 32px; height: 1.5px;
    background: var(--orange);
}
.sfv2-eyebrow--center { justify-content: center; }
.sfv2-eyebrow--light { color: var(--orange-bright); }
.sfv2-eyebrow--light::before { background: var(--orange-bright); }

body.sfv2 .sfv2-section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: var(--blue-deep);
    margin-bottom: 24px;
    font-variation-settings: "opsz" 144;
}
body.sfv2 .sfv2-section-title em { font-style: italic; color: var(--orange); font-weight: 400; }
.sfv2-section-title--center { text-align: center; }
.sfv2-section-intro {
    font-size: 18px;
    color: var(--gray-4);
    max-width: 640px;
    line-height: 1.55;
}
.sfv2-section-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 72px;
}
@media (max-width: 900px) {
    .sfv2-section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
}

/* === Solutions === */
.sfv2-solutions { background: var(--cream); }
.sfv2-solutions__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}
@media (max-width: 1024px) { .sfv2-solutions__grid { grid-template-columns: repeat(6, 1fr); } }
@media (max-width: 600px) { .sfv2-solutions__grid { grid-template-columns: 1fr; } }

body.sfv2 a.sfv2-sol-card {
    background: white;
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid rgba(24,119,135,0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    text-decoration: none;
    color: inherit;
}
.sfv2-sol-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}
body.sfv2 a.sfv2-sol-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -12px rgba(24,119,135,0.25);
    border-color: var(--blue-deep);
}
.sfv2-sol-card:hover::before { opacity: 1; }
.sfv2-sol-card:hover .sfv2-sol__num,
.sfv2-sol-card:hover .sfv2-sol__title,
.sfv2-sol-card:hover .sfv2-sol__desc,
.sfv2-sol-card:hover .sfv2-sol__link { color: var(--cream); }
.sfv2-sol-card:hover .sfv2-sol__icon { background: #ffffff; color: var(--orange); }
.sfv2-sol-card > * { position: relative; z-index: 1; }

.sfv2-sol--large { grid-column: span 6; min-height: 380px; }
.sfv2-sol--medium { grid-column: span 6; }
.sfv2-sol--small { grid-column: span 4; }
.sfv2-sol--tiny-half { grid-column: span 6; min-height: 280px; }

@media (max-width: 1024px) {
    .sfv2-sol--large, .sfv2-sol--medium, .sfv2-sol--small, .sfv2-sol--tiny-half { grid-column: span 6; }
}
@media (max-width: 600px) {
    .sfv2-sol--large, .sfv2-sol--medium, .sfv2-sol--small, .sfv2-sol--tiny-half { grid-column: span 1; min-height: auto; }
}

.sfv2-sol__num {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--orange);
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
    transition: color 0.4s;
}
.sfv2-sol__icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--orange-soft);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background 0.4s, color 0.4s;
    font-size: 22px;
}
body.sfv2 .sfv2-sol__title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 500;
    color: var(--blue-deep);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 12px;
    transition: color 0.4s;
}
.sfv2-sol--large .sfv2-sol__title { font-size: 32px; }
.sfv2-sol__desc {
    font-size: 14.5px;
    color: var(--gray-4);
    line-height: 1.55;
    margin-bottom: 24px;
    transition: color 0.4s;
    flex-grow: 1;
}
.sfv2-sol__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue-deep);
    letter-spacing: 0.02em;
    margin-top: auto;
    transition: color 0.4s, gap 0.3s;
}
.sfv2-sol-card:hover .sfv2-sol__link i { transform: translateX(4px); }
.sfv2-sol__link i { transition: transform 0.3s; }

/* === About === */
.sfv2-about {
    background: var(--blue-deep);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}
.sfv2-about::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,107,26,0.15) 0%, transparent 60%);
    pointer-events: none;
}
.sfv2-about__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}
@media (max-width: 1024px) {
    .sfv2-about__grid { grid-template-columns: 1fr; gap: 48px; }
}
.sfv2-about .sfv2-eyebrow { color: var(--orange-bright); }
.sfv2-about .sfv2-eyebrow::before { background: var(--orange-bright); }
body.sfv2 .sfv2-about .sfv2-section-title { color: var(--cream); }
body.sfv2 .sfv2-about .sfv2-section-title em { color: var(--orange-bright); }
.sfv2-about__text { font-size: 17px; color: rgba(250,247,242,0.75); line-height: 1.65; margin-bottom: 28px; }
.sfv2-about__text strong { color: var(--cream); font-weight: 600; }

.sfv2-about__features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 36px; }
@media (max-width: 600px) { .sfv2-about__features { grid-template-columns: 1fr; } }
.sfv2-about__feat {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transition: background 0.3s, border-color 0.3s;
    color: var(--cream);
    font-size: 14px;
    line-height: 1.4;
}
.sfv2-about__feat:hover { background: rgba(255,107,26,0.08); border-color: rgba(255,107,26,0.3); }
.sfv2-about__check {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--blue-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 800;
}

.sfv2-about__visual {
    position: relative;
    width: 100%;
    max-width: 540px;
    aspect-ratio: 1/1;
    margin-left: auto;
    justify-self: end;
}
.sfv2-about__img {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    background: var(--blue-deep);
}
.sfv2-about__bg-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
/* Plus d'overlay : image pure (Lucile a demandé de retirer les textes,
   donc plus besoin d'assombrir pour la lisibilité) */
.sfv2-about__img-overlay {
    position: absolute; inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 36px;
    z-index: 2;
}
.sfv2-about__quote {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.2;
    color: var(--cream);
    letter-spacing: -0.02em;
    max-width: 380px;
}
.sfv2-about__open-quote { color: var(--orange); font-size: 50px; line-height: 0; }
.sfv2-about__quote-author {
    display: flex; align-items: center; gap: 14px;
}
.sfv2-about__quote-pic {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-bright) 100%);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    color: var(--blue-deep);
    font-family: var(--font-display);
}
.sfv2-about__quote-name { font-weight: 700; font-size: 14px; color: var(--cream); }
.sfv2-about__quote-role { font-size: 12px; color: rgba(250,247,242,0.6); letter-spacing: 0.04em; text-transform: uppercase; }

.sfv2-about__stat-card {
    position: absolute;
    bottom: -20px; right: -20px;
    background: var(--orange);
    color: var(--blue-deep);
    padding: 24px 28px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    z-index: 2;
}
.sfv2-about__stat-num {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
}
.sfv2-about__stat-label { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px; }

/* === Process === */
.sfv2-process { background: var(--cream); }
.sfv2-process__timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.sfv2-process__timeline::before {
    content: '';
    position: absolute;
    top: 32px; left: 5%; right: 5%;
    height: 2px;
    background: linear-gradient(90deg, var(--orange) 0%, var(--blue-mid) 100%);
    opacity: 0.2;
    z-index: 0;
}
@media (max-width: 900px) {
    .sfv2-process__timeline { grid-template-columns: 1fr 1fr; }
    .sfv2-process__timeline::before { display: none; }
}
@media (max-width: 600px) {
    .sfv2-process__timeline { grid-template-columns: 1fr; }
}
.sfv2-process__step { position: relative; }
.sfv2-process__num {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--cream);
    border: 2px solid var(--blue-deep);
    color: var(--blue-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transition: background 0.3s, color 0.3s, transform 0.4s var(--ease-out);
}
.sfv2-process__step:hover .sfv2-process__num {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--cream);
    transform: scale(1.08);
}
body.sfv2 .sfv2-process__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--blue-deep);
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}
.sfv2-process__desc {
    font-size: 14.5px;
    color: var(--gray-4);
    line-height: 1.55;
}

/* === Parallaxe pleine largeur (man black) - vrai fond fixe sans overlay === */
.sfv2-parallax {
    position: relative;
    width: 100%;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.sfv2-parallax__content {
    position: relative;
    text-align: center;
    padding: 80px 32px;
    max-width: 800px;
}
/* iOS Safari ne supporte pas bien background-attachment fixed → fallback scroll */
@media (hover: none) and (pointer: coarse) {
    .sfv2-parallax { background-attachment: scroll; }
}
.sfv2-parallax__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 32px;
    max-width: 800px;
    color: var(--cream);
}
.sfv2-parallax__text {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.3;
    color: var(--cream);
    margin: 0;
    letter-spacing: -0.01em;
}
@media (hover: none) and (pointer: coarse) {
    /* iOS Safari ne supporte pas bien background-attachment fixed */
    .sfv2-parallax { background-attachment: scroll; }
}

/* === Agencies === */
.sfv2-agencies { background: white; }
.sfv2-agencies__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
@media (max-width: 900px) { .sfv2-agencies__grid { grid-template-columns: 1fr; } }
.sfv2-agency {
    background: var(--cream);
    border-radius: 24px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s var(--ease-out);
    border: 1px solid rgba(24,119,135,0.08);
}
.sfv2-agency:hover { transform: translateY(-4px); }
.sfv2-agency::after {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,26,0.08) 0%, transparent 70%);
    transition: transform 0.6s var(--ease-out);
}
.sfv2-agency:hover::after { transform: scale(1.5); }

.sfv2-agency__loc {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
}
body.sfv2 .sfv2-agency__name {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 500;
    color: var(--blue-deep);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 20px;
    position: relative;
}
.sfv2-agency__region {
    font-size: 14px;
    color: var(--gray-4);
    margin-bottom: 32px;
    position: relative;
}
.sfv2-agency__info { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; position: relative; }
.sfv2-agency__row { display: flex; gap: 14px; align-items: flex-start; }
.sfv2-agency__icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: white;
    border: 1px solid rgba(24,119,135,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blue-deep);
}
.sfv2-agency__text { font-size: 14.5px; color: var(--blue-deep); line-height: 1.5; }
.sfv2-agency__text strong { font-weight: 600; }
.sfv2-agency__text small { display: block; color: var(--gray-4); font-size: 13px; }

/* === Testimonials (fond crème, cards blanches) === */
.sfv2-testimonials {
    background: var(--cream);
    overflow: hidden;
    position: relative;
}
.sfv2-testimonials__head { text-align: center; margin-bottom: 56px; position: relative; }
.sfv2-testimonials__head .sfv2-eyebrow { justify-content: center; color: var(--orange); }
.sfv2-testimonials__head .sfv2-eyebrow::before { background: var(--orange); }
body.sfv2 .sfv2-testimonials .sfv2-section-title { color: var(--blue-deep); }
body.sfv2 .sfv2-testimonials .sfv2-section-title em { color: var(--orange); }
.sfv2-google-rating {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid rgba(24,119,135,0.08);
    padding: 12px 22px;
    border-radius: 999px;
    margin-top: 24px;
    box-shadow: 0 4px 12px rgba(24,119,135,0.04);
}
.sfv2-google-rating__stars { color: var(--orange); letter-spacing: 1px; font-size: 14px; }
.sfv2-google-rating strong { color: var(--blue-deep); font-weight: 700; }
.sfv2-google-rating span { color: var(--gray-4); font-size: 14px; }

.sfv2-testimonials__marquee {
    display: flex;
    gap: 20px;
    width: max-content;
    margin-bottom: 20px;
    padding: 0 32px;
}
.sfv2-testimonials__marquee--right {
    animation: sfv2-marquee 60s linear infinite;
}
.sfv2-testimonials__marquee--left {
    animation: sfv2-marquee-rev 70s linear infinite;
}
@keyframes sfv2-marquee {
    to { transform: translateX(-50%); }
}
@keyframes sfv2-marquee-rev {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}
.sfv2-testimonial {
    flex: 0 0 380px;
    background: #fff;
    padding: 28px 28px 24px;
    border-radius: 20px;
    border: 1px solid rgba(24,119,135,0.08);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 6px 20px -10px rgba(24,119,135,0.12);
}
.sfv2-testimonial:hover {
    transform: translateY(-4px);
    border-color: var(--orange);
    box-shadow: 0 16px 32px -16px rgba(24,119,135,0.18);
}
.sfv2-testimonial__stars {
    color: var(--orange);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.sfv2-testimonial__text {
    font-size: 15.5px;
    color: var(--blue-deep);
    line-height: 1.55;
    margin-bottom: 20px;
    font-weight: 500;
}
.sfv2-testimonial__author { display: flex; align-items: center; gap: 12px; }
.sfv2-testimonial__avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-mid), var(--blue-deep));
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
}
.sfv2-testimonial__name { font-weight: 700; font-size: 13px; color: var(--blue-deep); }
.sfv2-testimonial__meta { font-size: 12px; color: var(--gray-4); }

/* === CTA === */
.sfv2-cta {
    background: var(--blue-deep);
    position: relative;
    overflow: hidden;
}
.sfv2-cta__bg-text {
    position: absolute;
    bottom: -40px; left: -20px; right: -20px;
    font-family: var(--font-display);
    font-size: clamp(120px, 18vw, 280px);
    font-weight: 600;
    color: rgba(255,255,255,0.03);
    letter-spacing: -0.06em;
    line-height: 0.85;
    white-space: nowrap;
    pointer-events: none;
}
.sfv2-cta__inner {
    position: relative;
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
}
body.sfv2 .sfv2-cta__title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 500;
    color: var(--cream);
    letter-spacing: -0.035em;
    line-height: 1;
    margin-bottom: 28px;
    font-variation-settings: "opsz" 144;
}
body.sfv2 .sfv2-cta__title em { font-style: italic; color: var(--orange-bright); font-weight: 400; }
.sfv2-cta__text {
    font-size: 18px;
    color: rgba(250,247,242,0.7);
    line-height: 1.55;
    max-width: 560px;
    margin: 0 auto 36px;
}
.sfv2-cta__buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* === Footer V2 === */
body.sfv2 #site-footer.sfv2-footer {
    background: var(--blue-night);
    color: var(--cream);
    padding: 80px 32px 32px;
}
.sfv2-footer__grid {
    max-width: 1400px; margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 64px;
}
@media (max-width: 900px) { .sfv2-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .sfv2-footer__grid { grid-template-columns: 1fr; } }

.sfv2-logo--footer { color: var(--cream); margin-bottom: 20px; display: inline-flex; align-items: center; }
.sfv2-logo--footer .sfv2-logo__sub { color: rgba(250,247,242,0.5); }
body.sfv2 .sfv2-logo--footer .sfv2-logo__text { color: var(--cream); }
body.sfv2 .sfv2-logo--footer .custom-logo,
body.sfv2 .sfv2-logo--footer .sfv2-logo__img {
    height: 56px; max-height: 56px; max-width: 220px; width: auto;
    object-fit: contain; display: block;
}
@media (max-width: 600px) {
    body.sfv2 .sfv2-logo--footer .custom-logo,
    body.sfv2 .sfv2-logo--footer .sfv2-logo__img { height: 44px; max-height: 44px; max-width: 180px; }
}
.sfv2-footer__desc {
    font-size: 14px;
    color: rgba(250,247,242,0.6);
    line-height: 1.55;
    max-width: 320px;
    margin-bottom: 24px;
}
.sfv2-footer__cnaps {
    font-size: 11px;
    color: rgba(250,247,242,0.4);
    line-height: 1.5;
    background: rgba(255,255,255,0.04);
    border-left: 2px solid var(--orange);
    padding: 12px 14px;
    border-radius: 0 8px 8px 0;
}
.sfv2-footer__cnaps strong { color: var(--cream); display: block; margin-bottom: 4px; }

body.sfv2 .sfv2-footer__col h4 {
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange-bright);
    font-weight: 700;
    margin-bottom: 20px;
}
.sfv2-footer__menu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.sfv2-footer__menu li { list-style: none; }
.sfv2-footer__menu a {
    font-size: 14px;
    color: rgba(250,247,242,0.7);
    transition: color 0.2s, transform 0.3s;
    display: inline-block;
    text-decoration: none;
}
.sfv2-footer__menu a:hover { color: var(--orange-bright); transform: translateX(4px); }

.sfv2-footer__contact-item { font-size: 14px; color: rgba(250,247,242,0.7); margin-bottom: 12px; line-height: 1.5; }
.sfv2-footer__contact-item strong { color: var(--cream); display: block; margin-bottom: 2px; font-weight: 600; }
.sfv2-footer__contact-item a { color: rgba(250,247,242,0.7); text-decoration: none; }
.sfv2-footer__contact-item a:hover { color: var(--orange-bright); }

.sfv2-footer__bottom {
    max-width: 1400px; margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(250,247,242,0.4);
}
.sfv2-footer__bottom a { transition: color 0.2s; color: rgba(250,247,242,0.6); text-decoration: none; }
.sfv2-footer__bottom a:hover { color: var(--orange-bright); }
.sfv2-footer__legal { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }

/* Hide global theme footer columns when sfv2 footer is rendered */
body.sfv2 .footer-container { display: none !important; }

@media (prefers-reduced-motion: reduce) {
    body.sfv2 *, body.sfv2 *::before, body.sfv2 *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   V2 - PAGE HERO (pages internes)
   ============================================ */
body.sfv2 .sfv2-page-hero {
    position: relative;
    padding: 60px 32px 80px;
    overflow: hidden;
    background: var(--cream);
    margin-top: 0 !important;
}
/* Override legacy .page-hero margin-top from critical.css that creates a gap below the sticky header */
body.sfv2 .page-hero { margin-top: 0 !important; background-color: transparent !important; }
body.sfv2 .sfv2-agence-hero { margin-top: 0 !important; }
body.sfv2 .sfv2-sol-hero { margin-top: 0 !important; }
body.sfv2 .sfv2-page-hero__bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(255,107,26,0.06) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 0% 100%, rgba(24,119,135,0.04) 0%, transparent 60%);
    pointer-events: none;
}
body.sfv2 .sfv2-page-hero__bg::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(24,119,135,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(24,119,135,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 80%);
}
body.sfv2 .sfv2-page-hero__inner {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
}
body.sfv2 .sfv2-page-hero__inner:has(.sfv2-page-hero__visual) { grid-template-columns: 1.2fr 1fr; }
body.sfv2 .sfv2-page-hero:not(:has(.sfv2-page-hero__visual)) .sfv2-page-hero__inner { grid-template-columns: 1fr; max-width: 980px; }
@media (max-width: 1024px) {
    body.sfv2 .sfv2-page-hero__inner { grid-template-columns: 1fr; gap: 48px; }
    body.sfv2 .sfv2-page-hero { padding: 40px 24px 60px; }
}

body.sfv2 .sfv2-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 20px;
    color: var(--gray-4);
}
body.sfv2 .sfv2-breadcrumb a {
    color: var(--gray-4);
    text-decoration: none;
    transition: color 0.2s;
}
body.sfv2 .sfv2-breadcrumb a:hover { color: var(--orange); }
body.sfv2 .sfv2-breadcrumb__sep { color: rgba(24,119,135,0.3); }
body.sfv2 .sfv2-breadcrumb__current { color: var(--blue-deep); font-weight: 600; }

body.sfv2 .sfv2-page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5.5vw, 72px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.035em;
    color: var(--blue-deep);
    margin: 0 0 24px 0;
    font-variation-settings: "opsz" 144;
}
body.sfv2 .sfv2-page-hero__title em,
body.sfv2 .sfv2-page-hero__title .highlight {
    font-style: italic;
    font-weight: 400;
    color: var(--orange);
}
body.sfv2 .sfv2-page-hero__subtitle {
    font-size: 18px;
    color: var(--gray-4);
    line-height: 1.55;
    margin: 0 0 28px 0;
    max-width: 620px;
}
body.sfv2 .sfv2-page-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

body.sfv2 .sfv2-page-hero__visual {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4/5;
    margin-left: auto;
    justify-self: end;
    padding: 14px;
}
body.sfv2 .sfv2-page-hero__visual::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1.5px solid rgba(24,119,135,0.18);
    border-radius: 28px;
    transform: rotate(-1deg);
    pointer-events: none;
    transition: transform 0.6s var(--ease-out), border-color 0.4s;
    z-index: 0;
}
body.sfv2 .sfv2-page-hero__visual::after {
    content: '';
    position: absolute;
    inset: 22px;
    border: 1px dashed rgba(255,107,26,0.28);
    border-radius: 20px;
    transform: rotate(-2deg);
    pointer-events: none;
    transition: transform 0.6s var(--ease-out);
    z-index: 0;
}
body.sfv2 .sfv2-page-hero__visual:hover::before { transform: rotate(0deg); border-color: rgba(255,107,26,0.4); }
body.sfv2 .sfv2-page-hero__visual:hover::after { transform: rotate(-1deg); }
body.sfv2 .sfv2-page-hero__photo {
    position: absolute;
    inset: 14px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(24,119,135,0.4);
    transform: rotate(-1.5deg);
    transition: transform 0.6s var(--ease-out);
    background: var(--blue-deep);
    z-index: 1;
    border: 6px solid #fff;
}
body.sfv2 .sfv2-page-hero__visual:hover .sfv2-page-hero__photo { transform: rotate(-0.5deg) scale(1.015); }
body.sfv2 .sfv2-page-hero__img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    display: block;
    max-width: none;
}

/* Hide legacy hero-bg-img / hero-overlay if they accidentally render */
body.sfv2 .sfv2-page-hero .hero-bg-img,
body.sfv2 .sfv2-page-hero .hero-overlay { display: none !important; }

/* ============================================
   V2 - SKIN universel pour les sections du starter
   On override les classes existantes (.section, .section-title, .container, .cards-grid, ...)
   pour qu'elles adoptent le look V2 sur les pages internes.
   ============================================ */

body.sfv2 main#main-content > section.section,
body.sfv2 main#main-content > section.page-content-section {
    background: var(--cream);
    padding: 80px 32px;
}
body.sfv2 main#main-content > section.section + section.section,
body.sfv2 main#main-content > section.section.section-alt {
    background: #fff;
}
body.sfv2 main#main-content > section.section .container,
body.sfv2 main#main-content > section.page-content-section .container {
    max-width: 1280px;
    margin: 0 auto;
}

body.sfv2 .section-title,
body.sfv2 main h2.section-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.025em;
    color: var(--blue-deep);
    font-variation-settings: "opsz" 144;
}
body.sfv2 .section-title .highlight,
body.sfv2 .section-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--orange);
    background: none;
    -webkit-text-fill-color: var(--orange);
}
body.sfv2 .section-subtitle {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--gray-4);
    line-height: 1.55;
    max-width: 720px;
    margin-top: 14px;
}
body.sfv2 .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 16px;
    background: none;
    padding: 0;
    border: none;
}
body.sfv2 .section-badge::before {
    content: '';
    width: 32px; height: 1.5px;
    background: var(--orange);
}

/* Headings dans le content (the_content) */
body.sfv2 .page-content-section h2,
body.sfv2 .page-content-section h3,
body.sfv2 .page-content-section h4 {
    font-family: var(--font-display);
    color: var(--blue-deep);
    font-weight: 500;
    letter-spacing: -0.02em;
}
body.sfv2 .page-content-section h2 { font-size: clamp(28px, 3.5vw, 42px); margin-top: 48px; margin-bottom: 18px; }
body.sfv2 .page-content-section h3 { font-size: clamp(22px, 2.6vw, 30px); margin-top: 36px; margin-bottom: 14px; }
body.sfv2 .page-content-section h4 { font-size: 20px; margin-top: 28px; margin-bottom: 12px; }
body.sfv2 .page-content-section p { color: var(--gray-4); line-height: 1.7; margin-bottom: 18px; }
body.sfv2 .page-content-section a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }
body.sfv2 .page-content-section a:hover { color: var(--orange-bright); }
body.sfv2 .page-content-section ul,
body.sfv2 .page-content-section ol { color: var(--gray-4); margin: 16px 0 24px; padding-left: 22px; }
body.sfv2 .page-content-section li { margin-bottom: 8px; line-height: 1.6; }
body.sfv2 .page-content-section ul li::marker { color: var(--orange); }
body.sfv2 .page-content-section blockquote {
    border-left: 3px solid var(--orange);
    padding: 8px 0 8px 24px;
    margin: 24px 0;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 22px;
    color: var(--blue-deep);
    line-height: 1.4;
}
body.sfv2 .page-content-section img { border-radius: 12px; }

/* Cards */
body.sfv2 .cards-grid,
body.sfv2 .grid-cards,
body.sfv2 .cards-layout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
body.sfv2 .card,
body.sfv2 .card-clickable {
    background: #fff;
    border-radius: 20px;
    padding: 28px 26px;
    border: 1px solid rgba(24,119,135,0.08);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
    color: var(--blue-deep);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    position: relative;
}
body.sfv2 a.card-clickable:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -12px rgba(24,119,135,0.18);
    border-color: var(--orange);
}
body.sfv2 .card .icon,
body.sfv2 .card-clickable .icon,
body.sfv2 .card__icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--orange-soft);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
    transition: background 0.3s, color 0.3s;
    background-image: none;
}
body.sfv2 a.card-clickable:hover .icon,
body.sfv2 a.card-clickable:hover .card__icon {
    background: var(--blue-deep);
    color: #fff;
}
body.sfv2 .card h3,
body.sfv2 .card-clickable h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--blue-deep);
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin: 0 0 10px 0;
}
body.sfv2 .card p,
body.sfv2 .card-clickable p {
    color: var(--gray-4);
    font-size: 14.5px;
    line-height: 1.55;
    margin: 0 0 16px 0;
    flex-grow: 1;
}
body.sfv2 .card-cta,
body.sfv2 .card .cta-link,
body.sfv2 .card-clickable .cta-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue-deep);
    margin-top: auto;
    transition: gap 0.3s;
}
body.sfv2 a.card-clickable:hover .cta-link { gap: 12px; color: var(--orange); }

/* CTA section générique (template-parts/section-cta.php) */
body.sfv2 main section.cta-section,
body.sfv2 .cta-block {
    background: var(--blue-deep) !important;
    color: var(--cream);
    padding: 80px 32px;
    text-align: center;
    border-radius: 24px;
}
body.sfv2 main section.cta-section .container,
body.sfv2 .cta-block .container { max-width: 920px; }
body.sfv2 main section.cta-section h2,
body.sfv2 main section.cta-section .section-title,
body.sfv2 .cta-block .section-title { color: var(--cream); }
body.sfv2 main section.cta-section .section-title em,
body.sfv2 .cta-block .section-title em { color: var(--orange-bright); }
body.sfv2 main section.cta-section .section-subtitle { color: rgba(250,247,242,0.7); }

/* FAQ */
body.sfv2 .faq-section { background: #fff; }
body.sfv2 details.faq-item,
body.sfv2 .faq-item {
    background: #fff;
    border: 1px solid rgba(24,119,135,0.1);
    border-radius: 16px;
    padding: 0;
    margin-bottom: 12px;
    transition: border-color 0.3s, box-shadow 0.3s;
    overflow: hidden;
}
body.sfv2 details.faq-item[open],
body.sfv2 .faq-item[open] {
    border-color: var(--orange);
    box-shadow: 0 12px 32px -16px rgba(255,107,26,0.25);
}
body.sfv2 .faq-item summary,
body.sfv2 details.faq-item > summary {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--blue-deep);
    padding: 22px 28px;
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: color 0.3s;
}
body.sfv2 details.faq-item > summary::-webkit-details-marker { display: none; }
body.sfv2 details.faq-item > summary::after {
    content: '+';
    position: absolute;
    right: 28px; top: 50%;
    transform: translateY(-50%);
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--orange-soft);
    color: var(--orange);
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.3s;
}
body.sfv2 details.faq-item[open] > summary::after { transform: translateY(-50%) rotate(45deg); background: var(--orange); color: #fff; }
body.sfv2 .faq-item .faq-answer,
body.sfv2 .faq-item > div:not(summary):not(details > summary) {
    padding: 0 28px 22px;
    color: var(--gray-4);
    line-height: 1.6;
    font-size: 15px;
}

/* Numbers / Stats reused on internal pages */
body.sfv2 .numbers-grid,
body.sfv2 .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0;
}
body.sfv2 .numbers-grid .number,
body.sfv2 .stats-grid .stat {
    padding: 32px;
    border-right: 1px solid rgba(24,119,135,0.1);
    background: var(--cream);
    transition: background 0.3s;
}
body.sfv2 .numbers-grid .number:last-child,
body.sfv2 .stats-grid .stat:last-child { border-right: none; }
body.sfv2 .numbers-grid .number:hover,
body.sfv2 .stats-grid .stat:hover { background: #fff; }
body.sfv2 .numbers-grid .number-value,
body.sfv2 .stats-grid .stat-num {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 500;
    color: var(--blue-deep);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
}
body.sfv2 .numbers-grid .number-label,
body.sfv2 .stats-grid .stat-label {
    font-size: 13px;
    color: var(--gray-4);
    font-weight: 500;
}

/* Text-image blocks */
body.sfv2 .text-image-grid,
body.sfv2 .text-image-section .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
@media (max-width: 900px) {
    body.sfv2 .text-image-grid,
    body.sfv2 .text-image-section .grid { grid-template-columns: 1fr; gap: 32px; }
}
body.sfv2 .text-image-section img,
body.sfv2 .text-image-grid img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    box-shadow: 0 20px 50px -20px rgba(24,119,135,0.25);
}
body.sfv2 .text-image-section .text h2,
body.sfv2 .text-image-grid .text h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    color: var(--blue-deep);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 18px;
}

/* Reviews/Testimonials marquee on internal pages */
body.sfv2 .reviews-marquee,
body.sfv2 .testimonials-section { background: var(--blue-deep); padding: 80px 0; overflow: hidden; }
body.sfv2 .reviews-marquee .review,
body.sfv2 .testimonial-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--cream);
    border-radius: 20px;
    padding: 28px;
    transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
body.sfv2 .reviews-marquee .review p,
body.sfv2 .testimonial-card p { color: var(--cream); }

/* Partners grid */
body.sfv2 .partners-grid,
body.sfv2 .partners-featured {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}
body.sfv2 .partner-card,
body.sfv2 .partners-grid .partner {
    background: #fff;
    border: 1px solid rgba(24,119,135,0.08);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.4s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}
body.sfv2 .partner-card:hover,
body.sfv2 .partners-grid .partner:hover {
    transform: translateY(-4px);
    border-color: var(--orange);
    box-shadow: 0 16px 40px -12px rgba(24,119,135,0.15);
}
body.sfv2 .partner-card img,
body.sfv2 .partners-grid .partner img {
    max-height: 80px;
    width: auto;
    margin: 0 auto 14px;
    filter: grayscale(0.3);
    transition: filter 0.3s;
}
body.sfv2 .partner-card:hover img,
body.sfv2 .partners-grid .partner:hover img { filter: grayscale(0); }

/* ============================================
   V2 - Framer-style components & animations
   ============================================ */
body.sfv2 .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
body.sfv2 .reveal.is-visible,
body.sfv2 .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
body.sfv2 .reveal-stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
body.sfv2 .reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
body.sfv2 .reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.06s; }
body.sfv2 .reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.12s; }
body.sfv2 .reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.18s; }
body.sfv2 .reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.24s; }
body.sfv2 .reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.30s; }
body.sfv2 .reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.36s; }
body.sfv2 .reveal-stagger.is-visible > *:nth-child(n+8) { transition-delay: 0.42s; }
body.sfv2 .reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }

/* Smooth back-to-top */
body.sfv2 .back-to-top {
    background: var(--orange);
    color: #fff;
    border-radius: 50%;
    transition: transform 0.3s, background 0.3s;
}
body.sfv2 .back-to-top:hover { background: var(--orange-bright); transform: translateY(-4px); }

/* Scroll progress bar */
.sfv2-scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--orange) 0%, var(--orange-bright) 100%);
    z-index: 9999;
    pointer-events: none;
    transition: width 0.1s linear;
}

/* ============================================
   V2 - PAGE CONTACT
   ============================================ */
body.sfv2 .contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: start;
}
@media (max-width: 900px) { body.sfv2 .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

body.sfv2 .contact-form-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(24,119,135,0.08);
    padding: 40px;
    box-shadow: 0 16px 40px -20px rgba(24,119,135,0.18);
}
body.sfv2 .contact-form-card h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 500;
    color: var(--blue-deep);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 24px;
}
body.sfv2 .contact-form-card__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 600px) { body.sfv2 .contact-form-card__grid { grid-template-columns: 1fr; } }
body.sfv2 .contact-form-card__field--full { grid-column: 1 / -1; }
body.sfv2 .contact-form-card__field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue-deep);
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}
body.sfv2 .contact-form-card__field label .req { color: var(--orange); margin-left: 2px; }
body.sfv2 .contact-form-card input,
body.sfv2 .contact-form-card textarea,
body.sfv2 .contact-form-card select {
    width: 100%;
    background: var(--cream);
    border: 1px solid rgba(24,119,135,0.15);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 15px;
    color: var(--blue-deep);
    font-family: var(--font-body);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
body.sfv2 .contact-form-card input:focus,
body.sfv2 .contact-form-card textarea:focus,
body.sfv2 .contact-form-card select:focus {
    outline: none;
    border-color: var(--orange);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255,107,26,0.12);
}
body.sfv2 .contact-form-card textarea { resize: vertical; min-height: 130px; }
body.sfv2 .contact-form-card__submit { margin-top: 24px; display: flex; justify-content: flex-end; }
body.sfv2 .contact-form-card button[type="submit"] {
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 14px rgba(255,107,26,0.35);
}
body.sfv2 .contact-form-card button[type="submit"]:hover {
    background: var(--orange-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,107,26,0.45);
}
body.sfv2 .contact-form-card__notice {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
}
body.sfv2 .contact-form-card__notice.is-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
body.sfv2 .contact-form-card__notice.is-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

body.sfv2 .contact-info {
    background: var(--blue-deep);
    color: var(--cream);
    border-radius: 24px;
    padding: 36px;
    position: relative;
    overflow: hidden;
}
body.sfv2 .contact-info::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(255,107,26,0.15) 0%, transparent 65%);
    pointer-events: none;
}
body.sfv2 .contact-info h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 22px;
    letter-spacing: -0.01em;
    position: relative;
}
body.sfv2 .contact-info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    align-items: flex-start;
    position: relative;
}
body.sfv2 .contact-info-item .icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255,107,26,0.18);
    color: var(--orange-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}
body.sfv2 .contact-info-item strong { color: var(--cream); font-weight: 600; display: block; margin-bottom: 2px; }
body.sfv2 .contact-info-item a { color: rgba(250,247,242,0.85); text-decoration: none; }
body.sfv2 .contact-info-item a:hover { color: var(--orange-bright); }
body.sfv2 .contact-info .offices-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--cream);
    margin-top: 28px;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}
body.sfv2 .offices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
@media (max-width: 600px) { body.sfv2 .offices-grid { grid-template-columns: 1fr; } }
body.sfv2 .office-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
body.sfv2 .office-card__pin {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: var(--orange);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
}
body.sfv2 .office-card__pin--paris { background: var(--blue-electric); }
body.sfv2 .office-card__city { font-weight: 700; color: var(--cream); font-size: 14px; display: block; }
body.sfv2 .office-card__addr { font-size: 13px; color: rgba(250,247,242,0.7); display: block; margin-top: 2px; line-height: 1.4; }
body.sfv2 .offices-map--inline {
    margin-top: 22px;
    height: 260px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
}

/* ============================================
   V2 - PAGE RECRUTEMENT
   ============================================ */
body.sfv2 .recrutement-form-card,
body.sfv2 form.recrutement-form,
body.sfv2 .recrutement-section form {
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(24,119,135,0.08);
    padding: 40px;
    box-shadow: 0 16px 40px -20px rgba(24,119,135,0.18);
}
body.sfv2 .recrutement-section input,
body.sfv2 .recrutement-section textarea,
body.sfv2 .recrutement-section select {
    width: 100%;
    background: var(--cream);
    border: 1px solid rgba(24,119,135,0.15);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 15px;
    color: var(--blue-deep);
    font-family: var(--font-body);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
body.sfv2 .recrutement-section input:focus,
body.sfv2 .recrutement-section textarea:focus,
body.sfv2 .recrutement-section select:focus {
    outline: none;
    border-color: var(--orange);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255,107,26,0.12);
}

/* Pages internes : forcer la nav menu items à apparaître propres */
body.sfv2 .nav-menu .menu-item-has-children > a::after {
    content: ' ▾';
    font-size: 10px;
    margin-left: 2px;
    color: var(--orange);
}

/* ============================================
   V2 - BLOG (liste + article)
   ============================================ */
body.sfv2 .blog-list,
body.sfv2 .posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}
body.sfv2 article.post,
body.sfv2 .blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(24,119,135,0.08);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}
body.sfv2 article.post:hover,
body.sfv2 .blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -16px rgba(24,119,135,0.18);
    border-color: var(--orange);
}
body.sfv2 article.post .post-thumbnail,
body.sfv2 .blog-card__image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--blue-light);
}
body.sfv2 article.post .post-thumbnail img,
body.sfv2 .blog-card__image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}
body.sfv2 article.post:hover .post-thumbnail img,
body.sfv2 .blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}
body.sfv2 article.post .entry-header,
body.sfv2 .blog-card__body {
    padding: 24px 26px 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
body.sfv2 article.post h2,
body.sfv2 article.post .entry-title,
body.sfv2 .blog-card__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--blue-deep);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 0 0 12px 0;
}
body.sfv2 article.post h2 a,
body.sfv2 .blog-card__title a { color: var(--blue-deep); text-decoration: none; }
body.sfv2 article.post h2 a:hover,
body.sfv2 .blog-card__title a:hover { color: var(--orange); }
body.sfv2 article.post .entry-meta,
body.sfv2 .blog-card__meta {
    font-size: 12px;
    color: var(--gray-3);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 10px;
}
body.sfv2 article.post .entry-summary,
body.sfv2 .blog-card__excerpt {
    color: var(--gray-4);
    font-size: 14.5px;
    line-height: 1.55;
    margin: 0 0 18px 0;
    flex-grow: 1;
}
body.sfv2 article.post .read-more,
body.sfv2 .blog-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--orange);
    margin-top: auto;
    transition: gap 0.3s;
}
body.sfv2 article.post:hover .read-more,
body.sfv2 .blog-card:hover .blog-card__cta { gap: 12px; }

/* Single post layout */
body.sfv2 article.post.single,
body.sfv2 .single-post-content {
    background: #fff;
    border-radius: 24px;
    padding: 48px;
    margin: 0 auto;
    max-width: 880px;
    border: 1px solid rgba(24,119,135,0.06);
    box-shadow: 0 16px 40px -24px rgba(24,119,135,0.18);
}
body.sfv2 article.post.single .entry-content,
body.sfv2 .single-post-content .entry-content { font-size: 17px; line-height: 1.75; color: var(--gray-4); }
body.sfv2 article.post.single .entry-content h2,
body.sfv2 .single-post-content h2 {
    font-family: var(--font-display);
    color: var(--blue-deep);
    font-weight: 500;
    margin: 36px 0 16px;
    font-size: clamp(24px, 3vw, 36px);
    letter-spacing: -0.02em;
}
body.sfv2 article.post.single .entry-content h3,
body.sfv2 .single-post-content h3 {
    font-family: var(--font-display);
    color: var(--blue-deep);
    font-weight: 500;
    margin: 28px 0 12px;
    font-size: 22px;
}
body.sfv2 article.post.single .entry-content a,
body.sfv2 .single-post-content a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }
body.sfv2 article.post.single .entry-content blockquote,
body.sfv2 .single-post-content blockquote {
    border-left: 3px solid var(--orange);
    padding: 12px 0 12px 24px;
    margin: 24px 0;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 22px;
    color: var(--blue-deep);
}
body.sfv2 article.post.single .entry-content img,
body.sfv2 .single-post-content img { border-radius: 14px; margin: 24px 0; }

/* Pagination */
body.sfv2 .pagination,
body.sfv2 .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
    flex-wrap: wrap;
}
body.sfv2 .pagination a,
body.sfv2 .pagination span,
body.sfv2 .nav-links a,
body.sfv2 .nav-links .page-numbers {
    padding: 10px 16px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(24,119,135,0.1);
    color: var(--blue-deep);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
body.sfv2 .pagination a:hover,
body.sfv2 .nav-links a:hover {
    background: var(--orange-soft);
    border-color: var(--orange);
    color: var(--orange);
}
body.sfv2 .pagination .current,
body.sfv2 .nav-links .current {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}

/* ============================================
   V2 - PAGE AGENCE (Le Mans / Paris) - design custom
   ============================================ */

/* Hero spécifique agence */
body.sfv2 .sfv2-agence-hero {
    position: relative;
    padding: 60px 32px 100px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 50% at 100% 0%, rgba(255,107,26,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 70% at 0% 100%, rgba(24,119,135,0.06) 0%, transparent 60%),
        var(--cream);
}
body.sfv2 .sfv2-agence-hero__grid-bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(24,119,135,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(24,119,135,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 0%, transparent 80%);
    pointer-events: none;
}
body.sfv2 .sfv2-agence-hero__breadcrumb {
    max-width: 1400px; margin: 0 auto 32px;
    display: flex; gap: 8px; align-items: center;
    font-size: 13px; color: var(--gray-4); font-weight: 500;
    position: relative;
}
body.sfv2 .sfv2-agence-hero__breadcrumb a { color: var(--gray-4); transition: color 0.2s; text-decoration: none; }
body.sfv2 .sfv2-agence-hero__breadcrumb a:hover { color: var(--orange); }
body.sfv2 .sfv2-agence-hero__breadcrumb .sep { color: var(--gray-3); }
body.sfv2 .sfv2-agence-hero__breadcrumb .current { color: var(--blue-deep); font-weight: 600; }

body.sfv2 .sfv2-agence-hero__inner {
    max-width: 1400px; margin: 0 auto;
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
    align-items: center;
}
@media (max-width: 1024px) {
    body.sfv2 .sfv2-agence-hero__inner { grid-template-columns: 1fr; gap: 48px; }
    body.sfv2 .sfv2-agence-hero { padding: 32px 24px 60px; }
}
body.sfv2 .sfv2-agence-hero__tag {
    display: inline-flex; align-items: center; gap: 10px;
    background: white;
    border: 1px solid rgba(24,119,135,0.1);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px; font-weight: 500;
    color: var(--blue-deep);
    margin-bottom: 28px;
    box-shadow: 0 4px 12px rgba(24,119,135,0.04);
}
body.sfv2 .sfv2-agence-hero__tag-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #10b981;
    animation: sfv2-pulse-green 2s infinite;
}
body.sfv2 .sfv2-agence-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(44px, 7vw, 96px);
    line-height: 0.92;
    font-weight: 500;
    letter-spacing: -0.04em;
    color: var(--blue-deep);
    margin-bottom: 28px;
    font-variation-settings: "opsz" 144;
}
body.sfv2 .sfv2-agence-hero h1 .accent {
    font-style: italic; font-weight: 400; color: var(--orange);
    position: relative; display: inline-block;
}
body.sfv2 .sfv2-agence-hero h1 .accent::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 0; right: 0;
    height: 10px;
    background: var(--orange-soft);
    z-index: -1;
    border-radius: 4px;
}
body.sfv2 .sfv2-agence-hero__lede {
    font-size: 19px;
    color: var(--gray-4);
    max-width: 540px;
    line-height: 1.55;
    margin-bottom: 36px;
}
body.sfv2 .sfv2-agence-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
body.sfv2 .sfv2-agence-hero__meta { display: flex; gap: 24px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid rgba(24,119,135,0.1); }
body.sfv2 .sfv2-agence-hero__meta-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--gray-4); font-weight: 500; }
body.sfv2 .sfv2-agence-hero__meta-item i { color: var(--orange); font-size: 16px; flex-shrink: 0; }

/* Postcard */
body.sfv2 .sfv2-postcard {
    position: relative;
    width: 100%;
    aspect-ratio: 4/4.6;
    max-width: 480px;
    margin-left: auto;
    justify-self: end;
}
body.sfv2 .sfv2-postcard__frame {
    position: absolute; inset: 0;
    background: linear-gradient(140deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(24,119,135,0.4);
    transform: rotate(-3deg);
    transition: transform 0.6s var(--ease-out);
}
body.sfv2 .sfv2-postcard:hover .sfv2-postcard__frame { transform: rotate(-1deg) scale(1.01); }
body.sfv2 .sfv2-postcard__pattern {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,107,26,0.18) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255,107,26,0.12) 0%, transparent 50%);
}
body.sfv2 .sfv2-postcard__grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}
body.sfv2 .sfv2-postcard__photo {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.35;
    z-index: 0;
}
body.sfv2 .sfv2-postcard__content {
    position: absolute; inset: 0;
    padding: 40px;
    display: flex; flex-direction: column; justify-content: space-between;
    color: var(--cream);
    z-index: 1;
}
body.sfv2 .sfv2-postcard__tag {
    font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--orange-bright); font-weight: 700;
}
body.sfv2 .sfv2-postcard__stamp {
    position: absolute;
    top: 30px; right: 30px;
    width: 80px; height: 80px;
    border: 2px dashed rgba(255,255,255,0.3);
    border-radius: 12px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transform: rotate(8deg);
    padding: 6px;
}
body.sfv2 .sfv2-postcard__stamp-num {
    font-family: var(--font-display);
    font-size: 28px; font-weight: 700;
    color: var(--orange-bright);
    line-height: 1;
}
body.sfv2 .sfv2-postcard__stamp-lbl {
    font-size: 8px; letter-spacing: 0.2em;
    color: rgba(250,247,242,0.7);
    text-transform: uppercase;
    margin-top: 4px;
}
body.sfv2 .sfv2-postcard__city {
    font-family: var(--font-display);
    font-size: clamp(56px, 7vw, 84px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.05em;
    color: var(--cream);
    font-variation-settings: "opsz" 144;
}
body.sfv2 .sfv2-postcard__city em { font-style: italic; color: var(--orange-bright); font-weight: 400; }
body.sfv2 .sfv2-postcard__divider { width: 100%; height: 1px; background: rgba(255,255,255,0.15); margin: 24px 0 20px; }
body.sfv2 .sfv2-postcard__coords { display: flex; gap: 24px; align-items: flex-end; }
body.sfv2 .sfv2-postcard__coords-block { flex: 1; }
body.sfv2 .sfv2-postcard__coords-lbl { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(250,247,242,0.5); margin-bottom: 4px; }
body.sfv2 .sfv2-postcard__coords-val { font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--cream); }

/* Floating cards autour de la postcard */
body.sfv2 .sfv2-float-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 20px 40px rgba(24,119,135,0.18);
    display: flex; gap: 12px; align-items: center;
    border: 1px solid rgba(24,119,135,0.06);
    z-index: 2;
}
body.sfv2 .sfv2-float-card--1 { bottom: -16px; left: -28px; animation: sfv2-float 6s ease-in-out infinite; }
body.sfv2 .sfv2-float-card--2 { top: 12%; right: -24px; animation: sfv2-float 7s ease-in-out infinite reverse; }
body.sfv2 .sfv2-float-card__icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}
body.sfv2 .sfv2-float-card--1 .sfv2-float-card__icon { background: var(--orange-soft); color: var(--orange); }
body.sfv2 .sfv2-float-card--2 .sfv2-float-card__icon { background: var(--blue-light); color: var(--blue-deep); }
body.sfv2 .sfv2-float-card__title { font-weight: 700; font-size: 13px; color: var(--blue-deep); display: block; }
body.sfv2 .sfv2-float-card__sub { font-size: 11px; color: var(--gray-4); display: block; }
@media (max-width: 1024px) {
    body.sfv2 .sfv2-postcard { max-width: 360px; margin: 0 auto; }
    body.sfv2 .sfv2-float-card--1 { left: -10px; }
    body.sfv2 .sfv2-float-card--2 { right: -10px; }
}

/* Stats strip */
body.sfv2 .sfv2-stats-strip {
    background: var(--blue-deep);
    color: var(--cream);
    padding: 60px 32px;
}
body.sfv2 .sfv2-stats-strip__grid {
    max-width: 1400px; margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
@media (max-width: 768px) { body.sfv2 .sfv2-stats-strip__grid { grid-template-columns: repeat(2, 1fr); } }
body.sfv2 .sfv2-stat-cell {
    padding: 28px;
    border-right: 1px solid rgba(255,255,255,0.08);
    position: relative;
}
body.sfv2 .sfv2-stat-cell:last-child { border-right: none; }
@media (max-width: 768px) {
    body.sfv2 .sfv2-stat-cell:nth-child(2) { border-right: none; }
    body.sfv2 .sfv2-stat-cell:nth-child(1),
    body.sfv2 .sfv2-stat-cell:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
}
body.sfv2 .sfv2-stat-cell__num {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 500;
    color: var(--cream);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 6px;
}
body.sfv2 .sfv2-stat-cell__num .symbol { color: var(--orange-bright); }
body.sfv2 .sfv2-stat-cell__lbl {
    font-size: 12px;
    color: rgba(250,247,242,0.6);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Split (intro + map sections) */
body.sfv2 .sfv2-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
@media (max-width: 1024px) { body.sfv2 .sfv2-split { grid-template-columns: 1fr; gap: 48px; } }

body.sfv2 .sfv2-split__img {
    width: 100%;
    aspect-ratio: 5/4;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(24,119,135,0.3);
}
body.sfv2 .sfv2-split__img::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 30% 30%, rgba(255,107,26,0.2) 0%, transparent 50%),
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 100% 100%, 32px 32px, 32px 32px;
}
body.sfv2 .sfv2-split__img-photo {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}
body.sfv2 .sfv2-split__img-photo + .sfv2-split__inner-card {
    background: linear-gradient(160deg, rgba(13,77,88,0.55) 0%, rgba(13,77,88,0.85) 100%);
}
body.sfv2 .sfv2-split__inner-card {
    position: absolute; inset: 0;
    padding: 40px;
    display: flex; flex-direction: column; justify-content: space-between;
    color: var(--cream);
    z-index: 1;
}
body.sfv2 .sfv2-split__inner-num {
    font-family: var(--font-display);
    font-size: clamp(80px, 10vw, 140px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.05em;
    color: var(--orange-bright);
}
body.sfv2 .sfv2-split__inner-num sup { font-size: 0.4em; }
body.sfv2 .sfv2-split__inner-lbl {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(250,247,242,0.7);
}
body.sfv2 .sfv2-split__inner-list { display: flex; flex-direction: column; gap: 10px; }
body.sfv2 .sfv2-split__inner-list-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px;
    color: rgba(250,247,242,0.85);
}
body.sfv2 .sfv2-split__inner-list-item::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
}

/* Coverage strip - bloc séparé sous le split (remplace l'overlay sur image) */
body.sfv2 .sfv2-coverage-strip {
    margin-top: 64px;
    padding: 40px 48px;
    background: linear-gradient(135deg, var(--blue-deep) 0%, #145e6c 100%);
    border-radius: 24px;
    display: grid;
    grid-template-columns: minmax(220px, 320px) 1fr;
    gap: 56px;
    align-items: center;
    color: var(--cream);
    box-shadow: 0 30px 60px -25px rgba(24,119,135,0.4);
    position: relative;
    overflow: hidden;
}
body.sfv2 .sfv2-coverage-strip::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 85% 110%, rgba(255,107,26,0.18) 0%, transparent 55%),
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 100% 100%, 32px 32px, 32px 32px;
    pointer-events: none;
}
body.sfv2 .sfv2-coverage-strip__hero,
body.sfv2 .sfv2-coverage-strip__list { position: relative; z-index: 1; }
body.sfv2 .sfv2-coverage-strip__lbl {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--orange-bright);
    font-weight: 600;
    margin-bottom: 8px;
}
body.sfv2 .sfv2-coverage-strip__num {
    font-family: var(--font-display);
    font-size: clamp(64px, 8vw, 110px);
    font-weight: 600;
    font-style: italic;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: 10px;
}
body.sfv2 .sfv2-coverage-strip__num sup {
    font-size: 0.22em;
    font-style: normal;
    font-family: var(--font-sans);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--orange-bright);
    margin-left: 10px;
    vertical-align: middle;
    top: -0.6em;
    position: relative;
}
body.sfv2 .sfv2-coverage-strip__sub {
    font-size: 14px;
    color: rgba(250,247,242,0.7);
    line-height: 1.5;
    max-width: 280px;
}
body.sfv2 .sfv2-coverage-strip__list {
    list-style: none;
    padding: 0; margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 32px;
}
body.sfv2 .sfv2-coverage-strip__list li {
    font-size: 15px;
    color: rgba(250,247,242,0.92);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.45;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}
body.sfv2 .sfv2-coverage-strip__list li::before {
    content: '';
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--orange-bright);
    flex-shrink: 0;
    margin-top: 7px;
    box-shadow: 0 0 0 4px rgba(255,107,26,0.15);
}
@media (max-width: 900px) {
    body.sfv2 .sfv2-coverage-strip {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 32px 28px;
        margin-top: 48px;
    }
    body.sfv2 .sfv2-coverage-strip__list { grid-template-columns: 1fr; gap: 0; }
    body.sfv2 .sfv2-coverage-strip__sub { max-width: none; }
}

body.sfv2 .sfv2-tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
body.sfv2 .sfv2-tag {
    display: inline-block;
    background: white;
    border: 1px solid rgba(24,119,135,0.1);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--blue-deep);
    white-space: nowrap;
    flex-shrink: 0;
}

/* Marquee chips - défilement droite vers gauche */
body.sfv2 .sfv2-tag-list--marquee {
    display: block;
    overflow: hidden;
    width: 100%;
    max-width: 560px;
    margin-bottom: 28px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
body.sfv2 .sfv2-tag-list--marquee .sfv2-tag-track {
    display: flex;
    gap: 10px;
    width: max-content;
    animation: sfv2-marquee-rl 32s linear infinite;
    will-change: transform;
}
body.sfv2 .sfv2-tag-list--marquee:hover .sfv2-tag-track { animation-play-state: paused; }
@keyframes sfv2-marquee-rl {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    body.sfv2 .sfv2-tag-list--marquee .sfv2-tag-track { animation: none; }
}
body.sfv2 .sfv2-prose { font-size: 17px; color: var(--gray-4); line-height: 1.7; margin-bottom: 18px; }
body.sfv2 .sfv2-prose strong { color: var(--blue-deep); font-weight: 700; }
body.sfv2 .sfv2-prose:last-of-type { margin-bottom: 28px; }

/* Prest grid 2x2 (différent du grid 12 cols home) */
body.sfv2 .sfv2-prest-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (max-width: 768px) { body.sfv2 .sfv2-prest-grid { grid-template-columns: 1fr; } }
body.sfv2 a.sfv2-prest-card {
    background: white;
    border: 1px solid rgba(24,119,135,0.08);
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
    display: flex; gap: 20px; align-items: flex-start;
    text-decoration: none; color: inherit;
}
body.sfv2 a.sfv2-prest-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}
body.sfv2 a.sfv2-prest-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -12px rgba(24,119,135,0.22);
    border-color: var(--blue-deep);
}
body.sfv2 a.sfv2-prest-card:hover::before { opacity: 1; }
body.sfv2 a.sfv2-prest-card:hover .sfv2-prest-icon { background: #fff; color: var(--blue-deep); box-shadow: 0 8px 18px -8px rgba(0,0,0,0.3); }
body.sfv2 a.sfv2-prest-card:hover .sfv2-prest-title,
body.sfv2 a.sfv2-prest-card:hover .sfv2-prest-desc,
body.sfv2 a.sfv2-prest-card:hover .sfv2-prest-link { color: var(--cream); }
body.sfv2 a.sfv2-prest-card:hover .sfv2-prest-num { color: var(--orange-bright); }
body.sfv2 .sfv2-prest-card > * { position: relative; z-index: 1; }
body.sfv2 .sfv2-prest-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--orange-soft);
    color: var(--orange);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.4s, color 0.4s;
    font-size: 22px;
}
body.sfv2 .sfv2-prest-content { flex: 1; }
body.sfv2 .sfv2-prest-num {
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--orange);
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
    transition: color 0.4s;
    display: block;
}
body.sfv2 .sfv2-prest-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    color: var(--blue-deep);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 8px 0;
    transition: color 0.4s;
}
body.sfv2 .sfv2-prest-desc {
    font-size: 14.5px;
    color: var(--gray-4);
    line-height: 1.55;
    margin-bottom: 16px;
    transition: color 0.4s;
}
body.sfv2 .sfv2-prest-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue-deep);
    transition: gap 0.3s, color 0.4s;
}
body.sfv2 a.sfv2-prest-card:hover .sfv2-prest-link { gap: 12px; }

/* Zones grid */
body.sfv2 .sfv2-zones-section { background: #fff; }
body.sfv2 .sfv2-zones-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 16px;
}
@media (max-width: 1024px) { body.sfv2 .sfv2-zones-grid { grid-template-columns: 1fr; } }
body.sfv2 .sfv2-zone-card {
    background: var(--cream);
    border: 1px solid rgba(24,119,135,0.08);
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
    display: flex; flex-direction: column;
    min-height: 260px;
}
body.sfv2 .sfv2-zone-card::after {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,26,0.08) 0%, transparent 70%);
    transition: transform 0.6s var(--ease-out);
}
body.sfv2 .sfv2-zone-card:hover {
    transform: translateY(-6px);
    border-color: var(--orange);
    box-shadow: 0 20px 40px -10px rgba(24,119,135,0.15);
}
body.sfv2 .sfv2-zone-card:hover::after { transform: scale(1.5); }
body.sfv2 .sfv2-zone-card--featured {
    background: var(--blue-deep);
    color: var(--cream);
    border-color: var(--blue-deep);
}
body.sfv2 .sfv2-zone-card--featured .sfv2-zone-num { color: var(--orange-bright); }
body.sfv2 .sfv2-zone-card--featured .sfv2-zone-title { color: var(--cream); }
body.sfv2 .sfv2-zone-card--featured .sfv2-zone-desc { color: rgba(250,247,242,0.75); }
body.sfv2 .sfv2-zone-card--featured .sfv2-zone-cities-lbl { color: rgba(250,247,242,0.5); border-top-color: rgba(255,255,255,0.1); }
body.sfv2 .sfv2-zone-card--featured .sfv2-zone-cities { color: var(--cream); }
body.sfv2 .sfv2-zone-num {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--orange);
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
    position: relative; z-index: 1;
}
body.sfv2 .sfv2-zone-icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    background: rgba(255,255,255,0.5);
    color: var(--blue-deep);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    position: relative; z-index: 1;
    font-size: 22px;
}
body.sfv2 .sfv2-zone-card--featured .sfv2-zone-icon { background: #fff; color: var(--blue-deep); }
body.sfv2 .sfv2-zone-card:hover .sfv2-zone-icon { background: #fff; color: var(--blue-deep); box-shadow: 0 8px 18px -8px rgba(0,0,0,0.2); }
body.sfv2 .sfv2-zone-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--blue-deep);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 10px;
    position: relative; z-index: 1;
}
body.sfv2 .sfv2-zone-desc {
    font-size: 14.5px;
    color: var(--gray-4);
    line-height: 1.55;
    margin-bottom: 18px;
    position: relative; z-index: 1;
    flex-grow: 1;
}
body.sfv2 .sfv2-zone-cities-lbl {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-3);
    font-weight: 600;
    padding-top: 16px;
    border-top: 1px solid rgba(24,119,135,0.1);
    margin-bottom: 6px;
    position: relative; z-index: 1;
}
body.sfv2 .sfv2-zone-cities {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 500;
    color: var(--blue-deep);
    font-style: italic;
    line-height: 1.4;
    position: relative; z-index: 1;
}

/* Contact block (rows) */
body.sfv2 .sfv2-contact-block {
    background: white;
    border: 1px solid rgba(24,119,135,0.08);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px -20px rgba(24,119,135,0.15);
    margin-top: 32px;
}
@media (max-width: 600px) { body.sfv2 .sfv2-contact-block { padding: 32px 24px; } }
body.sfv2 .sfv2-contact-rows { display: flex; flex-direction: column; gap: 24px; }
body.sfv2 .sfv2-contact-row { display: flex; gap: 16px; align-items: flex-start; }
body.sfv2 .sfv2-contact-row__icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--orange-soft);
    color: var(--orange);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}
body.sfv2 .sfv2-contact-row__lbl {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray-3);
    font-weight: 700;
    margin-bottom: 4px;
}
body.sfv2 .sfv2-contact-row__val {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--blue-deep);
    letter-spacing: -0.01em;
    line-height: 1.3;
}
body.sfv2 .sfv2-contact-row__val a { color: var(--blue-deep); transition: color 0.2s; text-decoration: none; }
body.sfv2 .sfv2-contact-row__val a:hover { color: var(--orange); }
body.sfv2 .sfv2-contact-row__sub { font-size: 13px; color: var(--gray-4); margin-top: 4px; }

/* Map card (visuel parallax design) */
body.sfv2 .sfv2-map-card {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-night) 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(24,119,135,0.4);
}
body.sfv2 .sfv2-map-card__pattern {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
}
body.sfv2 .sfv2-map-card__radial {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,107,26,0.25) 0%, transparent 50%);
}
body.sfv2 .sfv2-map-card__pin {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px;
}
body.sfv2 .sfv2-map-card__pulse {
    position: absolute; inset: 0;
    border-radius: 50%;
    background: var(--orange);
    opacity: 0.4;
    animation: sfv2-map-pulse 2.5s infinite;
}
body.sfv2 .sfv2-map-card__pulse:nth-child(2) { animation-delay: 0.8s; }
body.sfv2 .sfv2-map-card__dot {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 28px; height: 28px;
    background: var(--orange);
    border: 3px solid var(--cream);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
@keyframes sfv2-map-pulse {
    0% { transform: scale(0.4); opacity: 0.7; }
    100% { transform: scale(2.5); opacity: 0; }
}
body.sfv2 .sfv2-map-card__overlay {
    position: absolute; inset: 0;
    padding: 32px;
    display: flex; flex-direction: column; justify-content: space-between;
    color: var(--cream);
}
body.sfv2 .sfv2-map-card__coords {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 16px 20px;
    align-self: flex-start;
}
body.sfv2 .sfv2-map-card__coords-lbl {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange-bright);
    font-weight: 700;
    margin-bottom: 6px;
}
body.sfv2 .sfv2-map-card__coords-val {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: var(--cream);
    font-weight: 500;
}
body.sfv2 .sfv2-map-card__bottom {
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: 16px;
}
body.sfv2 .sfv2-map-card__city {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 500;
    color: var(--cream);
    letter-spacing: -0.03em;
    line-height: 1;
}
body.sfv2 .sfv2-map-card__city-sub {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(250,247,242,0.6);
    margin-top: 6px;
}
body.sfv2 .sfv2-map-card__cta {
    background: var(--cream);
    color: var(--blue-deep);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.3s, color 0.3s, transform 0.3s;
    text-decoration: none;
}
body.sfv2 .sfv2-map-card__cta:hover { background: var(--orange); color: var(--cream); transform: translateY(-2px); }

/* FAQ custom click-to-expand */
body.sfv2 .sfv2-faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 880px; margin: 0 auto; }
body.sfv2 .sfv2-faq-item {
    background: white;
    border: 1px solid rgba(24,119,135,0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}
body.sfv2 .sfv2-faq-item:hover { border-color: var(--orange); }
body.sfv2 .sfv2-faq-item.open { border-color: var(--orange); box-shadow: 0 12px 30px -8px rgba(24,119,135,0.12); }
body.sfv2 .sfv2-faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 500;
    color: var(--blue-deep);
    text-align: left;
    letter-spacing: -0.01em;
    transition: color 0.2s;
}
body.sfv2 .sfv2-faq-q:hover { color: var(--orange); }
body.sfv2 .sfv2-faq-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--orange-soft);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.3s, background 0.3s, color 0.3s;
}
body.sfv2 .sfv2-faq-item.open .sfv2-faq-icon {
    transform: rotate(45deg);
    background: var(--orange);
    color: white;
}
body.sfv2 .sfv2-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out);
}
body.sfv2 .sfv2-faq-a-inner {
    padding: 0 24px 24px;
    font-size: 15.5px;
    color: var(--gray-4);
    line-height: 1.65;
}
body.sfv2 .sfv2-faq-item.open .sfv2-faq-a { max-height: 500px; }

/* CTA agence */
body.sfv2 .sfv2-cta-section {
    background: var(--blue-deep);
    position: relative;
    overflow: hidden;
}
body.sfv2 .sfv2-cta-bg-text {
    position: absolute;
    bottom: -40px; left: -20px; right: -20px;
    font-family: var(--font-display);
    font-size: clamp(120px, 18vw, 280px);
    font-weight: 600;
    color: rgba(255,255,255,0.03);
    letter-spacing: -0.06em;
    line-height: 0.85;
    white-space: nowrap;
    pointer-events: none;
}
body.sfv2 .sfv2-cta-section__inner {
    position: relative;
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
}
body.sfv2 .sfv2-cta-section__inner .sfv2-eyebrow { color: var(--orange-bright); justify-content: center; }
body.sfv2 .sfv2-cta-section__inner .sfv2-eyebrow::before { background: var(--orange-bright); }
body.sfv2 .sfv2-cta-section__title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 500;
    color: var(--cream);
    letter-spacing: -0.035em;
    line-height: 1;
    margin-bottom: 28px;
}
body.sfv2 .sfv2-cta-section__title em { font-style: italic; color: var(--orange-bright); font-weight: 400; }
body.sfv2 .sfv2-cta-section__text {
    font-size: 18px;
    color: rgba(250,247,242,0.7);
    line-height: 1.55;
    max-width: 560px;
    margin: 0 auto 32px;
}
body.sfv2 .sfv2-cta-section__buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === Image illustrative ville (hero + venez nous voir) ===
   Photo pleine, sans texte, sans overlay. Juste une belle image arrondie. */
body.sfv2 .sfv2-city-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 4/4.6;
    max-width: 480px;
    margin-left: auto;
    justify-self: end;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(24,119,135,0.4);
    transform: rotate(-2deg);
    transition: transform 0.6s var(--ease-out);
    background: var(--blue-deep);
}
body.sfv2 .sfv2-city-photo:hover { transform: rotate(0deg) scale(1.01); }
body.sfv2 .sfv2-city-photo__img {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    display: block;
    max-width: none;
}
/* Variante 4/3 pour la section "venez nous voir" (à côté du contact block) */
body.sfv2 .sfv2-city-photo--map {
    aspect-ratio: 4/3;
    max-width: none;
    margin-left: 0;
    transform: rotate(0deg);
}
body.sfv2 .sfv2-city-photo--map:hover { transform: scale(1.01); }
@media (max-width: 1024px) {
    body.sfv2 .sfv2-city-photo { max-width: 380px; margin: 0 auto; }
}


/* =====================================================
   SOLUTION V2 PAGES (sfv2-sol-*)
   ===================================================== */

body.sfv2 .sfv2-sol-hero {
    position: relative;
    background: linear-gradient(180deg, var(--cream) 0%, #fff 100%);
    padding: 32px 64px 100px;
    overflow: hidden;
}
@media (max-width: 1024px) { body.sfv2 .sfv2-sol-hero { padding: 28px 24px 70px; } }
body.sfv2 .sfv2-sol-hero__grid-bg {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 95% 8%, rgba(255,107,26,0.06) 0%, transparent 40%),
        linear-gradient(rgba(24,119,135,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(24,119,135,0.05) 1px, transparent 1px);
    background-size: 100% 100%, 60px 60px, 60px 60px;
    pointer-events: none;
    opacity: 0.7;
}
body.sfv2 .sfv2-sol-hero__inner {
    max-width: 1400px;
    margin: 32px auto 0;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative; z-index: 1;
}
@media (max-width: 1024px) { body.sfv2 .sfv2-sol-hero__inner { grid-template-columns: 1fr; gap: 56px; } }
body.sfv2 .sfv2-sol-hero__title {
    font-family: var(--font-display);
    font-size: clamp(48px, 6.5vw, 92px);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: var(--blue-deep);
    margin-bottom: 28px;
}
body.sfv2 .sfv2-sol-hero__title em {
    font-style: italic;
    font-weight: 600;
    color: var(--orange);
}
body.sfv2 .sfv2-sol-hero__lede {
    font-size: 19px;
    line-height: 1.55;
    color: var(--gray-4);
    margin-bottom: 38px;
    max-width: 540px;
}

/* Sol-visual (frame avec icône grande) */
body.sfv2 .sfv2-sol-visual {
    position: relative;
    aspect-ratio: 1/1.05;
    max-width: 520px;
    margin-left: auto;
    width: 100%;
    justify-self: end;
}
body.sfv2 .sfv2-sol-visual__frame {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--blue-deep) 0%, #145e6c 60%, var(--blue-night) 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px -25px rgba(24,119,135,0.4);
}
body.sfv2 .sfv2-sol-visual__pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 80% 110%, rgba(255,107,26,0.25) 0%, transparent 55%);
}
body.sfv2 .sfv2-sol-visual__grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 32px 32px;
}
body.sfv2 .sfv2-sol-visual__content {
    position: absolute; inset: 0;
    padding: 48px;
    display: flex; flex-direction: column; justify-content: space-between;
    color: var(--cream);
    z-index: 1;
}
body.sfv2 .sfv2-sol-visual__tag {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--orange-bright);
    font-weight: 600;
    padding: 6px 12px;
    border: 1px solid rgba(255,107,26,0.3);
    border-radius: 999px;
}
body.sfv2 .sfv2-sol-visual__icon {
    color: var(--cream);
    font-size: clamp(80px, 12vw, 140px);
    line-height: 1;
    align-self: flex-start;
    opacity: 0.95;
}
body.sfv2 .sfv2-sol-visual__icon i { display: block; }
body.sfv2 .sfv2-sol-visual__meta {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 500;
    line-height: 1;
    color: var(--cream);
    letter-spacing: -0.03em;
}
body.sfv2 .sfv2-sol-visual__meta em {
    font-style: italic;
    color: var(--orange-bright);
    font-weight: 600;
}

/* Float-cards (cartes flottantes en bordure du frame) */
body.sfv2 .sfv2-float-card {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.18);
    display: flex; align-items: center; gap: 12px;
    z-index: 2;
    animation: sfv2-float 5s ease-in-out infinite;
}
body.sfv2 .sfv2-float-card--1 {
    top: 24px; left: -28px;
    animation-delay: 0s;
}
body.sfv2 .sfv2-float-card--2 {
    bottom: 36px; right: -28px;
    animation-delay: 2.5s;
}
@keyframes sfv2-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
body.sfv2 .sfv2-float-card__icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(24,119,135,0.1);
    color: var(--blue-deep);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}
body.sfv2 .sfv2-float-card__text {
    display: flex; flex-direction: column;
    line-height: 1.2;
}
body.sfv2 .sfv2-float-card__title {
    font-size: 13px; font-weight: 700; color: var(--blue-deep);
}
body.sfv2 .sfv2-float-card__sub {
    font-size: 11px; color: var(--gray-3); margin-top: 2px;
}
@media (max-width: 768px) {
    body.sfv2 .sfv2-float-card--1 { top: 12px; left: 8px; }
    body.sfv2 .sfv2-float-card--2 { bottom: 16px; right: 8px; }
    body.sfv2 .sfv2-float-card { padding: 10px 14px; }
}

/* Split card (variante quand le split contient juste la card sans photo) */
body.sfv2 .sfv2-split__img--card { background: linear-gradient(135deg, var(--blue-deep), #145e6c); }
body.sfv2 .sfv2-split__img--card .sfv2-split__inner-card { background: transparent; }
body.sfv2 .sfv2-split__card-word {
    font-family: var(--font-display);
    font-size: clamp(56px, 6vw, 88px);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1;
    font-style: italic;
    color: var(--cream);
}

/* Block grid (4 secteurs d'intervention) */
body.sfv2 .sfv2-block-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (max-width: 768px) { body.sfv2 .sfv2-block-grid { grid-template-columns: 1fr; } }
body.sfv2 .sfv2-block-card {
    background: var(--cream);
    border: 1px solid rgba(24,119,135,0.08);
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}
body.sfv2 .sfv2-block-card::before {
    content: '';
    position: absolute;
    top: -90px; right: -90px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,26,0.08) 0%, transparent 70%);
    transition: transform 0.6s var(--ease-out);
}
body.sfv2 .sfv2-block-card:hover {
    transform: translateY(-6px);
    border-color: var(--orange);
    box-shadow: 0 20px 40px -10px rgba(24,119,135,0.18);
}
body.sfv2 .sfv2-block-card:hover::before { transform: scale(1.5); }
body.sfv2 .sfv2-block-card__icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(255,255,255,0.7);
    color: var(--blue-deep);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 24px;
    position: relative; z-index: 1;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
body.sfv2 .sfv2-block-card:hover .sfv2-block-card__icon {
    background: #fff;
    color: var(--blue-deep);
    box-shadow: 0 8px 18px -8px rgba(0,0,0,0.2);
}
body.sfv2 .sfv2-block-card__num {
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--orange);
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
    position: relative; z-index: 1;
}
body.sfv2 .sfv2-block-card__title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    color: var(--blue-deep);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 12px 0;
    position: relative; z-index: 1;
}
body.sfv2 .sfv2-block-card__desc {
    font-size: 15px;
    color: var(--gray-4);
    line-height: 1.6;
    position: relative; z-index: 1;
}

/* Other-sol-grid (autres solutions, en bas avant CTA) */
body.sfv2 .sfv2-other-sol-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
@media (max-width: 1024px) { body.sfv2 .sfv2-other-sol-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { body.sfv2 .sfv2-other-sol-grid { grid-template-columns: 1fr; } }
body.sfv2 a.sfv2-other-sol-card {
    background: var(--cream);
    border: 1px solid rgba(24,119,135,0.08);
    border-radius: 16px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
body.sfv2 a.sfv2-other-sol-card:hover {
    transform: translateY(-4px);
    border-color: var(--blue-deep);
    background: #fff;
    box-shadow: 0 18px 36px -16px rgba(24,119,135,0.2);
}
body.sfv2 .sfv2-other-sol-card__icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(24,119,135,0.08);
    color: var(--blue-deep);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    transition: background 0.3s, color 0.3s;
}
body.sfv2 a.sfv2-other-sol-card:hover .sfv2-other-sol-card__icon {
    background: var(--orange-soft);
    color: var(--orange);
}
body.sfv2 .sfv2-other-sol-card__content { flex: 1; min-width: 0; }
body.sfv2 .sfv2-other-sol-card__title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--blue-deep);
    margin-bottom: 4px;
    line-height: 1.2;
}
body.sfv2 .sfv2-other-sol-card__desc {
    font-size: 13px;
    color: var(--gray-4);
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
body.sfv2 .sfv2-other-sol-card__arrow {
    color: var(--gray-3);
    flex-shrink: 0;
    transition: transform 0.3s var(--ease-out), color 0.3s;
}
body.sfv2 a.sfv2-other-sol-card:hover .sfv2-other-sol-card__arrow {
    transform: translateX(6px);
    color: var(--orange);
}

/* =====================================================
   SOLUTION V2 - HERO PHOTO + UNIQUE WIDGETS
   ===================================================== */

/* Hero photo (remplace sfv2-sol-visual) */
body.sfv2 .sfv2-sol-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 4/4.6;
    max-width: 520px;
    margin-left: auto;
    justify-self: end;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px -25px rgba(24,119,135,0.4);
    transform: rotate(-1.5deg);
    transition: transform 0.6s var(--ease-out);
    background: var(--blue-deep);
}
body.sfv2 .sfv2-sol-photo:hover { transform: rotate(0deg) scale(1.01); }
body.sfv2 .sfv2-sol-photo__img {
    position: absolute; inset: 0;
    width: 100% !important; height: 100% !important;
    object-fit: cover; object-position: center;
    display: block; max-width: none;
}
@media (max-width: 1024px) {
    body.sfv2 .sfv2-sol-photo { max-width: 420px; margin: 0 auto; }
}

/* Widget container (remplace sfv2-split__img--card) */
body.sfv2 .sfv2-sol-widget {
    width: 100%;
    aspect-ratio: 5/4;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px -20px rgba(24,119,135,0.3);
    background: linear-gradient(140deg, var(--blue-deep) 0%, #145e6c 60%, var(--blue-night) 100%);
    color: var(--cream);
    display: flex; flex-direction: column;
}
body.sfv2 .sfv2-sol-widget::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 90% 110%, rgba(255,107,26,0.18) 0%, transparent 55%),
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 100% 100%, 32px 32px, 32px 32px;
    pointer-events: none;
}
body.sfv2 .sfv2-sol-widget > * { position: relative; z-index: 1; }

/* ============ WIDGET 1 : SÛRETÉ - Diptyque modes ============ */
body.sfv2 .sfv2-w-surete {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    gap: 0;
    padding: 0;
}
body.sfv2 .sfv2-w-surete__panel {
    padding: 36px 28px;
    display: flex; flex-direction: column; gap: 14px;
    position: relative;
    transition: background 0.4s;
}
body.sfv2 .sfv2-w-surete__panel--statique { background: rgba(255,255,255,0.04); border-right: 1px solid rgba(255,255,255,0.1); }
body.sfv2 .sfv2-w-surete__panel--dynamique { background: rgba(255,107,26,0.08); }
body.sfv2 .sfv2-w-surete__panel:hover { background: rgba(255,255,255,0.08); }
body.sfv2 .sfv2-w-surete__icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: var(--orange-bright);
    font-size: 20px;
}
body.sfv2 .sfv2-w-surete__panel--dynamique .sfv2-w-surete__icon { background: rgba(255,107,26,0.2); color: var(--orange-bright); }
body.sfv2 .sfv2-w-surete__num { font-family: var(--font-display); font-size: 12px; letter-spacing: 0.2em; color: rgba(250,247,242,0.5); text-transform: uppercase; font-weight: 600; }
body.sfv2 .sfv2-w-surete__title { font-family: var(--font-display); font-size: 32px; font-weight: 500; font-style: italic; line-height: 1; color: #fff; }
body.sfv2 .sfv2-w-surete__desc { font-size: 13px; color: rgba(250,247,242,0.7); line-height: 1.4; }
body.sfv2 .sfv2-w-surete__list { list-style: none; padding: 0; margin: auto 0 0; display: flex; flex-direction: column; gap: 6px; }
body.sfv2 .sfv2-w-surete__list li { font-size: 13px; color: rgba(250,247,242,0.85); display: flex; align-items: center; gap: 8px; }
body.sfv2 .sfv2-w-surete__list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--orange-bright); }

/* ============ WIDGET 2 : SSIAP - Stack 3 niveaux ============ */
body.sfv2 .sfv2-w-ssiap {
    padding: 36px 36px 28px;
    display: flex; flex-direction: column; gap: 12px;
    height: 100%;
}
body.sfv2 .sfv2-w-ssiap__head { font-family: var(--font-display); font-size: 28px; font-weight: 500; line-height: 1.05; color: #fff; margin-bottom: 6px; }
body.sfv2 .sfv2-w-ssiap__head em { font-style: italic; color: var(--orange-bright); }
body.sfv2 .sfv2-w-ssiap__row {
    background: rgba(255,255,255,0.06);
    border-left: 3px solid var(--orange-bright);
    border-radius: 12px;
    padding: 14px 18px;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 14px;
    align-items: center;
    transition: transform 0.3s, background 0.3s;
}
body.sfv2 .sfv2-w-ssiap__row:hover { transform: translateX(4px); background: rgba(255,255,255,0.1); }
body.sfv2 .sfv2-w-ssiap__row--0 { border-left-color: rgba(255,107,26,0.4); }
body.sfv2 .sfv2-w-ssiap__row--1 { border-left-color: rgba(255,107,26,0.7); }
body.sfv2 .sfv2-w-ssiap__row--2 { border-left-color: var(--orange-bright); }
body.sfv2 .sfv2-w-ssiap__num {
    font-family: var(--font-display);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--orange-bright);
    font-weight: 700;
}
body.sfv2 .sfv2-w-ssiap__title { font-family: var(--font-display); font-size: 16px; color: #fff; font-weight: 600; }
body.sfv2 .sfv2-w-ssiap__desc { font-size: 12px; color: rgba(250,247,242,0.7); line-height: 1.4; margin-top: 2px; }

/* ============ WIDGET 3 : ÉVÉNEMENTIEL - Grid 4 types ============ */
body.sfv2 .sfv2-w-evt { padding: 32px; display: flex; flex-direction: column; gap: 18px; height: 100%; }
body.sfv2 .sfv2-w-evt__head { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 14px; }
body.sfv2 .sfv2-w-evt__eyebrow { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(250,247,242,0.6); font-weight: 600; }
body.sfv2 .sfv2-w-evt__num { font-family: var(--font-display); font-size: 64px; font-weight: 600; font-style: italic; line-height: 1; color: var(--orange-bright); letter-spacing: -0.04em; }
body.sfv2 .sfv2-w-evt__lbl { font-family: var(--font-display); font-size: 13px; line-height: 1.1; color: #fff; font-style: italic; }
body.sfv2 .sfv2-w-evt__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; flex: 1; }
body.sfv2 .sfv2-w-evt__cell {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex; flex-direction: column; justify-content: center; gap: 4px;
    transition: background 0.3s, transform 0.3s;
}
body.sfv2 .sfv2-w-evt__cell:hover { background: rgba(255,107,26,0.12); transform: translateY(-2px); }
body.sfv2 .sfv2-w-evt__cell i { color: var(--orange-bright); font-size: 18px; margin-bottom: 6px; }
body.sfv2 .sfv2-w-evt__cell-title { font-family: var(--font-display); font-size: 16px; color: #fff; font-weight: 600; line-height: 1; }
body.sfv2 .sfv2-w-evt__cell-sub { font-size: 11px; color: rgba(250,247,242,0.65); }

/* ============ WIDGET 4 : ALARME - Timeline 4 étapes ============ */
body.sfv2 .sfv2-w-alarme { padding: 32px 36px; display: flex; flex-direction: column; gap: 18px; height: 100%; }
body.sfv2 .sfv2-w-alarme__head { font-family: var(--font-display); font-size: 24px; color: #fff; display: flex; align-items: center; gap: 12px; font-weight: 500; }
body.sfv2 .sfv2-w-alarme__head em { font-style: italic; color: var(--orange-bright); }
body.sfv2 .sfv2-w-alarme__pulse {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--orange-bright);
    box-shadow: 0 0 0 0 rgba(255,107,26,0.7);
    animation: sfv2-alarme-pulse 1.6s infinite;
}
@keyframes sfv2-alarme-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,107,26,0.7); }
    70% { box-shadow: 0 0 0 14px rgba(255,107,26,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,107,26,0); }
}
body.sfv2 .sfv2-w-alarme__timeline {
    list-style: none;
    padding: 0; margin: 0;
    position: relative;
    flex: 1;
    display: flex; flex-direction: column; justify-content: space-between; gap: 4px;
}
body.sfv2 .sfv2-w-alarme__timeline::before {
    content: '';
    position: absolute;
    left: 38px; top: 8px; bottom: 8px;
    width: 1px;
    background: linear-gradient(to bottom, transparent 0, rgba(255,107,26,0.4) 8%, rgba(255,107,26,0.4) 92%, transparent 100%);
}
body.sfv2 .sfv2-w-alarme__step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 16px;
    align-items: center;
    position: relative;
}
body.sfv2 .sfv2-w-alarme__step::before {
    content: '';
    position: absolute;
    left: 35px;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--orange-bright);
    box-shadow: 0 0 0 3px var(--blue-deep);
}
body.sfv2 .sfv2-w-alarme__time {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--orange-bright);
    text-align: left;
    letter-spacing: 0.05em;
}
body.sfv2 .sfv2-w-alarme__title { font-family: var(--font-display); font-size: 15px; color: #fff; font-weight: 600; }
body.sfv2 .sfv2-w-alarme__desc { font-size: 12px; color: rgba(250,247,242,0.7); margin-top: 2px; }

/* ============ WIDGET 5 : AUDIT SÛRETÉ - Score + bars ============ */
body.sfv2 .sfv2-w-audit { padding: 36px; display: grid; grid-template-rows: auto 1fr; gap: 24px; height: 100%; }
body.sfv2 .sfv2-w-audit__score { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
body.sfv2 .sfv2-w-audit__num { font-family: var(--font-display); font-size: 72px; font-weight: 600; font-style: italic; line-height: 1; color: var(--orange-bright); letter-spacing: -0.04em; }
body.sfv2 .sfv2-w-audit__num span { font-size: 0.4em; color: rgba(250,247,242,0.5); font-style: normal; margin-left: 6px; }
body.sfv2 .sfv2-w-audit__lbl { font-family: var(--font-display); font-size: 16px; color: #fff; line-height: 1.2; }
body.sfv2 .sfv2-w-audit__lbl em { font-style: italic; color: var(--orange-bright); }
body.sfv2 .sfv2-w-audit__bars { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
body.sfv2 .sfv2-w-audit__bar { display: grid; grid-template-columns: 28px 90px 1fr 30px; gap: 10px; align-items: center; }
body.sfv2 .sfv2-w-audit__bar-icon { color: var(--orange-bright); font-size: 13px; }
body.sfv2 .sfv2-w-audit__bar-name { font-size: 13px; font-weight: 600; color: #fff; }
body.sfv2 .sfv2-w-audit__bar-track { height: 6px; background: rgba(255,255,255,0.1); border-radius: 999px; overflow: hidden; }
body.sfv2 .sfv2-w-audit__bar-fill {
    display: block; height: 100%;
    background: linear-gradient(90deg, var(--orange) 0%, var(--orange-bright) 100%);
    border-radius: 999px;
    width: var(--w);
    animation: sfv2-bar-grow 1.2s var(--ease-out) both;
}
@keyframes sfv2-bar-grow { from { width: 0; } to { width: var(--w); } }
body.sfv2 .sfv2-w-audit__bar-val { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: rgba(250,247,242,0.7); text-align: right; }

/* ============ WIDGET 6 : AUDIT INCENDIE - Checklist ============ */
body.sfv2 .sfv2-w-incendie { padding: 28px 32px; display: flex; flex-direction: column; gap: 14px; height: 100%; }
body.sfv2 .sfv2-w-incendie__head { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.1); }
body.sfv2 .sfv2-w-incendie__stamp {
    font-family: var(--font-display);
    font-size: 11px;
    color: var(--orange-bright);
    border: 2px solid var(--orange-bright);
    padding: 6px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    text-align: center;
    line-height: 1.1;
    transform: rotate(-3deg);
}
body.sfv2 .sfv2-w-incendie__title { font-family: var(--font-display); font-size: 22px; color: #fff; font-weight: 500; line-height: 1.1; }
body.sfv2 .sfv2-w-incendie__title em { font-style: italic; color: var(--orange-bright); }
body.sfv2 .sfv2-w-incendie__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; flex: 1; }
body.sfv2 .sfv2-w-incendie__item { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: center; padding: 6px 0; }
body.sfv2 .sfv2-w-incendie__check {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(36,194,118,0.15);
    color: #43d488;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    border: 1.5px solid rgba(67,212,136,0.4);
}
body.sfv2 .sfv2-w-incendie__name { font-size: 14px; color: #fff; font-weight: 600; }
body.sfv2 .sfv2-w-incendie__desc { font-size: 11.5px; color: rgba(250,247,242,0.65); margin-top: 1px; }

/* ============ WIDGET 7 : CONSEILS - 3 piliers ============ */
body.sfv2 .sfv2-w-conseils { padding: 36px 32px; display: flex; flex-direction: column; gap: 20px; height: 100%; }
body.sfv2 .sfv2-w-conseils__head { font-family: var(--font-display); font-size: 26px; color: #fff; line-height: 1.05; font-weight: 500; }
body.sfv2 .sfv2-w-conseils__head em { font-style: italic; color: var(--orange-bright); }
body.sfv2 .sfv2-w-conseils__grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; flex: 1; }
body.sfv2 .sfv2-w-conseils__pillar {
    background: rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 16px 12px;
    display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px;
    transition: background 0.3s, transform 0.3s;
}
body.sfv2 .sfv2-w-conseils__pillar:hover { background: rgba(255,107,26,0.12); transform: translateY(-3px); }
body.sfv2 .sfv2-w-conseils__num { font-family: var(--font-display); font-size: 11px; color: rgba(250,247,242,0.5); letter-spacing: 0.18em; font-weight: 700; }
body.sfv2 .sfv2-w-conseils__icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,107,26,0.15);
    color: var(--orange-bright);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
}
body.sfv2 .sfv2-w-conseils__name { font-family: var(--font-display); font-size: 16px; color: #fff; font-weight: 600; }
body.sfv2 .sfv2-w-conseils__sub { font-size: 11.5px; color: rgba(250,247,242,0.7); line-height: 1.35; }

/* ============ Default fallback ============ */
body.sfv2 .sfv2-w-default { padding: 40px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; height: 100%; text-align: center; }
body.sfv2 .sfv2-w-default__icon { font-size: 80px; color: var(--orange-bright); }
body.sfv2 .sfv2-w-default__title { font-family: var(--font-display); font-size: 36px; font-style: italic; color: #fff; font-weight: 500; }

/* ============ Mobile : reduce widget aspect-ratio ============ */
@media (max-width: 1024px) {
    body.sfv2 .sfv2-sol-widget { aspect-ratio: auto; min-height: 480px; max-width: 560px; margin: 0 auto; }
}
@media (max-width: 768px) {
    body.sfv2 .sfv2-w-surete { grid-template-columns: 1fr; }
    body.sfv2 .sfv2-w-surete__panel--statique { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    body.sfv2 .sfv2-w-conseils__grid { grid-template-columns: 1fr; }
}

/* =====================================================
   SPLIT PHOTO + BUBBLE (remplace les widgets V1)
   ===================================================== */

body.sfv2 .sfv2-sol-splitphoto {
    position: relative;
    width: 100%;
    aspect-ratio: 5/4;
    border-radius: 24px;
    overflow: visible;
    box-shadow: 0 30px 60px -25px rgba(24,119,135,0.4);
}
body.sfv2 .sfv2-sol-splitphoto > img,
body.sfv2 .sfv2-sol-splitphoto__img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    border-radius: 24px;
    display: block;
    transform: rotate(-1deg);
    transition: transform 0.6s var(--ease-out);
}
body.sfv2 .sfv2-sol-splitphoto:hover > img,
body.sfv2 .sfv2-sol-splitphoto:hover .sfv2-sol-splitphoto__img {
    transform: rotate(0deg) scale(1.005);
}

/* Petite bulle blanche bottom-right - dépasse de l'image */
body.sfv2 .sfv2-sol-bubble {
    position: absolute;
    bottom: -22px; right: -22px;
    background: #fff;
    border-radius: 18px;
    padding: 18px 22px;
    box-shadow: 0 24px 48px -16px rgba(0,0,0,0.2), 0 4px 12px rgba(0,0,0,0.06);
    border: 1px solid rgba(24,119,135,0.08);
    min-width: 140px;
    max-width: 200px;
    text-align: left;
    z-index: 2;
    animation: sfv2-bubble-float 5s ease-in-out infinite;
}
@keyframes sfv2-bubble-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
body.sfv2 .sfv2-sol-bubble__num {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 600;
    font-style: italic;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--blue-deep);
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 4px;
}
body.sfv2 .sfv2-sol-bubble__num sup {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--orange);
    font-style: normal;
    vertical-align: middle;
    top: 0;
    position: static;
}
body.sfv2 .sfv2-sol-bubble__sub {
    font-size: 12px;
    line-height: 1.3;
    color: var(--gray-4);
    font-weight: 500;
}
@media (max-width: 768px) {
    body.sfv2 .sfv2-sol-bubble {
        bottom: -16px; right: -8px;
        padding: 14px 16px;
        min-width: 120px;
    }
}

/* =====================================================
   BLOCK GRID : 3 cols si exactly 3 items
   ===================================================== */
body.sfv2 .sfv2-block-grid:has(> .sfv2-block-card:nth-child(3):last-child) {
    grid-template-columns: repeat(3, 1fr);
}
body.sfv2 .sfv2-block-grid:has(> .sfv2-block-card:nth-child(5):last-child) {
    grid-template-columns: repeat(3, 1fr);
}
body.sfv2 .sfv2-block-grid:has(> .sfv2-block-card:nth-child(6):last-child) {
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
    body.sfv2 .sfv2-block-grid:has(> .sfv2-block-card:nth-child(3):last-child),
    body.sfv2 .sfv2-block-grid:has(> .sfv2-block-card:nth-child(5):last-child),
    body.sfv2 .sfv2-block-grid:has(> .sfv2-block-card:nth-child(6):last-child) {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    body.sfv2 .sfv2-block-grid:has(> .sfv2-block-card:nth-child(3):last-child),
    body.sfv2 .sfv2-block-grid:has(> .sfv2-block-card:nth-child(5):last-child),
    body.sfv2 .sfv2-block-grid:has(> .sfv2-block-card:nth-child(6):last-child) {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   FIX BUG NUMÉROS section "Pourquoi choisir SF Security"
   (cards-layout-minimal sur la page nos-solutions)
   ===================================================== */
body.sfv2 .cards-layout-minimal,
.cards-layout-minimal {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    max-width: 1320px;
    margin: 0 auto;
}
@media (max-width: 1024px) {
    body.sfv2 .cards-layout-minimal,
    .cards-layout-minimal { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
    body.sfv2 .cards-layout-minimal,
    .cards-layout-minimal { grid-template-columns: 1fr !important; }
}
body.sfv2 .cards-layout-minimal .card-minimal,
.cards-layout-minimal .card-minimal {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    align-items: flex-start !important;
    padding: 28px 24px !important;
    background: #fff !important;
    border: 1px solid rgba(24,119,135,0.08) !important;
    border-radius: 18px !important;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s !important;
}
body.sfv2 .cards-layout-minimal .card-minimal:hover,
.cards-layout-minimal a.card-minimal.card-clickable:hover {
    transform: translateY(-3px);
    border-color: var(--blue-deep, #187787) !important;
    box-shadow: 0 18px 36px -16px rgba(24,119,135,0.18) !important;
}
body.sfv2 .cards-layout-minimal .card-minimal::before,
.cards-layout-minimal .card-minimal::before,
body.sfv2 .cards-layout-minimal .card-minimal::after,
.cards-layout-minimal .card-minimal::after {
    display: none !important;
}
body.sfv2 .cards-layout-minimal .card-number,
.cards-layout-minimal .card-number {
    position: static !important;
    font-family: var(--font-display, 'Fraunces', serif) !important;
    font-size: 44px !important;
    font-weight: 600 !important;
    font-style: italic !important;
    line-height: 1 !important;
    color: var(--orange, #ff6b1a) !important;
    background: none !important;
    -webkit-text-fill-color: var(--orange, #ff6b1a) !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    letter-spacing: -0.04em !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left;
    align-self: start;
    min-width: 64px;
}
body.sfv2 .cards-layout-minimal .card-body,
.cards-layout-minimal .card-body {
    padding: 0 !important;
    min-width: 0;
}
body.sfv2 .cards-layout-minimal .card-body h3,
.cards-layout-minimal .card-body h3 {
    font-family: var(--font-display, 'Fraunces', serif) !important;
    font-size: 19px !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    color: var(--blue-deep, #187787) !important;
    margin: 0 0 8px !important;
    letter-spacing: -0.01em;
}
body.sfv2 .cards-layout-minimal .card-body .card-text,
body.sfv2 .cards-layout-minimal .card-body p,
.cards-layout-minimal .card-body .card-text,
.cards-layout-minimal .card-body p {
    font-size: 14.5px !important;
    line-height: 1.55 !important;
    color: var(--gray-4, #3d5d63) !important;
    margin: 0 !important;
}
@media (max-width: 640px) {
    body.sfv2 .cards-layout-minimal .card-minimal,
    .cards-layout-minimal .card-minimal {
        grid-template-columns: 56px 1fr !important;
        padding: 18px 18px !important;
    }
    body.sfv2 .cards-layout-minimal .card-number,
    .cards-layout-minimal .card-number {
        font-size: 34px !important;
    }
}

/* =====================================================
   BANDEAUX HORIZONTAUX pour "Des solutions pour chaque besoin"
   (cards-layout-grid sur la page nos-solutions index)
   ===================================================== */
body.sfv2 .cards-section--grid .cards-layout-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    grid-template-columns: none !important;
    max-width: 1200px;
    margin: 0 auto;
}
body.sfv2 .cards-section--grid .cards-layout-grid .card {
    display: grid !important;
    grid-template-columns: minmax(280px, 38%) 1fr !important;
    gap: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 22px !important;
    background: #fff !important;
    border: 1px solid rgba(24,119,135,0.08) !important;
    box-shadow: 0 12px 32px -16px rgba(24,119,135,0.18) !important;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s !important;
}
body.sfv2 .cards-section--grid .cards-layout-grid .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 56px -20px rgba(24,119,135,0.28) !important;
}
body.sfv2 .cards-section--grid .cards-layout-grid .card .card-image,
body.sfv2 .cards-section--grid .cards-layout-grid .card > a > .card-image,
body.sfv2 .cards-section--grid .cards-layout-grid .card-image {
    margin: 0 !important;
    height: 100% !important;
    aspect-ratio: auto !important;
    overflow: hidden;
}
body.sfv2 .cards-section--grid .cards-layout-grid .card .card-image img,
body.sfv2 .cards-section--grid .cards-layout-grid .card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    min-height: 280px;
    transition: transform 0.6s var(--ease-out);
}
body.sfv2 .cards-section--grid .cards-layout-grid .card:hover .card-image img {
    transform: scale(1.04);
}
body.sfv2 .cards-section--grid .cards-layout-grid .card .card-body {
    padding: 36px 40px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 12px !important;
    border: none !important;
}
body.sfv2 .cards-section--grid .cards-layout-grid .card .card-body h3 {
    font-family: var(--font-display, 'Fraunces', serif) !important;
    font-size: clamp(24px, 2.4vw, 32px) !important;
    font-weight: 500 !important;
    color: var(--blue-deep, #187787) !important;
    margin: 0 !important;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
body.sfv2 .cards-section--grid .cards-layout-grid .card .card-body .card-text,
body.sfv2 .cards-section--grid .cards-layout-grid .card .card-body p {
    font-size: 15.5px !important;
    line-height: 1.55 !important;
    color: var(--gray-4, #3d5d63) !important;
    margin: 0 !important;
}
body.sfv2 .cards-section--grid .cards-layout-grid .card .card-link {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--blue-deep, #187787) !important;
    margin-top: 8px;
    transition: gap 0.3s, color 0.3s;
}
body.sfv2 .cards-section--grid .cards-layout-grid a.card-clickable:hover .card-link,
body.sfv2 .cards-section--grid .cards-layout-grid a.card:hover .card-link {
    color: var(--orange, #ff6b1a) !important;
    gap: 14px;
}
@media (max-width: 768px) {
    body.sfv2 .cards-section--grid .cards-layout-grid .card {
        grid-template-columns: 1fr !important;
    }
    body.sfv2 .cards-section--grid .cards-layout-grid .card .card-image img {
        min-height: 220px;
        max-height: 280px;
    }
    body.sfv2 .cards-section--grid .cards-layout-grid .card .card-body {
        padding: 24px 24px !important;
    }
}

/* =====================================================
   PAGES V2 : à propos / contact / nous recrutons
   Composants : hero-photo, quote-card, team-grid,
   form-card/row/group/file/consent, contact-info,
   offer-list, split (history)
   ===================================================== */

/* Hero photo (côté droit du sfv2-sol-hero) */
body.sfv2 .sfv2-hero-photo {
    position: relative; width: 100%; aspect-ratio: 4/3;
    border-radius: 28px; overflow: visible;
    box-shadow: 0 30px 60px -25px rgba(24,119,135,0.4);
}
body.sfv2 .sfv2-hero-photo__img {
    width: 100%; height: 100%; object-fit: cover;
    border-radius: 28px; display: block;
}
body.sfv2 .sfv2-hero-photo__bubble {
    position: absolute; bottom: -22px; right: -18px;
    background: #fff; border-radius: 18px; padding: 16px 22px;
    box-shadow: 0 24px 48px -16px rgba(0,0,0,0.22), 0 4px 12px rgba(0,0,0,0.06);
    border: 1px solid rgba(24,119,135,0.08);
    min-width: 150px; max-width: 220px;
    z-index: 2; animation: sfv2-bubble-float 5s ease-in-out infinite;
}
body.sfv2 .sfv2-hero-photo__bubble-num {
    font-family: var(--font-display); font-weight: 600;
    font-size: clamp(28px, 3vw, 38px); line-height: 1;
    color: var(--blue-night); letter-spacing: -0.02em;
}
body.sfv2 .sfv2-hero-photo__bubble-num sup { font-size: 0.45em; color: var(--orange); margin-left: 2px; vertical-align: super; }
body.sfv2 .sfv2-hero-photo__bubble-sub {
    font-size: 11.5px; line-height: 1.35; color: var(--ink-soft, #4a5568);
    margin-top: 6px; letter-spacing: 0.01em;
}
@media (max-width: 900px) {
    body.sfv2 .sfv2-hero-photo { aspect-ratio: 4/3; max-width: 100%; }
    body.sfv2 .sfv2-hero-photo__bubble { right: 12px; bottom: -18px; min-width: 130px; padding: 14px 18px; }
}

/* Quote card */
body.sfv2 .sfv2-quote-card {
    max-width: 920px; margin: 0 auto;
    background: linear-gradient(180deg, #fff 0%, #fdfaf6 100%);
    border-radius: 28px; padding: 56px 56px 48px;
    border: 1px solid rgba(24,119,135,0.08);
    box-shadow: 0 24px 48px -24px rgba(0,0,0,0.1);
    position: relative; overflow: hidden;
}
body.sfv2 .sfv2-quote-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 6px; height: 100%;
    background: linear-gradient(180deg, var(--orange) 0%, var(--orange-bright) 100%);
}
body.sfv2 .sfv2-quote-card__mark {
    font-family: var(--font-display); font-weight: 600; font-style: italic;
    font-size: 96px; line-height: 0.6; color: var(--orange-bright);
    margin-bottom: 18px;
}
body.sfv2 .sfv2-quote-card__text {
    font-family: var(--font-display); font-weight: 400;
    font-size: clamp(20px, 2.4vw, 28px); line-height: 1.45;
    color: var(--blue-night); letter-spacing: -0.01em;
    margin-bottom: 32px;
}
body.sfv2 .sfv2-quote-card__author { display: flex; align-items: center; gap: 16px; }
body.sfv2 .sfv2-quote-card__author-pic {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-deep), var(--blue-night));
    color: var(--cream); font-family: var(--font-display); font-weight: 600;
    font-size: 18px; display: flex; align-items: center; justify-content: center;
    letter-spacing: 0.02em;
}
body.sfv2 .sfv2-quote-card__author-name {
    font-family: var(--font-body); font-weight: 700; font-size: 15px;
    color: var(--blue-night);
}
body.sfv2 .sfv2-quote-card__author-role {
    font-size: 12.5px; color: var(--ink-soft, #4a5568); letter-spacing: 0.04em;
    text-transform: uppercase; margin-top: 3px;
}
@media (max-width: 700px) {
    body.sfv2 .sfv2-quote-card { padding: 36px 28px 32px; }
}

/* Team grid */
body.sfv2 .sfv2-team-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
    margin-top: 12px;
}
@media (max-width: 1024px) { body.sfv2 .sfv2-team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { body.sfv2 .sfv2-team-grid { grid-template-columns: 1fr; } }
body.sfv2 .sfv2-team-card {
    background: #fff; border-radius: 24px; overflow: hidden;
    border: 1px solid rgba(24,119,135,0.08);
    transition: transform 0.4s var(--ease-premium, cubic-bezier(.22,1,.36,1)), box-shadow 0.4s ease;
    display: flex; flex-direction: column;
}
body.sfv2 .sfv2-team-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -20px rgba(24,119,135,0.18); }
body.sfv2 .sfv2-team-portrait {
    position: relative; aspect-ratio: 4/5; overflow: hidden;
    background: linear-gradient(135deg, var(--blue-deep), var(--blue-night));
}
body.sfv2 .sfv2-team-portrait__img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
body.sfv2 .sfv2-team-portrait__init {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 500; font-size: 88px; color: rgba(255,255,255,0.85);
    letter-spacing: -0.04em;
}
body.sfv2 .sfv2-team-portrait__tag {
    position: absolute; top: 16px; left: 16px;
    background: rgba(255,107,26,0.92); color: #fff;
    padding: 5px 12px; border-radius: 999px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
body.sfv2 .sfv2-team-info { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
body.sfv2 .sfv2-team-role {
    font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--orange); font-weight: 700; margin-bottom: 8px;
}
body.sfv2 .sfv2-team-name {
    font-family: var(--font-display); font-weight: 500; font-size: 26px; line-height: 1.05;
    color: var(--blue-night); letter-spacing: -0.02em; margin-bottom: 12px;
}
body.sfv2 .sfv2-team-bio {
    font-size: 14px; line-height: 1.6; color: var(--ink-soft, #4a5568);
    margin-bottom: 16px; flex: 1;
}
body.sfv2 .sfv2-team-meta { display: flex; flex-wrap: wrap; gap: 6px; }
body.sfv2 .sfv2-team-meta-tag {
    background: rgba(24,119,135,0.08); color: var(--blue-deep);
    padding: 4px 10px; border-radius: 999px; font-size: 11.5px; font-weight: 600;
    letter-spacing: 0.02em;
}

/* Contact-grid (form + info) */
body.sfv2 .sfv2-contact-grid {
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px;
    align-items: start;
}
@media (max-width: 1024px) { body.sfv2 .sfv2-contact-grid { grid-template-columns: 1fr; } }

/* Form card */
body.sfv2 .sfv2-form-card {
    background: #fff; border-radius: 28px; padding: 40px 40px 36px;
    border: 1px solid rgba(24,119,135,0.08);
    box-shadow: 0 16px 40px -20px rgba(24,119,135,0.18);
}
@media (max-width: 700px) { body.sfv2 .sfv2-form-card { padding: 28px 22px; } }
body.sfv2 .sfv2-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 18px; }
body.sfv2 .sfv2-form-row.full { grid-template-columns: 1fr; }
@media (max-width: 700px) { body.sfv2 .sfv2-form-row { grid-template-columns: 1fr; } }
body.sfv2 .sfv2-form-group { display: flex; flex-direction: column; gap: 6px; }
body.sfv2 .sfv2-form-group label {
    font-size: 13px; font-weight: 600; color: var(--blue-night);
    letter-spacing: 0.01em;
}
body.sfv2 .sfv2-form-group .req { color: var(--orange); margin-left: 2px; }
body.sfv2 .sfv2-form-group input,
body.sfv2 .sfv2-form-group select,
body.sfv2 .sfv2-form-group textarea {
    width: 100%; padding: 12px 14px; font-size: 14.5px; font-family: inherit;
    border: 1.5px solid rgba(24,119,135,0.18); border-radius: 12px;
    background: #fdfaf6; color: var(--ink); transition: border-color 0.2s, background 0.2s;
}
body.sfv2 .sfv2-form-group textarea { min-height: 120px; resize: vertical; line-height: 1.55; }
body.sfv2 .sfv2-form-group input:focus,
body.sfv2 .sfv2-form-group select:focus,
body.sfv2 .sfv2-form-group textarea:focus {
    outline: none; border-color: var(--orange); background: #fff;
}
body.sfv2 .sfv2-form-file {
    display: block; cursor: pointer; padding: 18px;
    border: 2px dashed rgba(24,119,135,0.25); border-radius: 14px;
    background: #fdfaf6; transition: border-color 0.2s, background 0.2s;
}
body.sfv2 .sfv2-form-file:hover { border-color: var(--orange); background: #fff; }
body.sfv2 .sfv2-form-file input[type="file"] { display: none; }
body.sfv2 .sfv2-form-file__label {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    text-align: center; color: var(--blue-night);
}
body.sfv2 .sfv2-form-file__label svg { width: 28px; height: 28px; color: var(--orange); }
body.sfv2 .sfv2-form-file__text { font-size: 14px; font-weight: 600; }
body.sfv2 .sfv2-form-file__sub { font-size: 12px; color: var(--ink-soft, #4a5568); }
body.sfv2 .sfv2-form-consent {
    display: flex; align-items: flex-start; gap: 10px;
    margin: 20px 0 18px; font-size: 12.5px; color: var(--ink-soft, #4a5568);
    line-height: 1.55; cursor: pointer;
}
body.sfv2 .sfv2-form-consent input { margin-top: 3px; accent-color: var(--orange); }
body.sfv2 .sfv2-form-consent a { color: var(--blue-deep); text-decoration: underline; }
body.sfv2 .sfv2-form-submit-row {
    display: flex; flex-direction: column; gap: 10px;
}
body.sfv2 .sfv2-form-submit-row .sfv2-btn-primary { width: 100%; justify-content: center; }
body.sfv2 .sfv2-form-note {
    font-size: 12px; color: var(--ink-soft, #4a5568); text-align: center;
    letter-spacing: 0.01em;
}
body.sfv2 .sfv2-form-msg {
    padding: 14px 18px; border-radius: 12px; margin-bottom: 18px;
    font-size: 14px; font-weight: 500;
}
body.sfv2 .sfv2-form-msg--ok {
    background: rgba(34,197,94,0.1); color: #15803d; border: 1px solid rgba(34,197,94,0.25);
}
body.sfv2 .sfv2-form-msg--err {
    background: rgba(239,68,68,0.1); color: #b91c1c; border: 1px solid rgba(239,68,68,0.25);
}

/* Contact info side panel */
body.sfv2 .sfv2-contact-info {
    background: var(--blue-night); color: var(--cream);
    border-radius: 28px; padding: 40px 36px; position: relative; overflow: hidden;
}
body.sfv2 .sfv2-contact-info::before {
    content: ''; position: absolute; top: -120px; right: -120px;
    width: 360px; height: 360px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,26,0.15) 0%, transparent 70%);
}
body.sfv2 .sfv2-contact-info__tag {
    display: inline-block; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--orange-bright); font-weight: 700; margin-bottom: 12px;
    padding: 5px 12px; background: rgba(255,107,26,0.12); border: 1px solid rgba(255,107,26,0.25);
    border-radius: 999px;
}
body.sfv2 .sfv2-contact-info__title {
    font-family: var(--font-display); font-weight: 500; font-size: clamp(28px, 3vw, 38px);
    line-height: 1.05; color: var(--cream); letter-spacing: -0.02em; margin-bottom: 28px;
}
body.sfv2 .sfv2-contact-info__title em { color: var(--orange-bright); font-style: italic; font-weight: 400; }
body.sfv2 .sfv2-contact-info__list { display: flex; flex-direction: column; gap: 22px; position: relative; z-index: 1; }
body.sfv2 .sfv2-contact-info__item { display: flex; gap: 14px; align-items: flex-start; }
body.sfv2 .sfv2-contact-info__icon {
    flex-shrink: 0; width: 40px; height: 40px; border-radius: 12px;
    background: rgba(255,107,26,0.15); color: var(--orange-bright);
    display: flex; align-items: center; justify-content: center;
}
body.sfv2 .sfv2-contact-info__icon svg { width: 18px; height: 18px; }
body.sfv2 .sfv2-contact-info__lbl {
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(250,247,242,0.55); margin-bottom: 4px; font-weight: 600;
}
body.sfv2 .sfv2-contact-info__val {
    font-size: 16px; font-weight: 600; line-height: 1.35; color: var(--cream);
}
body.sfv2 .sfv2-contact-info__val a { color: var(--cream); transition: color 0.2s; }
body.sfv2 .sfv2-contact-info__val a:hover { color: var(--orange-bright); }
body.sfv2 .sfv2-contact-info__sub {
    font-size: 12.5px; color: rgba(250,247,242,0.55); margin-top: 4px;
}
body.sfv2 .sfv2-contact-info__divider {
    height: 1px; background: rgba(250,247,242,0.12); margin: 32px 0;
}
body.sfv2 .sfv2-contact-info__offices { display: flex; flex-direction: column; gap: 14px; }
body.sfv2 .sfv2-contact-info__office {
    display: flex; gap: 14px; align-items: center; padding: 14px 16px;
    background: rgba(250,247,242,0.04); border-radius: 14px;
    border: 1px solid rgba(250,247,242,0.08);
    transition: background 0.2s, border-color 0.2s; color: var(--cream); text-decoration: none;
}
body.sfv2 .sfv2-contact-info__office:hover { background: rgba(255,107,26,0.08); border-color: rgba(255,107,26,0.25); color: var(--cream); }
body.sfv2 .sfv2-contact-info__office-pin {
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--orange); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 600; font-size: 16px;
}
body.sfv2 .sfv2-contact-info__office-name { font-weight: 700; font-size: 15px; color: var(--cream); }
body.sfv2 .sfv2-contact-info__office-addr {
    font-size: 12.5px; color: rgba(250,247,242,0.65); line-height: 1.45; margin-top: 2px;
}

/* Offer cards (jobs) */
body.sfv2 .sfv2-offer-list { display: flex; flex-direction: column; gap: 14px; }
body.sfv2 .sfv2-offer-card {
    display: grid; grid-template-columns: 64px 1fr auto; gap: 24px; align-items: center;
    padding: 24px 28px; background: #fff; border-radius: 20px;
    border: 1px solid rgba(24,119,135,0.08);
    text-decoration: none; color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
body.sfv2 .sfv2-offer-card:hover {
    transform: translateX(6px); border-color: rgba(255,107,26,0.3);
    box-shadow: 0 16px 32px -16px rgba(24,119,135,0.18); color: inherit;
}
body.sfv2 .sfv2-offer-card__num {
    font-family: var(--font-display); font-weight: 500; font-size: 32px;
    color: var(--orange); letter-spacing: -0.02em; line-height: 1;
}
body.sfv2 .sfv2-offer-card__content { display: flex; flex-direction: column; gap: 8px; }
body.sfv2 .sfv2-offer-card__title {
    font-family: var(--font-display); font-weight: 500; font-size: 22px;
    color: var(--blue-night); letter-spacing: -0.01em; line-height: 1.2;
}
body.sfv2 .sfv2-offer-card__desc { font-size: 14px; line-height: 1.55; color: var(--ink-soft, #4a5568); }
body.sfv2 .sfv2-offer-card__meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
body.sfv2 .sfv2-offer-card__tag {
    background: rgba(24,119,135,0.08); color: var(--blue-deep);
    padding: 4px 10px; border-radius: 999px; font-size: 11.5px; font-weight: 600;
    letter-spacing: 0.02em;
}
body.sfv2 .sfv2-offer-card__cta {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 700; color: var(--orange);
    letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap;
    transition: gap 0.3s, color 0.3s;
}
body.sfv2 .sfv2-offer-card__cta svg { width: 14px; height: 14px; transition: transform 0.3s; }
body.sfv2 .sfv2-offer-card:hover .sfv2-offer-card__cta { gap: 12px; color: var(--blue-night); }
body.sfv2 .sfv2-offer-card:hover .sfv2-offer-card__cta svg { transform: translateX(4px); }
@media (max-width: 700px) {
    body.sfv2 .sfv2-offer-card { grid-template-columns: 1fr; gap: 12px; padding: 22px; }
    body.sfv2 .sfv2-offer-card__cta { justify-self: start; }
}

/* Split (history / SIMK) */
body.sfv2 .sfv2-page-split {
    display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center;
}
body.sfv2 .sfv2-page-split.reverse { grid-template-columns: 1fr 1.05fr; }
body.sfv2 .sfv2-page-split.reverse > :first-child { order: 2; }
@media (max-width: 1024px) {
    body.sfv2 .sfv2-page-split,
    body.sfv2 .sfv2-page-split.reverse { grid-template-columns: 1fr; gap: 32px; }
    body.sfv2 .sfv2-page-split.reverse > :first-child { order: 0; }
}
body.sfv2 .sfv2-page-split__photo {
    position: relative; width: 100%; aspect-ratio: 4/5;
    border-radius: 28px; overflow: hidden;
    box-shadow: 0 30px 60px -25px rgba(24,119,135,0.4);
    background: linear-gradient(135deg, var(--blue-deep), var(--blue-night));
}
body.sfv2 .sfv2-page-split__photo img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
body.sfv2 .sfv2-page-split__photo--big-num {
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; padding: 36px; color: var(--cream); text-align: center;
}
body.sfv2 .sfv2-page-split__big-num {
    font-family: var(--font-display); font-weight: 600;
    font-size: clamp(120px, 14vw, 200px); line-height: 1;
    letter-spacing: -0.05em; color: var(--orange-bright);
}
body.sfv2 .sfv2-page-split__big-num sup { font-size: 0.4em; vertical-align: super; }
body.sfv2 .sfv2-page-split__big-lbl {
    font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(250,247,242,0.7); margin-top: 8px;
}
body.sfv2 .sfv2-page-split__big-pill {
    margin-top: 24px; padding: 8px 18px;
    background: rgba(255,107,26,0.15); border: 1px solid rgba(255,107,26,0.3);
    border-radius: 999px; font-size: 12px; color: var(--orange-bright);
    letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
}
body.sfv2 .sfv2-page-split__prose p {
    font-size: 16px; line-height: 1.7; color: var(--ink); margin-bottom: 18px;
}
body.sfv2 .sfv2-page-split__prose strong { color: var(--blue-night); font-weight: 700; }

/* Hero meta + cta + tag (réutilisation des classes sfv2-agence-hero__) */
body.sfv2 .sfv2-page-hero {
    background: var(--cream); padding: 80px 0 60px; position: relative;
}
body.sfv2 .sfv2-page-hero__inner {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center;
    max-width: 1320px; margin: 0 auto; padding: 0 32px;
}
@media (max-width: 1024px) { body.sfv2 .sfv2-page-hero__inner { grid-template-columns: 1fr; gap: 36px; } }
body.sfv2 .sfv2-page-hero__title {
    font-family: var(--font-display); font-weight: 500;
    font-size: clamp(40px, 5.5vw, 76px); line-height: 1; letter-spacing: -0.03em;
    color: var(--blue-night); margin-bottom: 22px;
}
body.sfv2 .sfv2-page-hero__title em { color: var(--orange); font-style: italic; font-weight: 400; }
body.sfv2 .sfv2-page-hero__lede {
    font-size: 18px; line-height: 1.55; color: var(--ink); max-width: 540px;
    margin-bottom: 28px;
}

/* Stat-strip lbl */
body.sfv2 .sfv2-stat-cell__lbl {
    font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(250,247,242,0.7); font-weight: 600; margin-top: 6px;
}

/* =====================================================
   SHIELD HERO (homepage) - bouclier SF en orange
   Format : panneau turquoise gauche + bouclier orange
   centre + photo agent droite
   ===================================================== */
body.sfv2 .sfv2-shield-hero {
    position: relative; overflow: hidden;
    background: var(--cream);
    padding: 0;
}
body.sfv2 .sfv2-shield-hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: 0.85fr 0.65fr 1fr;
    align-items: stretch;
    min-height: clamp(520px, 64vh, 720px);
    overflow: hidden;
}
body.sfv2 .sfv2-shield-hero__left {
    background: var(--blue-deep);
    color: var(--cream);
    padding: 60px 56px 60px 64px;
    display: flex; flex-direction: column;
    justify-content: center; gap: 28px;
    position: relative; z-index: 2;
}
body.sfv2 .sfv2-shield-hero__left::before {
    content: ''; position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(250,247,242,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(250,247,242,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none; opacity: 0.6;
}
body.sfv2 .sfv2-shield-hero__badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,107,26,0.15);
    color: var(--orange-bright);
    padding: 6px 14px; border-radius: 999px;
    font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; align-self: flex-start;
    border: 1px solid rgba(255,107,26,0.25);
    position: relative; z-index: 1;
}
body.sfv2 .sfv2-shield-hero__badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--orange-bright);
    animation: sfv2-pulse 2s infinite;
}
body.sfv2 .sfv2-shield-hero__intro {
    font-family: var(--font-display); font-weight: 500;
    font-size: clamp(34px, 3.3vw, 50px); line-height: 1.05;
    letter-spacing: -0.02em; color: var(--cream);
    position: relative; z-index: 1;
    max-width: 460px;
}
body.sfv2 .sfv2-shield-hero__intro em {
    color: var(--orange-bright); font-style: italic; font-weight: 400;
}
body.sfv2 .sfv2-shield-hero__chev {
    color: var(--orange-bright); font-size: 22px;
    align-self: flex-start; opacity: 0.85;
    position: relative; z-index: 1;
}

/* Shield centerpiece */
body.sfv2 .sfv2-shield-hero__shield {
    position: relative; display: flex;
    align-items: center; justify-content: center;
    margin-left: -40px; margin-right: -40px;
    z-index: 3;
}
body.sfv2 .sfv2-shield-hero__shield-svg {
    width: 110%; height: auto; max-height: 100%;
    filter: drop-shadow(0 30px 50px rgba(255,107,26,0.35));
    animation: sfv2-shield-rise 1s var(--ease-premium, cubic-bezier(.22,1,.36,1)) 0.1s both;
}
@keyframes sfv2-shield-rise {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
body.sfv2 .sfv2-shield-hero__shield-text {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 0 8%;
    color: #fff; pointer-events: none;
}
body.sfv2 .sfv2-shield-hero__shield-eyebrow {
    font-size: 10.5px; letter-spacing: 0.28em; text-transform: uppercase;
    font-weight: 700; color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
}
body.sfv2 .sfv2-shield-hero__shield-text p {
    font-family: var(--font-display); font-weight: 500;
    font-size: clamp(15px, 1.5vw, 22px); line-height: 1.18;
    letter-spacing: -0.01em; color: #fff;
}
body.sfv2 .sfv2-shield-hero__shield-text em {
    font-style: italic; font-weight: 400; color: #fff;
    border-bottom: 2px solid rgba(255,255,255,0.5);
    padding-bottom: 1px;
}

/* Photo panel right */
body.sfv2 .sfv2-shield-hero__photo-wrap {
    position: relative; overflow: hidden;
}
body.sfv2 .sfv2-shield-hero__photo {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
}
body.sfv2 .sfv2-shield-hero__photo-tag {
    position: absolute; top: 24px; right: 24px;
    background: rgba(255,255,255,0.95);
    color: var(--blue-night);
    padding: 8px 14px; border-radius: 999px;
    font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 8px 24px -8px rgba(0,0,0,0.2);
    backdrop-filter: blur(12px);
}

/* Bottom CTA + trust strip */
body.sfv2 .sfv2-shield-hero__bottom {
    background: var(--blue-night); color: var(--cream);
    padding: 28px 40px;
    display: grid; grid-template-columns: auto 1fr;
    gap: 40px; align-items: center;
}
body.sfv2 .sfv2-shield-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
body.sfv2 .sfv2-shield-hero__bottom .sfv2-btn-ghost {
    color: var(--cream); border-color: rgba(250,247,242,0.3);
}
body.sfv2 .sfv2-shield-hero__bottom .sfv2-btn-ghost:hover {
    background: rgba(255,107,26,0.12); border-color: var(--orange-bright);
}
body.sfv2 .sfv2-shield-hero__trust {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    justify-content: end;
}
body.sfv2 .sfv2-shield-hero__trust .sfv2-trust-item {
    display: flex; flex-direction: column; gap: 2px;
    text-align: right;
}
body.sfv2 .sfv2-shield-hero__trust .sfv2-trust-num {
    font-family: var(--font-display); font-weight: 600;
    font-size: clamp(22px, 2vw, 30px); line-height: 1;
    color: var(--orange-bright); letter-spacing: -0.02em;
}
body.sfv2 .sfv2-shield-hero__trust .sfv2-trust-num sup,
body.sfv2 .sfv2-shield-hero__trust .sfv2-trust-num .sfv2-symbol {
    font-size: 0.55em; vertical-align: super; margin-left: 2px;
}
body.sfv2 .sfv2-shield-hero__trust .sfv2-trust-label {
    font-size: 11px; color: rgba(250,247,242,0.65);
    letter-spacing: 0.04em;
}

@media (max-width: 1100px) {
    body.sfv2 .sfv2-shield-hero__grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    body.sfv2 .sfv2-shield-hero__left { padding: 48px 32px 60px; }
    body.sfv2 .sfv2-shield-hero__shield {
        margin: -60px 0 -60px 0; padding: 0 32px;
        height: 320px;
    }
    body.sfv2 .sfv2-shield-hero__photo-wrap { height: 320px; }
    body.sfv2 .sfv2-shield-hero__bottom {
        grid-template-columns: 1fr; gap: 24px; padding: 24px;
    }
    body.sfv2 .sfv2-shield-hero__trust {
        grid-template-columns: repeat(2, 1fr); gap: 16px;
    }
    body.sfv2 .sfv2-shield-hero__trust .sfv2-trust-item { text-align: left; }
}
@media (max-width: 600px) {
    body.sfv2 .sfv2-shield-hero__intro { font-size: 30px; }
    body.sfv2 .sfv2-shield-hero__shield-text p { font-size: 14px; }
    body.sfv2 .sfv2-shield-hero__shield { height: 260px; margin: -40px 16px; }
}

/* SIMK : ligne d'icones framer-style (5 fonctions support) */
body.sfv2 .sfv2-simk-icons {
    list-style: none; padding: 0; margin: 0;
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
    max-width: 1200px; margin: 0 auto;
}
@media (max-width: 1024px) {
    body.sfv2 .sfv2-simk-icons { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
}
@media (max-width: 600px) {
    body.sfv2 .sfv2-simk-icons { grid-template-columns: 1fr; }
}
body.sfv2 .sfv2-simk-icon {
    display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px;
}
body.sfv2 .sfv2-simk-icon__circle {
    position: relative;
    width: 84px; height: 84px; border-radius: 24px;
    background: linear-gradient(180deg, #fff 0%, #fdfaf6 100%);
    border: 1.5px solid rgba(24,119,135,0.12);
    display: flex; align-items: center; justify-content: center;
    color: var(--orange); font-size: 32px;
    box-shadow: 0 12px 28px -16px rgba(24,119,135,0.4), 0 2px 6px rgba(0,0,0,0.04);
    margin-bottom: 6px;
    transition: transform 0.45s var(--ease-premium, cubic-bezier(.22,1,.36,1)),
                box-shadow 0.45s ease, border-color 0.3s, color 0.3s;
}
body.sfv2 .sfv2-simk-icon__circle::after {
    content: ''; position: absolute; inset: -8px; border-radius: 28px;
    background: radial-gradient(circle, rgba(255,107,26,0.18) 0%, transparent 70%);
    opacity: 0; transition: opacity 0.4s; z-index: -1;
}
body.sfv2 .sfv2-simk-icon:hover .sfv2-simk-icon__circle {
    transform: translateY(-6px) scale(1.05);
    border-color: var(--orange);
    box-shadow: 0 24px 48px -16px rgba(255,107,26,0.45), 0 4px 12px rgba(0,0,0,0.06);
}
body.sfv2 .sfv2-simk-icon:hover .sfv2-simk-icon__circle::after { opacity: 1; }
body.sfv2 .sfv2-simk-icon__lbl {
    font-family: var(--font-display); font-weight: 500; font-size: 18px; line-height: 1.2;
    color: var(--blue-night); letter-spacing: -0.01em;
}
body.sfv2 .sfv2-simk-icon__sub {
    font-size: 12.5px; line-height: 1.5; color: var(--ink-soft, #4a5568); max-width: 200px;
}

/* SIMK organization grid (sur la page a-propos, remplace le 350+) */
body.sfv2 .sfv2-page-split__photo--simk {
    background: linear-gradient(135deg, var(--blue-deep), var(--blue-night));
    aspect-ratio: 4/4; padding: 24px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 28px; overflow: hidden;
    box-shadow: 0 30px 60px -25px rgba(24,119,135,0.4);
    position: relative;
}
body.sfv2 .sfv2-page-split__photo--simk::before {
    content: ''; position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(250,247,242,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(250,247,242,0.04) 1px, transparent 1px);
    background-size: 40px 40px; opacity: 0.6;
}
body.sfv2 .sfv2-simk-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 1fr);
    gap: 12px; width: 100%; height: 100%; position: relative; z-index: 1;
}
body.sfv2 .sfv2-simk-cell {
    background: rgba(250,247,242,0.06); border: 1px solid rgba(250,247,242,0.1);
    border-radius: 14px; padding: 16px 12px;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
    color: var(--cream); transition: background 0.3s, border-color 0.3s, transform 0.3s;
    text-align: center;
}
body.sfv2 .sfv2-simk-cell i { font-size: 22px; color: var(--orange-bright); }
body.sfv2 .sfv2-simk-cell span {
    font-size: 11.5px; letter-spacing: 0.05em; font-weight: 600;
    color: rgba(250,247,242,0.85); line-height: 1.2;
}
body.sfv2 .sfv2-simk-cell:hover {
    background: rgba(255,107,26,0.12); border-color: rgba(255,107,26,0.3);
    transform: translateY(-2px);
}
body.sfv2 .sfv2-simk-cell--center {
    background: var(--orange); border-color: var(--orange);
    box-shadow: 0 12px 28px -8px rgba(255,107,26,0.5);
}
body.sfv2 .sfv2-simk-cell--center .sfv2-simk-center {
    font-family: var(--font-display); font-weight: 600; font-size: 28px;
    color: #fff; letter-spacing: -0.02em; line-height: 1;
}
body.sfv2 .sfv2-simk-cell--center small {
    display: block; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    margin-top: 4px; color: rgba(255,255,255,0.85); font-weight: 600;
}
body.sfv2 .sfv2-simk-cell--center:hover { background: var(--orange-bright); transform: translateY(-3px); }
@media (max-width: 600px) {
    body.sfv2 .sfv2-page-split__photo--simk { aspect-ratio: 1/1; padding: 18px; }
    body.sfv2 .sfv2-simk-cell i { font-size: 18px; }
    body.sfv2 .sfv2-simk-cell span { font-size: 10.5px; }
    body.sfv2 .sfv2-simk-cell--center .sfv2-simk-center { font-size: 22px; }
}

/* Timeline horizontale 5 etapes (page recrutement) */
body.sfv2 .sfv2-timeline {
    list-style: none; padding: 0; margin: 0;
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
    position: relative; counter-reset: timeline;
}
body.sfv2 .sfv2-timeline::before {
    content: ''; position: absolute; top: 38px; left: 8%; right: 8%; height: 2px;
    background: linear-gradient(90deg, var(--orange) 0%, var(--orange-bright) 100%);
    opacity: 0.18; z-index: 0;
}
body.sfv2 .sfv2-timeline__step {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    position: relative; z-index: 1;
}
body.sfv2 .sfv2-timeline__icon {
    position: relative; width: 76px; height: 76px; border-radius: 22px;
    background: #fff; border: 1.5px solid rgba(24,119,135,0.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--orange); font-size: 28px;
    box-shadow: 0 12px 28px -16px rgba(24,119,135,0.4), 0 2px 6px rgba(0,0,0,0.04);
    transition: transform 0.4s var(--ease-premium, cubic-bezier(.22,1,.36,1)), box-shadow 0.4s ease, border-color 0.3s;
    margin-bottom: 18px;
}
body.sfv2 .sfv2-timeline__step:hover .sfv2-timeline__icon {
    transform: translateY(-6px) scale(1.04);
    border-color: var(--orange);
    box-shadow: 0 24px 48px -16px rgba(255,107,26,0.4), 0 4px 12px rgba(0,0,0,0.06);
}
body.sfv2 .sfv2-timeline__icon::after {
    content: ''; position: absolute; inset: -6px; border-radius: 26px;
    background: radial-gradient(circle, rgba(255,107,26,0.15) 0%, transparent 70%);
    opacity: 0; transition: opacity 0.4s; z-index: -1;
}
body.sfv2 .sfv2-timeline__step:hover .sfv2-timeline__icon::after { opacity: 1; }
body.sfv2 .sfv2-timeline__num {
    position: absolute; top: -10px; right: -10px;
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--blue-night); color: var(--cream);
    font-family: var(--font-display); font-weight: 600; font-size: 12.5px;
    display: flex; align-items: center; justify-content: center;
    letter-spacing: -0.02em;
}
body.sfv2 .sfv2-timeline__body { max-width: 220px; }
body.sfv2 .sfv2-timeline__title {
    font-family: var(--font-display); font-weight: 500; font-size: 19px; line-height: 1.2;
    color: var(--blue-night); letter-spacing: -0.02em; margin-bottom: 8px;
}
body.sfv2 .sfv2-timeline__desc {
    font-size: 13.5px; line-height: 1.55; color: var(--ink-soft, #4a5568);
}
@media (max-width: 1024px) {
    body.sfv2 .sfv2-timeline { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
    body.sfv2 .sfv2-timeline::before { display: none; }
}
@media (max-width: 600px) {
    body.sfv2 .sfv2-timeline { grid-template-columns: 1fr; }
    body.sfv2 .sfv2-timeline__step { flex-direction: row; text-align: left; gap: 18px; align-items: flex-start; }
    body.sfv2 .sfv2-timeline__icon { margin-bottom: 0; flex-shrink: 0; }
    body.sfv2 .sfv2-timeline__body { max-width: none; flex: 1; padding-top: 4px; }
}

/* Carte des agences (Le Mans + Paris) sur page contact */
body.sfv2 .sfv2-offices-map {
    width: 100%; height: 460px;
    border-radius: 24px; overflow: hidden;
    border: 1px solid rgba(24,119,135,0.1);
    box-shadow: 0 24px 48px -24px rgba(24,119,135,0.18);
}
body.sfv2 .sfv2-offices-map .leaflet-control-attribution { font-size: 10px; }
body.sfv2 .sfv2-pin {
    background: transparent !important;
    border: none !important;
}
body.sfv2 .sfv2-pin > span {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    color: #fff; font-weight: 800; font-size: 13px; letter-spacing: 0.04em;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.35);
    border: 2.5px solid #fff;
}
body.sfv2 .sfv2-pin > span > * { transform: rotate(45deg); }
body.sfv2 .sfv2-pin--lemans > span {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-bright) 100%);
}
body.sfv2 .sfv2-pin--paris > span {
    background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-night) 100%);
}
body.sfv2 .leaflet-popup-content-wrapper {
    border-radius: 12px; padding: 4px 6px;
}
body.sfv2 .leaflet-popup-content {
    font-family: var(--font-body); font-size: 13.5px; line-height: 1.45;
    color: var(--ink); margin: 10px 14px;
}
body.sfv2 .leaflet-popup-content strong {
    color: var(--blue-night); font-weight: 700;
}
@media (max-width: 768px) {
    body.sfv2 .sfv2-offices-map { height: 360px; }
}

/* Page nos-agences : map + 2 selector cards */
body.sfv2 .sfv2-offices-map--tall { height: 520px; margin-bottom: 32px; }
body.sfv2 .sfv2-popup-link {
    display: inline-block; margin-top: 6px; color: var(--orange);
    font-weight: 700; text-decoration: none; font-size: 13px;
    letter-spacing: 0.04em;
}
body.sfv2 .sfv2-popup-link:hover { color: var(--orange-bright); text-decoration: underline; }

body.sfv2 .sfv2-agences-select {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
    margin-top: 32px;
}
@media (max-width: 800px) { body.sfv2 .sfv2-agences-select { grid-template-columns: 1fr; } }
body.sfv2 .sfv2-agence-card {
    display: grid; grid-template-columns: 72px 1fr auto; gap: 24px; align-items: center;
    padding: 28px 32px; background: #fff; border-radius: 24px;
    border: 1px solid rgba(24,119,135,0.1);
    text-decoration: none; color: inherit;
    transition: transform 0.3s var(--ease-premium, cubic-bezier(.22,1,.36,1)),
                box-shadow 0.3s ease, border-color 0.3s;
    position: relative; overflow: hidden;
}
body.sfv2 .sfv2-agence-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
    background: linear-gradient(180deg, var(--orange) 0%, var(--orange-bright) 100%);
    opacity: 0; transition: opacity 0.3s;
}
body.sfv2 .sfv2-agence-card--paris::before {
    background: linear-gradient(180deg, var(--blue-deep) 0%, var(--blue-night) 100%);
}
body.sfv2 .sfv2-agence-card:hover {
    transform: translateY(-4px);
    border-color: rgba(24,119,135,0.3);
    box-shadow: 0 24px 48px -20px rgba(24,119,135,0.2);
    color: inherit;
}
body.sfv2 .sfv2-agence-card:hover::before { opacity: 1; }

body.sfv2 .sfv2-agence-card__pin {
    width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
    border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-bright) 100%);
    color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 16px;
    box-shadow: 0 12px 24px -8px rgba(255,107,26,0.5);
    border: 2.5px solid #fff;
}
body.sfv2 .sfv2-agence-card__pin > span { transform: rotate(45deg); display: block; }
body.sfv2 .sfv2-agence-card--paris .sfv2-agence-card__pin {
    background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-night) 100%);
    box-shadow: 0 12px 24px -8px rgba(24,119,135,0.5);
}

body.sfv2 .sfv2-agence-card__body { display: flex; flex-direction: column; gap: 4px; }
body.sfv2 .sfv2-agence-card__lbl {
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--orange); font-weight: 700;
}
body.sfv2 .sfv2-agence-card--paris .sfv2-agence-card__lbl { color: var(--blue-deep); }
body.sfv2 .sfv2-agence-card__title {
    font-family: var(--font-display); font-weight: 500; font-size: 26px;
    color: var(--blue-night); letter-spacing: -0.02em; line-height: 1.1; margin: 2px 0 6px;
}
body.sfv2 .sfv2-agence-card__addr {
    font-size: 14.5px; line-height: 1.5; color: var(--ink-soft, #4a5568);
    margin-bottom: 8px;
}
body.sfv2 .sfv2-agence-card__meta {
    display: flex; gap: 18px; flex-wrap: wrap;
    font-size: 12.5px; color: var(--blue-night); font-weight: 600;
}
body.sfv2 .sfv2-agence-card__meta i { color: var(--orange); margin-right: 4px; }
body.sfv2 .sfv2-agence-card--paris .sfv2-agence-card__meta i { color: var(--blue-deep); }
body.sfv2 .sfv2-agence-card__cta {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--orange); white-space: nowrap;
    transition: gap 0.3s, color 0.3s;
}
body.sfv2 .sfv2-agence-card--paris .sfv2-agence-card__cta { color: var(--blue-deep); }
body.sfv2 .sfv2-agence-card:hover .sfv2-agence-card__cta { gap: 14px; }
body.sfv2 .sfv2-agence-card__cta svg, body.sfv2 .sfv2-agence-card__cta i { font-size: 12px; transition: transform 0.3s; }
body.sfv2 .sfv2-agence-card:hover .sfv2-agence-card__cta i { transform: translateX(4px); }

@media (max-width: 600px) {
    body.sfv2 .sfv2-agence-card { grid-template-columns: 56px 1fr; gap: 16px; padding: 22px; }
    body.sfv2 .sfv2-agence-card__cta { grid-column: 1 / -1; justify-self: start; margin-top: 4px; }
    body.sfv2 .sfv2-offices-map--tall { height: 380px; }
}

/* Float CTA (devis bouton flottant) */
body.sfv2 .sfv2-float-cta {
    position: fixed; bottom: 24px; right: 24px; z-index: 800;
    background: var(--orange); color: #fff;
    padding: 14px 22px; border-radius: 999px;
    font-size: 14px; font-weight: 700; text-decoration: none;
    box-shadow: 0 12px 28px -8px rgba(255,107,26,0.55);
    display: inline-flex; align-items: center; gap: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}
body.sfv2 .sfv2-float-cta:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -10px rgba(255,107,26,0.7); color: #fff; }
@media (max-width: 600px) { body.sfv2 .sfv2-float-cta { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 13px; } }
