/* Courses Page - Web Application Exploitation */

/* Pricing Card */
.course-pricing-section {
  background: #0a0f1a;
  padding: 0 0 64px;
}

.course-pricing-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}

.pricing-card {
  background: #131b2b;
  border: 1px solid rgba(140, 82, 255, 0.2);
  padding: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}

.pricing-numbers {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.price-original {
  font-size: 1.25rem;
  color: #666;
  text-decoration: line-through;
}

.price-sale {
  font-size: 2.5rem;
  font-weight: 700;
  color: #219b9d;
}

.pricing-note {
  font-size: 0.875rem;
  color: #a0a0a0;
  margin-bottom: 24px;
}

.pricing-actions .button-primary {
  display: inline-block;
  padding: 14px 32px;
  background: #8c52ff;
  color: #fff;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.pricing-actions .button-primary:hover {
  opacity: 0.9;
}

.pricing-actions .button-secondary {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: #8c52ff;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid #8c52ff;
  cursor: pointer;
  transition: all 0.2s;
}

.pricing-actions .button-secondary:hover {
  background: #8c52ff;
  color: #fff;
}

.pricing-highlights {
  display: flex;
  gap: 32px;
}

.highlight {
  text-align: center;
}

.highlight-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #8c52ff;
}

.highlight-label {
  display: block;
  font-size: 0.75rem;
  color: #a0a0a0;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Curriculum Section */
.course-curriculum-section {
  background: #0a0f1a;
  padding: 96px 0;
}

.course-curriculum-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.curriculum-block {
  background: #131b2b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px;
}

.curriculum-block-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.curriculum-block-header h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.curriculum-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #8c52ff;
  background: rgba(140, 82, 255, 0.1);
  padding: 4px 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.curriculum-block-desc {
  font-size: 0.875rem;
  color: #a0a0a0;
  line-height: 1.6;
  margin-bottom: 20px;
}

.curriculum-topics {
  list-style: none;
  padding: 0;
  margin: 0;
}

.curriculum-topics li {
  font-size: 0.875rem;
  color: #d0d0d0;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.curriculum-topics li:last-child {
  border-bottom: none;
}

.curriculum-free-badge {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #219b9d;
  background: rgba(33, 155, 157, 0.1);
  padding: 6px 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Format Section */
.course-format-section {
  background: #131b2b;
  padding: 96px 0;
}

.course-format-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.format-item {
  text-align: center;
  padding: 32px 16px;
}

.format-icon {
  color: #8c52ff;
  margin-bottom: 20px;
}

.format-item h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.format-item p {
  font-size: 0.875rem;
  color: #a0a0a0;
  line-height: 1.6;
}

/* CTA Section */
.course-cta-section {
  background: #0a0f1a;
  padding: 96px 0;
}

.course-cta-section .container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 32px;
}

.cta-box {
  text-align: center;
  background: #131b2b;
  border: 1px solid rgba(140, 82, 255, 0.2);
  padding: 64px 48px;
}

.cta-box h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-box p {
  font-size: 1rem;
  color: #a0a0a0;
  margin-bottom: 32px;
}

.cta-box .button-primary {
  display: inline-block;
  padding: 16px 40px;
  background: #8c52ff;
  color: #fff;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.cta-box .button-primary:hover {
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 1024px) {
  .curriculum-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .pricing-card {
    flex-direction: column;
    padding: 32px;
    text-align: center;
  }

  .pricing-highlights {
    gap: 24px;
  }

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

  .cta-box {
    padding: 40px 24px;
  }
}
