/* Component Styles */

/* Glassmorphism Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Feature Cards */
.feature-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px -10px rgba(54, 106, 106, 0.25);
  border-color: rgba(54, 106, 106, 0.3);
}

/* Icon Container */
.icon-container {
  background-color: var(--secondary);
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #366A6A 0%, #47C7C7 100%);
  border: none;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  position: relative;
  overflow: hidden;
  color: white;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #47C7C7 0%, #366A6A 100%);
  transition: left 0.4s;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 0;
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(54, 106, 106, 0.4);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* FAQ Items */
.faq-item {
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 12px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
}

.faq-item:hover {
  border-color: rgba(54, 106, 106, 0.3);
  box-shadow: 0 8px 25px rgba(54, 106, 106, 0.1);
}

/* Status Indicators */
.status-dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(45deg, #10b981, #34d399);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Success Message */
.success-message {
  display: none;
  padding: 12px 16px;
  background-color: #10b981;
  color: white;
  border-radius: 8px;
  font-size: 14px;
  margin-top: 8px;
  text-align: center;
}

.success-message.show {
  display: block;
  animation: slideDown 0.3s ease-out;
}

/* Platform Buttons */
.platform-button {
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

.platform-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.platform-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
