/* Page Specific CSS for features.html */

/* Header section styling */
.features-hero {
  background-color: var(--bg-elevated);
  border-bottom: 1px solid var(--neutral-light);
  padding: 60px 0;
  text-align: center;
}

.features-hero h1 {
  font-size: 40px;
  font-weight: 800;
  color: var(--font-primary);
  margin-bottom: 16px;
}

.features-hero p {
  font-size: 18px;
  font-weight: 400;
  color: var(--font-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Feature Cards Grid */
.features-grid .card {
  background-color: var(--bg-elevated);
  border: 1px solid var(--neutral-light) !important;
  border-radius: 16px !important;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.features-grid .card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(33, 150, 243, 0.2) !important;
}

.features-grid .card-body {
  padding: 40px 30px;
}

.features-grid .icon-box {
  width: 70px;
  height: 70px;
  background: rgba(33, 150, 243, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  transition: var(--transition);
}

.features-grid .card:hover .icon-box {
  background: var(--primary-color);
  transform: scale(1.05);
}

.features-grid .card:hover .icon-box i {
  color: var(--secondary-color) !important;
}

.features-grid .icon-box i {
  font-size: 28px;
  color: var(--primary-color) !important;
  transition: var(--transition);
}

.features-grid .card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--font-primary);
  margin-bottom: 12px;
}

.features-grid .card-text {
  color: var(--font-secondary);
  font-size: 15px;
  line-height: 1.6;
}

/* Call to Action Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0d47a1 100%);
  color: var(--secondary-color);
  border-radius: 24px;
  padding: 60px 40px;
  margin-bottom: 60px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.cta-section h2 {
  color: var(--secondary-color);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-light {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  font-weight: 600;
  padding: 12px 36px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.cta-section .btn-light:hover {
  background-color: var(--bg-base);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Hardware ecosystem section styling */
.hardware-section {
  background-color: var(--bg-base);
  padding: 80px 0;
  border-top: 1px solid var(--neutral-light);
  border-bottom: 1px solid var(--neutral-light);
}
.hardware-grid .hardware-card {
  background: var(--bg-elevated);
  border: 1px solid var(--neutral-light);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.hardware-grid .hardware-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(17, 24, 250, 0.2);
}
.hardware-grid .hardware-card i {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 16px;
}
.hardware-grid .hardware-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.hardware-grid .hardware-card p {
  color: var(--font-secondary);
  font-size: 14px;
  margin: 0;
}

/* Niche solutions cards */
.niche-section {
  padding: 80px 0;
}
.niche-card {
  background: var(--bg-elevated);
  border: 1px solid var(--neutral-light);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}
.niche-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(17, 24, 250, 0.15);
}
.niche-badge {
  background-color: rgba(17, 24, 250, 0.08);
  color: var(--primary-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 20px;
}
.niche-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
}
.niche-card p {
  font-size: 15px;
  color: var(--font-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}
.niche-features-list li {
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--font-primary);
  display: flex;
  align-items: center;
}
.niche-features-list li i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 16px;
}

