/**
 * LD Solutions - Section Services
 * Solutions & Expertises avec layout moderne
 *
 * @package ldsolutions
 * @version 3.1.0
 */

/* ============================================================
   VARIABLES
   ============================================================ */

.lds-services {
    --services-blue: var(--lds-blue, #125AF8);
    --services-navy: #0a1628;
    --services-text: var(--lds-black, #151E28);
    --services-text-muted: rgba(21, 30, 40, 0.65);
    --services-light-bg: #f4f5f7;
    --services-ease: cubic-bezier(0.23, 1, 0.32, 1);
}

/* ============================================================
   SECTION
   ============================================================ */

.lds-services {
    position: relative;
    background: var(--lds-white, #ffffff);
    padding: 80px 2rem;
    overflow: visible;
}

.lds-services__container {
    max-width: 1400px;
    margin: 0 auto;
    overflow: visible;
}

/* ============================================================
   HEADER
   ============================================================ */

.lds-services__header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.lds-services__title {
    font-family: 'Chillax', Arial, sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--services-text);
    margin: 0 0 1rem;
    color: var(--lds-navy, #021B50);
}

.lds-services__subtitle {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--services-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   GRILLE
   ============================================================ */

.lds-services__grid {
    display: flex;
    flex-direction: column;
    gap: 36px;
    overflow: visible;
}

.lds-services__row {
    display: flex;
    gap: 36px;
    overflow: visible;
}

.lds-services__row--duo {
    flex-direction: row;
}

/* Ratio 55/45 pour la première ligne */
.lds-services__row--duo .lds-services__card:first-child {
    flex: 1.22;
    min-width: 0;
}

.lds-services__row--duo .lds-services__card:last-child {
    flex: 1;
    min-width: 0;
}

/* Hauteur uniforme pour toutes les cartes */
.lds-services__row--duo .lds-services__card {
    min-height: 360px;
    display: flex;
    flex-direction: column;
}

.lds-services__row--duo .lds-services__card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lds-services__row--full {
    flex-direction: column;
    overflow: visible;
}

/* ============================================================
   WRAPPER DARK - Juste pour grouper les rows
   ============================================================ */

.lds-services__dark-wrapper {
    display: flex;
    flex-direction: column;
    gap: 36px;
    overflow: visible;
}

/* ============================================================
   CARTES - BASE
   ============================================================ */

.lds-services__card {
    position: relative;
    border-radius: 12px;
    overflow: visible;
    transition: transform 0.4s var(--services-ease), box-shadow 0.4s var(--services-ease), opacity 0.6s ease;
    opacity: 0;
    transform: translateY(40px);
}

.lds-services__card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.lds-services__card:hover {
    transform: translateY(-4px);
}

.lds-services__card.is-visible:hover {
    transform: translateY(-4px);
}

.lds-services__card-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
    overflow: hidden;
}

/* ============================================================
   CARTES - DARK (Gradient navy comme le formulaire contact)
   ============================================================ */

.lds-services__card--dark {
    background: linear-gradient(135deg, var(--lds-navy, #021B50) 0%, var(--lds-navy-light, #0A2A6E) 50%, #051D52 100%);
    box-shadow:
        0 4px 20px rgba(10, 22, 40, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
    border: 1.5px solid transparent;
}

/* Bordure dégradée lumineuse */
.lds-services__card--dark::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(100, 170, 255, 0.2), rgba(18, 90, 248, 0.4), rgba(100, 170, 255, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 3;
}

/* Accent coloré - trait vertical lumineux */
.lds-services__card--dark::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 4px;
    height: 60px;
    background: linear-gradient(180deg, var(--lds-white, #ffffff) 0%, var(--lds-white, #ffffff) 100%);
    border-radius: 0 4px 4px 0;
    box-shadow: 0 0 10px rgba(18, 90, 248, 0.5);
    z-index: 4;
}



.lds-services__card--dark .lds-services__card-content {
    position: relative;
    z-index: 2;
}

.lds-services__card--dark:hover {
    box-shadow:
        0 12px 40px rgba(10, 22, 40, 0.4),
        0 0 30px rgba(18, 90, 248, 0.15);
}

/* ============================================================
   ICÔNE + CERCLE DE TEXTE TOURNANT DANS LES CARTES
   ============================================================ */

.lds-services__card-icon {
    position: absolute;
    bottom: 18px;
    right: 10px;
    width: 140px;
    height: 140px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lds-services__card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(3);
    opacity: 0.35;
}

/* Icône Infrastructure plus petite et en blanc */
.lds-services__card--dark .lds-services__card-icon img {
    width: 75%;
    height: 75%;
    filter: grayscale(100%) brightness(10);
    opacity: 0.3;
}

/* Version light */
.lds-services__card-icon--light img {
    filter: grayscale(100%) brightness(0.5);
    opacity: 0.25;
    width: 115%;
    height: 115%;
}

.lds-services__card-circle {
    position: absolute;
    bottom: -62px;
    right: -62px;
    width: 285px;
    height: 285px;
    z-index: 3;
}

.lds-services__card-circle svg {
    width: 100%;
    height: 100%;
}

.lds-services__card-circle text {
    font-family: 'Chillax', Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    fill: rgba(255, 255, 255, 0.4);
}

/* Version light pour carte Audit */
.lds-services__card-circle--light text {
    fill: rgba(21, 30, 40, 0.15);
}


.lds-services__card--dark .lds-services__card-title {
    color: var(--lds-white, #ffffff);
    font-family: 'Chillax', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    color: var(--lds-white, #ffffff);
    display: flex;
    align-items: center;
    gap: 12px;
}

.lds-services__card-icon-title {
    flex-shrink: 0;
}

.lds-services__card--dark .lds-services__card-icon-title {
    stroke: var(--lds-white, #ffffff);
}

.lds-services__card--dark .lds-services__card-text {
    color: rgba(235, 235, 235, 0.75);
    font-family: Arial, sans-serif;
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   CARTES - LIGHT (Gris teinté + bordure dégradée)
   ============================================================ */

.lds-services__card--light {
    position: relative;
    background: linear-gradient(145deg, var(--lds-white, #ffffff) 0%, #F8FAFF 50%, var(--lds-white, #ffffff) 100%);
    border-radius: 12px;
    border: 1.5px solid transparent;
    background-clip: padding-box;
    box-shadow:
        0 4px 20px rgba(2, 27, 80, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
}

/* Bordure dégradée */
.lds-services__card--light::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(2, 27, 80, 0.15), rgba(18, 90, 248, 0.3), rgba(2, 27, 80, 0.15));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

/* Accent coloré - trait vertical */
.lds-services__card--light::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 4px;
    height: 60px;
    background: linear-gradient(180deg, var(--lds-blue, #125AF8) 0%, var(--lds-navy, #021B50) 100%);
    border-radius: 0 4px 4px 0;
    z-index: 2;
}


/* Bordure simple grise */

.lds-services__card--light:hover {
    border-color: rgba(18, 90, 248, 0.4);
    box-shadow:
        0 8px 32px rgba(2, 27, 80, 0.12),
        0 0 0 1px rgba(18, 90, 248, 0.1);
}

.lds-services__card--light .lds-services__card-title {
    font-family: 'Chillax', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    /* Dégradé bleu comme les autres titres */
    color: var(--lds-navy, #021B50);
    display: flex;
    align-items: center;
    gap: 12px;
}

.lds-services__card--light .lds-services__card-icon-title {
    stroke: var(--lds-navy, #021B50);
}

.lds-services__card--light .lds-services__card-text {
    color: var(--services-text-muted);
    font-family: Arial, sans-serif;
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   TAGS DES SERVICES
   ============================================================ */

.lds-services__card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.lds-services__card-tag {
    display: inline-block;
    padding: 6px 14px;
    font-family: Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
    white-space: nowrap;
}

/* Tags sur cartes dark */
.lds-services__card--dark .lds-services__card-tag {
    color: rgba(255, 255, 255, 0.95);
    background: linear-gradient(135deg, rgba(18, 90, 248, 0.2) 0%, rgba(100, 170, 255, 0.1) 100%);
    border: 1px solid rgba(100, 170, 255, 0.3);
    transition: all 0.3s ease;
}

.lds-services__card--dark .lds-services__card-tag:hover {
    background: linear-gradient(135deg, rgba(18, 90, 248, 0.3) 0%, rgba(100, 170, 255, 0.2) 100%);
    border-color: rgba(100, 170, 255, 0.5);
    transform: translateY(-2px);
}

/* Tags sur cartes light */
.lds-services__card--light .lds-services__card-tag {
    color: var(--lds-navy, #021B50);
    background: linear-gradient(135deg, rgba(2, 27, 80, 0.06) 0%, rgba(18, 90, 248, 0.08) 100%);
    border: 1px solid rgba(18, 90, 248, 0.2);
    transition: all 0.3s ease;
}

.lds-services__card--light .lds-services__card-tag:hover {
    background: linear-gradient(135deg, rgba(18, 90, 248, 0.12) 0%, rgba(18, 90, 248, 0.18) 100%);
    border-color: rgba(18, 90, 248, 0.4);
    transform: translateY(-2px);
}

/* ============================================================
   BOUTON CTA DES CARTES - Tous identiques (bleu vif uni)
   ============================================================ */

.lds-services__card-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 56px;
    padding: 0 28px;
    border-radius: 16px;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    background: linear-gradient(135deg, #0a3fd0 0%, #1a6aff 100%);
    text-decoration: none;
    border: 2.5px solid rgba(100, 170, 255, 0.5);
    box-shadow:
        0 4px 12px rgba(18, 90, 248, 0.25),
        0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.35s ease;
    margin-top: auto;
    width: fit-content;
    z-index: 1;
}

.lds-services__card-cta::before {
    display: none;
}

.lds-services__card-cta:hover,
.lds-services__card-cta:focus {
    color: rgba(255, 255, 255, 0.95);
    background: linear-gradient(135deg, #0d45da 0%, #2575ff 100%);
    border-color: rgba(130, 190, 255, 0.6);
    gap: 14px;
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(18, 90, 248, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.15);
}

.lds-services__card-cta:hover::before {
    display: none;
}

.lds-services__card-cta svg {
    width: 18px;
    height: 18px;
    stroke: var(--lds-white, #ffffff);
    transition: transform 0.3s ease;
}

.lds-services__card-cta:hover svg {
    transform: translateX(4px);
}

/* CTA sur cartes light - sans effet glow */
.lds-services__card--light .lds-services__card-cta {
    box-shadow:
        0 4px 12px rgba(18, 90, 248, 0.25),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

.lds-services__card--light .lds-services__card-cta::before {
    display: none;
}

.lds-services__card--light .lds-services__card-cta:hover,
.lds-services__card--light .lds-services__card-cta:focus {
    box-shadow:
        0 6px 20px rgba(18, 90, 248, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Actions wrapper (CTA + Lien En savoir plus) */
.lds-services__card-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: auto;
}

.lds-services__card-more {
    font-family: Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* Lien sur carte dark */
.lds-services__card--dark .lds-services__card-more {
    color: rgba(255, 255, 255, 0.7);
}

.lds-services__card--dark .lds-services__card-more:hover {
    color: var(--lds-white, #ffffff);
    text-decoration: underline;
}

/* Lien sur carte light */
.lds-services__card--light .lds-services__card-more {
    color: var(--services-blue);
}

.lds-services__card--light .lds-services__card-more:hover {
    text-decoration: underline;
}

/* ============================================================
   CARTES AVEC MOCKUP
   ============================================================ */

.lds-services__card--with-mockup {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 360px;
    overflow: visible;
}

.lds-services__card--with-mockup .lds-services__card-content {
    padding: 40px;
}

/* Container mockup - position relative pour le positionnement absolu de l'image */
.lds-services__card-mockup {
    position: relative;
    height: 100%;
    z-index: 5;
}

/* ============================================================
   MOCKUP TABLETTE/DASHBOARD (Card Outils Numériques)
   Position absolute, débordement haut/bas
   ============================================================ */

.lds-services__card-mockup--tablet {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 42%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.lds-services__card-mockup--tablet img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: none;
    margin-top: -90px;
    margin-bottom: -50px;
    margin-right: -30px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
    transition: transform 0.5s var(--services-ease);
}


/* ============================================================
   MOCKUP COMMUNICATION (Card Communication Digitale)
   ============================================================ */

.lds-services__card-mockup--communication {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lds-services__card-mockup--communication img {
    width: 100%;
    height: auto;
    max-height: 340px;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.25));
}


/* ============================================================
   MOCKUP MULTI-DEVICES (Card Communication Digitale)
   Position absolute, débordement gauche/bas
   ============================================================ */

.lds-services__card--reversed {
    grid-template-columns: 1fr 1fr;
}

.lds-services__card--reversed .lds-services__card-content {
    grid-column: 2;
}

.lds-services__card-mockup--devices {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 55%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.lds-services__card-mockup--devices img {
    width: auto;
    max-width: 100%;
    max-height: 400px;
    height: auto;
    margin-left: 20px;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.18));
}


/* ============================================================
   CTA BANNER
   ============================================================ */

.lds-services__cta-banner {
    position: relative;
    background-color: var(--lds-navy, #021B50);
    background-image: url('../../img/cta.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    padding: 56px 40px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10, 22, 40, 0.25);
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Overlay navy pour compenser le noir de l'image */
.lds-services__cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(2, 27, 80, 0.75);
    z-index: 1;
    pointer-events: none;
    border-radius: 12px;
}

.lds-services__cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.lds-services__cta-title {
    font-family: 'Chillax', Arial, sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--lds-white, #ffffff);
    margin: 0;
    color: var(--lds-white, #ffffff);
}

.lds-services__cta-subtitle {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    color: rgba(235, 235, 235, 0.7);
    margin: 0 0 8px;
    max-width: 500px;
    line-height: 1.6;
}

.lds-services__cta-buttons {
    display: flex;
    gap: 16px;
    margin-top: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Bouton Primary CTA (sans glow) */
.lds-services__cta-btn--primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 56px;
    padding: 0 28px;
    border-radius: 16px;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    background: linear-gradient(135deg, #0a3fd0 0%, #1a6aff 100%);
    text-decoration: none;
    border: 2.5px solid rgba(100, 170, 255, 0.5);
    box-shadow:
        0 4px 12px rgba(18, 90, 248, 0.25),
        0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.35s ease;
    z-index: 1;
}

.lds-services__cta-btn--primary::before {
    display: none;
}

.lds-services__cta-btn--primary:hover {
    background: linear-gradient(135deg, #0d45da 0%, #2575ff 100%);
    border-color: rgba(130, 190, 255, 0.6);
    gap: 14px;
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(18, 90, 248, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.15);
}

.lds-services__cta-btn--primary:hover::before {
    display: none;
}

/* Bouton Outline CTA (sans glow) */
.lds-services__cta-btn--outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 56px;
    padding: 0 28px;
    border-radius: 16px;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--lds-platinium, #EBEBEB);
    background: linear-gradient(135deg, rgba(235, 235, 235, 0.04) 0%, rgba(235, 235, 235, 0.09) 100%);
    text-decoration: none;
    border: 2.5px solid rgba(235, 235, 235, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.35s ease;
}

.lds-services__cta-btn--outline:hover {
    background: linear-gradient(135deg, rgba(235, 235, 235, 0.06) 0%, rgba(235, 235, 235, 0.14) 100%);
    border-color: rgba(235, 235, 235, 0.5);
    color: var(--lds-white, #ffffff);
    gap: 14px;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.lds-services__cta-btn--primary svg,
.lds-services__cta-btn--outline svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.lds-services__cta-btn--primary:hover svg,
.lds-services__cta-btn--outline:hover svg {
    transform: translateX(4px);
}

/* ============================================================
   RESPONSIVE - TABLETTE
   ============================================================ */

@media (max-width: 1024px) {
    .lds-services {
        padding: 80px 1.5rem;
    }

    .lds-services__header {
        margin-bottom: 48px;
    }

    .lds-services__card-content {
        padding: 32px;
    }

    .lds-services__card--with-mockup {
        min-height: 320px;
    }

    .lds-services__card--with-mockup .lds-services__card-content {
        padding: 32px;
    }

    .lds-services__card-mockup--tablet img {
        margin-top: -40px;
        margin-bottom: -40px;
        margin-right: -20px;
    }

    .lds-services__card-mockup--devices img {
        margin-left: -30px;
        margin-top: -50px;
        margin-bottom: -20px;
        max-height: 450px;
    }

    .lds-services__cta-banner {
        padding: 48px 32px;
    }
}

/* ============================================================
   RESPONSIVE - MOBILE
   ============================================================ */

@media (max-width: 768px) {
    .lds-services {
        padding: 60px 1rem;
    }

    .lds-services__header {
        margin-bottom: 40px;
    }

    .lds-services__grid {
        gap: 16px;
    }

    .lds-services__row {
        gap: 16px;
    }

    .lds-services__row--duo {
        flex-direction: column;
    }

    /* Reset du ratio et hauteur sur mobile */
    .lds-services__row--duo .lds-services__card:first-child,
    .lds-services__row--duo .lds-services__card:last-child {
        flex: 1;
    }

    .lds-services__row--duo .lds-services__card {
        min-height: auto;
    }

    .lds-services__card-content {
        padding: 28px;
    }

    .lds-services__card-title {
        font-size: 1.25rem;
    }

    .lds-services__card-text {
        font-size: 0.875rem;
    }

    /* Wrapper dark sur mobile */
    .lds-services__dark-wrapper {
        gap: 16px;
    }

    /* Cards avec mockup en colonne sur mobile */
    .lds-services__card--with-mockup {
        grid-template-columns: 1fr;
        min-height: auto;
        overflow: hidden;
    }

    .lds-services__card--with-mockup .lds-services__card-content {
        padding: 28px;
        order: 1;
    }

    .lds-services__card--reversed .lds-services__card-content {
        grid-column: 1;
    }

    /* Reset du positionnement absolu sur mobile */
    .lds-services__card-mockup--tablet,
    .lds-services__card-mockup--devices,
    .lds-services__card-mockup--devices-duo {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        width: 100%;
        padding: 24px;
        justify-content: center;
        order: 0;
    }

    .lds-services__mockup-pc {
        height: 180px;
    }

    .lds-services__mockup-tablet {
        height: 150px;
        margin-left: -30px;
    }

    .lds-services__card-mockup--tablet img {
        max-height: 260px;
        margin: 0;
        width: auto;
    }

    .lds-services__card-mockup--devices img {
        max-height: 220px;
        margin: 0;
        max-width: 100%;
    }

    /* CTA Banner mobile */
    .lds-services__cta-banner {
        padding: 40px 24px;
    }

    .lds-services__cta-title {
        font-size: 1.375rem;
    }

    .lds-services__cta-subtitle {
        font-size: 0.9375rem;
    }

    .lds-services__cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .lds-services__cta-btn--primary,
    .lds-services__cta-btn--outline {
        width: 100%;
        justify-content: center;
    }

    .lds-services__card-cta {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   RESPONSIVE - PETIT MOBILE
   ============================================================ */

@media (max-width: 480px) {
    .lds-services {
        padding: 50px 1rem;
    }

    .lds-services__card-content {
        padding: 24px;
    }

    .lds-services__card-mockup--tablet img {
        max-height: 200px;
    }

    .lds-services__card-mockup--devices img {
        max-height: 180px;
    }

    .lds-services__cta-banner {
        padding: 32px 20px;
    }

    .lds-services__cta-btn--primary,
    .lds-services__cta-btn--outline {
        height: 52px;
        padding: 0 24px;
        font-size: 0.9375rem;
        border-radius: 14px;
    }

    .lds-services__card-cta {
        height: 52px;
        padding: 0 24px;
        border-radius: 14px;
    }
}
