/* =====================================================
   SERVYLO HOMEPAGE - FINAL CSS
   ===================================================== */

:root {
    /* Anima design tokens */
    --sv-primary: #0243f1;
    --sv-primary-light: #2563eb;
    --sv-primary-sky: #60a5fa;
    --sv-dark: #0b0c15;
    --sv-slate-900: #0f172a;
    --sv-slate-800: #171717;
    --sv-neutral-black: #171921;
    --sv-gray-500: #6b7280;
    --sv-gray-review: #545971;
    --sv-gray-400: #888888;
    --sv-gray-border: #d1d1d1;
    --sv-green: #16a34a;
    --sv-green-light: #57d166;
    --sv-green-light-bg: #f1fcf1;
    --sv-green-budget-bg: rgba(22, 163, 74, 0.1);
    --sv-light-bg: #f1f5f9;
    --sv-star: #f59e0b;
    --sv-white: #ffffff;
    --sv-danger: #ed1515;
    --sv-card-border: rgba(0, 0, 0, 0.08);
    --sv-card-shadow: 0px 10px 24px -18px rgba(15, 23, 42, 0.12), 0px 22px 50px -28px rgba(15, 23, 42, 0.18);
    --sv-card-shadow-hover: 0 28px 60px -24px rgba(0, 0, 0, 0.14);
    --sv-transition: all 0.3s ease;
    /* Anima icon container */
    --sv-icon-bg: linear-gradient(180deg, rgba(37,99,235,0.12) 0%, rgba(37,99,235,0.06) 100%);
    --sv-icon-shadow: inset 0px 1px 0px rgba(255,255,255,0.85);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #0f172a; background: #ffffff; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }
button { cursor: pointer; }
[id] { scroll-margin-top: 110px; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid #0243f1; outline-offset: 2px;
}
.sv-header__nav a:focus, .sv-header__dropdown-trigger:focus { outline: none; }
.sv-header__nav a:focus-visible, .sv-header__dropdown-trigger:focus-visible { outline: 2px solid #0243f1; outline-offset: 2px; border-radius: 4px; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.sv-skip-link { position: absolute; top: -100px; left: 16px; z-index: 2000; background: #0243f1; color: #fff; padding: 10px 14px; border-radius: 10px; transition: top .2s ease; }
.sv-skip-link:focus { top: 16px; }

/* =====================================================
   HEADER (Locofy pixel-perfect)
   ===================================================== */
.sv-header { position: sticky; top: 0; z-index: 1000; width: 100%; height: 117px; background: #ffffff; box-shadow: 0px 6px 60px #00000017; overflow: visible; transition: height 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease; will-change: height; }
.sv-header.is-scrolled { height: 80px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.sv-header.is-scrolled .sv-header__inner { padding-top: 16px; padding-bottom: 16px; }
.sv-header__inner { transition: padding 0.3s ease; }
.sv-header__inner { max-width: 1440px; margin: 0 auto; height: 100%; display: flex; align-items: flex-start; justify-content: center; padding: 35px 32px 32px 81px; box-sizing: border-box; position: relative; }
.sv-header__main { display: flex; align-items: center; width: 1327px; gap: 0; justify-content: space-between; }
.sv-header__left { display: flex; align-items: center; height: 49px; flex: 1; gap: 90px; }
.sv-header__logo-nav { display: flex; align-items: center; flex: 1; gap: 189px; }
.sv-header__logo { flex-shrink: 0; }
.sv-header__logo img { width: 152px; height: 30px; }
.sv-header__nav { display: flex; align-items: center; gap: 28px; }
.sv-header__nav a { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500; line-height: 120%; color: #0b0c15; padding: 10px; transition: color 0.25s ease; white-space: nowrap; text-decoration: none; }
.sv-header__nav a.active, .sv-header__nav a:hover { color: #0243f1; }

/* dropdown */
.sv-header__dropdown { position: relative; display: inline-flex; align-items: center; }
.sv-header__dropdown-trigger { display: inline-flex; align-items: center; gap: 4px; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500; line-height: 120%; color: #0b0c15; padding: 10px; cursor: pointer; transition: color 0.25s ease; white-space: nowrap; text-decoration: none; }
.sv-header__dropdown-trigger i { font-size: 12px; transition: transform 0.3s ease; }

@media (min-width: 992px) {
    .sv-header__dropdown:hover .sv-header__dropdown-trigger { color: #0243f1; }
    .sv-header__dropdown:hover .sv-header__dropdown-trigger i { transform: rotate(180deg); }
    .sv-header__dropdown:hover .sv-header__dropdown-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
}

.sv-header__dropdown.open .sv-header__dropdown-trigger { color: #0243f1; }
.sv-header__dropdown.open .sv-header__dropdown-trigger i { transform: rotate(180deg); }
.sv-header__dropdown-menu { position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(10px); min-width: 260px; background: #ffffff; border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.12); border: 1px solid rgba(0,0,0,0.06); padding: 8px; opacity: 0; visibility: hidden; pointer-events: none; transition: all 0.25s ease; z-index: 1000; }
.sv-header__dropdown.open .sv-header__dropdown-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.sv-header__dropdown-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: 10px; font-size: 14px; font-weight: 500; color: #0f172a; transition: all 0.2s ease; }
.sv-header__dropdown-item:hover { background: #f1f5f9; color: #0243f1; }
.sv-header__dropdown-item i { font-size: 18px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: #f1f5f9; border-radius: 8px; color: #0243f1; transition: all 0.2s ease; }
.sv-header__dropdown-item:hover i { background: #0243f1; color: #fff; }

/* auth buttons */
.sv-header__auth { display: flex; gap: 8px; align-items: center; flex-shrink: 0; font-family: 'Poppins', sans-serif; font-size: 18px; color: #171717; }
.sv-btn--login { border-radius: 15px; padding: 10px; font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 500; color: #171717; background: #ffffff; border: none; display: inline-flex; align-items: center; justify-content: center; white-space: nowrap; text-decoration: none; transition: all 300ms ease-out; }
.sv-btn--login:hover { background: #f8fafc; transform: translateY(-1px); }
.sv-btn--signup { background: #0243f1; border: none; border-radius: 15px; padding: 10px; font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 500; color: #ffffff; display: inline-flex; align-items: center; justify-content: center; gap: 16px; white-space: nowrap; width: 137px; box-sizing: border-box; text-decoration: none; transition: all 300ms ease-out; cursor: pointer; }

/* Signup dropdown */
.sv-signup-wrap { position: relative; }
.sv-signup-menu { display: none; position: absolute; top: calc(100% + 8px); right: 0; width: 233px; background: #ffffff; border-radius: 15px; box-shadow: 0px 12px 48px rgba(0,0,0,0.15); border: 1px solid rgba(0,0,0,0.06); overflow: hidden; z-index: 1000; }
.sv-signup-wrap.open .sv-signup-menu { display: block; animation: svFadeDown 200ms ease-out; }
@keyframes svFadeDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.sv-signup-menu__item { display: flex; align-items: center; gap: 16px; padding: 20px 24px; height: 65px; background: #ffffff; text-decoration: none; transition: background 200ms ease; }
.sv-signup-menu__item:hover { background: #f1f5f9; }
.sv-signup-menu__item i,
.sv-signup-menu__item .sv-icon-worker,
.sv-signup-menu__item .sv-icon-client { width: 28px; height: 28px; font-size: 24px; color: #0243f1; fill: none; stroke: #0243f1; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; vertical-align: middle; }
.sv-signup-menu__item span { font-family: 'Inter', sans-serif; font-weight: 500; color: #262626; font-size: 18px; line-height: 24px; }
.sv-signup-menu__divider { height: 1px; background: rgba(0,0,0,0.06); }
.sv-btn--signup i { font-size: 14px; color: #ffffff; transition: transform 300ms ease-out; }
.sv-btn--signup:hover { background: #0235c9; box-shadow: 0 8px 24px -4px rgba(2,67,241,0.35); transform: translateY(-1px); }
.sv-btn--signup:hover i { transform: translateX(2px); }

/* connected */
.sv-header__connected { display: flex; align-items: center; justify-content: center; gap: 9px; flex-shrink: 0; width: 99px; margin-right: -2px; }
.sv-header__notif-wrap { position: relative; margin-left: -5px; }
.sv-header__profile { position: relative; }
.sv-header__notif { width: 50px; height: 50px; border-radius: 99px; background: #ffffff; box-shadow: 0px 2px 11px #00000080; display: flex; align-items: center; justify-content: center; transition: all 300ms ease-out; border: none; padding: 9px; box-sizing: border-box; position: relative; isolation: isolate; cursor: pointer; aspect-ratio: 1; }
.sv-header__notif:hover { box-shadow: 0px 2px 14px #00000080; }
.sv-header__notif-icon { width: 32px; height: 32px; }
.sv-header__notif-badge { position: absolute; top: 17px; left: 26px; width: 11px; height: 11px; background: #ed1515; border-radius: 99px; font-size: 8px; font-weight: 700; color: #ffffff; display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 9.6px; padding: 0 1px; box-sizing: border-box; z-index: 1; border: none; }
.sv-header__avatar { width: 50px; height: 50px; border-radius: 99px; overflow: hidden; cursor: pointer; appearance: none; border: none; padding: 0; flex-shrink: 0; background: #ffffff; box-shadow: 0px 2px 11px #00000080; display: flex; align-items: center; justify-content: center; aspect-ratio: 1; }
.sv-header__avatar img { width: 100%; height: 100%; object-fit: cover; }
.sv-header__avatar i { font-size: 24px; color: #171717; line-height: 1; }

/* dropdowns notif/profile */
.sv-header__notif-menu, .sv-header__profile-menu { display: none; position: absolute; top: calc(100% + 12px); right: 0; width: min(380px, calc(100vw - 24px)); background: #ffffff; border-radius: 20px; box-shadow: 0px 12px 48px rgba(0,0,0,0.15); border: 1px solid rgba(0,0,0,0.06); z-index: 1000; overflow: hidden; animation: svProfileIn 300ms ease-out; }
.sv-header__profile-menu { padding: 28px; width: min(340px, calc(100vw - 24px)); border-radius: 18px; }
.sv-header__notif-menu.open, .sv-header__profile-menu.open { display: block; }
@keyframes svProfileIn { from { opacity: 0; transform: translateY(-8px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }

.sv-header__notif-menu-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid #f1f5f9; }
.sv-header__notif-menu-title { font-size: 18px; font-weight: 700; color: #0f172a; }
.sv-header__notif-menu-close, .sv-header__profile-close { width: 32px; height: 32px; border: none; background: none; font-size: 20px; color: #6b7280; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.sv-header__profile-close { position: absolute; top: 16px; right: 16px; }
.sv-header__notif-menu-close:hover, .sv-header__profile-close:hover { background: #f1f5f9; color: #0f172a; }
.sv-header__notif-list { max-height: 360px; overflow-y: auto; }
.sv-header__notif-item { display: flex; gap: 14px; padding: 16px 24px; transition: background 200ms; border-bottom: 1px solid #f8f9fa; }
.sv-header__notif-item:hover { background: #f8f9fa; }
.sv-header__notif-item--unread { background: #f0f4ff; }
.sv-header__notif-item--unread:hover { background: #e8eeff; }
.sv-header__notif-item-icon { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; }
.sv-header__notif-item-icon--blue { background: #eef2ff; color: #0243f1; }
.sv-header__notif-item-icon--green { background: #f0fdf4; color: #16a34a; }
.sv-header__notif-item-icon--yellow { background: #fefce8; color: #ca8a04; }
.sv-header__notif-item-content { flex: 1; min-width: 0; }
.sv-header__notif-item-text { font-size: 14px; color: #374151; line-height: 1.5; margin: 0 0 4px; }
.sv-header__notif-item-text strong { font-weight: 600; color: #0f172a; }
.sv-header__notif-item-time { font-size: 12px; color: #9ca3af; }
.sv-header__notif-menu-footer { display: block; text-align: center; padding: 16px; font-size: 14px; font-weight: 600; color: #0243f1; border-top: 1px solid #f1f5f9; }
.sv-header__notif-menu-footer:hover { background: #f8f9fa; }

/* Profile menu - Anima pixel-perfect (234x271) */
.sv-header__profile-menu { width: 234px !important; padding: 21px 29px !important; border-radius: 12px !important; border: 1px solid #d1d1d1 !important; box-shadow: 0px 4px 24px rgba(0,0,0,0.08) !important; }
.sv-header__profile-close { top: 8px !important; right: 8px !important; left: auto !important; width: 16px !important; height: 16px !important; padding: 0 !important; }
.sv-header__profile-close i { font-size: 14px; color: #171717; }

.sv-header__profile-header { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-bottom: 16px; width: 100%; }
.sv-header__profile-avatar { width: 72px !important; height: 72px !important; border-radius: 50% !important; overflow: visible !important; background: transparent !important; box-shadow: none !important; display: flex; align-items: center; justify-content: center; position: relative; }
.sv-header__profile-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.sv-header__profile-avatar i { font-size: 32px; color: #171717; }
.sv-header__profile-name { font-family: 'Inter', sans-serif; font-weight: 600; color: #000000; font-size: 14px; line-height: 16.8px; text-align: center; width: 100%; }

.sv-header__profile-divider { width: calc(100% + 58px); margin: 0 -29px; height: 1px; background: #e5e7eb; }

.sv-header__profile-links { display: flex; flex-direction: column; gap: 0; margin: 8px 0; width: 100%; }
.sv-header__profile-link { display: flex; align-items: center; justify-content: space-between; padding: 10px 0 !important; border-radius: 0 !important; background: transparent !important; transition: opacity 0.2s ease; gap: 0 !important; }
.sv-header__profile-link:hover { opacity: 0.7; background: transparent !important; }
.sv-header__profile-link-content { display: inline-flex; align-items: center; gap: 10px; }
.sv-header__profile-link-content i { font-size: 18px !important; color: #171717 !important; width: 20px !important; height: 20px !important; background: transparent !important; border-radius: 0 !important; }
.sv-header__profile-link-content span { font-family: 'Inter', sans-serif !important; font-size: 15px !important; font-weight: 500 !important; color: #171717 !important; }
.sv-header__profile-link-arrow { font-size: 16px !important; color: #171717 !important; width: 16px !important; height: 16px !important; background: transparent !important; border-radius: 0 !important; }
.sv-header__profile-link:hover .sv-header__profile-link-content i,
.sv-header__profile-link:hover .sv-header__profile-link-content span,
.sv-header__profile-link:hover .sv-header__profile-link-arrow { background: transparent !important; color: #171717 !important; }

.sv-header__profile-actions { display: flex; flex-direction: column; gap: 8px; width: 100%; margin-top: 8px; }
.sv-header__profile-btn--primary, .sv-header__profile-btn--outline { display: flex; align-items: center; justify-content: center; height: 27px; padding: 8px 24px; border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600; text-decoration: none; text-align: center; transition: all 300ms ease-out; }
.sv-header__profile-btn--primary { background: #0243f1; color: #ccd9fc; border: none; }
.sv-header__profile-btn--primary:hover { background: #0235c9; }
.sv-header__profile-btn--outline { border: 0.5px solid #888888; background: #ffffff; color: #888888; }
.sv-header__profile-btn--outline:hover { background: #f8fafc; border-color: #0243f1; color: #0243f1; }

.sv-header__hamburger { display: none; background: none; border: none; padding: 8px; }
.sv-header__hamburger--mobile { display: none; }
.sv-header__hamburger span { display: block; width: 24px; height: 2px; background: var(--sv-dark); margin: 5px 0; transition: transform 0.3s ease; border-radius: 1px; }

/* =====================================================
   HERO (Anima pixel-perfect)
   ===================================================== */
.sv-hero {
    padding: 0;
    position: relative;
    background:
        radial-gradient(900px 500px at 85% 0%, rgba(2,67,241,0.07) 0%, transparent 60%),
        radial-gradient(700px 500px at 0% 100%, rgba(2,67,241,0.05) 0%, transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
}
.sv-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(2,67,241,0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.sv-hero__inner { display: flex; width: 1417px; max-width: 100%; margin: 0 auto; align-items: center; justify-content: center; gap: 60px; padding-top: 5px; position: relative; z-index: 1; }
.sv-hero__left { display: flex; flex-direction: column; width: 625px; align-items: flex-start; gap: 24px; }
.sv-hero__right { position: relative; width: 560px; height: 686px; flex-shrink: 0; }

/* trust badge — pill premium */
.sv-hero__trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: #ffffff;
    border: 1px solid rgba(2,67,241,0.18);
    border-radius: 99px;
    width: auto;
    margin-top: 30px;
    box-shadow: 0 4px 16px -8px rgba(2,67,241,0.25);
    transition: all 0.3s ease;
}
.sv-hero__trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -10px rgba(2,67,241,0.35);
    border-color: rgba(2,67,241,0.32);
}
.sv-hero__trust-badge i {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #0243f1;
    font-size: 14px;
    background: linear-gradient(135deg, rgba(2,67,241,0.12), rgba(37,99,235,0.06));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.sv-hero__trust-badge span {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #0f172a;
    font-size: 13px;
    line-height: 19.5px;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

/* title — typo premium avec accent gradient */
.sv-hero__title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: #0f172a;
    font-size: 48px;
    letter-spacing: -1.4px;
    line-height: 1.1;
    align-self: stretch;
}
.sv-hero__highlight {
    background: linear-gradient(120deg, #0243f1 0%, #2563eb 50%, #0235c9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline;
}

/* subtitle */
.sv-hero__subtitle { width: 559px; font-family: 'Inter', sans-serif; font-weight: 400; color: #6b7280; font-size: 20px; line-height: 32px; }

/* checklist — style aligné avec la version mobile (checks bleus dans cercles) */
.sv-hero__checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 559px;
    margin: 12px 0 0;
    padding: 0;
}
.sv-hero__checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #334155;
    font-size: 15px;
    line-height: 1.55;
}
.sv-hero__checklist li i {
    color: #ffffff;
    background: linear-gradient(135deg, #0243f1, #2563eb);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    min-width: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(2,67,241,0.4);
}

/* stat pills */
.sv-hero__stats { display: flex; align-items: flex-start; gap: 12px; width: 100%; }
.sv-hero__stat-pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; background: #f1f5f9; border-radius: 12px; font-family: 'Inter', sans-serif; font-weight: 700; color: #0f172a; font-size: 13px; line-height: 19.5px; white-space: nowrap; }
.sv-hero__stat-pill i { width: 20px; height: 20px; font-size: 20px; display: flex; align-items: center; justify-content: center; }

/* search panel — premium clean */
.sv-hero__search-panel {
    display: flex;
    flex-direction: column;
    max-width: 700px;
    align-items: flex-start;
    gap: 20px;
    padding: 26px;
    width: 100%;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(15,23,42,0.06);
    box-shadow:
        0 4px 12px rgba(15,23,42,0.04),
        0 24px 48px -20px rgba(2,67,241,0.18),
        0 40px 80px -30px rgba(15,23,42,0.18);
    position: relative;
    z-index: 2;
    overflow: visible;
}
.sv-hero__search-panel::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(2,67,241,0.4), transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

/* search fields grid */
.sv-hero__search-fields { display: grid; grid-template-columns: 1fr; grid-template-rows: 72px; height: 72px; gap: 14px; width: 100%; position: relative; z-index: 10; overflow: visible; }

/* input field */
.sv-hero__field-input {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f8fafc;
    border: 1.5px solid rgba(15,23,42,0.06);
    border-radius: 16px;
    height: 72px;
    padding: 0 18px;
    position: relative;
    transition: all 0.25s ease;
    cursor: pointer;
}
.sv-hero__field-input:hover {
    background: #ffffff;
    border-color: rgba(2,67,241,0.2);
}
.sv-hero__field-input:focus-within {
    background: #ffffff;
    border-color: #0243f1;
    box-shadow: 0 0 0 4px rgba(2,67,241,0.1);
}

/* field content (label + value) */
.sv-hero__field-content { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.sv-hero__field-content label { font-family: 'Inter', sans-serif; font-weight: 700; color: #6b7280; font-size: 12px; line-height: 18px; white-space: nowrap; }

/* field icon (ville) */
.sv-hero__field-icon { display: flex; width: 44px; height: 44px; align-items: center; justify-content: center; flex-shrink: 0; border-radius: 14px; box-shadow: inset 0px 1px 0px #ffffffd9; background: linear-gradient(180deg, rgba(37,99,235,0.12) 0%, rgba(37,99,235,0.06) 100%); }
.sv-hero__field-icon i { color: #2563eb; font-size: 20px; }

/* service selector (Anima design) */
.sv-hero__field-input--service { cursor: pointer; z-index: 50; }
.sv-hero__service-selector { display: flex; align-items: flex-end; justify-content: space-between; width: 100%; }
.sv-hero__service-value { font-family: 'Inter', sans-serif; font-weight: 600; color: #0243f1; font-size: 15px; line-height: 22.5px; }
.sv-hero__chevron { cursor: pointer; flex-shrink: 0; opacity: 0.6; transition: opacity 200ms; }
.sv-hero__chevron:hover { opacity: 1; }

/* service dropdown */
.sv-hero__service-dropdown { display: none; background: #ffffff; border: 1px solid rgba(0,0,0,0.06); border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.12); padding: 8px; z-index: 100; width: 100%; max-width: 100%; align-self: stretch; box-sizing: border-box; }
.sv-hero__service-dropdown.open { display: block; }
.sv-hero__service-option { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: 10px; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500; color: #0f172a; cursor: pointer; transition: all 0.2s ease; }
.sv-hero__service-option:hover { background: #f1f5f9; color: #0243f1; }
.sv-hero__service-option.active { background: #f1f5f9; color: #0243f1; }
.sv-hero__service-option i { font-size: 18px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: #f1f5f9; border-radius: 8px; color: #0243f1; flex-shrink: 0; transition: all 0.2s ease; }
.sv-hero__service-option:hover i { background: #0243f1; color: #fff; }
.sv-hero__service-option.active i { background: #0243f1; color: #fff; }

/* city autocomplete dropdown */
.sv-hero__city-dropdown { display: none; position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: #ffffff; border: 1px solid rgba(0,0,0,0.06); border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.12); padding: 8px; z-index: 100; max-height: 280px; overflow-y: auto; }
.sv-hero__city-dropdown.open { display: block; }
.sv-hero__city-option { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: 10px; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500; color: #0f172a; cursor: pointer; transition: all 0.2s ease; }
.sv-hero__city-option:hover { background: #f1f5f9; color: #0243f1; }
.sv-hero__city-option i { font-size: 18px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: #f1f5f9; border-radius: 8px; color: #0243f1; flex-shrink: 0; transition: all 0.2s ease; }
.sv-hero__city-option:hover i { background: #0243f1; color: #fff; }
.sv-hero__city-option span { flex: 1; }
.sv-hero__city-option small { font-size: 12px; color: #6b7280; font-weight: 400; }
.sv-hero__city-loading { padding: 16px; text-align: center; font-size: 13px; color: #6b7280; }

/* input text */
.sv-hero__field-input input { border: none; outline: none; width: 100%; background: transparent; font-family: 'Inter', sans-serif; font-weight: 600; color: #0243f1; font-size: 15px; line-height: 22.5px; min-width: 0; }
.sv-hero__field-input input::placeholder { color: #9ca3af; font-weight: 400; font-size: 15px; }

/* primary CTA */
.sv-hero__search-btn-primary {
    display: flex;
    width: 100%;
    height: 72px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #0243f1 0%, #2563eb 100%);
    border-radius: 16px;
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 24px -8px rgba(2,67,241,0.5), 0 4px 8px -4px rgba(2,67,241,0.3);
    letter-spacing: 0.2px;
}
.sv-hero__search-btn-primary:hover {
    background: linear-gradient(135deg, #0235c9 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 16px 32px -8px rgba(2,67,241,0.55), 0 6px 12px -4px rgba(2,67,241,0.35);
}

/* ghost CTA */
.sv-hero__search-btn-secondary {
    display: flex;
    width: 100%;
    height: 56px;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 16px;
    border: 1.5px solid rgba(2,67,241,0.25);
    background: rgba(2,67,241,0.04);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #0243f1;
    font-size: 16px;
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}
.sv-hero__search-btn-secondary:hover {
    background: rgba(2,67,241,0.08);
    border-color: #0243f1;
    transform: translateY(-1px);
}

/* disclaimer */
.sv-hero__disclaimer { display: flex; align-items: center; gap: 10px; width: 100%; padding-top: 0; padding-bottom: 24px; }
.sv-hero__disclaimer img { width: 20px !important; height: 20px !important; min-width: 20px; max-width: none !important; flex-shrink: 0; display: block !important; }
.sv-hero__disclaimer span { font-family: 'Inter', sans-serif; font-weight: 400; color: #6b7280; font-size: 14px; line-height: 21px; white-space: nowrap; }

/* hero right - image card */
.sv-hero__image-card {
    position: relative;
    width: 560px;
    height: 686px;
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow:
        0 20px 40px -16px rgba(2,67,241,0.18),
        0 30px 60px -24px rgba(15,23,42,0.25),
        0 50px 100px -40px rgba(15,23,42,0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.sv-hero__image-card:hover { transform: translateY(-4px); }
.sv-hero__image-card img {
    position: absolute;
    top: 24px;
    left: 27px;
    width: 506px;
    height: 638px;
    border-radius: 26px;
    box-shadow: 0 24px 60px -28px rgba(15,23,42,0.45);
    object-fit: cover;
}

/* overlay bottom (Figma pixel-perfect) */
.sv-hero__image-overlay { position: absolute; bottom: 38px; left: 27px; width: 498px; display: flex; align-items: center; z-index: 3; pointer-events: none; }
.sv-hero__image-overlay-left {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px 12px 14px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 99px;
    pointer-events: auto;
    box-shadow: 0 8px 24px -8px rgba(0,0,0,0.4);
}
.sv-hero__image-avatars { display: flex; align-items: center; flex-shrink: 0; }
.sv-hero__image-avatars img { width: 44px !important; height: 44px !important; min-width: 44px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.9); max-width: none !important; display: block !important; }
.sv-hero__image-avatars img + img { margin-left: -16px; }
.sv-hero__image-overlay-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: -0.2px;
    line-height: 1.35;
    white-space: nowrap;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.sv-hero__image-overlay-text strong {
    font-weight: 800;
    font-size: 16px;
}
.sv-hero__image-overlay-text .sv-counter { color: #ffffff; }

/* floating card */
.sv-hero__floating-card {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 240px;
    padding: 18px 20px;
    position: absolute;
    top: 239px;
    right: -39px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(2,67,241,0.15);
    z-index: 2;
    box-shadow:
        0 12px 24px -8px rgba(2,67,241,0.2),
        0 24px 48px -16px rgba(15,23,42,0.35);
    animation: svFloatCard 4s ease-in-out infinite;
}
@keyframes svFloatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.sv-hero__floating-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0243f1, #2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 16px -4px rgba(2,67,241,0.5);
}
.sv-hero__floating-card-icon i { font-size: 22px; color: #ffffff; }
.sv-hero__floating-card-body { display: flex; flex-direction: column; gap: 2px; }
.sv-hero__floating-card-stat { display: flex; align-items: baseline; gap: 6px; }
.sv-hero__floating-card-number {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    background: linear-gradient(135deg, #0243f1, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 22px;
    line-height: 26px;
}
.sv-hero__floating-card-time { font-family: 'Inter', sans-serif; font-weight: 600; color: #0f172a; font-size: 14px; line-height: 20px; }
.sv-hero__floating-card-desc { font-family: 'Inter', sans-serif; font-weight: 400; color: #6b7280; font-size: 12px; line-height: 16px; }

/* trust bar */
.sv-hero__trust-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: 88px;
    width: 1328px;
    max-width: 100%;
    margin: 0 auto;
    gap: 16px;
    padding: 32px 0;
    position: relative;
    z-index: 1;
}
.sv-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    height: 88px;
    padding: 18px 18px;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(15,23,42,0.06);
    position: relative;
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 12px -6px rgba(15,23,42,0.08), 0 12px 32px -16px rgba(15,23,42,0.12);
}
.sv-hero__trust-item:hover {
    transform: translateY(-4px);
    border-color: rgba(2,67,241,0.18);
    box-shadow: 0 12px 24px -10px rgba(2,67,241,0.18), 0 24px 50px -22px rgba(15,23,42,0.18);
}

/* Hide mobile-only stats and floating on desktop */
.sv-hero__intro-stats,
.sv-hero__intro-floating { display: none; }
.sv-hero__trust-icon { display: flex; width: 44px; height: 44px; align-items: center; justify-content: center; flex-shrink: 0; border-radius: 14px; box-shadow: inset 0px 1px 0px #ffffffd9; background: linear-gradient(180deg, rgba(37,99,235,0.12) 0%, rgba(37,99,235,0.06) 100%); }
.sv-hero__trust-icon img { width: 20px !important; height: 20px !important; min-width: 20px; max-width: none !important; display: block !important; }
.sv-hero__trust-icon i { font-size: 22px; color: #0243f1; }
.sv-counter { font-variant-numeric: tabular-nums; font-weight: 800; color: #0243f1; }
.sv-hero__trust-title { font-family: 'Inter', sans-serif; font-weight: 700; color: #0f172a; font-size: 14px; line-height: 21px; }
.sv-hero__trust-desc { font-family: 'Inter', sans-serif; font-weight: 400; color: #6b7280; font-size: 12px; line-height: 18px; }

/* suggestions */
.sv-hero__suggestions { position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: #fff; border: 1px solid rgba(15,23,42,0.08); border-radius: 16px; box-shadow: 0 18px 40px rgba(15,23,42,0.12); padding: 8px; display: none; z-index: 30; }
.sv-hero__suggestions.active { display: block; }
.sv-hero__suggestion-item { width: 100%; border: none; background: transparent; display: flex; align-items: flex-start; gap: 12px; padding: 12px; border-radius: 12px; text-align: left; cursor: pointer; }
.sv-hero__suggestion-item:hover { background: #f8fafc; }
.sv-hero__suggestion-item i { font-size: 18px; color: #0243f1; margin-top: 2px; }
.sv-hero__suggestion-content { display: flex; flex-direction: column; gap: 2px; }
.sv-hero__suggestion-content span { font-size: 14px; font-weight: 600; color: #0f172a; }
.sv-hero__suggestion-content small { font-size: 12px; color: #6b7280; }

.grabbing { cursor: grabbing; user-select: none; }

/* =====================================================
   3. CATEGORIES (.sv-categories)
   ===================================================== */
/* =====================================================
   3. CATEGORIES (.sv-categories) — UX/UI premium
   ===================================================== */
.sv-categories {
    padding: 64px 0;
    background:
        radial-gradient(700px 400px at 100% 0%, rgba(2,67,241,0.04) 0%, transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.sv-categories__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    background: transparent;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
    min-height: auto;
}

.sv-categories__header {
    text-align: center;
    margin-bottom: 0;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.sv-categories__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(2,67,241,0.08);
    border: 1px solid rgba(2,67,241,0.18);
    color: #0243f1;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 99px;
}
.sv-categories__eyebrow i { font-size: 14px; }

.sv-categories__title {
    font-family: 'Inter', sans-serif;
    font-size: 44px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1.2px;
    line-height: 1.15;
    margin: 0;
}
.sv-categories__title-accent {
    background: linear-gradient(120deg, #0243f1 0%, #2563eb 50%, #0235c9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sv-categories__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #64748b;
    margin: 0;
    line-height: 1.65;
    max-width: 620px;
    text-align: center;
}

.sv-categories__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: 100%;
}

.sv-category-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(15,23,42,0.06);
    border-radius: 20px;
    padding: 32px 24px;
    width: 100%;
    height: auto;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
    box-shadow: 0 4px 14px -8px rgba(15,23,42,0.08), 0 16px 36px -20px rgba(15,23,42,0.1);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease, border-color 0.4s ease;
    text-decoration: none;
    overflow: hidden;
}

/* Border gradient subtil au hover */
.sv-category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1.5px;
    background: linear-gradient(180deg, rgba(2,67,241,0.45), transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Halo bleu décoratif au hover */
.sv-category-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(2,67,241,0.12) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sv-category-card:hover {
    transform: translateY(-8px);
    border-color: rgba(2,67,241,0.18);
    box-shadow: 0 16px 32px -12px rgba(2,67,241,0.18), 0 32px 60px -24px rgba(15,23,42,0.18);
}
.sv-category-card:hover::before { opacity: 1; }
.sv-category-card:hover::after { opacity: 1; }

.sv-category-card__svg { display: none; }
.sv-category-card__icon-elec,
.sv-category-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, #eef2ff 0%, #dbeafe 100%);
    box-shadow: 0 6px 16px -8px rgba(2,67,241,0.3);
    border: none;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), background 0.4s ease;
    position: relative;
    z-index: 1;
}
.sv-category-card:hover .sv-category-card__icon,
.sv-category-card:hover .sv-category-card__icon-elec {
    transform: scale(1.08) rotate(-4deg);
    background: linear-gradient(135deg, #0243f1 0%, #2563eb 100%);
}
.sv-category-card:hover .sv-category-card__icon i,
.sv-category-card:hover .sv-category-card__icon-elec i {
    color: #ffffff;
}

.sv-category-card__stat {
    display: none;
}

.sv-category-card__name {
    font-family: 'Inter', sans-serif;
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.4px;
    line-height: 1.25;
    margin: 0;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}
.sv-category-card:hover .sv-category-card__name { color: #0243f1; }

.sv-category-card__desc {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 400;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    position: relative;
    z-index: 1;
}

.sv-category-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #0243f1;
    text-decoration: none;
    margin-top: auto;
    position: relative;
    z-index: 1;
    transition: gap 0.3s ease;
}
.sv-category-card__link::after {
    content: '\f061';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    font-size: 11px;
    transition: transform 0.3s ease;
}
.sv-category-card:hover .sv-category-card__link { gap: 10px; }
.sv-category-card:hover .sv-category-card__link::after { transform: translateX(2px); }

/* =====================================================
   4. STEPS (.sv-steps)
   ===================================================== */
/* =====================================================
   4. STEPS (.sv-steps) — UX/UI premium
   ===================================================== */
.sv-steps {
    padding: 48px 24px;
    background:
        radial-gradient(800px 500px at 0% 0%, rgba(2,67,241,0.05) 0%, transparent 60%),
        radial-gradient(700px 400px at 100% 100%, rgba(2,67,241,0.04) 0%, transparent 60%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.sv-steps__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.sv-steps__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.sv-steps__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(2,67,241,0.08);
    border: 1px solid rgba(2,67,241,0.18);
    color: #0243f1;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 99px;
}
.sv-steps__eyebrow i { font-size: 14px; }

.sv-steps__title {
    font-family: 'Inter', sans-serif;
    font-size: 44px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1.2px;
    line-height: 1.15;
    margin: 0;
}
.sv-steps__title-accent {
    color: #0f172a;
    background: none;
    -webkit-text-fill-color: #0f172a;
}

.sv-steps__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #64748b;
    margin: 0;
    line-height: 1.65;
    max-width: 620px;
}

.sv-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* Ligne pointillée animée qui relie les 3 étapes */
.sv-steps__grid::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 18%;
    right: 18%;
    height: 3px;
    background-image:
        linear-gradient(90deg, rgba(2,67,241,0.45) 50%, transparent 50%);
    background-size: 14px 3px;
    background-repeat: repeat-x;
    z-index: 0;
    border-radius: 999px;
}

.sv-step-card {
    background: #ffffff;
    border: 1px solid rgba(15,23,42,0.06);
    border-radius: 24px;
    padding: 40px 28px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease, border-color 0.4s ease;
    box-shadow: 0 4px 14px -8px rgba(15,23,42,0.08), 0 16px 36px -20px rgba(15,23,42,0.1);
    overflow: hidden;
}

/* Numéro géant en filigrane décoratif */
.sv-step-card::before {
    content: attr(data-step);
    position: absolute;
    top: -20px;
    right: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 140px;
    line-height: 1;
    color: rgba(2,67,241,0.04);
    z-index: 0;
    pointer-events: none;
    transition: color 0.4s ease, transform 0.4s ease;
}

.sv-step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(2,67,241,0.18);
    box-shadow: 0 16px 32px -12px rgba(2,67,241,0.18), 0 32px 60px -24px rgba(15,23,42,0.18);
}
.sv-step-card:hover::before {
    color: rgba(2,67,241,0.07);
    transform: translateY(-4px);
}
.sv-step-card > * { position: relative; z-index: 1; }

.sv-step-card__icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: linear-gradient(135deg, #eef2ff 0%, #dbeafe 100%);
    box-shadow: 0 8px 20px -8px rgba(2,67,241,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), background 0.4s ease;
    position: relative;
    flex-shrink: 0;
}
.sv-step-card:hover .sv-step-card__icon {
    transform: scale(1.08) rotate(-4deg);
    background: linear-gradient(135deg, #0243f1 0%, #2563eb 100%);
}
.sv-step-card:hover .sv-step-card__icon i,
.sv-step-card:hover .sv-step-card__icon img {
    color: #ffffff;
    filter: brightness(0) invert(1);
}

.sv-step-card__badge {
    background: linear-gradient(135deg, #0243f1, #2563eb);
    border-radius: 99px;
    padding: 6px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.8px;
    line-height: 1.4;
    text-transform: uppercase;
    box-shadow: 0 4px 12px -4px rgba(2,67,241,0.5);
}

.sv-step-card__title {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.4px;
    line-height: 1.25;
    margin: 0;
}

.sv-step-card__body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* =====================================================
   5. REQUESTS (.sv-requests)
   ===================================================== */
.sv-requests {
    padding: 48px 0;
}

.sv-requests__inner {
    max-width: 1354px;
    margin: 0 auto;
    padding: 0 clamp(16px, 5vw, 43px);
}

.sv-requests__header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.sv-requests__header-left {}

.sv-requests__title {
    font-family: 'Inter', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1px;
}

.sv-requests__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #6b7280;
    margin-top: 8px;
    line-height: 1.6;
}

.sv-requests__badge { display: inline-flex; align-items: center; gap: 10px; padding: 12px 20px; background: #0243f1; border: none; border-radius: 14px; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 500; color: #ffffff; box-shadow: 0px 4px 12px rgba(2,67,241,0.25); }
.sv-requests__badge strong { font-weight: 800; color: #ffffff; }
.sv-requests__badge-dot { width: 10px; height: 10px; border-radius: 50%; background: #ffffff; animation: sv-pulse 1.5s infinite; flex-shrink: 0; box-shadow: 0 0 0 3px rgba(255,255,255,0.3); }
@keyframes sv-pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.85); } }

.sv-requests__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.sv-request-card {
    position: relative;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 16px;
    transition: all .2s ease;
}
.sv-request-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.07);
    border-color: #0243f1;
}
.sv-request-card__content {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0;
}
.sv-request-card__top {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sv-request-card__title {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
}
.sv-request-card__desc {
    font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 400;
    color: #6b7280; line-height: 1.5;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.sv-request-card__city-row {
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
}
.sv-request-card__city-row img { width: 14px !important; height: 14px !important; max-width: none !important; display: block !important; }
.sv-request-card__city {
    font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500; color: #374151;
}
.sv-request-card__separator {
    height: 1px; background: #f1f5f9; margin: 10px 0;
}
.sv-request-card__bottom {
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.sv-request-card__offers-row {
    display: flex; align-items: center;
}
.sv-request-card__offers-badge {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 3px 10px; border-radius: 20px;
    font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600;
    background: #f1f5f9; color:#334155;
}
.sv-request-card__offers-badge i { font-size: 13px; }
.sv-request-card__offers-badge--active {
    background: #dcfce7; color: #166534;
}
.sv-request-card__time {
    font-family: 'Inter', sans-serif; font-size: 12px; color: #94a3b8; white-space: nowrap;
}
.sv-request-card__time i { font-size: 13px; margin-right: 3px; }
.sv-request-card__top-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.sv-request-card__ago { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 500; color:#475569; white-space: nowrap; }
.sv-request-card__ago i { font-size: 12px; margin-right: 2px; }
.sv-request-card__title-row { display: flex; align-items: center; gap: 8px; }
.sv-request-card__service-badge {
    display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px;
    background: #eef3ff; border-radius: 6px;
    font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600; color: #0243f1;
    white-space: nowrap; align-self: flex-start;
}
.sv-request-card__service-badge i { font-size: 12px; }

.sv-request-card__urgent { display: inline-flex; align-items: center; padding: 3px 8px; background: #fef2f2; border-radius: 6px; font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700; color:#b91c1c; white-space: nowrap; }

/* Inline elements - affichés partout (desktop + mobile) sur une seule ligne */
.sv-request-card__inline-offers {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
}
.sv-request-card__inline-offers i { font-size: 15px; color: #0243f1; }
.sv-request-card__inline-time {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #9ca3af;
}
.sv-request-card__inline-time i { font-size: 13px; }
.sv-request-card__inline-budget {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px 10px 12px;
    background: linear-gradient(135deg, #0243f1 0%, #2563eb 50%, #0235c9 100%);
    border: none;
    border-radius: 99px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    position: absolute;
    bottom: 16px;
    right: 16px;
    box-shadow:
        0 8px 20px -6px rgba(2,67,241,0.55),
        0 4px 10px -4px rgba(2,67,241,0.35),
        inset 0 1px 0 rgba(255,255,255,0.25);
    letter-spacing: 0.2px;
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease;
    z-index: 2;
}
.sv-request-card__inline-budget::before {
    content: '\f155';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    font-size: 12px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 2px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
    flex-shrink: 0;
}
.sv-request-card__inline-budget::after {
    content: 'Budget';
    position: absolute;
    top: -9px;
    right: 14px;
    background: #ffffff;
    color: #0243f1;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 99px;
    box-shadow: 0 2px 8px -2px rgba(2,67,241,0.3);
    border: 1px solid rgba(2,67,241,0.12);
}
.sv-request-card:hover .sv-request-card__inline-budget {
    transform: translateY(-2px) scale(1.03);
    box-shadow:
        0 14px 28px -8px rgba(2,67,241,0.6),
        0 8px 16px -4px rgba(2,67,241,0.4),
        inset 0 1px 0 rgba(255,255,255,0.3);
}
.sv-request-card__time i { font-size: 16px; }

.sv-request-card__right { display: flex; flex-direction: column; align-items: center; gap: 12px; flex-shrink: 0; }
.sv-request-card__cta { display: inline-flex; align-items: center; justify-content: center; padding: 10px 20px; background: #0243f1; border-radius: 10px; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; color: #ffffff; text-decoration: none; transition: all 300ms ease-out; white-space: nowrap; }
.sv-request-card__cta:hover { background: #0235c9; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(2,67,241,0.3); }

.sv-request-card > .sv-request-card__budget { display: none; }
.sv-request-card__budget {
    background: linear-gradient(135deg, #0243f1 0%, #2563eb 100%);
    border: none;
    border-radius: 99px;
    padding: 8px 16px;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 6px 16px -6px rgba(2,67,241,0.5);
}
.sv-request-card__budget-label { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.85); }
.sv-request-card__budget-value { font-size: 15px; font-weight: 800; color: #ffffff; }

/* =====================================================
   6. REVIEWS / EXPERIENCES CLIENT (.sv-reviews)
   ===================================================== */
.sv-reviews {
    padding: 48px 0;
    background: #f8fafc;
}

.sv-reviews__inner {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.sv-reviews__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 16px;
}

.sv-reviews__eyebrow i {
    font-size: 14px;
    color: #f59e0b;
}

.sv-reviews__header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 24px;
}

.sv-reviews__title {
    font-family: 'Inter', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1px;
}

.sv-reviews__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #6b7280;
    margin-top: 14px;
    line-height: 1.6;
}

.sv-reviews__scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0 16px 16px;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.sv-reviews__scroll::-webkit-scrollbar {
    display: none;
}

.sv-reviews__scroll.grabbing {
    cursor: grabbing;
}

/* review card */
.sv-review-card {
    width: 400px;
    flex-shrink: 0;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    overflow: hidden;
    transition: all 0.25s ease;
    position: relative;
}
.sv-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(2,67,241,0.1);
    border-color: rgba(2,67,241,0.12);
}

/* quote icon */
.sv-review-card__quote {
    font-size: 32px;
    color: #0243f1;
    opacity: 0.15;
    line-height: 1;
}

/* stars row */
.sv-review-card__stars-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.sv-review-card__rating {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

/* top: stars + text + date */
.sv-review-card__top { display: flex; flex-direction: column; gap: 16px; }
.sv-review-card__stars { display: flex; align-items: center; gap: 2px; }
.sv-review-card__stars i { font-size: 22px; }
.sv-star--filled { color: #f59e0b; }
.sv-star--empty { color: #d1d5db; }

/* avatar placeholder */
.sv-review-card__avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0243f1 0%, #2563eb 100%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sv-review-card__text {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: #545971;
    font-size: 20px;
    line-height: 24px;
}

.sv-review-card__date {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 153px;
    height: 30px;
    background: #f0f0f0;
    border-radius: 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #888888;
    font-size: 14px;
    line-height: 120%;
    text-align: center;
}

/* author row */
.sv-review-card__author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.sv-review-card__author-left { display: flex; align-items: flex-end; gap: 12px; }
.sv-review-card__avatar { width: 55px !important; height: 55px !important; max-width: none !important; display: block !important; border-radius: 50%; object-fit: cover; }
.sv-review-card__author-info { display: flex; flex-direction: column; gap: 10px; }
.sv-review-card__author-name { font-family: 'Inter', sans-serif; font-weight: 600; color: #171921; font-size: 18px; line-height: 120%; }
.sv-review-card__author-reviews { font-family: 'Inter', sans-serif; font-weight: 400; color: #888888; font-size: 16px; line-height: 19.2px; }

.sv-review-card__author-city { display: inline-flex; align-items: center; gap: 4px; font-family: 'Inter', sans-serif; font-weight: 400; color: #6b7280; font-size: 13px; line-height: 120%; }
.sv-review-card__author-city i { font-size: 14px; color: #0243f1; }

/* =====================================================
   7. PROVIDERS (.sv-providers) — UX/UI premium
   ===================================================== */
.sv-providers {
    padding: 48px 24px;
    background:
        radial-gradient(800px 500px at 0% 0%, rgba(2,67,241,0.05) 0%, transparent 60%),
        radial-gradient(700px 400px at 100% 100%, rgba(2,67,241,0.04) 0%, transparent 60%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.sv-providers__inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

.sv-providers__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 56px;
    gap: 16px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.sv-providers__header-left { display: contents; }

.sv-providers__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(2,67,241,0.08);
    border: 1px solid rgba(2,67,241,0.18);
    color: #0243f1;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 99px;
}
.sv-providers__eyebrow i { font-size: 14px; }

.sv-providers__title {
    font-family: 'Inter', sans-serif;
    font-size: 44px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1.2px;
    line-height: 1.15;
    margin: 0;
}
.sv-providers__title-accent {
    background: linear-gradient(120deg, #0243f1 0%, #2563eb 50%, #0235c9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sv-providers__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #64748b;
    margin: 0;
    line-height: 1.65;
    max-width: 620px;
}

.sv-providers__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sv-provider-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    align-items: stretch;
    justify-content: flex-start;
    gap: 14px;
    padding: 14px;
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(15,23,42,0.06);
    box-shadow: 0 4px 14px -8px rgba(15,23,42,0.08), 0 16px 36px -20px rgba(15,23,42,0.1);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease, border-color 0.4s ease;
    text-decoration: none;
}
.sv-provider-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1.5px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(2,67,241,0.45), transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sv-provider-card:hover {
    transform: translateY(-8px);
    border-color: rgba(2,67,241,0.18);
    box-shadow: 0 16px 32px -12px rgba(2,67,241,0.18), 0 32px 60px -24px rgba(15,23,42,0.18);
}
.sv-provider-card:hover::before { opacity: 1; }
.sv-provider-card:hover .sv-provider-card__cta { background: linear-gradient(135deg, #0243f1, #2563eb); color: #ffffff; border-color: transparent; box-shadow: 0 6px 14px -4px rgba(2,67,241,0.5); }

/* inner wrapper */
.sv-provider-card__inner { display: flex; flex-direction: column; height: 541px; align-items: center; gap: 32px; padding: 10px 0; width: 100%; }

/* photo */
.sv-provider-card__photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 18px;
    align-self: stretch;
    position: relative;
}
.sv-provider-card__price-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #0243f1;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 10px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(2,67,241,.35);
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 2px;
}
.sv-provider-card__price-badge span {
    font-size: 11px;
    font-weight: 600;
    opacity: .8;
}
.sv-provider-card__avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.sv-provider-card:hover .sv-provider-card__avatar { transform: scale(1.06); }
.sv-provider-card__avatar--initials {
    display: flex; align-items: center; justify-content: center;
    font-family: 'Inter', sans-serif; font-size: 64px; font-weight: 700;
    color: #fff; letter-spacing: 2px;
}

/* info block */
.sv-provider-card__info {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 4px 6px 0;
    width: 100%;
}

/* name + verified */
.sv-provider-card__name-row { display: flex; align-items: center; justify-content: flex-start; gap: 8px; width: 100%; }
.sv-provider-card__name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #0f172a;
    font-size: 17px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.3px;
}
.sv-provider-card__verified {
    width: 18px !important;
    height: 18px !important;
    max-width: none !important;
    display: block !important;
    flex-shrink: 0;
}

/* category */
.sv-provider-card__category-label {
    display: inline-flex;
    align-self: flex-start;
    padding: 4px 10px;
    background: linear-gradient(135deg, #eef2ff 0%, #dbeafe 100%);
    border-radius: 99px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #0243f1;
    font-size: 11px;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

/* meta row: rating + city + price */
.sv-provider-card__meta {
    display: flex;
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 4px;
    border-top: 1px dashed rgba(15,23,42,0.08);
    margin-top: 4px;
}

/* rating */
.sv-provider-card__meta-rating {
    display: inline-flex;
    width: auto;
    align-items: center;
    gap: 4px;
}
.sv-provider-card__meta-rating img {
    width: 16px !important;
    height: 16px !important;
    max-width: none !important;
    display: block !important;
}
.sv-provider-card__rating-score {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #0f172a;
    font-size: 13px;
}
.sv-provider-card__rating-count {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #94a3b8;
    font-size: 11px;
}

/* city */
.sv-provider-card__meta-city {
    display: inline-flex;
    width: auto;
    align-items: center;
    gap: 4px;
}
.sv-provider-card__meta-city img {
    width: 14px !important;
    height: 14px !important;
    max-width: none !important;
    display: block !important;
}
.sv-provider-card__meta-city .sv-provider-card__city {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.3;
}

/* price — pill premium gradient bleu avec label "Tarif" */
.sv-provider-card__price-wrap {
    display: inline-flex;
    align-items: baseline;
    gap: 3px;
    background: linear-gradient(135deg, #0243f1 0%, #2563eb 50%, #0235c9 100%);
    border: none;
    border-radius: 99px;
    padding: 7px 14px;
    position: relative;
    box-shadow:
        0 6px 16px -6px rgba(2,67,241,0.5),
        0 2px 6px -2px rgba(2,67,241,0.3),
        inset 0 1px 0 rgba(255,255,255,0.25);
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease;
}
.sv-provider-card:hover .sv-provider-card__price-wrap {
    transform: translateY(-2px) scale(1.04);
    box-shadow:
        0 10px 24px -6px rgba(2,67,241,0.6),
        0 4px 10px -2px rgba(2,67,241,0.4),
        inset 0 1px 0 rgba(255,255,255,0.3);
}
.sv-provider-card__price {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: #ffffff;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.2px;
}
.sv-provider-card__price-unit {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    font-size: 11px;
    margin-left: 1px;
}

/* CTA button */
.sv-provider-card__cta {
    height: 38px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 16px;
    background: rgba(2,67,241,0.05);
    border: 1.5px solid rgba(2,67,241,0.2);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #0243f1;
    font-size: 13px;
    align-self: stretch;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 6px;
}
.sv-provider-card__cta::after {
    content: '\f061';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    font-size: 11px;
    transition: transform 0.3s ease;
}
.sv-provider-card:hover .sv-provider-card__cta::after { transform: translateX(3px); }

.sv-provider-card__city {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.32px;
    line-height: 24px;
    color: #757575;
}

.sv-provider-card__category {
    background: #e6f2ff;
    border-radius: 8px;
    padding: 5px 10px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #2563eb;
    align-self: flex-start;
}

.sv-provider-card__rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sv-provider-card__rating-star {
    color: #ffc124;
    font-size: 14px;
}

.sv-provider-card__rating-score {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.sv-provider-card__rating-count {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #4b5563;
}

.sv-provider-card__price--legacy-desktop {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #0243f1;
}

.sv-provider-card__price-unit--legacy-desktop {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #888888;
    margin-left: 1px;
}

.sv-provider-card__badge-new {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #0243f1;
    background: #eff6ff;
    padding: 5px 12px;
    border-radius: 8px;
}

.sv-provider-card__badge-new i {
    font-size: 14px;
}

/* =====================================================
   8. CTA JOIN (.sv-cta-banner)
   ===================================================== */
.sv-cta-banner {
    max-width: 1232px;
    margin: 0 auto;
    border-radius: 28px;
    padding: 45px 44px 44px;
    background: linear-gradient(169deg, rgba(2,67,241,1) 0%, rgba(2,68,241,1) 49%, rgba(96,165,250,1) 100%);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 235px;
    grid-template-rows: auto;
    align-items: center;
    gap: 24px;
    position: relative;
    overflow: hidden;
}
.sv-cta-banner::before { content: ''; position: absolute; inset: 0; border-radius: 28px; box-shadow: 0px 36px 70px -34px #2563eb8c; background: #ffffff01; pointer-events: none; }

.sv-cta-banner__left { display: flex; align-items: center; gap: 22px; }
.sv-cta-banner__icon { width: 76px; height: 76px; min-width: 76px; flex-shrink: 0; max-width: none !important; display: block !important; }
.sv-cta-banner__text { display: flex; flex-direction: column; gap: 9.44px; }

.sv-cta-banner__title {
    font-family: 'Inter', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
    line-height: 36.7px;
}

.sv-cta-banner__body {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #ffffff;
    line-height: 28.9px;
    opacity: 0.96;
    max-width: 700px;
}

.sv-cta-banner__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 58px;
    padding: 0 28px;
    background: #ffffff;
    border: none;
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #2563eb;
    text-align: center;
    line-height: 24px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--sv-transition);
}

.sv-cta-banner__btn:hover {
    background: var(--sv-light-bg);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

/* =====================================================
   9. FAQ (.sv-faq)
   ===================================================== */
.sv-faq {
    padding: 48px 96px;
    background: #f1f5f9;
}

.sv-faq__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.sv-faq__header {
    text-align: center;
    margin-bottom: 40px;
}

.sv-faq__title {
    font-family: 'Inter', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1px;
}

.sv-faq__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color:#475569;
    margin-top: 12px;
    line-height: 1.6;
}

.sv-faq__list {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.sv-faq__item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 0;
    cursor: pointer;
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    position: relative;
}

.sv-faq__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #0243f1;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.sv-faq__item:hover {
    border-color: rgba(2, 67, 241, 0.15);
    transform: translateY(-2px);
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08);
}

.sv-faq__item.active {
    border-color: #0243f1;
    box-shadow: 0px 12px 32px rgba(2, 67, 241, 0.12);
    transform: translateY(-2px);
}
.sv-faq__item.active::before { transform: scaleY(1); }

.sv-faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 26px;
    gap: 16px;
}

.sv-faq__question span {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    line-height: 22px;
    transition: color 300ms ease;
}
.sv-faq__item.active .sv-faq__question span { color: #0243f1; }

.sv-faq__chevron { width: 20px !important; height: 20px !important; max-width: none !important; display: block !important; flex-shrink: 0; transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); opacity: 0.6; }
.sv-faq__item:hover .sv-faq__chevron { opacity: 1; }
.sv-faq__item.active .sv-faq__chevron { transform: rotate(180deg); opacity: 1; }

.sv-faq__answer {
    display: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
    line-height: 24px;
    border-top: 1px solid rgba(2, 67, 241, 0.08);
    padding: 18px 26px 22px;
    animation: svFaqAnswerFade 400ms ease-out;
}
@keyframes svFaqAnswerFade {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.sv-faq__item.active .sv-faq__answer {
    display: block;
}

/* =====================================================
   10. CTA PUBLISH (.sv-cta-publish)
   ===================================================== */
.sv-cta-publish {
    display: flex;
    flex-direction: column;
    width: 1232px;
    max-width: 100%;
    margin: 0 auto;
    align-items: center;
    gap: 13px;
    padding: 73px 40px 64px;
    border-radius: 30px;
    background: radial-gradient(50% 50% at 26% 56%, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0) 26%), linear-gradient(165deg, rgba(2,67,241,1) 0%, rgba(37,99,235,1) 48%, rgba(59,130,246,1) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.sv-cta-publish::before { content: ''; position: absolute; inset: 0; top: 9px; border-radius: 30px; box-shadow: 0px 36px 72px -34px #2563eb8c; background: #ffffff01; pointer-events: none; }

.sv-cta-publish__title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: #ffffff;
    font-size: 42px;
    text-align: center;
    letter-spacing: -1.2px;
    line-height: 45.4px;
    position: relative;
}

.sv-cta-publish__body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #ffffff;
    font-size: 18px;
    text-align: center;
    line-height: 30.6px;
    opacity: 0.94;
    padding-bottom: 15.6px;
    position: relative;
}

.sv-cta-publish__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 17px 28px;
    background: #ffffff;
    border: none;
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #2563eb;
    font-size: 16px;
    text-align: center;
    line-height: 24px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--sv-transition);
    position: relative;
    white-space: nowrap;
}

.sv-cta-publish__btn:hover {
    background: var(--sv-light-bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}


/* =====================================================
   12. FOOTER (.sv-footer)
   ===================================================== */
/* =====================================================
   SEO EDITORIAL
   ===================================================== */
/* =====================================================
   EDITORIAL SEO — UX/UI premium
   ===================================================== */
.sv-editorial {
    padding: 48px 24px;
    background:
        radial-gradient(800px 500px at 100% 0%, rgba(2,67,241,0.05), transparent 60%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}
.sv-editorial__inner { max-width: 1232px; margin: 0 auto; position: relative; }

/* Header */
.sv-editorial__header { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.sv-editorial__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: rgba(2,67,241,0.08);
    color: #0243f1;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 99px;
    margin-bottom: 18px;
}
.sv-editorial__eyebrow i { font-size: 14px; }
.sv-editorial__title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.8px;
    line-height: 1.2;
    margin: 0 0 16px;
}
.sv-editorial__title-accent {
    background: linear-gradient(120deg, #0243f1 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sv-editorial__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

/* Articles grid (2x2) */
.sv-editorial__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.sv-editorial__article {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(15,23,42,0.06);
    border-radius: 22px;
    padding: 36px 32px;
    box-shadow: 0 4px 18px rgba(15,23,42,0.04), 0 18px 50px -22px rgba(15,23,42,0.1);
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
}
.sv-editorial__article:hover {
    transform: translateY(-4px);
    border-color: rgba(2,67,241,0.18);
    box-shadow: 0 10px 24px rgba(15,23,42,0.06), 0 26px 60px -22px rgba(2,67,241,0.18);
}

/* Icon */
.sv-editorial__article-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #eef2ff 0%, #dbeafe 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: transform 0.35s ease;
}
.sv-editorial__article-icon i { font-size: 24px; color: #0243f1; }
.sv-editorial__article:hover .sv-editorial__article-icon { transform: scale(1.05) rotate(-3deg); }

.sv-editorial__article-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #0f172a;
    font-size: 20px;
    line-height: 1.35;
    letter-spacing: -0.3px;
    margin: 0 0 14px;
}
.sv-editorial__article-body p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #64748b;
    font-size: 14.5px;
    line-height: 1.75;
    margin: 0 0 12px;
}
.sv-editorial__article-body p:last-child { margin-bottom: 0; }
.sv-editorial__article-body strong { color: #0f172a; font-weight: 600; }

/* Tags pill list (carte 2) */
.sv-editorial__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}
.sv-editorial__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    background: #f1f5f9;
    border: 1px solid rgba(15,23,42,0.05);
    border-radius: 99px;
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: #334155;
    transition: all 0.25s ease;
    cursor: default;
}
.sv-editorial__tag i { font-size: 14px; color: #0243f1; }
.sv-editorial__tag:hover {
    background: #eef2ff;
    border-color: rgba(2,67,241,0.2);
    color: #0243f1;
    transform: translateY(-1px);
}

/* Pricing list (carte 4) — UX/UI premium */
.sv-editorial__pricing {
    list-style: none;
    margin: 18px 0 0;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border: 1px solid rgba(15,23,42,0.06);
    border-radius: 16px;
    box-shadow: 0 2px 8px -4px rgba(15,23,42,0.04);
}
.sv-editorial__pricing li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 10px;
    border-radius: 12px;
    transition: background 0.3s ease, transform 0.3s ease;
    cursor: default;
}
.sv-editorial__pricing li:hover {
    background: rgba(2,67,241,0.05);
    transform: translateX(3px);
}
.sv-editorial__pricing li + li {
    border-top: 1px dashed rgba(15,23,42,0.08);
    margin-top: 2px;
}
.sv-editorial__pricing-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    color: #0f172a;
    letter-spacing: -0.2px;
}
.sv-editorial__pricing-label i {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eef2ff 0%, #dbeafe 100%);
    border-radius: 10px;
    color: #0243f1;
    font-size: 17px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px -4px rgba(2,67,241,0.25);
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), background 0.35s ease;
}
.sv-editorial__pricing li:hover .sv-editorial__pricing-label i {
    transform: scale(1.08) rotate(-4deg);
    background: linear-gradient(135deg, #0243f1 0%, #2563eb 100%);
    color: #ffffff;
}
.sv-editorial__article-source {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px dashed rgba(15,23,42,0.08);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color:#475569;
    line-height: 1.5;
}
.sv-editorial__article-source a {
    color: #64748b;
    text-decoration: underline;
    text-decoration-color: rgba(2,67,241,0.3);
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}
.sv-editorial__article-source a:hover {
    color: #0243f1;
    text-decoration-color: #0243f1;
}
.sv-editorial__pricing-value {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, #0243f1 0%, #2563eb 100%);
    padding: 6px 14px;
    border-radius: 99px;
    box-shadow: 0 4px 12px -4px rgba(2,67,241,0.45), 0 1px 3px rgba(2,67,241,0.25);
    letter-spacing: 0.2px;
    white-space: nowrap;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sv-editorial__pricing li:hover .sv-editorial__pricing-value {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -6px rgba(2,67,241,0.55), 0 2px 6px rgba(2,67,241,0.3);
}

/* =====================================================
   BESOIN D'AIDE (Anima pixel-perfect)
   ===================================================== */
.sv-help { padding: 0 24px 48px; }
.sv-help__inner { max-width: 1232px; margin: 0 auto; }
.sv-help__card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    background: #ffffff;
    border: 1px solid #00000014;
    border-radius: 16px;
    text-decoration: none;
    transition: all 300ms ease-out;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.04);
}
.sv-help__card:hover { transform: translateY(-2px); box-shadow: 0px 8px 30px rgba(0,0,0,0.08); border-color: #0243f1; }
.sv-help__icon { width: 52px; height: 52px; background: linear-gradient(180deg, rgba(37,99,235,0.12) 0%, rgba(37,99,235,0.06) 100%); border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sv-help__icon i { font-size: 24px; color: #0243f1; }
.sv-help__text { flex: 1; }
.sv-help__title { font-family: 'Inter', sans-serif; font-weight: 700; color: #0f172a; font-size: 18px; line-height: 24px; }
.sv-help__desc { font-family: 'Inter', sans-serif; font-weight: 400; color: #6b7280; font-size: 14px; line-height: 21px; margin-top: 4px; }
.sv-help__arrow { font-size: 20px; color: #6b7280; transition: all 200ms ease; flex-shrink: 0; }
.sv-help__card:hover .sv-help__arrow { color: #0243f1; transform: translateX(4px); }

/* =====================================================
   NOS ENGAGEMENTS
   ===================================================== */
.sv-engagements { padding: 48px 0; }
.sv-engagements__inner { max-width: 1232px; margin: 0 auto; padding: 0 24px; }
.sv-engagements__header { text-align: center; margin-bottom: 48px; }
.sv-engagements__title {
    font-family: 'Inter', sans-serif; font-size: 32px; font-weight: 800;
    color: #0f172a; line-height: 1.25; letter-spacing: -.02em; margin: 0 0 10px;
}
.sv-engagements__subtitle {
    font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 400;
    color: #64748b; margin: 0;
}
.sv-engagements__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.sv-engagements__card {
    background: #fff; border: 1px solid #e5e7eb; border-radius: 20px;
    padding: 32px 24px; text-align: center; transition: all .25s;
}
.sv-engagements__card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(2,67,241,.08); border-color: rgba(2,67,241,.12); }
.sv-engagements__icon {
    width: 56px; height: 56px; border-radius: 16px; background: #eff6ff;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: #0243f1; margin: 0 auto 20px; transition: all .25s;
}
.sv-engagements__card:hover .sv-engagements__icon { background: #0243f1; color: #fff; }
.sv-engagements__card-title {
    font-family: 'Inter', sans-serif; font-size: 17px; font-weight: 700;
    color: #0f172a; margin: 0 0 10px;
}
.sv-engagements__card-desc {
    font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 400;
    color: #64748b; line-height: 1.6; margin: 0;
}
.sv-engagements__card-desc a { color: #0243f1; text-decoration: none; font-weight: 500; }
.sv-engagements__card-desc a:hover { text-decoration: underline; }
.sv-engagements__cta { text-align: center; margin-top: 40px; }
.sv-engagements__btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 36px; background: #0243f1; color: #fff; border-radius: 12px;
    font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600;
    text-decoration: none; transition: all .2s;
    box-shadow: 0 6px 20px rgba(2,67,241,.2);
}
.sv-engagements__btn:hover { background: #0235c7; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(2,67,241,.3); color: #fff; }
.sv-engagements__btn i { font-size: 20px; }
@media (max-width: 1024px) { .sv-engagements__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) {
    .sv-engagements { padding: 32px 0; }
    .sv-engagements__title { font-size: 24px; }
    .sv-engagements__grid { grid-template-columns: 1fr; gap: 14px; }
    .sv-engagements__card { padding: 24px 20px; }
}

/* =====================================================
   SEO CITIES BLOCK
   ===================================================== */
.sv-seo-block { max-width: 1232px; margin: 0 auto; padding: 24px 24px 48px; }
.sv-seo-block__inner {
    background: #fff; border: 1px solid #e5e7eb; border-radius: 24px; padding: 0;
    box-shadow: 0 4px 24px rgba(0,0,0,.04); overflow: hidden;
}
.sv-seo-block__header {
    padding: 40px 44px 32px; border-bottom: 1px solid #f1f5f9;
    background: linear-gradient(135deg, #f8faff 0%, #fff 100%);
}
.sv-seo-block__title {
    font-family: 'Inter', sans-serif; font-size: 22px; font-weight: 800; color: #0f172a;
    margin: 0 0 6px; display: flex; align-items: center; gap: 10px;
}
.sv-seo-block__title::before {
    content: ''; display: inline-block; width: 4px; height: 22px;
    background: #0243f1; border-radius: 2px; flex-shrink: 0;
}
.sv-seo-block__subtitle {
    font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 400; color: #6b7280;
    margin: 0; padding-left: 14px;
}
.sv-seo-block__grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
}
.sv-seo-block__col {
    padding: 28px 28px;
    border-bottom: 1px solid #f1f5f9;
    transition: background .2s;
}
.sv-seo-block__col:hover { background: #fafbfd; }
.sv-seo-block__col:nth-child(3n+2) { border-left: 1px solid #f1f5f9; border-right: 1px solid #f1f5f9; }
.sv-seo-block__col:nth-last-child(-n+3) { border-bottom: none; }
.sv-seo-block__city {
    font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700; color: #0f172a;
    margin: 0 0 16px; display: flex; align-items: center; gap: 8px;
}
.sv-seo-block__city i {
    width: 28px; height: 28px; border-radius: 8px; background: #eef2ff;
    display: inline-flex; align-items: center; justify-content: center;
    color: #0243f1; font-size: 15px; flex-shrink: 0;
}
.sv-seo-block__links {
    list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0;
}
.sv-seo-block__links li { border-top: 1px solid transparent; }
.sv-seo-block__links li a {
    font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 400; color: #4b5563;
    text-decoration: none; transition: all .2s; display: flex; align-items: center; gap: 8px;
    padding: 7px 0; border-radius: 6px;
}
.sv-seo-block__links li a i { font-size: 14px; color: #94a3b8; transition: all .2s; width: 16px; text-align: center; }
.sv-seo-block__links li a:hover { color: #0243f1; padding-left: 6px; }
.sv-seo-block__links li a:hover i { color: #0243f1; }

@media (max-width: 768px) {
    .sv-seo-block__grid { grid-template-columns: repeat(2, 1fr); }
    .sv-seo-block__col:nth-child(3n+2) { border-left: none; border-right: none; }
    .sv-seo-block__col:nth-child(even) { border-left: 1px solid #f1f5f9; }
    .sv-seo-block__col:nth-last-child(-n+3) { border-bottom: 1px solid #f1f5f9; }
    .sv-seo-block__col:nth-last-child(-n+2) { border-bottom: none; }
    .sv-seo-block__header { padding: 28px 24px 24px; }
    .sv-seo-block__title { font-size: 18px; }
    .sv-seo-block__col { padding: 20px 20px; }
}
@media (max-width: 480px) {
    .sv-seo-block__grid { grid-template-columns: 1fr; }
    .sv-seo-block__col:nth-child(even) { border-left: none; }
    .sv-seo-block__col { border-bottom: 1px solid #f1f5f9; }
    .sv-seo-block__col:last-child { border-bottom: none; }
}

/* =====================================================
   FOOTER (Anima pixel-perfect)
   ===================================================== */
.sv-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #0243f1;
    color: #ffffff;
}

.sv-footer__inner {
    display: flex;
    margin: 62px 64px 0;
    width: 1269px;
    max-width: calc(100% - 128px);
    flex-direction: column;
    align-items: flex-start;
    gap: 64px;
    border-bottom: 0.8px solid #ffffff;
    padding-bottom: 24px;
    align-self: center;
}

.sv-footer__main {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    width: 100%;
}

/* brand column */
.sv-footer__brand { display: inline-flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 24px; flex-shrink: 0; }
.sv-footer__logo img { width: 200px; height: auto; max-width: none !important; display: block !important; }
.sv-footer__desc { font-family: 'Inter', sans-serif; font-weight: 400; color: #ffffff; font-size: 15px; line-height: 24px; width: 420px; max-width: 100%; opacity: 0.92; }

/* Contact info */
.sv-footer__contact { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.sv-footer__contact-item { display: inline-flex; align-items: flex-start; gap: 10px; font-family: 'Inter', sans-serif; font-weight: 400; color: #ffffff; font-size: 14px; line-height: 20px; text-decoration: none; transition: opacity 0.2s ease; }
.sv-footer__contact-item:hover { opacity: 0.8; }
.sv-footer__contact-item i { font-size: 18px; color: #ffffff; flex-shrink: 0; margin-top: 1px; opacity: 0.9; }

/* Social links améliorés */
.sv-footer__social { display: flex; align-items: center; gap: 10px; }
.sv-footer__social-link { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.12); color: #ffffff; font-size: 16px; text-decoration: none; transition: all 0.3s ease; border: 1px solid rgba(255,255,255,0.08); }
.sv-footer__social-link:hover { background: #ffffff; color: #0243f1; transform: translateY(-2px); box-shadow: 0px 8px 16px rgba(0,0,0,0.15); }

/* links columns */
.sv-footer__links { display: flex; width: 805px; align-items: flex-start; }
.sv-footer__col { display: flex; flex-direction: column; width: 217.6px; align-items: flex-start; gap: 23px; }

.sv-footer__col-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
}

.sv-footer__col-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sv-footer__col-list a {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #ffffff;
    font-size: 15px;
    line-height: 22.5px;
    text-decoration: none;
    transition: opacity 0.25s ease;
}
.sv-footer__col-list a:hover { opacity: 0.7; }

/* bottom bar */
.sv-footer__bottom {
    display: flex;
    width: 1269px;
    max-width: calc(100% - 128px);
    margin: 17px auto 0;
    padding: 24px 0 32px;
    align-self: center;
}

.sv-footer__copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.sv-footer__copyright-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #ffffff;
    font-size: 14px;
    line-height: 120%;
    opacity: 0.85;
}

.sv-footer__copyright-made {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #ffffff;
    font-size: 13px;
    opacity: 0.85;
}
.sv-footer__copyright-made i {
    color: #ef4444;
    font-size: 14px;
    animation: svHeartBeat 1.5s ease-in-out infinite;
}
@keyframes svHeartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.sv-footer__copyright-links {
    display: inline-flex;
    align-items: flex-start;
    gap: 22px;
}

.sv-footer__copyright-links a {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #ffffff;
    font-size: 14px;
    line-height: 21px;
    text-decoration: none;
    transition: opacity 0.25s ease;
}
.sv-footer__copyright-links a:hover { opacity: 0.7; }

/* floating card styles removed - hero uses image card now */

/* =====================================================
   CATEGORY CARD ICON (icon inside)
   ===================================================== */
.sv-category-card__icon i { font-size: 28px; color: #0243f1; transition: color 0.3s ease; }
.sv-category-card__icon-elec i { font-size: 28px; color: #0243f1; transition: color 0.3s ease; }
.sv-category-card__icon-elec img { display: none; }

/* =====================================================
   STEP CARD ICON (icon inside)
   ===================================================== */
.sv-step-card__icon i { font-size: 28px; color: #0243f1; transition: color 0.4s ease, filter 0.4s ease; }
.sv-step-card__icon img { width: 28px !important; height: auto !important; max-width: none !important; display: block !important; transition: filter 0.4s ease; }

/* =====================================================
   CTA BANNER ICON (icon inside)
   ===================================================== */

/* =====================================================
   CTA SECTION WRAPPER
   ===================================================== */
.sv-cta-section { padding: 32px 24px; }

/* CTA Publier (après prestataires) */
.sv-cta-publier {
    max-width: 1232px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding: 45px 44px 44px;
    border-radius: 28px;
    background: radial-gradient(50% 50% at 26% 56%, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0) 26%), linear-gradient(165deg, rgba(2,67,241,1) 0%, rgba(37,99,235,1) 48%, rgba(59,130,246,1) 100%);
    position: relative;
    overflow: hidden;
}
.sv-cta-publier::before { content: ''; position: absolute; inset: 0; border-radius: 28px; box-shadow: 0px 36px 70px -34px #2563eb8c; background: #ffffff01; pointer-events: none; }
.sv-cta-publier__content { display: flex; align-items: center; gap: 22px; }
.sv-cta-publier__icon { width: 76px; height: 76px; min-width: 76px; background: rgba(255,255,255,0.15); border-radius: 22px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sv-cta-publier__icon i { font-size: 32px; color: #ffffff; }
.sv-cta-publier__text { display: flex; flex-direction: column; gap: 9px; }
.sv-cta-publier__title { font-family: 'Inter', sans-serif; font-weight: 800; color: #ffffff; font-size: 34px; line-height: 36.7px; letter-spacing: -1px; }
.sv-cta-publier__body { font-family: 'Inter', sans-serif; font-weight: 400; color: #ffffff; font-size: 17px; line-height: 28.9px; opacity: 0.85; max-width: 700px; }
.sv-cta-publier__btn { display: flex; align-items: center; justify-content: center; height: 58px; padding: 0 28px; background: #ffffff; border-radius: 14px; font-family: 'Inter', sans-serif; font-weight: 700; color: #0243f1; font-size: 16px; line-height: 24px; text-decoration: none; white-space: nowrap; transition: all 300ms ease-out; flex-shrink: 0; gap: 10px; }
.sv-cta-publier__btn:hover { background: #f0f4ff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.sv-cta-publier__btn i { font-size: 18px; transition: transform 200ms ease; }
.sv-cta-publier__btn:hover i { transform: translateX(4px); }

/* =====================================================
   REVIEWS EXTRAS
   ===================================================== */

/* =====================================================
   SEO BLOCKS
   ===================================================== */

/* --- Cities section --- */
/* =====================================================
   VILLES (Anima pixel-perfect)
   ===================================================== */
.sv-seo-cities { display: flex; flex-direction: column; align-items: flex-start; padding: 48px 80px; width: 100%; }
.sv-seo-cities__inner { display: flex; flex-direction: column; max-width: 1280px; width: 100%; margin: 0 auto; align-items: center; gap: 16px; padding: 0 48px; }
.sv-seo-cities__title { font-family: 'Inter', sans-serif; font-size: 36px; font-weight: 800; color: #0f172a; text-align: center; line-height: 43.2px; }
.sv-seo-cities__subtitle { font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 400; color: #6b7280; text-align: center; max-width: 600px; line-height: 27px; }
.sv-seo-cities__pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; max-width: 900px; width: 100%; }
.sv-seo-cities__pill { display: inline-flex; align-items: center; justify-content: center; padding: 11px 24px 12.5px; background: #f1f5f9; border: 1px solid #00000014; border-radius: 12px; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 500; color: #0f172a; text-align: center; line-height: 22.5px; text-decoration: none; transition: all 0.2s; white-space: nowrap; }
.sv-seo-cities__pill:hover { border-color: #0243f1; color: #0243f1; transform: translateY(-2px); }


/* =====================================================
   RESPONSIVE BREAKPOINTS
   ===================================================== */

/* --- max-width: 1400px (header) --- */
@media (max-width: 1400px) {
    .sv-header__inner { padding: 35px 32px 32px 40px; }
    .sv-header__logo-nav { gap: 80px; }
    .sv-header__left { width: auto; gap: 40px; }
    .sv-header__main { gap: 40px; }
}

/* --- max-width: 1200px --- */
@media (max-width: 1200px) {
    .sv-categories__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .sv-requests__grid {
        grid-template-columns: 1fr;
    }

    .sv-providers__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sv-providers {
        padding: 84px 24px;
    }

    .sv-cta-banner {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }
}

/* --- max-width: 991px --- */
@media (max-width: 991px) {
    .sv-header { height: auto; overflow: visible; }
    .sv-header__inner { padding: 16px 20px; min-height: 70px; align-items: center; }
    .sv-header__main { flex-wrap: wrap; gap: 16px; }
    .sv-header__left { width: auto; height: auto; flex-direction: row; flex-wrap: wrap; gap: 16px; }
    .sv-header__logo-nav { gap: 0; flex-direction: column; align-items: flex-start; }
    .sv-header__nav { display: none; flex-direction: column; align-items: flex-start; gap: 8px; width: 100%; }
    .sv-header__nav.open { display: flex; }
    .sv-header__auth { display: none; }
    .sv-header__hamburger { display: flex; align-items: center; justify-content: center; }
    .sv-header__connected { width: auto; }

    .sv-providers__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sv-requests__header,
    .sv-providers__header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .sv-steps__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .sv-steps {
        padding: 80px 24px;
    }

    .sv-requests__grid {
        grid-template-columns: 1fr;
    }

    .sv-request-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .sv-reviews__title {
        font-size: 32px;
    }

    .sv-footer__main {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   MOBILE DRAWER MENU (Anima pixel-perfect)
   ===================================================== */
.sv-drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.sv-drawer-overlay.open { display: block; opacity: 1; }

.sv-drawer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 371px;
    max-width: 85vw;
    height: 100vh;
    max-height: 908px;
    flex-direction: column;
    gap: 26px;
    background: #ffffff;
    border-radius: 0 24px 24px 0;
    overflow-y: auto;
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding-bottom: 32px;
}
.sv-drawer.open { display: flex; transform: translateX(0); }

/* Close button */
.sv-drawer__close {
    margin: 50px 0 0 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    background: rgba(255, 255, 255, 0.39);
    border: none;
    border-radius: 22.5px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    flex-shrink: 0;
}
.sv-drawer__close img { width: 29px !important; height: 29px !important; max-width: none !important; display: block !important; }

/* Menu list */
.sv-drawer__list {
    margin: 0 16px;
    width: calc(100% - 32px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
}

.sv-drawer__item {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
}

.sv-drawer__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0;
    width: 100%;
    text-decoration: none;
    transition: transform 0.2s ease;
}
.sv-drawer__link:hover { transform: translateX(4px); }

.sv-drawer__text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #0243f1;
    font-size: 18px;
    line-height: 21.6px;
    white-space: nowrap;
}

.sv-drawer__chevron {
    width: 20px !important;
    height: 20px !important;
    max-width: none !important;
    display: block !important;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
.sv-drawer__link:hover .sv-drawer__chevron { transform: translateX(4px); }

.sv-drawer__divider {
    width: 100%;
    height: 1px;
    background: rgba(2, 67, 241, 0.12);
}

/* Services toggle in drawer */
.sv-drawer__services-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.sv-drawer__chevron--rotate { transition: transform 0.3s; }
.sv-drawer__services-btn.open .sv-drawer__chevron--rotate { transform: rotate(90deg); }
.sv-drawer__submenu { display: none; flex-direction: column; padding: 4px 0 8px 12px; }
.sv-drawer__submenu.open { display: flex; }
.sv-drawer__submenu-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: 10px; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 500; color: #0f172a; text-decoration: none; transition: background 0.2s; }
.sv-drawer__submenu-item:hover, .sv-drawer__submenu-item.active { background: #f1f5f9; color: #0243f1; }
.sv-drawer__submenu-item i { font-size: 20px; color: #0243f1; width: 24px; text-align: center; }

/* Footer buttons in drawer */
.sv-drawer__footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 16px 16px 0;
    padding-top: 16px;
}

.sv-drawer__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 52px;
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}
.sv-drawer__btn--outline {
    background: #ffffff;
    border: 1.5px solid #0243f1;
    color: #0243f1;
}
.sv-drawer__btn--outline:hover { background: #eff6ff; }
.sv-drawer__btn--primary {
    background: #0243f1;
    border: 1.5px solid #0243f1;
    color: #ffffff;
    gap: 10px;
    cursor: pointer;
}
.sv-drawer__btn--primary:hover { background: #0235c9; }
.sv-drawer__btn-arrow { font-size: 14px; transition: transform 0.3s ease; }
.sv-drawer__footer.signup-open .sv-drawer__btn-arrow { transform: rotate(180deg); }

/* Signup menu (Client / Prestataire) */
.sv-drawer__signup-menu {
    display: none;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 12px 32px rgba(0,0,0,0.12);
    animation: svDrawerSignupDown 250ms ease-out;
}
.sv-drawer__footer.signup-open .sv-drawer__signup-menu { display: flex; }
@keyframes svDrawerSignupDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.sv-drawer__signup-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: #ffffff;
    text-decoration: none;
    transition: background 200ms ease;
}
.sv-drawer__signup-item:hover { background: #f1f5f9; }
.sv-drawer__signup-item i,
.sv-drawer__signup-item .sv-icon-worker,
.sv-drawer__signup-item .sv-icon-client {
    width: 28px;
    height: 28px;
    font-size: 24px;
    color: #0243f1;
    fill: none;
    stroke: #0243f1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    vertical-align: middle;
}
.sv-drawer__signup-item span {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #262626;
    font-size: 17px;
    line-height: 24px;
}
.sv-drawer__signup-divider {
    height: 1px;
    background: rgba(0,0,0,0.06);
}

/* =====================================================
   MOBILE RESPONSIVE (Anima maquette 402px pixel-perfect)
   ===================================================== */
@media (max-width: 768px) {
    /* HEADER MOBILE (Anima pixel-perfect) */
    .sv-header { height: 80px; min-height: 80px; padding: 0; box-shadow: 0 2px 12px rgba(0,0,0,0.06); background: #ffffff; position: sticky; top: 0; z-index: 1000; }
    .sv-header.is-scrolled { height: 64px; min-height: 64px; box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
    .sv-header.is-scrolled .sv-header__logo img { width: 100px !important; height: auto !important; }
    .sv-header__inner { padding: 0 16px; min-height: 80px; max-width: 100%; align-items: center; }
    .sv-header__main { width: 100%; flex-direction: row; align-items: center; justify-content: space-between; gap: 12px; position: relative; }
    .sv-header__left { width: auto; flex: 0 0 auto; min-width: 0; gap: 0; height: auto; align-items: center; }
    .sv-header__logo-nav { gap: 0; flex-direction: row; align-items: center; justify-content: flex-start; width: auto; max-width: none; }
    .sv-header__logo { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); pointer-events: auto; }
    .sv-header__logo img { width: 112px !important; height: 22px !important; }
    .sv-header__nav { display: none; position: fixed; top: 80px; left: 0; right: 0; background: #ffffff; flex-direction: column; padding: 24px 20px; gap: 4px; box-shadow: 0px 12px 32px rgba(0,0,0,0.12); z-index: 999; max-height: calc(100vh - 80px); overflow-y: auto; align-items: stretch; }
    .sv-header__nav.open { display: flex; }
    .sv-header__nav a, .sv-header__dropdown-trigger { padding: 16px; font-size: 16px; border-radius: 12px; }
    .sv-header__nav a:hover, .sv-header__dropdown-trigger:hover { background: #f1f5f9; }
    .sv-header__dropdown { width: 100%; }
    .sv-header__dropdown-menu { position: static; transform: none; box-shadow: none; border: none; padding: 0 0 0 16px; min-width: 0; opacity: 1; visibility: visible; pointer-events: auto; display: none; }
    .sv-header__dropdown.open .sv-header__dropdown-menu { display: block; }
    .sv-header__auth { display: none; }

    /* Hamburger Anima */
    .sv-header__hamburger--mobile { display: flex !important; align-items: center; justify-content: center; width: 29px; height: 29px; border: none; background: transparent; cursor: pointer; padding: 0; flex-shrink: 0; background-image: url('/assets/frontend/img/li-menu-mobile.svg'); background-size: 100% 100%; background-repeat: no-repeat; margin-right: 14px; }
    .sv-header__hamburger { display: none; }
    .sv-header__hamburger span { display: none; }

    /* Connected (notif + avatar) Anima */
    .sv-header__connected { width: auto; gap: 7px; margin-right: 0; align-items: center; justify-content: center; flex-shrink: 0; }
    .sv-header__notif-wrap { margin-left: 0; position: relative; }
    .sv-header__notif { width: 38px; height: 38px; padding: 9px; box-shadow: 0px 2px 11px #00000080; background: #ffffff; border-radius: 99px; }
    .sv-header__notif-icon { width: 20px; height: 20px; }
    .sv-header__notif-badge { width: 8px; height: 8px; top: 13px; left: 21px; background: #ed1515; padding: 0 1px; font-size: 6px; line-height: 7.2px; }
    .sv-header__avatar { width: 38px; height: 38px; box-shadow: 0px 2px 11px #00000080; background: #ffffff; }
    .sv-header__avatar i { font-size: 20px; }
    .sv-header__signup { display: none; }
    .sv-signup-wrap { display: none; }

    /* HERO MOBILE */
    .sv-hero { padding: 16px 0 24px; }
    .sv-hero__inner { flex-direction: column; width: 100%; padding: 0 16px; gap: 24px; align-items: stretch; }
    .sv-hero__left { width: 100%; gap: 20px; align-items: stretch; }
    .sv-hero__right { display: none; }
    .sv-hero__trust-badge { width: 100%; margin-top: 0; padding: 8px 14px; }
    .sv-hero__trust-badge span { font-size: 12px; line-height: 18px; white-space: normal; }
    .sv-hero__title { font-size: 30px; line-height: 37.5px; letter-spacing: -0.75px; }
    .sv-hero__subtitle { width: 100%; font-size: 15px; line-height: 23px; }
    .sv-hero__checklist { width: 100%; gap: 10px; }
    .sv-hero__checklist li { font-size: 14px; line-height: 22px; }
    .sv-hero__search-panel { padding: 16px; max-width: 100%; gap: 10px; }

    /* CARD HERO INTRO — image Anima + overlay + contenu (SEULEMENT cette section) */
    /* Hero intro : image en header qui se fond vers blanc + texte en bas */
    .sv-hero__intro {
        position: relative;
        padding: 0;
        border-radius: 24px;
        overflow: visible;
        background: #ffffff;
        box-shadow: 0 8px 20px -10px rgba(15,23,42,0.18), 0 20px 40px -20px rgba(15,23,42,0.15);
        display: flex;
        flex-direction: column;
    }
    .sv-hero__intro::before {
        border-radius: 24px 24px 0 0;
    }

    /* Floating card mobile : 3 offres en 2h */
    .sv-hero__intro-floating {
        display: flex !important;
        align-items: center;
        gap: 12px;
        position: absolute;
        top: 16px;
        right: 16px;
        padding: 12px 16px;
        background: rgba(255,255,255,0.96);
        backdrop-filter: blur(10px) saturate(140%);
        -webkit-backdrop-filter: blur(10px) saturate(140%);
        border: 1px solid rgba(255,255,255,0.6);
        border-radius: 16px;
        box-shadow: 0 8px 20px -8px rgba(2,67,241,0.25), 0 16px 32px -16px rgba(15,23,42,0.3);
        z-index: 5;
        animation: svFloatCardMobile 4s ease-in-out infinite;
    }
    @keyframes svFloatCardMobile {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-4px); }
    }
    .sv-hero__intro-floating__icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        border-radius: 12px;
        background: linear-gradient(135deg, #0243f1, #2563eb);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px -2px rgba(2,67,241,0.5);
    }
    .sv-hero__intro-floating__icon i { font-size: 18px; color: #ffffff; }
    .sv-hero__intro-floating__body { display: flex; flex-direction: column; gap: 1px; }
    .sv-hero__intro-floating__stat { display: flex; align-items: baseline; gap: 5px; }
    .sv-hero__intro-floating__number {
        font-family: 'Inter', sans-serif;
        font-weight: 800;
        background: linear-gradient(135deg, #0243f1, #2563eb);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 16px;
        line-height: 1.2;
    }
    .sv-hero__intro-floating__time { font-family: 'Inter', sans-serif; font-weight: 600; color: #0f172a; font-size: 12px; line-height: 1.2; }
    .sv-hero__intro-floating__desc { font-family: 'Inter', sans-serif; font-weight: 400; color: #6b7280; font-size: 10.5px; line-height: 1.3; }
    /* Image header avec fade vers blanc en bas */
    .sv-hero__intro::before {
        content: '';
        display: block;
        width: 100%;
        height: 220px;
        background: url('/assets/frontend/img/hero-mobile-bg.webp') center / cover no-repeat;
        -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 60%, transparent 100%);
        mask-image: linear-gradient(180deg, #000 0%, #000 60%, transparent 100%);
    }
    .sv-hero__intro-glass {
        margin-top: -50px;
        padding: 0 24px 28px;
        display: flex;
        flex-direction: column;
        gap: 18px;
        position: relative;
        z-index: 1;
        background: transparent;
        border: none;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .sv-hero__intro .sv-hero__title {
        color: #0f172a;
        font-size: 28px;
        line-height: 1.22;
        letter-spacing: -0.7px;
        font-weight: 800;
        margin: 0;
    }
    .sv-hero__intro .sv-hero__highlight {
        color: #0243f1;
        -webkit-text-fill-color: #0243f1;
        background: linear-gradient(120deg, rgba(2,67,241,0.10) 0%, rgba(37,99,235,0.20) 50%, rgba(2,67,241,0.10) 100%);
        -webkit-background-clip: border-box;
        background-clip: border-box;
        padding: 1px 6px;
        border-radius: 6px;
        -webkit-box-decoration-break: clone;
        box-decoration-break: clone;
    }
    .sv-hero__intro .sv-hero__checklist {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .sv-hero__intro .sv-hero__checklist li {
        color: #334155;
        font-weight: 500;
        font-size: 13.5px;
        line-height: 1.45;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        text-shadow: none;
    }
    .sv-hero__intro .sv-hero__checklist li i {
        color: #ffffff;
        background: linear-gradient(135deg, #0243f1, #2563eb);
        border-radius: 50%;
        width: 20px;
        height: 20px;
        min-width: 20px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        margin-top: 2px;
        box-shadow: 0 2px 8px rgba(2,67,241,0.4);
    }
    .sv-hero__intro-stats {
        display: flex !important;
        align-items: center;
        gap: 10px;
        padding-top: 14px;
        margin-top: 4px;
        border-top: 1px solid rgba(15,23,42,0.10);
    }
    .sv-hero__intro-stats__avatars { display: inline-flex; align-items: center; }
    .sv-hero__intro-stats__avatars img {
        width: 28px !important;
        height: 28px !important;
        border-radius: 50%;
        border: 2px solid #ffffff;
        object-fit: cover;
        box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    }
    .sv-hero__intro-stats__avatars img + img { margin-left: -10px; }
    .sv-hero__intro-stats__text {
        color: #475569;
        font-size: 12px;
        font-weight: 600;
        line-height: 1.35;
    }
    .sv-hero__intro-stats__text strong { font-weight: 800; color: #0243f1; }

    .sv-hero__search-fields { grid-template-columns: 1fr; grid-template-rows: auto; height: auto; gap: 8px; }
    .sv-hero__field-input { height: 72px; padding: 0 16px; }
    .sv-hero__field-content label { font-size: 11px; }
    .sv-hero__field-input input { font-size: 14px; }
    .sv-hero__field-icon { width: 40px; height: 40px; border-radius: 12px; }
    .sv-hero__field-icon i { font-size: 18px; }
    .sv-hero__search-btn-primary { height: 56px; font-size: 16px; padding: 0 20px; margin-top: 0; }
    .sv-hero__search-btn-secondary { font-size: 16px; padding: 12px 20px; height: 52px; }
    .sv-hero__search-actions { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
    .sv-hero__search-fields { gap: 8px; }
    .sv-hero__disclaimer { padding-top: 0; padding-bottom: 0; align-items: flex-start; }
    .sv-hero__disclaimer span { font-size: 13px; line-height: 20px; white-space: normal; }

    /* TRUST BAR MOBILE - Carousel horizontal */
    .sv-hero__trust-bar {
        display: flex;
        grid-template-columns: none;
        grid-template-rows: none;
        width: 100%;
        max-width: 100%;
        padding: 0 16px 4px;
        gap: 12px;
        margin-top: 24px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-padding-inline: 16px;
    }
    .sv-hero__trust-bar::-webkit-scrollbar { display: none; }
    /* Force le padding-right visible en scroll horizontal */
    .sv-hero__trust-bar::after {
        content: '';
        flex: 0 0 4px;
        align-self: stretch;
    }
    .sv-hero__trust-item {
        flex: 0 0 auto;
        min-width: 240px;
        height: auto;
        min-height: 72px;
        padding: 14px 16px;
        scroll-snap-align: start;
    }
    .sv-hero__trust-icon { width: 40px; height: 40px; }
    .sv-hero__trust-title { font-size: 14px; }
    .sv-hero__trust-desc { font-size: 12px; }

    /* CATEGORIES MOBILE */
    .sv-categories { padding: 40px 0; }
    .sv-categories__inner { padding: 0 16px; min-height: auto; gap: 32px; }
    .sv-categories__header { gap: 12px; }
    .sv-categories__eyebrow { font-size: 11px; padding: 6px 14px; }
    .sv-categories__title { font-size: 28px; line-height: 1.2; letter-spacing: -0.6px; padding: 0 8px; }
    .sv-categories__subtitle { font-size: 14px; line-height: 1.6; padding: 0 8px; }
    .sv-categories__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; width: 100%; padding: 0 4px; }
    .sv-category-card { width: 100%; height: auto; min-height: 220px; padding: 22px 18px; gap: 14px; border-radius: 18px; }
    .sv-category-card__icon { width: 52px; height: 52px; border-radius: 14px; }
    .sv-category-card__icon i { font-size: 22px; }
    .sv-category-card__name { font-size: 16px; }
    .sv-category-card__desc { font-size: 12.5px; line-height: 1.55; }
    .sv-category-card__link { font-size: 12px; }
    .sv-category-card__icon { width: 56px; height: 56px; border-radius: 12px; }
    .sv-category-card__icon i { font-size: 24px; }
    .sv-category-card__name { font-size: 16px; line-height: 22px; }
    .sv-category-card__desc { font-size: 12px; line-height: 18px; }

    /* STEPS MOBILE */
    .sv-steps { padding: 32px 16px; }
    .sv-steps__inner { padding: 0; }
    .sv-steps__header { gap: 12px; margin-bottom: 36px; }
    .sv-steps__eyebrow { font-size: 11px; padding: 6px 14px; }
    .sv-steps__title { font-size: 28px; line-height: 1.2; letter-spacing: -0.6px; }
    .sv-steps__subtitle { font-size: 14px; line-height: 1.6; padding: 0 8px; }
    .sv-steps__grid { grid-template-columns: 1fr; gap: 16px; }
    .sv-steps__grid::before { display: none; }
    .sv-step-card { padding: 32px 24px 28px; gap: 14px; border-radius: 20px; }
    .sv-step-card::before { font-size: 100px; top: -16px; right: 12px; }
    .sv-step-card__icon { width: 64px; height: 64px; border-radius: 18px; }
    .sv-step-card__icon i { font-size: 26px; }
    .sv-step-card__icon img { width: 24px !important; }
    .sv-step-card__title { font-size: 19px; }
    .sv-step-card__body { font-size: 13.5px; }
    .sv-step-card__body { font-size: 14px; line-height: 22px; max-width: 100%; }

    /* PROVIDERS MOBILE - Carousel horizontal */
    .sv-providers { padding: 32px 0; }
    .sv-providers__inner { padding: 0; max-width: 100%; }
    .sv-providers__header { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 24px; padding: 0 16px; }
    .sv-providers__title { font-size: 24px; line-height: 32px; }
    .sv-providers__subtitle { font-size: 14px; line-height: 22px; }
    .sv-providers__grid {
        display: flex;
        grid-template-columns: none;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 4px 0 16px 16px;
        margin: 0;
    }
    .sv-providers__grid::-webkit-scrollbar { display: none; }
    .sv-provider-card {
        width: 280px;
        min-width: 280px;
        max-width: 280px;
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 12px;
    }
    .sv-provider-card__photo { aspect-ratio: 1/1; height: auto; }
    .sv-provider-card__avatar { height: 100%; }
    .sv-provider-card__info { padding: 0 4px; gap: 8px; align-items: center; }
    .sv-provider-card__name { font-size: 18px; line-height: 24px; }
    .sv-provider-card__verified { width: 20px !important; height: 20px !important; }
    .sv-provider-card__category-label { font-size: 12px; }
    .sv-provider-card__meta { width: 100%; gap: 10px; flex-wrap: wrap; justify-content: center; }
    .sv-provider-card__meta-rating, .sv-provider-card__meta-city { width: auto; }
    .sv-provider-card__price { font-size: 13px; }
    .sv-provider-card__price-wrap { padding: 7px 12px; }
    .sv-provider-card__cta { font-size: 13px; height: 36px; }

    /* CTA PUBLIER MOBILE */
    .sv-cta-section { padding: 16px; }
    .sv-cta-publier { grid-template-columns: 1fr; padding: 28px 24px; gap: 20px; border-radius: 24px; }
    .sv-cta-publier__content { flex-direction: column; align-items: center; text-align: center; gap: 16px; }
    .sv-cta-publier__icon { width: 56px; height: 56px; border-radius: 16px; align-self: center; }
    .sv-cta-publier__icon i { font-size: 26px; }
    .sv-cta-publier__text { text-align: center; width: 100%; }
    .sv-cta-publier__title { font-size: 22px; line-height: 28px; }
    .sv-cta-publier__body { font-size: 14px; line-height: 22px; }
    .sv-cta-publier__btn { width: 100%; height: 52px; font-size: 15px; padding: 0 20px; justify-content: center; }

    /* REQUESTS MOBILE */
    .sv-requests { padding: 32px 16px 0; }
    .sv-requests__inner { padding: 0; }
    .sv-requests__header { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 20px; }
    .sv-requests__title { font-size: 24px; line-height: 32px; }
    .sv-requests__subtitle { font-size: 14px; line-height: 22px; }
    .sv-requests__badge { padding: 10px 16px; font-size: 13px; gap: 8px; max-width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .sv-requests__badge-dot { width: 8px; height: 8px; box-shadow: 0 0 0 2px rgba(255,255,255,0.3); }
    .sv-requests__grid { grid-template-columns: 1fr; gap: 16px; }
    .sv-request-card { flex-direction: column; align-items: stretch; gap: 12px; padding: 16px; width: 100%; }
    .sv-request-card__content { width: 100%; gap: 10px; }
    .sv-request-card__title { font-size: 16px; line-height: 22px; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
    .sv-request-card__title-row { flex-wrap: wrap; }
    .sv-request-card__desc { font-size: 12px; line-height: 18px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .sv-request-card__separator { margin: 8px 0; }
    .sv-request-card__top { gap: 8px !important; }
    .sv-request-card__bottom { display: flex; flex-wrap: wrap; gap: 8px; }
    .sv-request-card__city-row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px 12px;
        width: 100%;
    }
    .sv-request-card__city-row img { width: 14px !important; height: 14px !important; }
    .sv-request-card__city { font-size: 12px; line-height: 16px; }
    .sv-request-card__city-row::after {
        content: '';
        display: inline-block;
        width: 1px;
        height: 12px;
        background: rgba(0,0,0,0.1);
    }
    .sv-request-card__inline-offers,
    .sv-request-card__inline-time,
    .sv-request-card__inline-budget { display: inline-flex !important; }
    .sv-request-card__inline-offers {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        font-weight: 500;
        color: #6b7280;
    }
    .sv-request-card__inline-offers i { font-size: 14px; color: #0243f1; }
    .sv-request-card__inline-time {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        color: #9ca3af;
    }
    .sv-request-card__inline-time i { font-size: 12px; }
    .sv-request-card__inline-budget {
        padding: 9px 16px 9px 10px;
        font-size: 13px;
        bottom: 14px;
        right: 14px;
        gap: 7px;
    }
    .sv-request-card__inline-budget::before {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }
    .sv-request-card__inline-budget::after {
        top: -8px;
        right: 12px;
        font-size: 8.5px;
        padding: 2px 7px;
    }
    /* Cacher l'ancien budget en bas sur mobile */
    .sv-request-card > .sv-request-card__budget { display: none; }

    /* CTA BANNER MOBILE */
    .sv-cta-banner { grid-template-columns: 1fr; padding: 32px 24px; gap: 24px; border-radius: 24px; }
    .sv-cta-banner__left { flex-direction: column; align-items: center; gap: 16px; }
    .sv-cta-banner__icon { width: 64px; height: 64px; min-width: 64px; }
    .sv-cta-banner__title { font-size: 26px; line-height: 32px; letter-spacing: -0.5px; }
    .sv-cta-banner__body { font-size: 14px; line-height: 22px; }
    .sv-cta-banner__btn { width: 100%; height: 52px; padding: 0 20px; font-size: 15px; justify-content: center; }

    /* REVIEWS MOBILE */
    .sv-reviews { padding: 32px 0 0; background: #f8fafc; }
    .sv-reviews__inner { padding: 0; }
    .sv-reviews__header { margin-bottom: 20px; padding: 0 16px; }
    .sv-reviews__eyebrow { font-size: 12px; padding: 5px 12px; margin-bottom: 12px; }
    .sv-reviews__title { font-size: 24px; line-height: 32px; }
    .sv-reviews__subtitle { font-size: 14px; line-height: 22px; }
    .sv-reviews__scroll { gap: 12px; padding: 0 0 16px 16px; margin: 0; }
    .sv-review-card { width: 300px; min-width: 300px; height: auto; padding: 24px 20px; gap: 20px; }
    .sv-review-card__quote { font-size: 24px; }
    .sv-review-card__top { gap: 12px; }
    .sv-review-card__text { font-size: 15px; line-height: 22px; }
    .sv-review-card__date { width: auto; padding: 4px 12px; height: auto; font-size: 12px; }
    .sv-review-card__avatar, .sv-review-card__avatar-placeholder { width: 40px !important; height: 40px !important; font-size: 15px; }
    .sv-review-card__author-name { font-size: 14px; }
    .sv-review-card__author-reviews { font-size: 12px; }
    .sv-review-card__author-city { font-size: 12px; }

    /* VILLES MOBILE */
    .sv-seo-cities { padding: 32px 16px; }
    .sv-seo-cities__inner { padding: 0; }
    .sv-seo-cities__title { font-size: 24px; line-height: 32px; }
    .sv-seo-cities__subtitle { font-size: 14px; line-height: 22px; padding: 0 8px; }
    .sv-seo-cities__pills { gap: 8px; max-width: 100%; }
    .sv-seo-cities__pill { padding: 10px 18px; font-size: 13px; }

    /* EDITORIAL MOBILE */
    .sv-editorial { padding: 32px 16px; }
    .sv-editorial__inner { padding: 0; }
    .sv-editorial__header { margin-bottom: 36px; }
    .sv-editorial__title { font-size: 26px; line-height: 1.25; letter-spacing: -0.5px; }
    .sv-editorial__subtitle { font-size: 14px; }
    .sv-editorial__content { grid-template-columns: 1fr; gap: 16px; }
    .sv-editorial__article { padding: 28px 22px; border-radius: 18px; }
    .sv-editorial__article-icon { width: 46px; height: 46px; border-radius: 12px; margin-bottom: 14px; }
    .sv-editorial__article-icon i { font-size: 22px; }
    .sv-editorial__article-title { font-size: 17px; }
    .sv-editorial__article-body p { font-size: 13.5px; line-height: 1.7; }
    .sv-editorial__tag { font-size: 11.5px; padding: 6px 10px; }
    .sv-editorial__pricing-label,
    .sv-editorial__pricing-value { font-size: 13px; }

    /* FAQ MOBILE */
    .sv-faq { padding: 32px 16px 32px; }
    .sv-faq__inner { padding: 0; }
    .sv-faq__title { font-size: 24px; line-height: 32px; }
    .sv-faq__subtitle { font-size: 14px; line-height: 22px; }
    .sv-faq__list { grid-template-columns: 1fr; gap: 12px; max-width: 100%; }
    .sv-faq__question { padding: 18px 20px; }
    .sv-faq__question span { font-size: 14px; line-height: 20px; }
    .sv-faq__answer { padding: 16px 20px 20px; font-size: 13px; line-height: 21px; }

    /* CTA PUBLISH MOBILE */
    .sv-cta-publish { padding: 48px 24px; border-radius: 24px; gap: 12px; }
    .sv-cta-publish__title { font-size: 28px; line-height: 34px; letter-spacing: -0.5px; }
    .sv-cta-publish__body { font-size: 14px; line-height: 22px; padding-bottom: 8px; }
    .sv-cta-publish__btn { width: 100%; height: 52px; padding: 0 20px; font-size: 15px; }

    /* HELP MOBILE */
    .sv-help { padding: 24px 16px; }
    .sv-help__inner { padding: 0; }
    .sv-help__card { padding: 20px; gap: 14px; }
    .sv-help__icon { width: 44px; height: 44px; border-radius: 12px; }
    .sv-help__icon i { font-size: 22px; }
    .sv-help__title { font-size: 16px; line-height: 22px; }
    .sv-help__desc { font-size: 13px; line-height: 19px; }

    /* FOOTER MOBILE */
    .sv-footer { padding-top: 40px; }
    .sv-footer__inner { width: 100%; max-width: 100%; margin: 0; padding: 0 20px 24px; gap: 32px; border-bottom: 1px solid rgba(255,255,255,0.15); }
    .sv-footer__main { flex-direction: column; align-items: stretch; gap: 32px; }
    .sv-footer__brand { gap: 20px; align-items: flex-start; }
    .sv-footer__logo img { width: 160px !important; height: auto !important; }
    .sv-footer__desc { width: 100%; max-width: 100%; font-size: 14px; line-height: 22px; }
    .sv-footer__contact { gap: 10px; }
    .sv-footer__contact-item { font-size: 13px; }
    .sv-footer__contact-item i { font-size: 16px; }
    .sv-footer__social { gap: 8px; }
    .sv-footer__social-link { width: 36px; height: 36px; border-radius: 8px; font-size: 14px; }
    .sv-footer__links { display: grid; grid-template-columns: 1fr 1fr; width: 100%; gap: 28px 20px; align-items: flex-start; }
    .sv-footer__col { width: 100%; gap: 16px; min-width: 0; }
    .sv-footer__col-title { font-size: 15px; margin-bottom: 4px; }
    .sv-footer__col-list { gap: 12px; }
    .sv-footer__col-list a { font-size: 14px; opacity: 0.92; }
    .sv-footer__bottom { width: 100%; max-width: 100%; margin: 0; padding: 20px 20px 28px; }
    .sv-footer__copyright { flex-direction: column; align-items: flex-start; gap: 12px; }
    .sv-footer__copyright-text { font-size: 12px; }
    .sv-footer__copyright-made { font-size: 12px; }

    /* HERO floating card mobile - hide */
    .sv-hero__floating-card { display: none; }
}

/* SMALL MOBILE (< 480px) */
@media (max-width: 480px) {
    .sv-hero__title { font-size: 28px; line-height: 34px; }
    .sv-categories__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .sv-category-card { min-height: auto; padding: 18px 14px; }
    .sv-category-card__icon { width: 48px; height: 48px; border-radius: 12px; }
    .sv-category-card__icon i { font-size: 20px; }
    .sv-category-card__name { font-size: 14px; }
    .sv-category-card__desc { font-size: 11.5px; line-height: 1.5; }
    .sv-categories__title,
    .sv-steps__title,
    .sv-providers__title,
    .sv-requests__title,
    .sv-reviews__title,
    .sv-seo-cities__title,
    .sv-faq__title { font-size: 22px; line-height: 28px; }
    .sv-cta-publish__title { font-size: 24px; line-height: 30px; }
    .sv-cta-banner__title { font-size: 22px; line-height: 28px; }
}

/* =====================================================
   STICKY CTA MOBILE
   ===================================================== */
.sv-sticky-cta {
    display: none;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 9990;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    background: linear-gradient(135deg, #0243f1 0%, #2563eb 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(2,67,241,0.4), 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(140%);
    transition: transform 0.45s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease;
    font-family: 'Inter', sans-serif;
}
.sv-sticky-cta.is-visible { transform: translateY(0); }
.sv-sticky-cta:active { transform: translateY(0) scale(0.98); }
.sv-sticky-cta__icon {
    flex-shrink: 0;
    background: rgba(255,255,255,0.18);
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}
.sv-sticky-cta__icon i { font-size: 22px; color: #ffffff; }
.sv-sticky-cta__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.sv-sticky-cta__text {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}
.sv-sticky-cta__sub {
    font-size: 11.5px;
    font-weight: 500;
    opacity: 0.92;
    line-height: 1.2;
    color: #ffffff;
}
.sv-sticky-cta__arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    transition: transform 0.25s ease;
}
.sv-sticky-cta__arrow i { font-size: 16px; color: #ffffff; }
.sv-sticky-cta:hover .sv-sticky-cta__arrow { transform: translateX(3px); }

@media (max-width: 768px) {
    .sv-sticky-cta { display: flex; }
}
@media (max-width: 480px) {
    .sv-sticky-cta { padding: 11px 14px; gap: 10px; left: 10px; right: 10px; bottom: 10px; }
    .sv-sticky-cta__icon { width: 40px; height: 40px; }
    .sv-sticky-cta__icon i { font-size: 20px; }
    .sv-sticky-cta__text { font-size: 14px; }
    .sv-sticky-cta__sub { font-size: 10.5px; }
    .sv-sticky-cta__arrow { width: 28px; height: 28px; }
    .sv-sticky-cta__arrow i { font-size: 14px; }
}

