/* --- HERO BANNER --- */
.hero-banner {
  position: relative;
  width: 100%;
  height: 65dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero-banner::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: linear-gradient(to top, #161616 10%, transparent);
}

.image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px) brightness(50%);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.main-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 1rem;
}

/* --- TEXTES --- */
.big-title {
  font-size: 4.5rem;
  font-weight: 900;
  text-shadow: 2px 2px 8px rgba(250, 243, 243, 0.3);
  transform: scale(1.05) skewX(-3deg);
  margin-bottom: 1rem;
}

.big-title:hover {
  text-shadow: 4px 4px 12px rgba(231, 227, 227, 0.3);
  cursor: default;
}

.second-paragraph {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.795);
  text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
  font-weight: 700;
  margin-top: 0;
}








@media screen and (max-width: 450px) {

  .big-title {
    font-size: 3rem; 
    transform: scale(1) skewX(-2deg); 
  }


}















/*  Features Section */

.features {
  padding: 6rem 2rem;
  color: #e0e0e0;
  font-family: 'Inter', 'Roboto', sans-serif;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: #222;
  border-radius: 1.2rem;
  padding: 2.4rem 2.2rem;
  border: 2px solid transparent;
  box-shadow:
    0 4px 6px rgba(0,0,0,0.6),
    inset 0 0 0 2px #2c6ba5;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-12px);
  border-color: #3ea0ff;
  box-shadow:
    0 16px 30px rgba(62,160,255,0.45),
    inset 0 0 0 2px #3ea0ff;
}

.card-content h3 {
  font-size: 1.85rem;
  margin-bottom: 1.8rem;
  color: #3ea0ff;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-content h3 i {
  font-size: 1.9rem;
  line-height: 1;
  color: #58b0ff;
}

.card-content p {
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 1.6rem;
  color: #d0d8e8dd;
  font-weight: 400;
}

.terms-list {
  list-style: inside disc;
  margin-left: 1.3rem;
  color: #bfc7d9cc;
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 400;
  padding-bottom: 0.3rem;
}

.terms-list li {
  margin-bottom: 0.9rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.3rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: #d0d8e8cc;
}

.feature-item i {
  font-size: 1.6rem;
  color: #3ea0ff;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.feature-item:hover i {
  color: #79bfff;
}

.highlight {
  color: #3ea0ff;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.highlight:hover {
  text-decoration: underline;
  color: #79bfff;
}


@media (max-width: 640px) {
  .features {
    padding: 4rem 1rem;
  }
  .card-content h3 {
    font-size: 1.5rem;
  }
  .feature-item {
    font-size: 1rem;
  }
}


/* end Features Section */












