/* ==================== IMPACT & PERFORMANCE SECTION ==================== */
.impact-performance {
    padding: 100px 0;
    background: #000;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.impact-performance__bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18vw;
    font-weight: 900;
    color: rgba(227, 6, 19, 0.12);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: -10px;
}

.impact-performance__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.impact-card {
    padding: 50px 40px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s ease;
    text-align: center;
}

.impact-card:hover {
    background: rgba(227, 6, 19, 0.08);
    border-color: rgba(227, 6, 19, 0.4);
    transform: translateY(-15px);
}

.impact-card__number {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.4) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 25px;
    display: block;
}

.impact-card__title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.impact-card__desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 991px) {
    .impact-performance__grid {
        grid-template-columns: 1fr;
    }

    .impact-card__number {
        font-size: 4rem;
    }

    .impact-performance__bg-text {
        font-size: 30vw;
    }
}

/* ==================== MISSION/VISION SECTION ==================== */
.about-two {
  padding: 100px 0;
  background: #fff;
}

.about-two__content {
  padding-right: 50px;
}

.about-two__box {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  background: linear-gradient(135deg, rgba(227, 6, 19, 0.03) 0%, rgba(227, 6, 19, 0.08) 100%);
  padding: 35px;
  border-radius: 25px;
  margin-bottom: 30px;
  border-left: 5px solid #e30613;
}

.about-two__box__icon {
  width: 60px;
  height: 60px;
  background: #e30613;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.about-two__box__content {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
}

.about-two__summery {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
}

.about-two__image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.about-two__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-two__image:hover img {
  transform: scale(1.05);
}

.about-two__image__caption {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #e30613;
  color: #fff;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==================== WATCH VIDEO SECTION ==================== */
.watch-video {
  padding: 80px 0;
  background: #f8f9fa;
}

.watch-video__inner {
  position: relative;
}

.watch-video__img-box {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.15);
}

.watch-video__img-box img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.watch-video__text {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.watch-video__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: #e30613;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 20px 40px rgba(227, 6, 19, 0.4);
}

.watch-video__icon:hover {
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 30px 60px rgba(227, 6, 19, 0.5);
}

/* ==================== CORE FEATURES SECTION ==================== */
.core-features {
  padding: 100px 0;
  position: relative;
  background: #000;
  color: #fff;
}

.core-features-bg {
  display: none;
}

.core-features__left .section-title__tagline {
  color: #ff6b6b;
}

.core-features__left .section-title__title {
  color: #fff;
  font-size: 2.5rem;
}

.core-features__left-bottom-text p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  line-height: 1.7;
}

.core-features__promicess-list {
  margin: 0;
  padding: 0;
}

.core-features__promicess-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 35px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  margin-bottom: 15px;
  transition: all 0.4s ease;
}

.core-features__promicess-list li:hover {
  background: rgba(227, 6, 19, 0.1);
  border-color: rgba(227, 6, 19, 0.3);
  transform: translateX(10px);
}

.core-features__promicess-list .text p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.core-features__promicess-list .icon {
  color: #e30613;
  font-size: 1.3rem;
}


/* FIX: Titre Core Features en blanc */
.core-features__left .section-title__title {
  color: #fff !important;
}


/* ==================== VISION SECTION FIX ==================== */
.about-two__vision-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-two__image {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.about-two__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-two__image:hover img {
  transform: scale(1.05);
}

.about-two__vision-content {
  padding: 0;
}

.about-two__vision-badge {
  display: inline-block;
  background: #e30613;
  color: #fff;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.about-two__vision-text {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin: 0;
}
