.features-section {
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding: 80px 0;
  background: white;
}

.features-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  font-family: sans-serif;
  text-align: left;
  padding:2rem 0;
}

.features-card-visual video {
  width: 100%;
  margin: auto;
  object-fit: cover;
}

/* -------- BADGE -------- */
.features-badge {
  display:inline-block;
  padding:.3rem .8rem;
  border:1px solid #134F50;
  border-radius:14px;
  color: #134F50;
  /* Police */
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.features-title {
  color: #134F50;
  /* Police */
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 700;
}

/* -------- CARDS -------- */
.features-right {
    flex: 1;
    display: flex;
    gap: 25px;
    height: auto;
    align-items: stretch;
}

/* Carte */
.features-card-blue {
    background: #f5f5f5;
    border-radius: 22px;
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    background: #D9F4FF;
}

.features-card-green {
    background: #f5f5f5;
    border-radius: 22px;
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    background: #D1FFD8;
}

/* Zone image dans carte */
.features-card-visual {
    width: 100%;
    aspect-ratio: 16/9;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.features-card-visual img {
    width: 160px;
    height: auto;
}

/* Zone texte */
.features-card-text {
    margin-top: 25px;
}

.features-card-text h2 {
    margin: 10px 0 12px;
    color: #134F50;
    /* Police */
    font-family: 'Roboto', sans-serif;
    font-size: 36px;
    font-weight: 700;
}

.features-card-text p {
    line-height: 1.5;
    color: #134F50;
    /* Police */
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

/* Badge des cartes */
.features-tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid #134F50;
    color: #134F50;
    /* Police */
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

@media (max-width: 1050px) {
    .features-container {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .features-left {
        max-width: 600px;
        margin: 0 auto;
    }

    .features-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .features-right {
        display: flex;
        flex-direction: column;
        gap: 40px;
        width: 100%;
        align-items: center;
        height: auto;
    }

    .features-card {
        flex-direction: column;
        max-width: 600px;
        width: 90%;
        text-align: center;
        padding: 30px;
    }

    .features-card-visual video {
        width: 100%;
        border-radius: 14px;
        aspect-ratio: 16/9;
    }

    .features-card-text h2 {
        font-size: 26px;
    }

    .features-card-text p {
        font-size: 15px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 40px 0;
    }

    .features-title {
        font-size: 24px;
    }

    .features-badge {
        font-size: 12px;
        padding: 5px 12px;
    }

    .features-right {
        gap: 25px;
        height: auto;
    }

    .features-card {
        padding: 20px;
        width: 90%;
        border-radius: 16px;
    }

    .features-card-text h2 {
        font-size: 20px;
        line-height: 1.3;
    }

    .features-card-text p {
        font-size: 14px;
    }

    .features-card-visual video {
        border-radius: 14px;
    }

    .features-tag {
        font-size: 12px;
        padding: 4px 10px;
    }
}

