/* Product Cards Styling */
.product-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: none !important;
  border-color: transparent !important;
  background: var(--surface-color) !important;
}

.product-card .card-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent-color);
  font-size: 24px;
  transition: all 0.3s ease;
}

.product-card:hover .card-icon {
  background: var(--accent-color);
  color: white;
  transform: scale(1.1);
}

.product-card h3 {
  color: var(--heading-color);
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 1.5rem;
}

.product-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 20px;
  line-height: 1.6;
}

.product-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.product-card-header .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  transition: all 0.3s ease;
}

/* Feature Icon Box Styling */
.feature-icon-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  color: #333333;
}

.feature-icon-box:hover {
  transform: translateY(-5px);
  box-shadow: none !important;
  border-color: transparent !important;
  background: var(--surface-color) !important;
}

.feature-icon-box .feature-icon {
  width: 70px;
  height: 70px;
  background: #e6f0ff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #3a7bd5;
  font-size: 28px;
  transition: all 0.3s ease;
}

.feature-icon-box:hover .feature-icon {
  background: var(--accent-color);
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.feature-icon-box h3 {
  color: #1a365d;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 1.3rem;
}

.feature-icon-box p,
.feature-icon-box ul {
  color: #4a5568;
  margin-bottom: 0;
  line-height: 1.6;
}

.feature-icon-box ul {
  padding-left: 20px;
}

.feature-icon-box li {
  color: #4a5568;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.feature-icon-box li:before {
  content: '•';
  color: #3a7bd5;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Stats Section */
.stat-item {
  background: transparent;
  padding: 10px 0;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  border: none !important;
}

.stat-item:hover {
  transform: none;
  box-shadow: none;
}

.stat-number {
  color: #ffffff;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.2;
}

.stat-label {
  color: #ffffff !important;
  font-weight: 600 !important;
  display: block;
  margin-bottom: 5px;
  font-size: 0.95rem;
  opacity: 0.9;
}
