/* ============================================
   AI Video Interviews Page - Custom Styles
   ============================================ */

/* Hero Section - Center alignment */
.video-interviews-page .hero-section {
  text-align: center;
  padding-top: 5rem;
}

.video-interviews-page .hero-container {
  text-align: center;
}

/* ============================================
   Problem/Solution Section
   ============================================ */
.problem-solution-section {
  padding: 4rem 2rem;
  background: var(--bg-secondary);
  text-align: center;
}

.problem-solution-container {
  max-width: 1200px;
  margin: 0 auto;
}

.comparison-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.problem-card,
.solution-card {
  background: var(--bg-primary);
  border-radius: 1rem;
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.problem-card {
  border: 2px solid rgba(255, 0, 0, 0.2);
}

.solution-card {
  border: 2px solid rgba(255, 140, 0, 0.3);
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.05) 0%, rgba(255, 140, 0, 0.02) 100%);
}

.problem-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.1);
}

.solution-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.15);
}

.problem-icon,
.solution-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.problem-title,
.solution-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.problem-list,
.solution-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.problem-list li,
.solution-list li {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works-section {
  padding: 4rem 2rem;
  background: var(--bg-primary);
  text-align: center;
}

.how-it-works-container {
  max-width: 1200px;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--text-orange);
  box-shadow: 0 10px 30px rgba(255, 140, 0, 0.15);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--text-orange) 0%, #ff6600 100%);
  color: white;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.step-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* ============================================
   Stats Section
   ============================================ */
.stats-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, rgba(255, 140, 0, 0.05) 100%);
  text-align: center;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  background: var(--bg-primary);
  border: 1px solid rgba(255, 140, 0, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: scale(1.05);
  border-color: var(--text-orange);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.2);
}

.stat-number {
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--text-orange) 0%, #ff6600 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.stat-description {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ============================================
   Features Section
   ============================================ */
.features-section {
  padding: 4rem 2rem;
  background: var(--bg-primary);
  text-align: center;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
  line-height: 1.2;
}

.section-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  text-align: left;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--text-orange);
  box-shadow: 0 10px 30px rgba(255, 140, 0, 0.15);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
  line-height: 1.3;
}

.feature-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* ============================================
   Comparison Section
   ============================================ */
.comparison-section {
  padding: 4rem 2rem;
  background: var(--bg-secondary);
  text-align: center;
}

.comparison-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* ============================================
   Comparison Table Section
   ============================================ */
.comparison-table-wrapper {
  overflow-x: auto;
  margin-top: 3rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-primary);
  font-size: 1rem;
}

.comparison-table thead {
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.15) 0%, rgba(255, 140, 0, 0.08) 100%);
}

.comparison-table th {
  padding: 1.5rem 1rem;
  text-align: center;
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 2px solid var(--border);
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}

.comparison-table tbody tr:hover {
  background: rgba(255, 140, 0, 0.05);
}

.comparison-table td {
  padding: 1.25rem 1rem;
  text-align: center;
  color: var(--text-secondary);
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--text-primary);
}

.comparison-table .check {
  color: #00cc66;
  font-size: 1.5rem;
  font-weight: 700;
}

.comparison-table .cross {
  color: #ff4444;
  font-size: 1.5rem;
  font-weight: 700;
}

.comparison-table .partial {
  color: #ffaa00;
  font-size: 1.5rem;
  font-weight: 700;
}

.comparison-table .price {
  font-weight: 600;
  color: var(--text-orange);
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing-section {
  padding: 4rem 2rem;
  background: var(--bg-secondary);
  text-align: center;
}

.pricing-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.pricing-card {
  background: var(--bg-primary);
  border: 2px solid rgba(255, 140, 0, 0.3);
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  margin-top: 3rem;
  position: relative;
  box-shadow: 0 10px 40px rgba(255, 140, 0, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--text-orange) 0%, #ff6600 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.pricing-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin: 1.5rem 0 0.5rem;
}

.pricing-amount .currency {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-orange);
  margin-right: 0.25rem;
}

.pricing-amount .price {
  font-size: 4rem;
  font-weight: 700;
  color: var(--text-orange);
  line-height: 1;
}

.pricing-amount .period {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-left: 0.5rem;
}

.pricing-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.pricing-features li {
  font-size: 1.125rem;
  line-height: 2;
  color: var(--text-secondary);
  padding-left: 1.5rem;
  position: relative;
}

/* Removed .pricing-cta-button styles - now uses .main-cta-button */

.pricing-note {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-top: 1rem;
  font-style: italic;
}

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 768px) {
  .comparison-grid-modern {
    grid-template-columns: 1fr;
  }

  .problem-card,
  .solution-card {
    padding: 1.5rem;
  }

  .problem-list li,
  .solution-list li {
    font-size: 1rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number {
    font-size: 3rem;
  }

  .comparison-table {
    font-size: 0.875rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem 0.5rem;
  }

  .pricing-amount .price {
    font-size: 3rem;
  }

  .pricing-features li {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Final CTA Section
   ============================================ */
.final-cta-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, rgba(255, 140, 0, 0.05) 100%);
  text-align: center;
}

.final-cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  line-height: 1.2;
}

.final-cta-description {
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

/* Removed .final-cta-button styles - now uses .main-cta-button */

.final-cta-note {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-top: 1.5rem;
  font-style: italic;
}

/* Responsive adjustments for Final CTA */
@media (max-width: 768px) {
  .final-cta-title {
    font-size: 2.25rem;
  }

  .final-cta-description {
    font-size: 1.25rem;
  }

  .final-cta-note {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .final-cta-title {
    font-size: 1.75rem;
  }

  .final-cta-description {
    font-size: 1.125rem;
  }
}

