/* ==========================================================================
   Enric Adventures — Per què equipar-te amb nosaltres?
   La volta al mon a peu
   ========================================================================== */

.ea-features {
  padding: 88px 0;
  background: #F2F6FA;
}

.ea-section-head {
  text-align: center;
  margin-bottom: 56px;
}

.ea-section-badge {
  display: inline-block;
  background: #FFF0E8;
  color: #FF6B35;
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ea-section-badge--blue {
  background: #EBF0FF;
  color: #1A5CFF;
}

.ea-section-title {
  color: #0D1B2A;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.ea-section-sub {
  color: #4A6070;
  font-size: 1.0625rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.ea-divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, #1A5CFF, #FF6B35);
  border-radius: 2px;
  margin: 20px auto 0;
}

.ea-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ea-feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 2px 10px rgba(26,92,255,0.07);
  transition: all 0.25s ease;
  border: 1px solid rgba(26,92,255,0.06);
  position: relative;
  overflow: hidden;
}

.ea-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1A5CFF, #FF6B35);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.ea-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(26,92,255,0.12);
  border-color: rgba(26,92,255,0.12);
}

.ea-feature-card:hover::before {
  opacity: 1;
}

.ea-feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #EBF0FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #1A5CFF;
  transition: background 0.25s ease;
  flex-shrink: 0;
}

.ea-feature-card:hover .ea-feature-card__icon {
  background: #FFF0E8;
  color: #FF6B35;
}

.ea-feature-card__icon svg {
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
}

.ea-feature-card__title {
  color: #0D1B2A;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.ea-feature-card__text {
  color: #4A6070;
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 1199px) {
  .ea-features__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .ea-features { padding: 48px 0; }
  .ea-features__grid { grid-template-columns: 1fr; }
}
