/* =========================================================
   PAGE RÉPARATIONS
   ========================================================= */

.repair-intro {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
    padding: 92px 64px;
    background:
        radial-gradient(circle at top left, rgba(182, 130, 66, 0.13), transparent 360px),
        linear-gradient(180deg, #100f0d 0%, #080706 100%);
    border-bottom: 1px solid var(--line);
}

.repair-intro-kicker,
.repair-section-kicker {
    display: block;
    margin-bottom: 18px;
    color: var(--gold2);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.repair-intro h2,
.repair-section-heading h2,
.repair-cta h2 {
    margin: 0;
    color: var(--cream);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.08;
    text-transform: uppercase;
}

.repair-intro h2 .gold,
.repair-cta h2 .gold {
    display: block;
    color: var(--gold2);
}

.repair-intro-text p {
    margin: 0 0 20px;
    color: rgba(242, 231, 212, 0.78);
    font-size: clamp(15px, 1.35vw, 18px);
    line-height: 1.85;
}

.repair-list-section {
    padding: 92px 54px 100px;
    background: #080706;
    border-bottom: 1px solid var(--line);
}

.repair-section-heading {
    max-width: 760px;
    margin: 0 auto 54px;
    text-align: center;
}

.repair-section-heading p {
    max-width: 650px;
    margin: 22px auto 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.repair-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    max-width: 1020px;
    margin: 0 auto;
}

.repair-card {
    position: relative;
    min-height: 100%;
    padding: 34px 34px 32px;
    overflow: hidden;
    border: 1px solid var(--line);
    background:
        radial-gradient(circle at top right, rgba(182, 130, 66, 0.13), transparent 230px),
        linear-gradient(145deg, #12100e 0%, #090807 100%);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.repair-card:hover {
    transform: translateY(-5px);
    border-color: rgba(210, 163, 99, 0.72);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.30);
}

.repair-card-number {
    position: absolute;
    top: 17px;
    right: 22px;
    color: rgba(210, 163, 99, 0.12);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 66px;
    line-height: 1;
}

.repair-card-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    color: var(--gold2);
    border: 1px solid rgba(210, 163, 99, 0.42);
    background: rgba(0, 0, 0, 0.24);
}

.repair-card-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.repair-card h3 {
    position: relative;
    margin: 0 0 22px;
    color: var(--gold2);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
}

.repair-card ul {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

.repair-card li {
    position: relative;
    padding: 11px 0 11px 24px;
    color: rgba(242, 231, 212, 0.76);
    font-size: 14px;
    line-height: 1.55;
    border-top: 1px solid var(--softLine);
}

.repair-card li:first-child {
    border-top: 0;
}

.repair-card li::before {
    content: "";
    position: absolute;
    left: 1px;
    top: 19px;
    width: 7px;
    height: 7px;
    border: 1px solid var(--gold2);
    transform: rotate(45deg);
}

.repair-card-wide {
    grid-column: 1 / -1;
}

.repair-card-wide ul {
    columns: 2;
    column-gap: 46px;
}

.repair-card-wide li {
    break-inside: avoid;
}

.repair-note {
    max-width: 1020px;
    margin: 30px auto 0;
    padding: 22px 26px;
    color: rgba(242, 231, 212, 0.68);
    font-size: 14px;
    line-height: 1.7;
    border-left: 2px solid var(--gold);
    background: rgba(182, 130, 66, 0.07);
}

.repair-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 52px;
    align-items: center;
    padding: 72px 64px;
    background:
        radial-gradient(circle at 85% 50%, rgba(182, 130, 66, 0.20), transparent 340px),
        linear-gradient(90deg, #17100b 0%, #080706 72%);
    border-bottom: 1px solid var(--line);
}

.repair-cta p {
    max-width: 720px;
    margin: 22px 0 0;
    color: rgba(242, 231, 212, 0.72);
    font-size: 16px;
    line-height: 1.75;
}

.repair-cta .button {
    margin-top: 0;
    white-space: nowrap;
}

@media (max-width: 980px) {
    .repair-intro {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 70px 34px;
    }

    .repair-list-section {
        padding: 70px 30px 78px;
    }

    .repair-cta {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 60px 34px;
    }
}

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

    .repair-card-wide {
        grid-column: auto;
    }

    .repair-card-wide ul {
        columns: 1;
    }

    .repair-card {
        padding: 28px 24px 24px;
    }

    .repair-list-section {
        padding: 58px 18px 64px;
    }

    .repair-intro,
    .repair-cta {
        padding-left: 24px;
        padding-right: 24px;
    }
}

/* =========================================================
   ANIMATIONS PREMIUM DES CARTES RÉPARATIONS
   ========================================================= */

/* État initial de la carte */

.repair-card {
    position: relative;
    overflow: hidden;

    opacity: 0;

    transform:
        perspective(1200px)
        translateY(70px)
        rotateX(8deg)
        scale(0.94);

    transform-origin: center bottom;

    filter: blur(7px);

    transition:
        opacity 0.85s ease,
        transform 1.05s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.85s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

/* Carte affichée */

.repair-card.is-visible {
    opacity: 1;

    transform:
        perspective(1200px)
        translateY(0)
        rotateX(0)
        scale(1);

    filter: blur(0);
}

/* Éclairage interne */

.repair-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;

    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(210, 163, 99, 0.18),
            transparent 36%
        ),
        linear-gradient(
            135deg,
            rgba(210, 163, 99, 0.07),
            transparent 50%
        );

    opacity: 0;
    transition: opacity 1.2s ease 0.2s;

    pointer-events: none;
}

.repair-card.is-visible::before {
    opacity: 1;
}

/* Trait supérieur qui se dessine */

.repair-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;

    width: 100%;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--gold2) 50%,
        transparent 100%
    );

    transform: scaleX(0);
    transform-origin: left center;

    transition:
        transform 1.15s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;

    pointer-events: none;
}

.repair-card.is-visible::after {
    transform: scaleX(1);
}

/* Le contenu reste au-dessus du fond */

.repair-card h3,
.repair-card ul,
.repair-card-icon {
    position: relative;
    z-index: 2;
}

/* Important : le numéro reste en absolute */

.repair-card-number {
    position: absolute;
    z-index: 2;

    opacity: 0;
    transform: translateX(35px) scale(0.72);
    filter: blur(7px);

    transition:
        opacity 0.65s ease,
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.65s ease;
}

.repair-card-number.is-visible {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
}

/* Icône */

.repair-card-icon {
    opacity: 0;

    transform:
        translateY(25px)
        rotate(-18deg)
        scale(0.62);

    filter: blur(5px);

    transition:
        opacity 0.65s ease,
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.65s ease,
        box-shadow 0.4s ease;
}

.repair-card-icon.is-visible {
    opacity: 1;

    transform:
        translateY(0)
        rotate(0)
        scale(1);

    filter: blur(0);

    box-shadow:
        0 14px 36px rgba(0, 0, 0, 0.38),
        0 0 24px rgba(210, 163, 99, 0.08);
}

/* Animation du dessin SVG */

.repair-card-icon svg {
    opacity: 0;
    transform: scale(0.45) rotate(-10deg);

    transition:
        opacity 0.65s ease 0.15s,
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.repair-card-icon.is-visible svg {
    opacity: 1;
    transform: scale(1) rotate(0);
}

/* Titre */

.repair-card h3 {
    opacity: 0;
    transform: translateY(25px);
    filter: blur(5px);

    transition:
        opacity 0.65s ease,
        transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.65s ease;
}

.repair-card h3.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Lignes */

.repair-card li {
    opacity: 0;
    transform: translateX(-28px);
    filter: blur(4px);

    transition:
        opacity 0.55s ease,
        transform 0.72s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.55s ease,
        color 0.25s ease;
}

.repair-card li.is-visible {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}

/* Losanges */

.repair-card li::before {
    opacity: 0;
    transform: rotate(45deg) scale(0);

    transition:
        opacity 0.4s ease 0.18s,
        transform 0.58s cubic-bezier(0.16, 1, 0.3, 1) 0.18s;
}

.repair-card li.is-visible::before {
    opacity: 1;
    transform: rotate(45deg) scale(1);
}

/* Reflet traversant la carte */

.card-shine {
    position: absolute;
    inset: -70% -60%;
    z-index: 1;

    background: linear-gradient(
        115deg,
        transparent 42%,
        rgba(255, 240, 212, 0.04) 47%,
        rgba(210, 163, 99, 0.18) 50%,
        rgba(255, 240, 212, 0.05) 53%,
        transparent 58%
    );

    transform: translateX(-65%) rotate(8deg);

    pointer-events: none;
}

.repair-card.is-visible .card-shine {
    animation: repair-card-shine 1.6s ease 0.25s forwards;
}

@keyframes repair-card-shine {
    from {
        transform: translateX(-65%) rotate(8deg);
    }

    to {
        transform: translateX(65%) rotate(8deg);
    }
}

/* Survol uniquement lorsque la carte est déjà affichée */

.repair-card.is-visible:hover {
    transform:
        perspective(1200px)
        translateY(-9px)
        rotateX(0)
        scale(1.012);

    border-color: rgba(210, 163, 99, 0.82);

    box-shadow:
        0 30px 75px rgba(0, 0, 0, 0.52),
        inset 0 0 45px rgba(210, 163, 99, 0.025);
}

.repair-card.is-visible:hover .repair-card-icon {
    transform: translateY(-3px) scale(1.05);
}

.repair-card li.is-visible:hover {
    color: var(--cream);
}

/* Mobile */

@media (max-width: 700px) {
   

    .repair-card.is-visible {
        transform: translateY(0) scale(1);
    }

    .repair-card.is-visible:hover {
        transform: translateY(-4px) scale(1);
    }
}

/* Accessibilité */

@media (prefers-reduced-motion: reduce) {
    .repair-card,
    .repair-card *,
    .repair-card::before,
    .repair-card::after {
        animation: none !important;
        transition: none !important;
    }

    .repair-card,
    .repair-card-number,
    .repair-card-icon,
    .repair-card-icon svg,
    .repair-card h3,
    .repair-card li {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}

/* =========================================================
   MENU PREMIUM — NAVIGATION SEGMENTÉE
   ========================================================= */

.repair-shortcuts {
    position: relative;
    z-index: 5;

    width: min(100%, 1020px);
    margin: 0 auto 54px;
    padding: 0;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    border: 1px solid rgba(210, 163, 99, 0.34);
    border-radius: 18px;

    background:
        radial-gradient(
            circle at 50% -30%,
            rgba(210, 163, 99, 0.14),
            transparent 45%
        ),
        linear-gradient(
            180deg,
            rgba(20, 17, 14, 0.98),
            rgba(8, 7, 6, 0.99)
        );

    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);

    overflow: hidden;

    opacity: 0;
    transform: translateY(24px);

    transition:
        opacity 0.75s ease,
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.repair-shortcuts.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   ÉLÉMENT DU MENU
   ========================================================= */

.repair-shortcut {
    position: relative;

    min-width: 0;
    min-height: 106px;
    padding: 20px 18px;

    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    gap: 14px;

    color: inherit;
    text-decoration: none;

    background: transparent;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.055);

    overflow: hidden;

    opacity: 0;
    transform: translateY(18px);

    transition:
        opacity 0.55s ease,
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.repair-shortcut:last-child {
    border-right: 0;
}

.repair-shortcuts.is-visible .repair-shortcut {
    opacity: 1;
    transform: translateY(0);
}

.repair-shortcuts.is-visible .repair-shortcut:nth-child(1) {
    transition-delay: 80ms;
}

.repair-shortcuts.is-visible .repair-shortcut:nth-child(2) {
    transition-delay: 150ms;
}

.repair-shortcuts.is-visible .repair-shortcut:nth-child(3) {
    transition-delay: 220ms;
}

.repair-shortcuts.is-visible .repair-shortcut:nth-child(4) {
    transition-delay: 290ms;
}

.repair-shortcuts.is-visible .repair-shortcut:nth-child(5) {
    transition-delay: 360ms;
}

/* Lumière interne */

.repair-shortcut::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 28% 50%,
            rgba(210, 163, 99, 0.18),
            transparent 55%
        ),
        linear-gradient(
            135deg,
            rgba(210, 163, 99, 0.08),
            transparent 58%
        );

    opacity: 0;

    transition: opacity 0.35s ease;

    pointer-events: none;
}

/* Trait actif inférieur */

.repair-shortcut::after {
    content: "";
    position: absolute;

    left: 24px;
    right: 24px;
    bottom: 0;

    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        var(--gold2),
        transparent
    );

    transform: scaleX(0);
    transform-origin: center;

    transition:
        transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.repair-shortcut:hover {
    background: rgba(210, 163, 99, 0.045);

    box-shadow:
        inset 0 0 35px rgba(210, 163, 99, 0.025);
}

.repair-shortcut:hover::before {
    opacity: 1;
}

.repair-shortcut:hover::after {
    transform: scaleX(1);
}

/* =========================================================
   ICÔNE
   ========================================================= */

.repair-shortcut-icon {
    position: relative;
    z-index: 2;

    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    margin: 0;

    color: var(--gold2);

    border: 1px solid rgba(210, 163, 99, 0.42);
    border-radius: 9px;

    background:
        radial-gradient(
            circle at 35% 25%,
            rgba(210, 163, 99, 0.14),
            transparent 60%
        ),
        linear-gradient(
            145deg,
            rgba(210, 163, 99, 0.08),
            rgba(0, 0, 0, 0.30)
        );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.035),
        0 10px 20px rgba(0, 0, 0, 0.22);

    transition:
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.repair-shortcut-icon svg {
    width: 21px;
    height: 21px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.repair-shortcut:hover .repair-shortcut-icon {
    transform:
        translateY(-3px)
        rotate(-3deg)
        scale(1.06);

    border-color: rgba(210, 163, 99, 0.82);

    background:
        radial-gradient(
            circle at 35% 25%,
            rgba(210, 163, 99, 0.24),
            transparent 60%
        ),
        linear-gradient(
            145deg,
            rgba(210, 163, 99, 0.14),
            rgba(0, 0, 0, 0.32)
        );

    box-shadow:
        0 0 24px rgba(210, 163, 99, 0.12),
        0 14px 26px rgba(0, 0, 0, 0.28);
}

/* =========================================================
   TEXTE
   ========================================================= */

.repair-shortcut-text {
    position: relative;
    z-index: 2;

    min-width: 0;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    text-align: left;
}

.repair-shortcut-text small {
    display: block;

    margin: 0 0 7px;

    color: rgba(210, 163, 99, 0.72);

    font-family: "Avenir Next", Avenir, sans-serif;
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.18em;
}

.repair-shortcut-text strong {
    display: block;

    color: rgba(242, 231, 212, 0.82);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.22;

    text-transform: uppercase;

    transition:
        color 0.3s ease,
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.repair-shortcut:hover .repair-shortcut-text strong {
    color: var(--gold2);
    transform: translateX(3px);
}

/* =========================================================
   ÉTAT ACTIF
   ========================================================= */

.repair-shortcut.is-active {
    background:
        radial-gradient(
            circle at 28% 50%,
            rgba(210, 163, 99, 0.14),
            transparent 58%
        ),
        linear-gradient(
            135deg,
            rgba(210, 163, 99, 0.07),
            rgba(255, 255, 255, 0.01)
        );
}

.repair-shortcut.is-active::before {
    opacity: 1;
}

.repair-shortcut.is-active::after {
    transform: scaleX(1);
}

.repair-shortcut.is-active .repair-shortcut-icon {
    border-color: rgba(210, 163, 99, 0.90);

    background:
        radial-gradient(
            circle at 35% 25%,
            rgba(210, 163, 99, 0.28),
            transparent 62%
        ),
        linear-gradient(
            145deg,
            rgba(210, 163, 99, 0.16),
            rgba(0, 0, 0, 0.34)
        );

    box-shadow:
        0 0 28px rgba(210, 163, 99, 0.14);
}

.repair-shortcut.is-active .repair-shortcut-text strong {
    color: var(--gold2);
}

/* =========================================================
   CARTE CIBLÉE
   ========================================================= */

.repair-card {
    scroll-margin-top: 34px;
}

.repair-card.is-targeted {
    border-color: var(--gold2);

    box-shadow:
        0 0 0 1px rgba(210, 163, 99, 0.22),
        0 0 42px rgba(210, 163, 99, 0.16),
        0 30px 70px rgba(0, 0, 0, 0.50);
}

/* =========================================================
   TABLETTE
   ========================================================= */

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

    .repair-shortcut {
        border-bottom: 1px solid rgba(255, 255, 255, 0.055);
    }

    .repair-shortcut:nth-child(2n) {
        border-right: 0;
    }

    .repair-shortcut:last-child {
        grid-column: 1 / -1;
        border-bottom: 0;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {
    .repair-shortcuts {
        display: flex;

        margin-left: -18px;
        margin-right: -18px;
        margin-bottom: 38px;

        padding: 8px 18px 12px;

        gap: 8px;

        border-left: 0;
        border-right: 0;
        border-radius: 0;

        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .repair-shortcuts::-webkit-scrollbar {
        display: none;
    }

    .repair-shortcut {
        flex: 0 0 235px;
        min-height: 88px;

        border: 1px solid rgba(210, 163, 99, 0.22);
        border-radius: 12px;

        scroll-snap-align: start;
    }

    .repair-shortcut-text strong {
        font-size: 11px;
    }
}

/* =========================================================
   ACCESSIBILITÉ
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .repair-shortcuts,
    .repair-shortcut,
    .repair-shortcut-icon,
    .repair-shortcut-text strong {
        animation: none !important;
        transition: none !important;
    }

    .repair-shortcuts,
    .repair-shortcut {
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (max-width: 980px) {
    .repair-shortcuts {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .repair-shortcut:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .repair-shortcuts {
        display: flex;
        gap: 8px;
        margin-left: -18px;
        margin-right: -18px;
        margin-bottom: 38px;
        padding: 8px 18px 12px;
        border-left: 0;
        border-right: 0;
        border-radius: 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .repair-shortcuts::-webkit-scrollbar {
        display: none;
    }

    .repair-shortcut {
        flex: 0 0 230px;
        min-height: 72px;
        scroll-snap-align: start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .repair-shortcuts,
    .repair-shortcut,
    .repair-shortcut-icon {
        animation: none !important;
        transition: none !important;
    }

    .repair-shortcuts,
    .repair-shortcut {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* =========================================================
   MISE EN AVANT D’UNE CARTE APRÈS CLIC
   ========================================================= */

.repair-grid.has-focused-card .repair-card {
    opacity: 0.28;
    filter: grayscale(0.35) brightness(0.58);
    transform: scale(0.985);

    transition:
        opacity 0.45s ease,
        filter 0.45s ease,
        transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.repair-grid.has-focused-card .repair-card.is-targeted {
    opacity: 1;
    filter: none;

    transform:
        perspective(1200px)
        translateY(-5px)
        scale(1.012);

    border-color: var(--gold2);

    box-shadow:
        0 0 0 1px rgba(210, 163, 99, 0.24),
        0 0 48px rgba(210, 163, 99, 0.19),
        0 32px 75px rgba(0, 0, 0, 0.55);
}

/* Le titre, l’icône et le numéro ressortent davantage */

.repair-grid.has-focused-card .repair-card.is-targeted h3 {
    color: #e1b474;
}

.repair-grid.has-focused-card .repair-card.is-targeted .repair-card-icon {
    border-color: rgba(210, 163, 99, 0.92);

    box-shadow:
        0 0 28px rgba(210, 163, 99, 0.17),
        0 16px 36px rgba(0, 0, 0, 0.38);
}

.repair-grid.has-focused-card .repair-card.is-targeted .repair-card-number {
    color: rgba(210, 163, 99, 0.24);
}

/* Sur mobile, on évite une réduction trop importante */

@media (max-width: 700px) {
    .repair-grid.has-focused-card .repair-card {
        opacity: 0.22;
        transform: scale(0.99);
    }

    .repair-grid.has-focused-card .repair-card.is-targeted {
        opacity: 1;
        transform: translateY(-3px) scale(1);
    }
}

/* ================= HERO SLIDESHOW ================= */

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #050404;
}

.hero-slide {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;

    opacity: 0;
    visibility: hidden;

    transform: scale(1.04);

    filter:
        contrast(1.08)
        saturate(0.78)
        brightness(0.72);

    transition:
        opacity 1.2s ease-in-out,
        visibility 1.2s ease-in-out,
        transform 6s ease;

    will-change: opacity, transform;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1.09);
}

/* Le masque reste au-dessus des photos */

.hero-mask {
    z-index: 1;
}

/* Le contenu reste au-dessus du masque */

.hero-text,
.hero-values {
    z-index: 2;
}

.hero .hero-text {
    transform: translateY(20px) !important;
}

.hero {
    min-height: 650px;
}

.hero .hero-text {
    min-height: 650px;
    padding-bottom: 180px;
    box-sizing: border-box;
    transform: none;
}
