/* Additional styles for coach page to support email forms and FAQ */

.hero-cta-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.email-form {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.email-input {
  padding: 12px 16px;
  border-radius: 10px;
  border: 2px solid rgba(15,23,42,0.1);
  font-size: 16px;
  min-width: 220px;
  flex: 1;
  max-width: 400px;
  background: white;
  color: var(--text);
  font-family: inherit;
}

.email-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(236,72,70,0.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  font-size: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(180deg, var(--primary), #ec7846);
  color: #07203a;
  box-shadow: 0 8px 22px rgba(255,184,0,0.12);
}

/* FAQ Styles */
.faq-item {
  background: var(--card);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(12,15,22,0.04);
  box-shadow: 0 6px 20px rgba(12,15,22,0.04);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 0.5rem;
}

.faq-q strong {
  font-size: 18px;
  color: var(--text);
}

.faq-a {
  margin-top: 1rem;
  display: none;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

@media(min-width:640px){
  .email-input {
    min-width: 280px;
  }
}

