/* Home Features Section - Clean & Modern */

.home-features {
  padding: 60px 20px;
  background: var(--paper);
  position: relative;
}

.home-features__wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.home-features__header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0;
}

.home-features__title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.02em;
  text-align: center;
}

.home-features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 0;
  margin: 0 auto;
}

.home-feature {
  text-align: left;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: auto;
  width: 100%;
}

.home-feature:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.home-feature__icon {
  width: 40px;
  height: 40px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  position: relative;
  transition: all 0.3s ease;
  background: rgba(233, 30, 99, 0.1);
  border-radius: 6px;
  border: 1px solid rgba(233, 30, 99, 0.2);
  flex-shrink: 0;
}

.home-feature:hover .home-feature__icon {
  background: rgba(233, 30, 99, 0.15);
  border-color: rgba(233, 30, 99, 0.3);
  transform: scale(1.02);
}

.home-feature__icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
}

.home-feature__title {
  font-family: 'Unbounded', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  transition: all 0.3s ease;
}

.home-feature__description {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: all 0.3s ease;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .home-features {
    padding: 40px 16px;
  }
  
  .home-features__header {
    margin-bottom: 32px;
    padding: 0;
  }
  
  .home-features__title {
    font-size: clamp(20px, 5vw, 28px);
  }
  
  .home-features__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0;
  }
  
  .home-feature {
    padding: 16px;
    gap: 12px;
  }
  
  .home-feature__title {
    font-size: 15px;
    margin-bottom: 6px;
  }
  
  .home-feature__description {
    font-size: 12px;
  }
  
  .home-feature__icon {
    width: 36px;
    height: 36px;
  }
  
  .home-feature__icon svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .home-features {
    padding: 32px 12px;
  }
  
  .home-features__header {
    margin-bottom: 24px;
    padding: 0;
  }
  
  .home-features__grid {
    gap: 12px;
    padding: 0;
  }
  
  .home-feature {
    padding: 14px;
    gap: 10px;
  }
  
  .home-feature__icon {
    width: 32px;
    height: 32px;
  }
  
  .home-feature__icon svg {
    width: 14px;
    height: 14px;
  }
  
  .home-feature__title {
    font-size: 14px;
    margin-bottom: 4px;
  }
  
  .home-feature__description {
    font-size: 11px;
  }
}
