/* HERO SECTION */
.cfs-hero-section {
  background: linear-gradient(135deg, rgba(51, 68, 88, 0.92) 0%, rgba(30, 41, 59, 0.88) 100%), url('images/cfs_hero_bg.jpg') center/cover no-repeat;
  color: #ffffff;
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}

.cfs-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.cfs-hero-badge {
  display: inline-block;
  background: rgba(0, 174, 239, 0.15);
  color: #00aeef;
  border: 1px solid rgba(0, 174, 239, 0.3);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cfs-hero-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 20px;
  color: #ffffff;
}

.cfs-hero-subtitle {
  font-size: 18px;
  color: #cbd5e1;
  margin: 0 0 32px;
  line-height: 1.6;
}

.cfs-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cfs-stats-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cfs-stat-item {
  text-align: center;
}

.cfs-stat-num {
  font-size: 36px;
  font-weight: 800;
  color: #00aeef;
  display: block;
}

.cfs-stat-desc {
  font-size: 13px;
  color: #94a3b8;
  font-weight: 600;
}

/* SECTION STYLES */
.cfs-section {
  padding: 80px 0;
}

.cfs-section-alt {
  background: #f8fafc;
}

.cfs-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}

.cfs-section-title {
  font-size: 34px;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 12px;
}

.cfs-section-sub {
  font-size: 16px;
  color: #64748b;
  margin: 0;
}

/* SERVICES GRID */
.cfs-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.cfs-service-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 32px 24px;
  box-shadow: 0 10px 30px rgba(51, 68, 88, 0.05);
  transition: all 0.25s ease;
}

.cfs-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 174, 239, 0.12);
  border-color: #00aeef;
}

.cfs-service-icon {
  width: 56px;
  height: 56px;
  background: #f0f9ff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  color: #00aeef;
}

.cfs-service-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 10px;
}

.cfs-service-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 16px;
}

.cfs-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cfs-service-list li {
  font-size: 13px;
  font-weight: 600;
  color: #334458;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* WHY CFS GRID */
.cfs-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.cfs-feature-item {
  background: #ffffff;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
}

.cfs-feature-title {
  font-size: 17px;
  font-weight: 700;
  color: #334458;
  margin: 12px 0 6px;
}

.cfs-feature-desc {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

@media (max-width: 900px) {
  .cfs-hero-grid {
    grid-template-columns: 1fr;
  }
  .cfs-hero-title {
    font-size: 34px;
  }
}
