.hero-features {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1rem;
  margin-bottom: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: nowrap
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 245, 255, .2);
  border-radius: 12px;
  padding: .75rem 1rem;
  transition: all .3s ease;
  font-size: .85rem;
  font-weight: 500;
  flex: 1;
  min-width: 0;
  white-space: nowrap
}

.hero-feature:hover {
  transform: translateY(-2px);
  border-color: var(--primary-color);
  background: rgba(0, 245, 255, .1);
  box-shadow: 0 10px 25px rgba(0, 245, 255, .15)
}

.hero-feature .feature-icon {
  font-size: 1.1rem;
  flex-shrink: 0
}

.hero-feature .feature-text {
  white-space: nowrap;
  color: var(--text-primary);
  overflow: hidden;
  text-overflow: ellipsis
}

.feature-rating {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-left: .5rem
}

.stars {
  font-size: .7rem;
  line-height: 1
}

.rating-text {
  font-size: .7rem;
  color: var(--primary-color);
  font-weight: 600
}

.hero-seo-keywords {
  margin-top: 2rem;
  margin-bottom: 1.5rem
}

.seo-text {
  font-size: clamp(.8rem, 2vw, .9rem);
  color: var(--text-secondary);
  opacity: .8;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto
}

.seo-text strong {
  color: var(--primary-color);
  font-weight: 600
}

.hero-trust {
  margin-top: 1.5rem;
  opacity: .9
}

.trust-text {
  font-size: clamp(.85rem, 2vw, .95rem);
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: .5px
}

.hero-secondary-cta {
  margin-top: 1.5rem;
  text-align: center
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: .5rem 1rem;
  border-radius: 8px;
  transition: all .3s ease
}

.btn-link:hover {
  color: var(--primary-color);
  background: rgba(0, 245, 255, .1)
}

.btn-link .arrow {
  transition: transform .3s ease
}

.btn-link:hover .arrow {
  transform: translateX(5px)
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem
}

.section-header {
  text-align: center;
  margin-bottom: 4rem
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 245, 255, .3);
  border-radius: 50px;
  padding: .5rem 1rem;
  margin-bottom: 1.5rem;
  font-size: .9rem;
  animation: float 3s ease-in-out infinite
}

@keyframes float {
  0%, 100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

.badge-icon {
  font-size: 1.1rem
}

.badge-text {
  font-weight: 600;
  color: var(--primary-color)
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7
}

.features {
  padding: 6rem 0;
  background: var(--dark-surface);
  position: relative;
  overflow: hidden
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent)
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 4rem
}

.feature-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, .08) 0, rgba(255, 255, 255, .05) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 245, 255, .2);
  border-radius: 20px;
  padding: 2rem;
  transition: all .3s ease;
  position: relative;
  overflow: hidden
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(0, 245, 255, .2)
}

.feature-card.featured {
  border-color: var(--accent-color);
  background: linear-gradient(135deg, rgba(255, 107, 53, .1) 0, rgba(255, 107, 53, .05) 100%)
}

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-color);
  color: #fff;
  padding: .25rem .75rem;
  border-radius: 12px;
  font-size: .75rem;
  font-weight: 600
}

.feature-number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 40px;
  height: 40px;
  background: rgba(0, 245, 255, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color)
}

.feature-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(0, 245, 255, .1);
  border-radius: 20px;
  margin: 2rem 0 1.5rem 0;
  position: relative
}

.feature-icon {
  font-size: 2rem
}

.feature-icon-glow {
  position: absolute;
  inset: -4px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border-radius: 24px;
  opacity: 0;
  transition: opacity .3s ease;
  z-index: -1;
  filter: blur(8px)
}

.feature-card:hover .feature-icon-glow {
  opacity: .6
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary)
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem
}

.feature-stats {
  display: flex;
  align-items: baseline;
  gap: .5rem
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color)
}

.stat-label {
  font-size: .9rem;
  color: var(--text-secondary);
  opacity: .8
}

.stats {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0a0a0f 0, #1a1a2e 50%, #0a0a0f 100%);
  position: relative;
  overflow: hidden
}

.stats-bg {
  position: absolute;
  inset: 0;
  z-index: 1
}

.stats-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(0, 245, 255, .1) 0, transparent 40%), radial-gradient(circle at 80% 50%, rgba(124, 58, 237, .1) 0, transparent 40%)
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
  z-index: 2
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 245, 255, .2);
  border-radius: 20px;
  transition: all .3s ease
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  background: rgba(0, 245, 255, .1)
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 1rem
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  display: block
}

.stat-suffix {
  font-size: 2rem;
  color: var(--primary-color)
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-top: .5rem
}

.stat-progress {
  width: 100%;
  height: 4px;
  background: rgba(0, 245, 255, .2);
  border-radius: 2px;
  margin-top: 1rem;
  overflow: hidden
}

.stat-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  width: 0%;
  transition: width 2s ease
}

@media (max-width:1200px) {
  .hero-features {
    max-width: 900px;
    gap: .75rem
  }

  .hero-feature {
    font-size: .8rem;
    padding: .6rem .8rem
  }

  .hero-feature .feature-icon {
    font-size: 1rem
  }
}

@media (max-width:1024px) {
  .hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
    flex-wrap: wrap
  }

  .hero-feature {
    white-space: normal;
    text-align: center;
    padding: 1rem;
    flex-direction: column
  }

  .feature-rating {
    margin-top: .5rem;
    justify-content: center
  }
}

@media (max-width:768px) {
  .hero-features {
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
    margin-bottom: 2.5rem
  }

  .hero-feature {
    padding: .75rem 1rem;
    font-size: .85rem
  }

  .hero-feature .feature-text {
    white-space: normal;
    text-align: center
  }

  .feature-rating {
    flex-direction: column;
    gap: .25rem
  }

  .hero-secondary-cta {
    margin-top: 1rem
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:480px) {
  .hero-features {
    grid-template-columns: 1fr;
    gap: .75rem;
    margin-bottom: 2rem
  }

  .hero-feature {
    justify-content: flex-start;
    text-align: left;
    padding: 1rem 1.25rem;
    min-height: auto
  }

  .hero-feature .feature-text {
    font-size: .9rem;
    white-space: normal
  }

  .feature-rating {
    margin-top: .5rem;
    justify-content: flex-start;
    flex-direction: row;
    gap: .75rem
  }

  .stars {
    font-size: .9rem
  }

  .rating-text {
    font-size: .9rem
  }

  .stats-grid {
    grid-template-columns: 1fr
  }
}