.features-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background: #1a1a1a;
    position: relative;
}


.features-section .section-title {
font-size: 48px;
font-weight: 700;
line-height: 1.1;
letter-spacing: .03em;
color: #ffffff;
margin-bottom: 16px;
}

.features-section .section-title span {
color: #daff01;
}

/*.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}*/

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.feature-card {
    border-radius: 16px;
    padding: 0 32px 32px 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    animation: fade-in-up 0.6s ease-out both;
}


.feature-icon {
    width: 56px;
    height: 56px;
    background: rgb(218, 255, 1,.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin:0 auto 20px auto;
    color: #daff01;
    transition: all 0.3s ease;
}

.feature-title {
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 0.75rem;
    color: #fff;
    font-weight: 600;
}



.feature-description {
    font-size: 1rem;
    line-height: 1.75rem;
    color: #6b7280;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .features-section {
        padding: 80px 0;
        margin-top: 60px;
    }

  .features-grid {
    grid-template-columns: 1fr;
  }
}