/* ===========================================
   Schools Landing Page Styles
   =========================================== */

/* Hero Section - Split Layout */
.hero-split {
  padding: 4rem 0;
  min-height: 600px;
}

.hero-split.hero-schools {
  background: linear-gradient(135deg, #EFF6FF 0%, #FFFFFF 100%);
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 1rem;
  background: #DBEAFE;
  color: #1D4ED8;
}

.hero-content {
  padding-right: 2rem;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.hero-stats .stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-stats .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1E293B;
}

.hero-stats .stat-label {
  font-size: 0.875rem;
  color: #64748B;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  max-width: 100%;
  height: auto;
}

/* Section Styles */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #64748B;
  margin-bottom: 2rem;
}

/* Feature Cards */
.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1E293B;
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.95rem;
  color: #64748B;
  line-height: 1.5;
}

/* Benefits Section - styles moved to inline in schools-landing.ejs */

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.benefit-icon {
  color: #22C55E;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.benefit-text {
  font-size: 1rem;
  color: #374151;
}

/* How It Works */
.how-it-works {
  padding: 5rem 0;
}

.step-card {
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #667eea;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1E293B;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.95rem;
  color: #64748B;
}

/* Waitlist Form Section */
.waitlist-section {
  background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
  padding: 5rem 0;
  color: white;
}

.waitlist-section .section-title {
  color: white;
}

.waitlist-section .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.waitlist-form {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.waitlist-form .form-label {
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.waitlist-form .form-control,
.waitlist-form .form-select {
  border-radius: 8px;
  padding: 0.75rem 1rem;
  border: 1px solid #D1D5DB;
}

.waitlist-form .form-control:focus,
.waitlist-form .form-select:focus {
  border-color: #3B82F6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.waitlist-form .btn-primary {
  background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
  border: none;
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  width: 100%;
}

.waitlist-form .btn-primary:hover {
  background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.form-disclaimer {
  font-size: 0.8rem;
  color: #6B7280;
  margin-top: 1rem;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background: #F8FAFC;
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  font-weight: 600;
  color: #1E293B;
  padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
  background: #EFF6FF;
  color: #1D4ED8;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-body {
  padding: 1rem 1.5rem;
  color: #64748B;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #FF4081 0%, #D500F9 100%);
  padding: 5rem 0;
  text-align: center;
  color: white;
}

.cta-section .section-title {
  color: white;
  font-size: 2.5rem;
}

.cta-section .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-section .btn-light {
  padding: 1rem 2.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 8px;
}

/* Success/Error Messages */
.form-message {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: none;
}

.form-message.success {
  background: #DCFCE7;
  color: #166534;
  border: 1px solid #BBF7D0;
}

.form-message.error {
  background: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

.form-message.show {
  display: block;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-split {
    padding: 2rem 0;
    min-height: auto;
  }

  .hero-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 2rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .waitlist-form {
    padding: 1.5rem;
  }

  .cta-section .section-title {
    font-size: 1.75rem;
  }
}
