/* KEY BENEFITS SECTION STYLES */
.key-benefits-section {
  position: relative;
  background-color: var(--dark-bg-secondary);
}

html[data-bs-theme="light"] .key-benefits-section {
  background-color: #f8f9fa;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.benefit-card {
  background-color: var(--dark-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

html[data-bs-theme="light"] .benefit-card {
  background-color: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

html[data-bs-theme="light"] .benefit-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent-color), var(--accent-color-dark));
  opacity: 0.8;
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-color-dark));
  margin-bottom: 20px;
  color: #fff;
  font-size: 28px;
}

.benefit-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-color);
}

.benefit-subtitle {
  font-size: 16px;
  color: var(--accent-color);
  margin-bottom: 12px;
  font-weight: 600;
}

.benefit-text {
  color: var(--text-muted-color);
  margin-bottom: 15px;
  flex-grow: 1;
  font-size: 15px;
  line-height: 1.6;
}

.benefit-checkmark {
  display: flex;
  align-items: center;
  background-color: rgba(235, 153, 88, 0.1);
  border-radius: 8px;
  padding: 12px 15px;
  margin-top: auto;
}

.benefit-checkmark i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 10px;
}

.benefit-checkmark span {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-color);
}

.key-benefits-cta {
  background-color: var(--dark-bg);
  border-radius: 16px;
  padding: 40px;
  margin-top: 60px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

html[data-bs-theme="light"] .key-benefits-cta {
  background-color: #ffffff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.key-benefits-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--accent-color), var(--accent-color-dark));
}

.key-benefits-cta h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 15px;
}

/* Updated CTA styling for Get Started section */
.cta-card {
  position: relative;
  background: linear-gradient(145deg, var(--dark-bg-tertiary), var(--dark-bg-secondary));
  border-radius: 20px;
  padding: 3.5rem;
  margin-top: 2rem;
  border: 1px solid rgba(235, 153, 88, 0.2);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

html[data-bs-theme="light"] .cta-card {
  background: linear-gradient(145deg, #ffffff, #f9f9f9);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border-color: rgba(235, 153, 88, 0.4);
}

.cta-accent-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-color-dark));
}

.cta-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(235, 153, 88, 0.05) 0%, transparent 20%),
                   radial-gradient(circle at 80% 20%, rgba(235, 153, 88, 0.05) 0%, transparent 20%);
  opacity: 0.8;
  z-index: -1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.cta-action-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-width: 240px;
}

.cta-check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background-color: rgba(235, 153, 88, 0.1);
  border-radius: 10px;
  margin-bottom: 0.75rem;
}

.cta-check i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.cta-check span {
  font-weight: 600;
  font-size: 0.95rem;
}

.cta-divider {
  position: relative;
  height: 50px;
  display: flex;
  align-items: center;
  color: var(--current-text-muted);
}

.cta-divider:before, .cta-divider:after {
  content: '';
  height: 1px;
  width: 20px;
  background: var(--current-border);
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
}

.cta-divider span {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(235, 153, 88, 0.15);
  border-radius: 30px;
  color: var(--accent-color);
  font-weight: 600;
  margin-top: 2rem;
  box-shadow: 0 4px 12px rgba(235, 153, 88, 0.15);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(235, 153, 88, 0.3); }
  70% { box-shadow: 0 0 0 10px rgba(235, 153, 88, 0); }
  100% { box-shadow: 0 0 0 0 rgba(235, 153, 88, 0); }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .benefit-card {
    padding: 25px;
  }
  
  .benefit-number {
    font-size: 2.5rem;
  }
  
  .benefit-title {
    font-size: 1.3rem;
    padding-right: 40px; /* Make room for the number */
  }
  
  .benefit-subtitle {
    font-size: 0.9rem;
  }
  
  .cta-card {
    padding: 2.5rem 1.5rem;
  }
  
  .cta-actions {
    flex-direction: column;
    gap: 2rem;
  }
  
  .cta-divider {
    transform: rotate(90deg);
    height: auto;
    width: 50px;
    margin: 0;
  }
  
  .cta-divider:before, .cta-divider:after {
    width: 15px;
  }
}
