/**
 * ============================================
 * PAGE LOCATION DE CAGES MMA - ISOLATED STYLES
 * ============================================
 *
 * Styles specifiques a location-de-cage.php (offre B2B).
 * Entierement scopes sous .page-location pour ne rien casser ailleurs.
 *
 * Pour supprimer cette page :
 *   1. Supprimer location-de-cage.php
 *   2. Supprimer ce fichier (css/pages/location-cage.css)
 *   3. Supprimer api/contact-location.php
 *
 * Code couleur :
 *   - Accent unique = rouge de la marque (#e50914) pour les 2 cages.
 *   - Le comparatif distingue Cage Pro (rouge) et Cage au Sol (gris neutre).
 * ============================================
 */

.page-location {
    --lc-red: #e50914;
    --lc-red-dark: #b00710;
    --lc-red-glow: rgba(229, 9, 20, 0.35);
    /* "Blue" repointe sur le rouge de la marque : les 2 cages restent dans
       l'identite rouge du site (plus de bleu). */
    --lc-blue: #e50914;
    --lc-blue-dark: #b00710;
    --lc-blue-glow: rgba(229, 9, 20, 0.35);
    --lc-line: rgba(255, 255, 255, 0.08);
    --lc-surface: rgba(255, 255, 255, 0.03);
}

/* ===========================================
   HERO OVERRIDES (scopes .page-location)
   Video a droite, texte a gauche, plein ecran
   =========================================== */
.page-location .hero {
    height: 100vh !important;
    max-height: 100vh !important;
    min-height: unset !important;
    overflow: hidden;
}

.page-location .hero__slide {
    height: 100% !important;
}

.page-location .hero__overlay--bottom {
    display: none !important;
}

.page-location .hero__video-container {
    position: absolute !important;
    top: 0;
    right: 0;
    left: auto !important;
    width: auto !important;
    height: 100% !important;
    aspect-ratio: 16 / 9;
}

.page-location .hero__video,
.page-location .hero__poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-location .hero__content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    right: auto;
    max-width: 54%;
    padding-left: 5%;
    z-index: 10;
}

.page-location .hero__eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    background: var(--lc-red);
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.1rem;
}

.page-location .hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 0.5rem;
}

/* Hero mobile : video en haut, texte dessous */
@media (max-width: 768px) {
    .page-location .hero {
        height: auto !important;
        max-height: none !important;
        display: block !important;
        overflow: visible !important;
    }

    .page-location .hero__slides {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-location .hero__slide {
        position: relative !important;
        height: auto !important;
        display: block !important;
    }

    .page-location .hero__video-container {
        position: relative !important;
        top: auto !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16 / 9;
        transform: none !important;
    }

    .page-location .hero .hero__overlay,
    .page-location .hero .hero__overlay--left,
    .page-location .hero .hero__overlay--vignette {
        display: none !important;
    }

    .page-location .hero__content {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 1.75rem 1.5rem !important;
        background: #0a0a0a;
    }

    .page-location .hero__content::before {
        display: none !important;
        content: none !important;
    }

    .page-location .hero__title {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        font-size: 2rem;
    }

    .page-location .hero__actions {
        justify-content: flex-start;
    }
}

/* ===========================================
   BOUTONS
   =========================================== */
.lc-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    white-space: nowrap;
}

.lc-btn svg {
    width: 1.1rem;
    height: 1.1rem;
    transition: transform 0.25s ease;
}

.lc-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--lc-red) 0%, var(--lc-red-dark) 100%);
    box-shadow: 0 8px 25px var(--lc-red-glow);
}

.lc-btn--primary:hover {
    background: linear-gradient(135deg, #ff1a1a 0%, var(--lc-red) 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px var(--lc-red-glow);
}

.lc-btn--primary:hover svg {
    transform: translateX(4px);
}

.lc-btn--ghost {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(4px);
}

.lc-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    transform: translateY(-2px);
}

.lc-btn--block {
    width: 100%;
    justify-content: center;
}

/* ===========================================
   BANDEAU DE STATS (gros chiffres)
   =========================================== */
.lc-stats {
    position: relative;
    background: linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 100%);
    padding: 2.75rem 0;
    border-top: 1px solid rgba(229, 9, 20, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.lc-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(229, 9, 20, 0.4) 50%, transparent 100%);
}

.lc-stats__container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.lc-stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    text-align: center;
    flex: 1;
    max-width: 260px;
}

.lc-stats__value {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    line-height: 1;
    color: #fff;
    letter-spacing: 0.02em;
}

.lc-stats__value em {
    font-style: normal;
    color: var(--lc-red);
}

.lc-stats__label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.lc-stats__divider {
    width: 1px;
    align-self: stretch;
    min-height: 3.5rem;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.12) 50%, transparent 100%);
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .lc-stats__container {
        flex-wrap: wrap;
        gap: 1.5rem 1rem;
    }

    .lc-stats__item {
        flex: 1 1 40%;
        max-width: none;
    }

    .lc-stats__divider {
        display: none;
    }
}

/* ===========================================
   SECTION TITRES (generique)
   =========================================== */
.lc-section {
    position: relative;
    padding: 6rem 0;
}

.lc-section__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.lc-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3.5rem;
}

.lc-head__eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lc-red);
    background: rgba(229, 9, 20, 0.1);
    border: 1px solid rgba(229, 9, 20, 0.22);
    padding: 0.45rem 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.1rem;
}

.lc-head__title {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 5vw, 3.4rem);
    line-height: 1.05;
    color: #fff;
    letter-spacing: 0.02em;
}

.lc-head__title em {
    font-style: normal;
    color: var(--lc-red);
}

.lc-head__intro {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.62);
    margin-top: 1rem;
}

/* ===========================================
   INTRO - Une equipe, deux formats + cle en main
   =========================================== */
.lc-intro {
    background: linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 100%);
    padding: 5.5rem 0 5rem;
}

.lc-keys {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.lc-key {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 2rem 1.5rem;
    background: var(--lc-surface);
    border: 1px solid var(--lc-line);
    border-radius: var(--radius-xl);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.lc-key:hover {
    transform: translateY(-4px);
    border-color: rgba(229, 9, 20, 0.3);
}

.lc-key__icon {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.16) 0%, rgba(229, 9, 20, 0.05) 100%);
    border: 1px solid rgba(229, 9, 20, 0.25);
}

.lc-key__icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--lc-red);
}

.lc-key__title {
    font-family: var(--font-body);
    font-size: 1.02rem;
    font-weight: 600;
    color: #fff;
}

.lc-key__text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .lc-keys {
        grid-template-columns: 1fr;
        gap: 0.9rem;
        margin-top: 2rem;
    }

    .lc-key {
        flex-direction: row;
        text-align: left;
        padding: 1.25rem;
        align-items: center;
    }

    .lc-key__icon {
        flex-shrink: 0;
    }
}

/* ===========================================
   LES 2 CAGES (blocs projection)
   =========================================== */
.lc-cages {
    background: linear-gradient(180deg, #0d0d0d 0%, #0a0a0a 100%);
    padding: 5.5rem 0 6rem;
}

.lc-cage {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.lc-cage + .lc-cage {
    margin-top: 5.5rem;
    padding-top: 5.5rem;
    border-top: 1px solid var(--lc-line);
}

/* Cage au Sol : media a droite */
.lc-cage--sol .lc-cage__media {
    order: 2;
}

/* min-width:0 pour que les colonnes de la grille puissent retrecir
   (sinon la rangee de vignettes force la largeur et deborde sur mobile) */
.lc-cage__media,
.lc-cage__info {
    min-width: 0;
}

/* --- Galerie media --- */
.lc-cage__media {
    position: relative;
}

.lc-cage__stage {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.lc-cage__stage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lc-cage__stage-glow {
    position: absolute;
    inset: 0;
    z-index: -1;
    filter: blur(45px);
    transform: scale(0.9);
    background: radial-gradient(ellipse at center, var(--lc-red-glow) 0%, transparent 65%);
}

.lc-cage--sol .lc-cage__stage-glow {
    background: radial-gradient(ellipse at center, var(--lc-blue-glow) 0%, transparent 65%);
}

.lc-cage__thumbs {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.75rem;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
    min-width: 0;
    max-width: 100%;
}

.lc-cage__thumbs::-webkit-scrollbar {
    display: none;
}

.lc-thumb {
    position: relative;
    flex: 0 0 auto;
    width: 88px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    background: #111;
    cursor: pointer;
    padding: 0;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.lc-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lc-thumb:hover {
    transform: translateY(-2px);
}

.lc-thumb.is-active {
    border-color: var(--lc-red);
}

.lc-cage--sol .lc-thumb.is-active {
    border-color: var(--lc-blue);
}

/* Vignette video : badge play */
.lc-thumb--video::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.lc-thumb__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 50%;
    background: var(--lc-red);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.lc-cage--sol .lc-thumb__play {
    background: var(--lc-blue);
}

.lc-thumb__play svg {
    width: 0.9rem;
    height: 0.9rem;
    color: #fff;
    margin-left: 2px;
}

/* --- Infos cage --- */
.lc-cage__corner {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.lc-cage--pro .lc-cage__corner {
    color: #fff;
    background: rgba(229, 9, 20, 0.15);
    border: 1px solid rgba(229, 9, 20, 0.5);
}

.lc-cage--sol .lc-cage__corner {
    color: #fff;
    background: rgba(229, 9, 20, 0.15);
    border: 1px solid rgba(229, 9, 20, 0.5);
}

.lc-cage__corner-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.lc-cage--pro .lc-cage__corner-dot {
    background: var(--lc-red);
}

.lc-cage--sol .lc-cage__corner-dot {
    background: var(--lc-blue);
}

.lc-cage__name {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.9rem);
    line-height: 1;
    color: #fff;
    letter-spacing: 0.02em;
}

.lc-cage__tagline {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.75rem;
}

/* Specs cle-valeur */
.lc-specs {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.lc-specs li {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--lc-line);
}

.lc-specs li:nth-child(odd) {
    padding-right: 1.25rem;
}

.lc-specs li:nth-child(even) {
    padding-left: 1.25rem;
    border-left: 1px solid var(--lc-line);
}

.lc-specs__key {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.lc-specs__val {
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 600;
    color: #fff;
}

/* Arguments checklist */
.lc-args {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.lc-args li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-family: var(--font-body);
    font-size: 0.96rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.82);
}

.lc-args__check {
    flex-shrink: 0;
    width: 1.35rem;
    height: 1.35rem;
    margin-top: 0.1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.14);
}

.lc-args__check svg {
    width: 0.85rem;
    height: 0.85rem;
    color: #22c55e;
}

/* Encadre usage ideal */
.lc-usage {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 1.5rem;
    padding: 0.9rem 1.15rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.lc-cage--pro .lc-usage {
    background: rgba(229, 9, 20, 0.08);
    border-left: 3px solid var(--lc-red);
}

.lc-cage--sol .lc-usage {
    background: rgba(229, 9, 20, 0.08);
    border-left: 3px solid var(--lc-blue);
}

.lc-usage svg {
    width: 1.2rem;
    height: 1.2rem;
    flex-shrink: 0;
}

.lc-cage--pro .lc-usage svg {
    color: var(--lc-red);
}

.lc-cage--sol .lc-usage svg {
    color: var(--lc-blue);
}

.lc-usage strong {
    color: #fff;
    font-weight: 600;
}

/* Avertissement (cage au sol) */
.lc-warn {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-top: 1rem;
    padding: 0.9rem 1.15rem;
    background: rgba(255, 176, 32, 0.09);
    border: 1px solid rgba(255, 176, 32, 0.3);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.lc-warn svg {
    width: 1.2rem;
    height: 1.2rem;
    flex-shrink: 0;
    color: #ffb020;
    margin-top: 0.05rem;
}

/* Prix + CTA cage */
.lc-cage__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--lc-line);
}

.lc-price {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.lc-price__amount {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 2.9rem);
    color: #fff;
    letter-spacing: 0.01em;
}

.lc-cage--pro .lc-price__amount span {
    color: var(--lc-red);
}

.lc-cage--sol .lc-price__amount span {
    color: var(--lc-blue);
}

.lc-price__unit {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.4rem;
}

.lc-btn--cage.lc-cage--sol,
.lc-cage--sol .lc-btn--cage {
    background: linear-gradient(135deg, var(--lc-blue) 0%, var(--lc-blue-dark) 100%);
    box-shadow: 0 8px 25px var(--lc-blue-glow);
}

.lc-cage--sol .lc-btn--cage:hover {
    background: linear-gradient(135deg, #ff1a1a 0%, var(--lc-red) 100%);
    box-shadow: 0 12px 32px var(--lc-blue-glow);
}

@media (max-width: 980px) {
    .lc-cage,
    .lc-cage--sol {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .lc-cage--sol .lc-cage__media {
        order: 0;
    }
}

@media (max-width: 768px) {
    .lc-specs {
        grid-template-columns: 1fr;
    }

    .lc-specs li:nth-child(odd),
    .lc-specs li:nth-child(even) {
        padding-left: 0;
        padding-right: 0;
        border-left: none;
    }

    .lc-cage__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .lc-cage__footer .lc-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===========================================
   COMPARATIF - Tale of the Tape
   =========================================== */
.lc-compare {
    background: linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 100%);
    padding: 6rem 0;
}

.lc-tote {
    max-width: 980px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.7) 0%, rgba(10, 10, 10, 0.85) 100%);
    border: 1px solid var(--lc-line);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

/* En-tete : noms des 2 cages */
.lc-tote__head {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
}

.lc-tote__team {
    padding: 1.5rem 1rem;
    text-align: center;
}

.lc-tote__team--pro {
    background: linear-gradient(180deg, rgba(229, 9, 20, 0.18) 0%, rgba(229, 9, 20, 0.04) 100%);
    border-bottom: 2px solid var(--lc-red);
}

.lc-tote__team--sol {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}

.lc-tote__corner {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.lc-tote__team--pro .lc-tote__corner {
    color: var(--lc-red);
}

.lc-tote__team--sol .lc-tote__corner {
    color: rgba(255, 255, 255, 0.6);
}

.lc-tote__team-name {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: #fff;
    letter-spacing: 0.02em;
    margin-top: 0.25rem;
}

.lc-tote__vs {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.25rem;
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.25);
    border-bottom: 2px solid var(--lc-line);
}

/* Lignes de criteres */
.lc-tote__row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    border-bottom: 1px solid var(--lc-line);
}

.lc-tote__row:last-child {
    border-bottom: none;
}

.lc-tote__row:nth-child(even) {
    background: rgba(255, 255, 255, 0.015);
}

.lc-tote__val {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem 1.1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}

.lc-tote__val--pro {
    background: rgba(229, 9, 20, 0.05);
}

.lc-tote__val--sol {
    background: rgba(255, 255, 255, 0.02);
}

.lc-tote__val--muted {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

.lc-tote__crit {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 148px;
    padding: 1rem 1rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.25);
}

.lc-tote__crit-label {
    display: none;
}

/* Ligne prix mise en avant */
.lc-tote__row--price .lc-tote__val {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    letter-spacing: 0.02em;
    padding: 1.25rem 1rem;
}

.lc-tote__row--price {
    border-top: 1px solid var(--lc-line);
}

/* Mobile : chaque critere devient une carte */
@media (max-width: 720px) {
    .lc-tote__head {
        position: sticky;
        top: 0;
        z-index: 2;
    }

    .lc-tote__vs {
        min-width: 54px;
        padding: 0 0.5rem;
    }

    .lc-tote__crit {
        grid-column: 1 / -1;
        min-width: 0;
        justify-content: flex-start;
        padding: 0.6rem 1rem;
        background: rgba(0, 0, 0, 0.4);
        border-top: 1px solid var(--lc-line);
    }

    .lc-tote__row {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "crit crit"
            "pro  sol";
        gap: 0;
    }

    .lc-tote__crit {
        grid-area: crit;
    }

    .lc-tote__val--pro {
        grid-area: pro;
        border-right: 1px solid var(--lc-line);
    }

    .lc-tote__val--sol {
        grid-area: sol;
    }

    .lc-tote__val {
        flex-direction: column;
        gap: 0.2rem;
        padding: 0.85rem 0.75rem;
        font-size: 0.9rem;
    }

    /* petite etiquette Pro / Sol au-dessus de la valeur sur mobile */
    .lc-tote__crit-label {
        display: block;
        font-size: 0.6rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        margin-bottom: 0.15rem;
    }

    .lc-tote__val--pro .lc-tote__crit-label {
        color: var(--lc-red);
    }

    .lc-tote__val--sol .lc-tote__crit-label {
        color: rgba(255, 255, 255, 0.6);
    }
}

/* ===========================================
   FICHE TECHNIQUE (Cage Pro)
   =========================================== */
.lc-tech {
    background: linear-gradient(180deg, #0d0d0d 0%, #0a0a0a 100%);
    padding: 6rem 0;
    overflow: hidden;
}

.lc-tech__layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
    align-items: start;
}

.lc-tech__visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3 / 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 100px;
}

.lc-tech__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lc-tech__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}

.lc-techcard {
    padding: 1.15rem 1.25rem;
    background: var(--lc-surface);
    border: 1px solid var(--lc-line);
    border-radius: var(--radius-md);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.lc-techcard:hover {
    border-color: rgba(229, 9, 20, 0.3);
    transform: translateY(-3px);
}

.lc-techcard__key {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lc-red);
    margin-bottom: 0.5rem;
}

.lc-techcard__key svg {
    width: 1rem;
    height: 1rem;
}

.lc-techcard__val {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.lc-tech__note {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-top: 0.4rem;
    padding: 1rem 1.25rem;
    background: rgba(229, 9, 20, 0.07);
    border-left: 3px solid var(--lc-red);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.75);
}

.lc-tech__note svg {
    width: 1.2rem;
    height: 1.2rem;
    flex-shrink: 0;
    color: var(--lc-red);
    margin-top: 0.05rem;
}

@media (max-width: 980px) {
    .lc-tech__layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .lc-tech__visual {
        position: relative;
        top: 0;
        max-height: 340px;
    }
}

@media (max-width: 560px) {
    .lc-tech__grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================================
   LOGISTIQUE - 3 etapes + zone + conditions
   =========================================== */
.lc-logi {
    background: linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 100%);
    padding: 6rem 0;
}

.lc-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    counter-reset: step;
}

.lc-step {
    position: relative;
    padding: 2rem 1.5rem;
    background: var(--lc-surface);
    border: 1px solid var(--lc-line);
    border-radius: var(--radius-xl);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.lc-step:hover {
    transform: translateY(-4px);
    border-color: rgba(229, 9, 20, 0.3);
}

.lc-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--lc-red);
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.7rem;
    line-height: 1;
    box-shadow: 0 6px 18px var(--lc-red-glow);
    margin-bottom: 1.1rem;
}

.lc-step__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 0.02em;
    margin-bottom: 0.6rem;
}

.lc-step__text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* Connecteur entre etapes (desktop) */
.lc-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 3.25rem;
    right: -0.7rem;
    width: 1.4rem;
    height: 2px;
    background: rgba(229, 9, 20, 0.4);
    z-index: 1;
}

.lc-logi__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 3rem;
}

.lc-infocard {
    padding: 2rem;
    background: var(--lc-surface);
    border: 1px solid var(--lc-line);
    border-radius: var(--radius-xl);
}

.lc-infocard__title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: #fff;
    letter-spacing: 0.02em;
    margin-bottom: 1.1rem;
}

.lc-infocard__title svg {
    width: 1.4rem;
    height: 1.4rem;
    color: var(--lc-red);
}

.lc-infocard ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.lc-infocard li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
}

.lc-infocard li svg {
    flex-shrink: 0;
    width: 1.1rem;
    height: 1.1rem;
    margin-top: 0.15rem;
    color: var(--lc-red);
}

.lc-infocard strong {
    color: #fff;
    font-weight: 600;
}

@media (max-width: 900px) {
    .lc-steps {
        grid-template-columns: 1fr;
    }

    .lc-step:not(:last-child)::after {
        display: none;
    }

    .lc-logi__cols {
        grid-template-columns: 1fr;
    }
}

/* ===========================================
   CONTACT / CTA FINAL
   =========================================== */
.lc-contact {
    position: relative;
    background: linear-gradient(180deg, #0d0d0d 0%, #050505 100%);
    padding: 6rem 0;
    overflow: hidden;
}

.lc-contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 10%, rgba(229, 9, 20, 0.08) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 90%, rgba(229, 9, 20, 0.05) 0%, transparent 45%);
    pointer-events: none;
}

.lc-contact__inner {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.lc-contact__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 1.05;
    color: #fff;
    letter-spacing: 0.02em;
}

.lc-contact__title em {
    font-style: normal;
    color: var(--lc-red);
}

.lc-contact__text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

.lc-contact__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.75rem;
}

.lc-contact__card {
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.85) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid var(--lc-line);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.lc-contact__row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--lc-line);
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

.lc-contact__row:last-child {
    border-bottom: none;
}

a.lc-contact__row:hover {
    color: #fff;
}

.lc-contact__ico {
    flex-shrink: 0;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 9, 20, 0.12);
    border: 1px solid rgba(229, 9, 20, 0.25);
}

.lc-contact__ico svg {
    width: 1.15rem;
    height: 1.15rem;
    color: var(--lc-red);
}

.lc-contact__row-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.lc-contact__row-value {
    font-size: 0.98rem;
    font-weight: 600;
}

.lc-contact__legal {
    margin-top: 1.25rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 900px) {
    .lc-contact__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .lc-contact__actions .lc-btn {
        flex: 1 1 auto;
        justify-content: center;
    }
}

/* ===========================================
   LIGHTBOX VIDEO (partagee entre les 2 cages)
   =========================================== */
.lc-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(6px);
}

.lc-lightbox.is-open {
    display: flex;
}

.lc-lightbox__inner {
    position: relative;
    width: min(100%, 1000px);
    max-height: 90vh;
}

.lc-lightbox__inner--portrait {
    width: auto;
    height: 90vh;
    max-width: 100%;
}

.lc-lightbox video {
    width: 100%;
    height: 100%;
    max-height: 90vh;
    border-radius: var(--radius-md);
    background: #000;
    display: block;
}

.lc-lightbox__close {
    position: absolute;
    top: -3rem;
    right: 0;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.lc-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lc-lightbox__close svg {
    width: 1.4rem;
    height: 1.4rem;
    color: #fff;
}

@media (max-width: 768px) {
    .lc-lightbox__close {
        top: -3rem;
    }
}

/* ===========================================
   CONTACT - coordonnees + formulaire de devis
   =========================================== */
.lc-contact__details {
    margin-top: 1.75rem;
}

.lc-form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.lc-form[hidden],
.lc-form__success[hidden] {
    display: none;
}

.lc-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}

.lc-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.lc-form__field label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.lc-form__field input,
.lc-form__field textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--lc-line);
    border-radius: var(--radius-md);
    padding: 0.8rem 1rem;
    transition: border-color 0.2s ease, background 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.lc-form__field textarea {
    resize: vertical;
    min-height: 110px;
}

.lc-form__field input::placeholder,
.lc-form__field textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.lc-form__field input:focus,
.lc-form__field textarea:focus {
    outline: none;
    border-color: var(--lc-red);
    background: rgba(255, 255, 255, 0.06);
}

.lc-form .lc-btn {
    margin-top: 0.35rem;
}

.lc-form__success {
    text-align: center;
    padding: 1.5rem 0.5rem;
}

.lc-form__success-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.14);
    margin-bottom: 1rem;
}

.lc-form__success-ico svg {
    width: 1.6rem;
    height: 1.6rem;
    color: #22c55e;
}

.lc-form__success-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: #fff;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
}

.lc-form__success-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 560px) {
    .lc-form__row {
        grid-template-columns: 1fr;
    }
}
