/* ===== file: /assets/css/home.css ===== */

:root {
    --bg0: #f6f8ff;
    --bg1: #eef3ff;
    --ink: #0b1220;
    --muted: #5b667a;
    --border: rgba(11, 18, 32, .12);
    --primary: #2563eb;
    --primary2: #06b6d4;
    --ok: #16a34a;
    --surface: rgba(255, 255, 255, .74);
    --surface2: rgba(255, 255, 255, .92);
    --shadow: 0 24px 70px rgba(2, 6, 23, .12);
    --shadow2: 0 14px 40px rgba(2, 6, 23, .10);
    --radius: 18px;
    --radius2: 22px;
    --container: 1160px;
    --hero-wide: 1540px;
    --topbar-h: 74px;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body.home-page {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Tahoma, Arial, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(1100px 600px at 18% 10%, rgba(37, 99, 235, .20), transparent 60%),
        radial-gradient(900px 520px at 85% 18%, rgba(6, 182, 212, .18), transparent 62%),
        radial-gradient(900px 700px at 50% 100%, rgba(99, 102, 241, .10), transparent 62%),
        linear-gradient(180deg, var(--bg0), var(--bg1));
    overflow-x: hidden;
}

.home-page main .container,
.home-page footer .container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 18px;
}

/* Règle déplacée dans components/navbar.css (.topbar .container.nav)
   afin que le navbar soit strictement identique sur toutes les pages. */

.home-page main .muted,
.home-page footer .muted {
    color: var(--muted);
}

.home-page main b,
.home-page footer b {
    font-weight: 800;
}

.home-page main .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid rgba(11, 18, 32, .14);
    text-decoration: none;
    color: var(--ink);
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 10px 24px rgba(2, 6, 23, .08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
    user-select: none;
    font-weight: 900;
}

.home-page main .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 36px rgba(2, 6, 23, .12);
    border-color: rgba(11, 18, 32, .20);
}

.home-page main .btn:active {
    transform: translateY(0px) scale(.99);
}

.home-page main .btn.primary {
    color: #fff;
    border-color: rgba(37, 99, 235, .35);
    background: linear-gradient(135deg, rgba(37, 99, 235, 1), rgba(6, 182, 212, 1));
    box-shadow: 0 18px 44px rgba(37, 99, 235, .22);
}

.home-page main .btn.primary:hover {
    box-shadow: 0 24px 56px rgba(37, 99, 235, .26);
}

.home-page main .btn.ghost {
    background: rgba(15, 23, 42, .18);
    border-color: rgba(255, 255, 255, .55);
    color: rgba(255, 255, 255, .95);
    box-shadow: 0 14px 34px rgba(2, 6, 23, .12);
}

.home-page main .btn.ghost:hover {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .70);
    box-shadow: 0 20px 48px rgba(2, 6, 23, .16);
}

.hero-banner {
    padding: 18px 0 10px;
    position: relative;
}

.hero-banner .container {
    max-width: var(--hero-wide);
    padding-inline: 8px;
}

.hero-banner-media {
    position: relative;
    min-height: 760px;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(2, 6, 23, .16);
    border: 1px solid rgba(255, 255, 255, .35);
    background: #0b1220;
}

.hero-banner-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-banner-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(4, 10, 24, .08) 0%, rgba(4, 10, 24, .16) 48%, rgba(4, 10, 24, .24) 100%),
        radial-gradient(circle at 50% 44%, rgba(255, 255, 255, .05), transparent 42%);
}

.hero-banner-content {
    position: relative;
    z-index: 2;
    min-height: 760px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 100px 24px 40px;
    color: #ffffff;
    max-width: 1240px;
    margin: 0 auto;
}

.hero-banner-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 9px 18px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(111, 78, 55, .34);
    border: 1px solid rgba(255, 255, 255, .28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(2, 6, 23, .12);
}

.hero-banner-content h1 {
    margin: 0 0 14px;
    font-size: clamp(30px, 3.2vw, 48px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-shadow: 0 10px 28px rgba(0, 0, 0, .22);
    max-width: 980px;
    white-space: nowrap;
}

.hero-banner-content p {
    max-width: 820px;
    margin: 0 auto;
    font-size: clamp(17px, 1.4vw, 22px);
    line-height: 1.9;
    color: rgba(255, 255, 255, .96);
    text-shadow: 0 6px 18px rgba(0, 0, 0, .16);
}

.hero-banner-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 26px;
}

.hero-banner-actions .btn {
    min-width: 210px;
    min-height: 56px;
    font-size: 17px;
}

/* HERO SEARCH */
.hero-search {
    width: min(1280px, 100%);
    margin: 26px auto 0;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .28);
    box-shadow: 0 18px 44px rgba(2, 6, 23, .16);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-search-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr)) auto;
    gap: 12px;
    align-items: end;
}

.hero-search .search-field {
    text-align: right;
}

.hero-search .search-field label {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0 0 8px;
    color: rgba(255, 255, 255, .96);
    font-size: 12px;
    font-weight: 900;
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-search .search-field select,
.hero-search .search-field input {
    width: 100%;
    height: 54px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .96);
    color: #0b1220;
    padding: 0 14px;
    outline: none;
    font-size: 14px;
    box-shadow: 0 10px 24px rgba(2, 6, 23, .08);
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.hero-search .search-field select:focus,
.hero-search .search-field input:focus {
    border-color: rgba(37, 99, 235, .55);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .14);
    transform: translateY(-1px);
}

.hero-search .search-field input::placeholder {
    color: #7b8799;
}

#homeMinPrice,
#homeMaxPrice {
    direction: ltr;
    text-align: left;
}

.hero-search-btn {
    min-width: 180px;
    min-height: 54px;
    padding-inline: 24px;
    align-self: end;
}

@media (min-width: 1024px) {
    .hero-banner {
        width: 100vw;
        margin-inline: calc(50% - 50vw);
        padding: 0 !important;
    }

    .hero-banner .container {
        max-width: none !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .hero-banner-media {
        width: 100%;
        border-radius: 0 !important;
        border-left: 0 !important;
        border-right: 0 !important;
        box-shadow: none !important;
        min-height: 100vh;
        height: 100vh;
        background: transparent;
    }

    .hero-banner-media img {
        object-fit: cover;
        object-position: center 42%;
    }

    .hero-banner-overlay {
        background:
            linear-gradient(180deg, rgba(4, 10, 24, .05) 0%, rgba(4, 10, 24, .11) 48%, rgba(4, 10, 24, .18) 100%),
            radial-gradient(circle at 50% 44%, rgba(255, 255, 255, .04), transparent 44%);
    }

    .hero-banner-content {
        min-height: 100vh;
        height: 100vh;
        max-width: 1220px;
        padding: calc(var(--topbar-h) + 70px) 24px clamp(36px, 4.2vh, 62px);
    }

    .hero-banner-content h1 {
        font-size: clamp(28px, 3.0vw, 44px);
        max-width: 860px;
    }

    .hero-banner-content p {
        max-width: 760px;
        font-size: clamp(16px, 1.1vw, 20px);
    }
}

.home-page main {
    position: relative;
}

.hero {
    padding: 26px 0 34px;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -12px 0 auto 0;
    height: 340px;
    background:
        radial-gradient(700px 220px at 50% 0%, rgba(255, 255, 255, .85), transparent 70%),
        radial-gradient(540px 260px at 15% 30%, rgba(37, 99, 235, .16), transparent 70%),
        radial-gradient(520px 260px at 85% 20%, rgba(6, 182, 212, .14), transparent 70%);
    pointer-events: none;
    opacity: .95;
}

.hero-grid {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px 10px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #065f46 0%, #059669 55%, #10b981 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
        0 10px 28px rgba(5, 150, 105, 0.32),
        0 0 0 3px rgba(5, 150, 105, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.20);
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

.pill::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 55%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 0%,
        rgba(255, 255, 255, 0.22) 50%,
        transparent 100%
    );
    animation: pill-shimmer 3.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pill-shimmer {
    0%        { left: -80%; }
    55%, 100% { left: 120%; }
}

.pill .pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6ee7b7;
    flex-shrink: 0;
    animation: pill-pulse 2s ease-in-out infinite;
}

@keyframes pill-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(110, 231, 183, 0.65); }
    50%       { box-shadow: 0 0 0 5px rgba(110, 231, 183, 0); }
}

.pill .pill-check {
    flex-shrink: 0;
    display: block;
}

.home-section-title {
    margin: 10px 0 8px;
    font-size: clamp(22px, 2.4vw, 34px);
    line-height: 1.2;
    letter-spacing: -0.4px;
    text-decoration: underline;
    text-decoration-color: #dc2626;
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
}

.hero p {
    margin: 0 0 12px;
    font-size: 14.5px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0 12px;
}

.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.stat {
    min-width: 140px;
    flex: 1;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(11, 18, 32, .10);
    background: var(--surface);
    box-shadow: var(--shadow2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.stat b {
    display: block;
    font-size: 22px;
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat span {
    color: var(--muted);
    font-weight: 800;
    font-size: 13px;
}

.hero-card {
    border-radius: var(--radius2);
    border: 1px solid rgba(11, 18, 32, .12);
    background: linear-gradient(180deg, var(--surface2), rgba(255, 255, 255, .70));
    box-shadow: var(--shadow);
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.hero-card>.row-between {
    padding: 16px 16px 10px;
    border-bottom: 1px solid rgba(11, 18, 32, .08);
    background:
        radial-gradient(520px 220px at 80% 20%, rgba(6, 182, 212, .12), transparent 70%),
        radial-gradient(520px 220px at 20% 30%, rgba(37, 99, 235, .10), transparent 70%);
}

.row-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.row-between a {
    text-decoration: none;
    font-weight: 900;
}

.row-between a:hover {
    text-decoration: underline;
}

/* ── Latest offers grid ───────────────────────────────── */
.hero-card .grid {
    padding: 14px 14px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* lcard — new property card for أحدث العروض */
.lcard {
    border-radius: 16px;
    border: 1px solid rgba(11, 18, 32, .09);
    background: #fff;
    box-shadow: 0 4px 18px rgba(2, 6, 23, .08);
    overflow: hidden;
    transition: transform .20s ease, box-shadow .20s ease, border-color .20s ease;
}

/* ===== Error state (réseau / Supabase) — section العقارات الأخيرة ===== */
.home-error-state {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(11, 18, 32, .09);
    box-shadow: 0 4px 18px rgba(2, 6, 23, .06);
}

.home-error-state__icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.10), rgba(248, 113, 113, 0.18));
    color: #dc2626;
    margin-bottom: 16px;
}

.home-error-state__icon svg {
    width: 30px;
    height: 30px;
}

.home-error-state h3 {
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px;
}

.home-error-state p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
    max-width: 380px;
    margin: 0 0 22px;
}

.home-error-state__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 24px;
    border-radius: 999px;
    border: none;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    box-shadow: 0 8px 20px rgba(15, 118, 110, .25);
    transition: transform .16s ease, box-shadow .16s ease;
}

.home-error-state__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(15, 118, 110, .32);
}

.home-error-state__btn svg {
    width: 16px;
    height: 16px;
}

.lcard:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(2, 6, 23, .14);
    border-color: rgba(37, 99, 235, .24);
}

.lcard-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Image */
.lcard-media {
    position: relative;
    overflow: hidden;
}

.lcard-media img {
    width: 100%;
    height: 145px;
    object-fit: cover;
    display: block;
    background: #dde8f8;
    transition: transform .24s ease;
}

.lcard:hover .lcard-media img {
    transform: scale(1.05);
}

/* Badges on image */
.lcard-badges {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.lcard-action,
.lcard-type {
    display: inline-flex;
    align-items: center;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    white-space: nowrap;
    line-height: 1.6;
}

.lcard-action--sell {
    background: rgba(37, 99, 235, .82);
    color: #fff;
}

.lcard-action--rent {
    background: rgba(6, 182, 212, .85);
    color: #fff;
}

.lcard-type {
    background: rgba(0, 0, 0, .42);
    color: #fff;
}

/* Body */
.lcard-body {
    padding: 11px 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    flex: 1;
}

.lcard-title {
    margin: 0;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.45;
    color: #0b1220;
}

/* Footer: price + city */
.lcard-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: auto;
}

.lcard-price {
    display: inline-flex;
    align-items: center;
    padding: 4px 11px;
    border-radius: 10px;
    background: rgba(37, 99, 235, .08);
    border: 1px solid rgba(37, 99, 235, .18);
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.lcard-city {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(15, 118, 110, .07);
    border: 1px solid rgba(15, 118, 110, .15);
    color: #0f766e;
    font-size: 11px;
    font-weight: 900;
    white-space: nowrap;
}

.lcard-city svg {
    flex-shrink: 0;
}

.notice {
    margin: 12px 14px 16px;
    padding: 12px 12px;
    border-radius: 16px;
    border: 1px solid rgba(22, 163, 74, .18);
    background: rgba(22, 163, 74, .08);
    color: #0b3b1a;
    line-height: 1.8;
}

.footer {
    margin-top: 28px;
    padding: 14px 0 22px;
}

.whatsapp-float {
    position: fixed;
    right: max(18px, env(safe-area-inset-right));
    left: auto;
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 9999;
    width: 74px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background:
        radial-gradient(circle at center, #25d366 0 58%, rgba(255, 255, 255, .30) 59% 100%);
    color: #ffffff;
    text-decoration: none;
    box-shadow:
        0 18px 40px rgba(37, 211, 102, .28),
        0 0 0 10px rgba(37, 211, 102, .14);
    border: 0;
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow:
        0 22px 46px rgba(37, 211, 102, .34),
        0 0 0 12px rgba(37, 211, 102, .18);
    filter: saturate(1.04);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    display: block;
    flex: 0 0 auto;
}

html[lang="fr"] .whatsapp-float {
    left: max(18px, env(safe-area-inset-left));
    right: auto;
}

@media (prefers-reduced-motion: no-preference) {

    .hero-banner-media,
    .hero-grid>* {
        animation: rise .55s ease both;
    }

    .hero-grid>*:nth-child(2) {
        animation-delay: .08s;
    }

    @keyframes rise {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

@media (max-width: 1280px) {
    .hero-banner .container {
        max-width: 100%;
        padding-inline: 14px;
    }

    .hero-banner-media {
        min-height: 660px;
    }

    .hero-banner-content {
        min-height: 660px;
        max-width: 1140px;
    }

    .hero-banner-content h1 {
        font-size: clamp(28px, 3.2vw, 44px);
        max-width: 900px;
    }

    .hero-banner-content p {
        max-width: 760px;
    }

    .hero-search-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-search-btn {
        width: 100%;
        min-width: 0;
        grid-column: 1 / -1;
    }
}

@media (max-width: 980px) {
    .hero-banner .container {
        max-width: var(--container);
        padding-inline: 18px;
    }

    .hero-banner-media {
        min-height: 540px;
        border-radius: 34px;
        box-shadow: 0 28px 70px rgba(2, 6, 23, .16);
    }

    .hero-banner-media img {
        object-fit: cover;
    }

    .hero-banner-content {
        min-height: 540px;
        padding: 40px 22px;
        max-width: 860px;
    }

    .hero-banner-content h1 {
        font-size: clamp(26px, 4.5vw, 38px);
        max-width: 760px;
        white-space: normal;
    }

    .hero-banner-content p {
        font-size: 16px;
        line-height: 1.85;
        max-width: 680px;
    }

    .hero-search-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-search-btn {
        width: 100%;
        min-width: 0;
        grid-column: 1 / -1;
    }

    .hero-card .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 820px) {
    .whatsapp-float {
        right: max(14px, env(safe-area-inset-right));
        left: auto;
        bottom: max(14px, env(safe-area-inset-bottom));
        width: 68px;
        height: 68px;
    }

    html[lang="fr"] .whatsapp-float {
        left: max(14px, env(safe-area-inset-left));
        right: auto;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 720px) {
    .hero-banner {
        padding: 16px 0 8px;
    }

    .hero-banner .container {
        padding-inline: 12px;
    }

    .hero-banner-media {
        min-height: unset;
        border-radius: 24px;
        overflow: hidden;
    }

    .hero-banner-media picture {
        display: block;
    }

    .hero-banner-media img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    .hero-banner-content {
        position: relative;
        z-index: 2;
        min-height: unset;
        max-width: 100%;
        align-items: center;
        justify-content: flex-start;
        padding: calc(var(--topbar-h) + 22px) 16px 36px;
    }

    .hero-banner-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 38px;
        padding: 7px 14px;
        font-size: 12px;
        margin-bottom: 14px;
        text-align: center;
        white-space: normal;
        line-height: 1.45;
    }

    .hero-banner-content h1 {
        font-size: clamp(28px, 8vw, 42px);
        line-height: 1.14;
        max-width: 100%;
    }

    .hero-banner-content p {
        font-size: 14px;
        line-height: 1.8;
        max-width: 100%;
    }

    .hero-search {
        width: min(100%, 100%);
        margin-top: 18px;
        padding: 0;
        border-radius: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .hero-search-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        background: transparent;
    }

    .hero-search .search-field label {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .hero-search .search-field select,
    .hero-search .search-field input,
    .hero-search-btn {
        height: 48px;
        border-radius: 14px;
        font-size: 13px;
    }

    .hero-search .search-field select,
    .hero-search .search-field input {
        background: rgba(255, 255, 255, .96);
    }

    .hero-search-btn {
        grid-column: auto;
        width: 100%;
    }

    .hero-banner-actions {
        gap: 9px;
        margin-top: 16px;
    }

    .hero-banner-actions .btn {
        width: auto;
        min-width: 0;
        min-height: 44px;
        font-size: 13px;
        padding: 9px 16px;
        border-radius: 999px;
        flex: 0 0 auto;
    }

    .hero {
        padding: 18px 0 26px;
    }

    .hero-card .grid {
        grid-template-columns: 1fr;
    }

    .lcard-media img {
        height: 180px;
    }

    .stat {
        min-width: 0;
    }
}

@media (max-width: 560px) {

    .home-page main .container,
    .home-page footer .container {
        padding-inline: 12px;
    }

    .hero-banner-media {
        min-height: 720px;
        border-radius: 20px;
    }

    .hero-banner-content {
        min-height: 720px;
        justify-content: flex-start;
        padding: calc(var(--topbar-h) + 18px) 12px 22px;
    }

    .hero-banner-badge {
        min-height: 36px;
        padding: 6px 12px;
        font-size: 11px;
        margin-bottom: 12px;
        text-align: center;
        white-space: normal;
        line-height: 1.4;
    }

    .hero-banner-content h1 {
        font-size: 26px;
        line-height: 1.16;
    }

    .hero-banner-content p {
        font-size: 13px;
        line-height: 1.72;
    }

    .hero-search {
        padding: 0;
        border-radius: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .hero-banner-actions {
        gap: 8px;
        margin-top: 14px;
    }

    .hero-banner-actions .btn {
        width: auto;
        min-width: 0;
        min-height: 42px;
        font-size: 12.5px;
        padding: 8px 15px;
        border-radius: 999px;
        flex: 0 0 auto;
    }

    .home-section-title {
        font-size: 26px;
        line-height: 1.18;
    }

    .hero p {
        font-size: 14px;
        line-height: 1.8;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .stats {
        flex-direction: column;
    }

    .whatsapp-float {
        right: max(12px, env(safe-area-inset-right));
        left: auto;
        bottom: max(12px, env(safe-area-inset-bottom));
        width: 64px;
        height: 64px;
    }

    html[lang="fr"] .whatsapp-float {
        left: max(12px, env(safe-area-inset-left));
        right: auto;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}


/* =========================
   HOME CATEGORIES
========================= */
.home-categories {
    position: relative;
    padding: 18px 0 42px;
}

.home-categories::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 280px;
    background:
        radial-gradient(620px 220px at 50% 20%, rgba(255, 255, 255, .70), transparent 70%),
        radial-gradient(520px 240px at 15% 60%, rgba(37, 99, 235, .08), transparent 72%),
        radial-gradient(520px 240px at 85% 50%, rgba(6, 182, 212, .08), transparent 72%);
    pointer-events: none;
    opacity: .9;
}

.section-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(37, 99, 235, .08);
    border: 1px solid rgba(37, 99, 235, .16);
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 10px;
    box-shadow: 0 8px 18px rgba(37, 99, 235, .08);
}

.category-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.category-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    text-decoration: none;
    color: inherit;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, .88), rgba(248, 250, 252, .96));
    border: 1px solid rgba(255, 255, 255, .82);
    box-shadow:
        0 18px 44px rgba(15, 23, 42, .08),
        inset 0 1px 0 rgba(255, 255, 255, .92);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 24px 54px rgba(15, 23, 42, .12),
        inset 0 1px 0 rgba(255, 255, 255, .94);
    border-color: rgba(37, 99, 235, .22);
}

.category-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #e5edf8;
}

.category-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 35%, rgba(15, 23, 42, .08) 100%);
    pointer-events: none;
}

.category-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .38s ease;
}

.category-card:hover .category-card__media img {
    transform: scale(1.06);
}

.category-card__body {
    padding: 15px 15px 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.category-card__body h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 900;
    color: #0b1b48;
}

.category-card__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(15, 118, 110, .08);
    border: 1px solid rgba(15, 118, 110, .16);
    color: #0f766e;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(15, 118, 110, .08);
}

@media (max-width: 1180px) {
    .category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .category-card__body {
        padding: 12px;
        flex-direction: column;
        align-items: flex-start;
    }

    .category-card__body h3 {
        font-size: 16px;
    }
}

@media (max-width: 560px) {
    .home-categories {
        padding: 10px 0 30px;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .category-card {
        border-radius: 20px;
    }

    .category-card__body h3 {
        font-size: 15px;
    }
}


/* =========================
   HOME CITIES
========================= */
.home-cities {
    position: relative;
    padding: 10px 0 46px;
}

.home-cities::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 300px;
    background:
        radial-gradient(620px 220px at 50% 18%, rgba(255, 255, 255, .72), transparent 70%),
        radial-gradient(520px 240px at 14% 56%, rgba(37, 99, 235, .08), transparent 72%),
        radial-gradient(520px 240px at 86% 48%, rgba(6, 182, 212, .08), transparent 72%);
    pointer-events: none;
    opacity: .92;
}

.cities-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.city-card {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-radius: 28px;
    text-decoration: none;
    color: #ffffff;
    /* Fallback affiché si l'image ne charge pas (offline, CDN down, etc.) :
       dégradé brand + silhouette de bâtiments en watermark — la carte garde
       du caractère au lieu d'être un rectangle noir. */
    background:
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 120' fill='none' stroke='%23ffffff' stroke-width='1.2' stroke-opacity='0.18' stroke-linecap='round' stroke-linejoin='round'><path d='M10 110 V70 H30 V40 H50 V60 H70 V25 H95 V55 H115 V75 H140 V45 H165 V95 H190 V110 Z'/><line x1='40' y1='55' x2='40' y2='65'/><line x1='80' y1='40' x2='80' y2='50'/><line x1='80' y1='65' x2='80' y2='75'/><line x1='125' y1='90' x2='125' y2='100'/><line x1='175' y1='105' x2='175' y2='110'/></svg>") center / 80% no-repeat,
        linear-gradient(135deg, #0f172a 0%, #134e4a 55%, #0f766e 100%);
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow:
        0 20px 50px rgba(15, 23, 42, .14),
        inset 0 1px 0 rgba(255, 255, 255, .08);
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
    isolation: isolate;
}

.city-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 28px 62px rgba(15, 23, 42, .18),
        inset 0 1px 0 rgba(255, 255, 255, .10);
    border-color: rgba(255, 255, 255, .26);
}

.city-card__media {
    position: absolute;
    inset: 0;
}

.city-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .42s ease;
}

.city-card:hover .city-card__media img {
    transform: scale(1.08);
}

.city-card__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(2, 6, 23, .08) 0%, rgba(2, 6, 23, .18) 36%, rgba(2, 6, 23, .72) 100%),
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, .08), transparent 40%);
}

.city-card__content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 22px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.city-card__content h3 {
    margin: 0;
    color: #ffffff;
    font-size: 28px;
    line-height: 1.08;
    font-weight: 900;
    text-shadow: 0 6px 18px rgba(0, 0, 0, .28);
}

.city-card__content p {
    margin: 0;
    color: rgba(255, 255, 255, .92);
    font-size: 14px;
    line-height: 1.75;
    max-width: 90%;
    text-shadow: 0 4px 14px rgba(0, 0, 0, .22);
}

.city-card__count {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .24);
    box-shadow:
        0 10px 24px rgba(2, 6, 23, .16),
        inset 0 1px 0 rgba(255, 255, 255, .24);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.city-card.is-empty {
    opacity: .88;
}

.city-card.is-empty .city-card__count {
    background: rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .95);
}

@media (max-width: 1180px) {
    .cities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .home-cities {
        padding: 8px 0 34px;
    }

    .cities-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .city-card {
        min-height: 280px;
        border-radius: 22px;
    }

    .city-card__content {
        padding: 18px 16px 16px;
    }

    .city-card__content h3 {
        font-size: 24px;
    }

    .city-card__content p {
        font-size: 13px;
        max-width: 100%;
    }
}

@media (max-width: 560px) {
    .home-cities {
        padding: 6px 0 28px;
    }

    .city-card {
        min-height: 240px;
        border-radius: 20px;
    }

    .city-card__content h3 {
        font-size: 21px;
    }

    .city-card__count {
        min-height: 34px;
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* =========================
   HOME HOW WE WORK
========================= */
.home-how {
    position: relative;
    padding: 10px 0 50px;
}

.home-how::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 320px;
    background:
        radial-gradient(620px 240px at 50% 0%, rgba(255,255,255,.72), transparent 70%),
        radial-gradient(520px 260px at 14% 20%, rgba(37,99,235,.07), transparent 72%),
        radial-gradient(520px 260px at 86% 18%, rgba(6,182,212,.07), transparent 72%);
    pointer-events: none;
    opacity: .94;
}

.how-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

/* connector line between steps on desktop */
.how-grid::before {
    content: "";
    position: absolute;
    top: 52px;
    right: calc(12.5% + 28px);
    left: calc(12.5% + 28px);
    height: 2px;
    background: linear-gradient(90deg,
        rgba(37,99,235,.22),
        rgba(20,184,166,.22),
        rgba(245,158,11,.22),
        rgba(34,197,94,.22));
    z-index: 0;
    pointer-events: none;
}

.how-step {
    position: relative;
    z-index: 1;
    padding: 24px 18px 22px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255,255,255,.90), rgba(248,250,252,.97));
    border: 1px solid rgba(255,255,255,.84);
    box-shadow: 0 20px 48px rgba(15,23,42,.08), inset 0 1px 0 rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-align: center;
    opacity: 1;
    transform: translateY(0);
    transition: transform .55s ease, opacity .55s ease, box-shadow .22s ease, border-color .22s ease;
}

.how-step.how-pending {
    opacity: 0;
    transform: translateY(16px);
}

.how-step.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.how-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 58px rgba(15,23,42,.12), inset 0 1px 0 rgba(255,255,255,.95);
}

/* numbered badge */
.how-step__num {
    position: absolute;
    top: -14px;
    right: 50%;
    transform: translateX(50%);
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    color: #fff;
    box-shadow: 0 6px 16px rgba(0,0,0,.14);
}

/* icon box */
.how-step__icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 16px;
    border: 1px solid transparent;
    box-shadow: 0 10px 24px rgba(0,0,0,.07), inset 0 1px 0 rgba(255,255,255,.70);
}

.how-step__icon svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.how-step h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 900;
    color: #0b1b48;
    line-height: 1.35;
}

.how-step p {
    margin: 0;
    font-size: 14px;
    color: #64748b;
    line-height: 1.9;
}

/* color variants */
.how-step--blue  .how-step__num  { background: linear-gradient(135deg, #2563eb, #06b6d4); }
.how-step--blue  .how-step__icon { background: rgba(37,99,235,.12); border-color: rgba(37,99,235,.18); color: #2563eb; }
.how-step--blue:hover             { border-color: rgba(37,99,235,.22); }

.how-step--teal  .how-step__num  { background: linear-gradient(135deg, #0d9488, #14b8a6); }
.how-step--teal  .how-step__icon { background: rgba(20,184,166,.12); border-color: rgba(20,184,166,.18); color: #0d9488; }
.how-step--teal:hover             { border-color: rgba(20,184,166,.22); }

.how-step--amber .how-step__num  { background: linear-gradient(135deg, #d97706, #f59e0b); }
.how-step--amber .how-step__icon { background: rgba(245,158,11,.12); border-color: rgba(245,158,11,.18); color: #d97706; }
.how-step--amber:hover            { border-color: rgba(245,158,11,.22); }

.how-step--green .how-step__num  { background: linear-gradient(135deg, #16a34a, #22c55e); }
.how-step--green .how-step__icon { background: rgba(34,197,94,.12); border-color: rgba(34,197,94,.18); color: #16a34a; }
.how-step--green:hover            { border-color: rgba(34,197,94,.22); }

/* stagger delay */
.how-step:nth-child(1) { transition-delay: .00s; }
.how-step:nth-child(2) { transition-delay: .08s; }
.how-step:nth-child(3) { transition-delay: .16s; }
.how-step:nth-child(4) { transition-delay: .24s; }

@media (max-width: 1100px) {
    .how-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .how-grid::before { display: none; }
}

@media (max-width: 820px) {
    .home-how { padding: 6px 0 36px; }
    .how-step { padding: 20px 16px 18px; border-radius: 22px; }
    .how-step h3 { font-size: 17px; }
}

@media (max-width: 560px) {
    .home-how { padding: 4px 0 28px; }
    .how-grid { grid-template-columns: 1fr; gap: 20px; }
    .how-step__icon { width: 54px; height: 54px; border-radius: 16px; }
    .how-step__icon svg { width: 22px; height: 22px; }
}

/* =========================
   HOME WHY US
========================= */
.home-why {
    position: relative;
    padding: 8px 0 50px;
}

.home-why::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 340px;
    background:
        radial-gradient(620px 240px at 50% 0%, rgba(255, 255, 255, .72), transparent 70%),
        radial-gradient(520px 260px at 14% 20%, rgba(37, 99, 235, .08), transparent 72%),
        radial-gradient(520px 260px at 86% 18%, rgba(6, 182, 212, .08), transparent 72%);
    pointer-events: none;
    opacity: .94;
}

.why-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.why-card {
    position: relative;
    padding: 22px 18px 20px;
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .88), rgba(248, 250, 252, .96));
    border: 1px solid rgba(255, 255, 255, .82);
    box-shadow:
        0 20px 48px rgba(15, 23, 42, .08),
        inset 0 1px 0 rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    transform: translateY(14px);
    opacity: 0;
    transition:
        transform .55s ease,
        opacity .55s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.why-card.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 28px 58px rgba(15, 23, 42, .12),
        inset 0 1px 0 rgba(255, 255, 255, .95);
    border-color: rgba(37, 99, 235, .22);
}

.why-card::after {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #06b6d4);
    opacity: .92;
}

.why-card__icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 14px;
    background:
        linear-gradient(135deg, rgba(37, 99, 235, .14), rgba(6, 182, 212, .14));
    border: 1px solid rgba(37, 99, 235, .14);
    box-shadow:
        0 10px 24px rgba(37, 99, 235, .10),
        inset 0 1px 0 rgba(255, 255, 255, .70);
    font-size: 26px;
}

.why-card h3 {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.35;
    font-weight: 900;
    color: #0b1b48;
}

.why-card p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.9;
}

.why-banner {
    position: relative;
    z-index: 1;
    margin-top: 22px;
    padding: 22px 24px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, .94), rgba(12, 74, 110, .94));
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow:
        0 26px 60px rgba(15, 23, 42, .18),
        inset 0 1px 0 rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    overflow: hidden;
}

.why-banner::before {
    content: "";
    position: absolute;
    inset: auto auto -60px -40px;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(34, 211, 238, .22), transparent 70%);
    pointer-events: none;
}

.why-banner__content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.why-banner__content b {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 900;
}

.why-banner__content p {
    margin: 0;
    color: rgba(255, 255, 255, .86);
    font-size: 15px;
    line-height: 1.9;
}

.why-banner .btn.primary {
    position: relative;
    z-index: 1;
    min-width: 210px;
    min-height: 54px;
    box-shadow: 0 18px 40px rgba(37, 99, 235, .28);
}

@media (max-width: 1180px) {
    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .home-why {
        padding: 4px 0 34px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .why-card {
        border-radius: 22px;
        padding: 18px 16px 16px;
    }

    .why-card h3 {
        font-size: 18px;
    }

    .why-banner {
        padding: 18px 16px;
        border-radius: 22px;
    }

    .why-banner__content b {
        font-size: 20px;
    }

    .why-banner__content p {
        font-size: 14px;
    }

    .why-banner .btn.primary {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 560px) {
    .home-why {
        padding: 0 0 28px;
    }

    .why-card__icon {
        width: 52px;
        height: 52px;
        border-radius: 16px;
        font-size: 23px;
    }

    .why-card h3 {
        font-size: 17px;
    }

    .why-card p {
        font-size: 13.5px;
    }

    .why-banner__content b {
        font-size: 18px;
    }
}


/* =========================
   HOME TESTIMONIALS
========================= */
.home-testimonials {
    position: relative;
    padding: 4px 0 54px;
}

.home-testimonials::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 320px;
    background:
        radial-gradient(620px 240px at 50% 0%, rgba(255, 255, 255, .72), transparent 70%),
        radial-gradient(540px 260px at 14% 16%, rgba(37, 99, 235, .08), transparent 72%),
        radial-gradient(540px 260px at 86% 14%, rgba(6, 182, 212, .08), transparent 72%);
    pointer-events: none;
    opacity: .95;
}

.testimonials-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.testimonial-card {
    position: relative;
    padding: 24px 20px 20px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .90), rgba(248, 250, 252, .97));
    border: 1px solid rgba(255, 255, 255, .84);
    box-shadow:
        0 22px 52px rgba(15, 23, 42, .08),
        inset 0 1px 0 rgba(255, 255, 255, .94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    transform: translateY(14px);
    opacity: 0;
    transition:
        transform .55s ease,
        opacity .55s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.testimonial-card.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 30px 62px rgba(15, 23, 42, .12),
        inset 0 1px 0 rgba(255, 255, 255, .96);
    border-color: rgba(37, 99, 235, .22);
}

.testimonial-card::after {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #06b6d4);
    opacity: .92;
}

.testimonial-card__stars {
    margin-bottom: 12px;
    color: #f59e0b;
    font-size: 20px;
    letter-spacing: 2px;
    text-shadow: 0 6px 18px rgba(245, 158, 11, .18);
}

.testimonial-card__text {
    margin: 0 0 18px;
    color: #475569;
    font-size: 15px;
    line-height: 2;
}

.testimonial-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(148, 163, 184, .18);
}

.testimonial-card__meta strong {
    color: #0b1b48;
    font-size: 15px;
    font-weight: 900;
}

.testimonial-card__meta span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(15, 118, 110, .08);
    border: 1px solid rgba(15, 118, 110, .14);
    color: #0f766e;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.testimonials-trust {
    position: relative;
    z-index: 1;
    margin-top: 20px;
    padding: 18px 20px;
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, .94), rgba(12, 74, 110, .94));
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow:
        0 26px 60px rgba(15, 23, 42, .16),
        inset 0 1px 0 rgba(255, 255, 255, .08);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    overflow: hidden;
}

.testimonials-trust::before {
    content: "";
    position: absolute;
    inset: auto auto -60px -40px;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(34, 211, 238, .22), transparent 70%);
    pointer-events: none;
}

.testimonials-trust__item {
    position: relative;
    z-index: 1;
    padding: 14px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .10);
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.testimonials-trust__item b {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
}

.testimonials-trust__item span {
    color: rgba(255, 255, 255, .84);
    font-size: 13px;
    line-height: 1.7;
}

@media (max-width: 1180px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .home-testimonials {
        padding: 0 0 36px;
    }

    .testimonial-card {
        border-radius: 22px;
        padding: 18px 16px 16px;
    }

    .testimonial-card__text {
        font-size: 14px;
    }

    .testimonials-trust {
        grid-template-columns: 1fr;
        padding: 16px;
        border-radius: 22px;
    }
}

@media (max-width: 560px) {
    .home-testimonials {
        padding: 0 0 28px;
    }

    .testimonial-card__stars {
        font-size: 18px;
    }

    .testimonial-card__meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .testimonials-trust__item b {
        font-size: 16px;
    }
}

/* =========================
   HOME FAQ
========================= */
.home-faq {
    position: relative;
    padding: 4px 0 54px;
}

.home-faq::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 340px;
    background:
        radial-gradient(640px 240px at 50% 0%, rgba(255, 255, 255, .72), transparent 70%),
        radial-gradient(520px 250px at 16% 20%, rgba(37, 99, 235, .08), transparent 72%),
        radial-gradient(520px 250px at 84% 18%, rgba(6, 182, 212, .08), transparent 72%);
    pointer-events: none;
    opacity: .94;
}

.faq-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    gap: 20px;
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    position: relative;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .88), rgba(248, 250, 252, .96));
    border: 1px solid rgba(255, 255, 255, .82);
    box-shadow:
        0 18px 44px rgba(15, 23, 42, .08),
        inset 0 1px 0 rgba(255, 255, 255, .92);
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: box-shadow .22s ease, border-color .22s ease, transform .22s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow:
        0 24px 54px rgba(15, 23, 42, .10),
        inset 0 1px 0 rgba(255, 255, 255, .94);
    border-color: rgba(37, 99, 235, .18);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 20px 20px;
    border: 0;
    background: transparent;
    color: #0f172a;
    font: inherit;
    text-align: right;
    cursor: pointer;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.6;
}

.faq-question__icon {
    position: relative;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 999px;
    background: rgba(37, 99, 235, .08);
    border: 1px solid rgba(37, 99, 235, .16);
    box-shadow: 0 8px 18px rgba(37, 99, 235, .08);
}

.faq-question__icon::before,
.faq-question__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background: #1d4ed8;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    transition: transform .22s ease, opacity .22s ease;
}

.faq-question__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-question__icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg) scale(.7);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .28s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 20px 20px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.95;
}

.faq-side-card {
    position: sticky;
    top: 110px;
    padding: 22px 20px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, .96), rgba(12, 74, 110, .94));
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow:
        0 26px 60px rgba(15, 23, 42, .18),
        inset 0 1px 0 rgba(255, 255, 255, .08);
    overflow: hidden;
}

.faq-side-card::before {
    content: "";
    position: absolute;
    inset: auto auto -60px -40px;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(34, 211, 238, .22), transparent 70%);
    pointer-events: none;
}

.faq-side-card>* {
    position: relative;
    z-index: 1;
}

.faq-side-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
}

.faq-side-card h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 900;
}

.faq-side-card p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, .86);
    font-size: 14px;
    line-height: 1.9;
}

.faq-side-card .btn.primary {
    min-width: 100%;
    min-height: 52px;
}

@media (max-width: 1080px) {
    .faq-shell {
        grid-template-columns: 1fr;
    }

    .faq-side-card {
        position: relative;
        top: auto;
    }
}

@media (max-width: 820px) {
    .home-faq {
        padding: 0 0 36px;
    }

    .faq-question {
        padding: 17px 16px;
        font-size: 15px;
    }

    .faq-answer p {
        padding: 0 16px 16px;
        font-size: 14px;
    }

    .faq-side-card {
        padding: 18px 16px;
        border-radius: 22px;
    }

    .faq-side-card h3 {
        font-size: 20px;
    }
}

@media (max-width: 560px) {
    .home-faq {
        padding: 0 0 28px;
    }

    .faq-item {
        border-radius: 20px;
    }

    .faq-question {
        font-size: 14px;
        line-height: 1.7;
    }

    .faq-question__icon {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    .faq-side-card h3 {
        font-size: 18px;
    }

    .faq-side-card p {
        font-size: 13.5px;
    }
}

/* =========================
   HOME SELLERS / PROMOTERS
========================= */
.home-sellers {
    position: relative;
    padding: 6px 0 58px;
}

.home-sellers::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 360px;
    background:
        radial-gradient(640px 240px at 50% 0%, rgba(255, 255, 255, .72), transparent 70%),
        radial-gradient(520px 250px at 14% 18%, rgba(37, 99, 235, .08), transparent 72%),
        radial-gradient(520px 250px at 86% 20%, rgba(6, 182, 212, .08), transparent 72%);
    pointer-events: none;
    opacity: .95;
}

.sellers-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, .98fr);
    gap: 22px;
    align-items: start;
}

.sellers-copy {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sellers-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sellers-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(37, 99, 235, .08);
    border: 1px solid rgba(37, 99, 235, .16);
    box-shadow: 0 8px 18px rgba(37, 99, 235, .08);
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.seller-features {
    display: grid;
    gap: 14px;
}

.seller-feature,
.seller-media-card {
    opacity: 0;
    transform: translateY(16px);
    transition:
        transform .55s ease,
        opacity .55s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.seller-feature.is-visible,
.seller-media-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.seller-feature {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 14px;
    align-items: flex-start;
    padding: 18px 18px 16px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .88), rgba(248, 250, 252, .96));
    border: 1px solid rgba(255, 255, 255, .82);
    box-shadow:
        0 18px 44px rgba(15, 23, 42, .08),
        inset 0 1px 0 rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.seller-feature:hover {
    transform: translateY(-4px);
    box-shadow:
        0 24px 54px rgba(15, 23, 42, .10),
        inset 0 1px 0 rgba(255, 255, 255, .94);
    border-color: rgba(37, 99, 235, .18);
}

.seller-feature__icon {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(37, 99, 235, .14), rgba(6, 182, 212, .14));
    border: 1px solid rgba(37, 99, 235, .14);
    box-shadow:
        0 10px 24px rgba(37, 99, 235, .10),
        inset 0 1px 0 rgba(255, 255, 255, .70);
    font-size: 28px;
}

.seller-feature h3 {
    margin: 0 0 8px;
    color: #0b1b48;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 900;
}

.seller-feature p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.9;
}

.sellers-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 2px;
}

.sellers-cta-row .btn {
    min-height: 52px;
    min-width: 200px;
}

.sellers-media-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 190px;
    gap: 14px;
}

.seller-media-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    /* Fallback si l'image ne charge pas (offline, CDN down) :
       dégradé brand + silhouette de maison en watermark — la carte garde
       un caractère immobilier au lieu d'être un rectangle noir. */
    background:
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 120' fill='none' stroke='%23ffffff' stroke-width='1.4' stroke-opacity='0.18' stroke-linecap='round' stroke-linejoin='round'><path d='M30 110 V55 L100 15 L170 55 V110 Z'/><path d='M75 110 V72 H125 V110'/><line x1='100' y1='86' x2='100' y2='96'/><line x1='50' y1='75' x2='65' y2='75'/><line x1='135' y1='75' x2='150' y2='75'/></svg>") center / 70% no-repeat,
        linear-gradient(135deg, #0f172a 0%, #134e4a 55%, #0f766e 100%);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow:
        0 22px 50px rgba(15, 23, 42, .14),
        inset 0 1px 0 rgba(255, 255, 255, .08);
    isolation: isolate;
}

.seller-media-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 28px 60px rgba(15, 23, 42, .18),
        inset 0 1px 0 rgba(255, 255, 255, .10);
    border-color: rgba(255, 255, 255, .18);
}

.seller-media-card--large {
    grid-row: span 2;
}

.seller-media-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .42s ease;
}

.seller-media-card:hover img {
    transform: scale(1.08);
}

.seller-media-card__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(2, 6, 23, .08) 0%, rgba(2, 6, 23, .18) 36%, rgba(2, 6, 23, .74) 100%),
        radial-gradient(circle at 50% 18%, rgba(255, 255, 255, .08), transparent 40%);
}

.seller-media-card__content {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 1;
    padding: 18px 16px 16px;
    color: #ffffff;
}

.seller-media-card__content h3 {
    margin: 8px 0 0;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 6px 18px rgba(0, 0, 0, .28);
}

.seller-media-card__content p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, .88);
    font-size: 14px;
    line-height: 1.8;
}

.seller-media-card__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow:
        0 10px 24px rgba(2, 6, 23, .14),
        inset 0 1px 0 rgba(255, 255, 255, .18);
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 1120px) {
    .sellers-shell {
        grid-template-columns: 1fr;
    }

    .sellers-media-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-auto-rows: 220px;
    }

    .seller-media-card--large {
        grid-column: span 3;
        grid-row: span 1;
    }
}

@media (max-width: 820px) {
    .home-sellers {
        padding: 0 0 38px;
    }

    .seller-feature {
        grid-template-columns: 56px minmax(0, 1fr);
        padding: 16px 14px 14px;
        border-radius: 22px;
    }

    .seller-feature__icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        font-size: 24px;
    }

    .seller-feature h3 {
        font-size: 18px;
    }

    .seller-feature p {
        font-size: 13.8px;
    }

    .sellers-media-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .seller-media-card,
    .seller-media-card--large {
        grid-column: auto;
        grid-row: auto;
        border-radius: 22px;
    }

    .sellers-cta-row .btn {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 560px) {
    .home-sellers {
        padding: 0 0 30px;
    }

    .sellers-badges {
        gap: 8px;
    }

    .sellers-badge {
        min-height: 34px;
        padding: 6px 12px;
        font-size: 11px;
    }

    .seller-feature {
        gap: 12px;
        border-radius: 20px;
    }

    .seller-feature h3 {
        font-size: 16px;
    }

    .seller-feature p {
        font-size: 13.2px;
        line-height: 1.82;
    }

    .seller-media-card__content h3 {
        font-size: 18px;
    }

    .seller-media-card__content p {
        font-size: 13px;
    }
}


/* =========================
   WHY-CARD ICON — SVG COLOR VARIANTS
========================= */
.why-card__icon {
    font-size: 0; /* hide any stray emoji fallback */
}

.why-card__icon svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.wci-teal {
    background: rgba(20, 184, 166, .14) !important;
    border-color: rgba(20, 184, 166, .20) !important;
    color: #0d9488;
    box-shadow: 0 10px 24px rgba(20, 184, 166, .14), inset 0 1px 0 rgba(255,255,255,.70) !important;
}

.wci-blue {
    background: rgba(37, 99, 235, .14) !important;
    border-color: rgba(37, 99, 235, .20) !important;
    color: #2563eb;
    box-shadow: 0 10px 24px rgba(37, 99, 235, .14), inset 0 1px 0 rgba(255,255,255,.70) !important;
}

.wci-amber {
    background: rgba(245, 158, 11, .12) !important;
    border-color: rgba(245, 158, 11, .20) !important;
    color: #d97706;
    box-shadow: 0 10px 24px rgba(245, 158, 11, .12), inset 0 1px 0 rgba(255,255,255,.70) !important;
}

.wci-purple {
    background: rgba(139, 92, 246, .12) !important;
    border-color: rgba(139, 92, 246, .20) !important;
    color: #7c3aed;
    box-shadow: 0 10px 24px rgba(139, 92, 246, .12), inset 0 1px 0 rgba(255,255,255,.70) !important;
}

/* =========================
   SELLER-FEATURE ICON — SVG COLOR VARIANTS
========================= */
.seller-feature__icon {
    font-size: 0;
}

.seller-feature__icon svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.sfi-blue {
    background: rgba(37, 99, 235, .14) !important;
    border-color: rgba(37, 99, 235, .20) !important;
    color: #2563eb;
    box-shadow: 0 10px 24px rgba(37, 99, 235, .12), inset 0 1px 0 rgba(255,255,255,.70) !important;
}

.sfi-teal {
    background: rgba(20, 184, 166, .14) !important;
    border-color: rgba(20, 184, 166, .20) !important;
    color: #0d9488;
    box-shadow: 0 10px 24px rgba(20, 184, 166, .12), inset 0 1px 0 rgba(255,255,255,.70) !important;
}

.sfi-green {
    background: rgba(34, 197, 94, .12) !important;
    border-color: rgba(34, 197, 94, .20) !important;
    color: #16a34a;
    box-shadow: 0 10px 24px rgba(34, 197, 94, .10), inset 0 1px 0 rgba(255,255,255,.70) !important;
}

/* =========================
   HERO SEARCH — LABEL ICONS
========================= */
.hero-search .search-field label {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hs-field-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: .88;
}

.hs-field-icon svg {
    width: 13px;
    height: 13px;
}

/* =========================
   STATS — ENHANCED WITH COLOR ACCENTS
========================= */
.stat {
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    border-radius: 3px 3px 0 0;
}

.stats .stat:nth-child(1)::before { background: linear-gradient(90deg, #2563eb, #06b6d4); }
.stats .stat:nth-child(2)::before { background: linear-gradient(90deg, #0d9488, #14b8a6); }
.stats .stat:nth-child(3)::before { background: linear-gradient(90deg, #16a34a, #22c55e); }

.stats .stat:nth-child(1) b { color: #2563eb; }
.stats .stat:nth-child(2) b { color: #0d9488; }
.stats .stat:nth-child(3) b { color: #16a34a; }

/* =========================
   TESTIMONIALS — QUOTE DECORATION + AVATAR
========================= */
.testimonial-quote {
    position: absolute;
    bottom: 16px;
    left: 16px;
    color: #2563eb;
    opacity: .05;
    pointer-events: none;
    z-index: 0;
}

.testimonial-quote svg {
    width: 64px;
    height: 48px;
}

.testimonial-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(148, 163, 184, .18);
    position: relative;
    z-index: 1;
}

.testimonial-meta-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-avatar {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 900;
    flex-shrink: 0;
}

.tav-blue  { background: rgba(37, 99, 235, .10); color: #2563eb; border: 1px solid rgba(37, 99, 235, .18); }
.tav-teal  { background: rgba(20, 184, 166, .10); color: #0d9488; border: 1px solid rgba(20, 184, 166, .18); }
.tav-amber { background: rgba(245, 158, 11, .10); color: #d97706; border: 1px solid rgba(245, 158, 11, .18); }

@media (max-width: 560px) {
    .testimonial-card__meta {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }
}