/* =========================================================
   bwa-sic — Service Intro + Checklist
   Source: DroneInspection.tsx lines 247-304
   BEM scoped, no global resets
   ========================================================= */

/* --- Animations --- */

.bwa-sic [data-anim] {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.bwa-sic [data-anim="left"]  { transform: translate3d(-32px, 0, 0); }
.bwa-sic [data-anim="right"] { transform: translate3d(32px,  0, 0); }

.bwa-sic.is-inview [data-anim] {
    opacity: 1;
    transform: none;
}

/* --- Root --- */
/* section-padding bg-background */

.bwa-sic {
    background-color: hsl(210 20% 98%);
    padding: 4rem 0;
}

@media (min-width: 768px)  { .bwa-sic { padding: 6rem 0; } }
@media (min-width: 1024px) { .bwa-sic { padding: 8rem 0; } }

/* --- Container --- */

.bwa-sic__container {
    width: 100%;
    max-width: 85rem;
    margin: 0 auto;
}

/* --- Grid : 2 colonnes --- */
/* grid lg:grid-cols-2 gap-12 items-stretch */

.bwa-sic__grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .bwa-sic__grid {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }
}

/* --- Badge surtitre --- */
/* inline-block px-4 py-1.5 rounded-full bg-accent/10 text-accent text-sm font-medium mb-4 */

.bwa-sic__badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background-color: hsl(15 90% 55% / 0.1);
    color: hsl(15 90% 55%);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* --- Titre --- */
/* section-title text-foreground */

.bwa-sic__title {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.2;
    color: hsl(215 35% 15%);
    margin-top: 0 !important;
    margin-bottom: 1.5rem !important;
}

@media (min-width: 768px)  { .bwa-sic__title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .bwa-sic__title { font-size: 3rem; } }

/* --- Description --- */
/* space-y-4 text-muted-foreground */

.bwa-sic__description {
    color: hsl(215 20% 45%);
    line-height: 1.7;
}

.bwa-sic__description p          { margin-bottom: 1rem; }
.bwa-sic__description p:last-child { margin-bottom: 0; }
.bwa-sic__description strong      { color: hsl(215 35% 15%); font-weight: 600; }

/* --- Card wrap --- */
/* relative flex */

.bwa-sic__card-wrap {
    display: flex;
}

/* --- Card --- */
/* bg-card rounded-2xl p-8 shadow-lg border border-border flex flex-col justify-center flex-1 */

.bwa-sic__card {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px -5px hsl(215 25% 15% / 0.1);
    border: 1px solid hsl(215 25% 88%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

/* --- Card titre --- */
/* text-xl font-bold text-foreground mb-6 flex items-center gap-3 */

.bwa-sic__card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(215 35% 15%);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* w-6 h-6 text-accent */

.bwa-sic__card-title-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    color: hsl(15 90% 55%);
}

/* --- Liste --- */
/* space-y-3 */

.bwa-sic__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* --- Item --- */
/* flex items-start gap-3 */

.bwa-sic__list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

/* w-5 h-5 text-accent flex-shrink-0 mt-0.5 */

.bwa-sic__list-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
    filter: invert(45%) sepia(90%) saturate(500%) hue-rotate(340deg) brightness(100%);
}

/* text-muted-foreground */

.bwa-sic__list-item span {
    color: hsl(215 20% 45%);
    line-height: 1.5;
}

/* --- Responsive padding --- */

@media (max-width: 767px) {
    .bwa-sic__container { padding-inline: 1.25rem; }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .bwa-sic__container { padding-inline: 2rem; }
}

@media (min-width: 1024px) and (max-width: 1439px) {
    .bwa-sic__container { padding-inline: 2rem; }
}
