/* ==========================================================================
   Lockewise - Features Section Styles
   Created: June 20, 2025
   ========================================================================== */

.features {
  background-color: #000000;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
  width: 100%;
}

.features h1 {
  font-family: "Manrope", sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.features h1 span {
  color: var(--light-blue);
}

.features h1 span::after {
  display: none;
}

.feature-grid {
  display: grid;
  gap: 2rem 1rem;
  margin-top: 3rem;
  margin-bottom: 5rem;
  position: relative;
  padding-top: 15px;
  grid-template-columns: 1fr; /* Default to single column for mobile */
}

.feature-item {
  position: relative;
  text-align: center;
  background-color: #1a1a1a;
  border-radius: var(--radius-lg);
  padding: 2.5rem 1rem 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1;
  overflow: visible;
  height: 100%; /* Ensure consistent height */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  background-color: #222222;
  border-color: rgba(59, 130, 246, 0.35);
}

.number-circle {
  background: var(--primary-gradient);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 3px 8px rgba(59, 130, 246, 0.25);
  transition: all var(--transition-normal);
  font-family: "Manrope", sans-serif;
  margin-bottom: 0.75rem;
}

.feature-item:hover .number-circle {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
  background: linear-gradient(45deg, var(--light-blue), var(--accent-blue));
}

.feature-item .feature-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: var(--text-color);
  letter-spacing: -0.01em;
  text-align: center;
}

.feature-item p {
  color: #bbb;
  font-size: 0.9rem;
  line-height: 1.4;
  opacity: 0.85;
  margin: 0;
  text-align: center;
  max-width: 90%;
}
