/* ==========================================================================
   CSS RESET & VARIABLES
   ========================================================================== */
:root {
  /* Color Palette */
  --primary-color: #4F46E5;       /* Indigo */
  --primary-hover: #4338CA;
  --secondary-color: #F97316;     /* Orange */
  --secondary-hover: #EA580C;
  --bg-color: #FAFAFA;            /* Very light gray */
  --bg-dark: #0F172A;             /* Slate 900 */
  --text-main: #1E293B;           /* Slate 800 */
  --text-muted: #64748B;          /* Slate 500 */
  --white: #FFFFFF;
  --border-color: #E2E8F0;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
  --gradient-secondary: linear-gradient(135deg, #F97316 0%, #F59E0B 100%);
  --gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.18);
  
  /* Typography */
  --font-family: 'Outfit', sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   UTILITIES & COMPONENTS
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-yellow {
  color: #FBBF24;
}

/* Buttons */
button {
  font-family: var(--font-family);
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition);
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 12px 24px;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  opacity: 0.95;
}

.btn-secondary {
  background-color: var(--white);
  color: var(--text-main);
  padding: 12px 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.1rem;
  border-radius: 12px;
}

/* Section Headers */
.section-header {
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--bg-dark);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.text-center .section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 4px;
}

.why-content .section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 4px;
}

/* Glass Panels */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glass);
  border-radius: 20px;
}

.glass-panel.dark {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.topbar {
  background-color: var(--bg-dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.875rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-inner i {
  color: var(--secondary-color);
  margin-right: 6px;
}

.navbar {
  background-color: var(--glass-bg);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  padding: 5px 0;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--bg-dark);
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links li a {
  font-weight: 500;
  color: var(--text-main);
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-links li a:hover {
  color: var(--primary-color);
}

.nav-links li a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-main);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  padding: 80px 0 120px;
  background-color: #F8FAFC;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
}

.shape-1 {
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: rgba(79, 70, 229, 0.15);
}

.shape-2 {
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(249, 115, 22, 0.1);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 300px 380px;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 115, 22, 0.1);
  color: var(--secondary-hover);
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--bg-dark);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 450px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-trust-indicators {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
}

.trust-item i {
  color: var(--primary-color);
}

/* Hero Image & Floating Cards */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-frame {
  position: relative;
  width: 100%;
  max-width: 320px;
  border-radius: 24px;
  background: var(--gradient-primary);
  padding: 10px;
  box-shadow: var(--shadow-xl);
}

.hero-img-frame img {
  border-radius: 16px;
  width: 100%;
  height: auto;
  object-fit: cover;
  background: #fff;
}

.floating-card {
  position: absolute;
  background: var(--white);
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
  z-index: 10;
}

.floating-card i {
  font-size: 1.5rem;
  color: var(--secondary-color);
  background: rgba(249, 115, 22, 0.1);
  padding: 10px;
  border-radius: 50%;
}

.floating-card-1 {
  top: 20px;
  left: -60px;
  animation-delay: 0s;
}

.floating-card-2 {
  bottom: 40px;
  right: -50px;
  animation-delay: 2s;
}

.floating-card .val {
  display: block;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--bg-dark);
}

.floating-card .lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* Hero Form */
.hero-form-box {
  padding: 32px 24px;
}

.hero-form-box h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--bg-dark);
}

.form-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.input-group {
  position: relative;
  margin-bottom: 16px;
}

.input-group i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 14px 16px 14px 44px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: var(--font-family);
  font-size: 0.95rem;
  color: var(--text-main);
  background: var(--white);
  transition: var(--transition);
  appearance: none; /* for select */
}

.input-group input:focus,
.input-group select:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.btn-submit {
  width: 100%;
  background: var(--gradient-secondary);
  color: var(--white);
  padding: 14px;
  font-size: 1.05rem;
  margin-top: 8px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-md);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-note i {
  color: #10B981; /* Green */
}

/* ==========================================================================
   COURSES SECTION
   ========================================================================== */
.courses {
  padding: 100px 0;
  background-color: var(--white);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.course-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.course-card:hover::before {
  transform: scaleX(1);
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(79, 70, 229, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: var(--transition);
}

.course-card:hover .icon-wrapper {
  background: var(--primary-color);
}

.icon-wrapper img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: var(--transition);
}

.course-card:hover .icon-wrapper img {
  filter: brightness(0) invert(1);
}

.icon-wrapper i {
  font-size: 1.8rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.course-card:hover .icon-wrapper i {
  color: var(--white);
}

.course-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 12px;
}

.course-list {
  text-align: left;
  margin: 20px 0 30px;
  list-style: none;
  padding: 0;
}

.course-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.course-list li i {
  color: var(--primary-color);
  font-size: 0.7rem;
  margin-top: 5px;
}

.course-card:hover .course-list li {
  color: var(--text-main);
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
}

.learn-more i {
  transition: transform 0.3s;
}

.learn-more:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.how-it-works {
  padding: 100px 0;
  background-color: #F8FAFC;
}

.steps-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 16px;
  z-index: 2;
}

.step-number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(79, 70, 229, 0.1);
  line-height: 1;
  margin-bottom: -20px;
  position: relative;
  z-index: 1;
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-color);
  background: var(--white);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.step:hover .step-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--gradient-primary);
  color: var(--white);
}

.step h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--bg-dark);
}

.step p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 50px;
  color: #CBD5E1;
  font-size: 1.5rem;
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-choose-us {
  padding: 100px 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: rgba(249, 115, 22, 0.1);
  color: var(--secondary-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  background: var(--gradient-secondary);
  color: var(--white);
  transform: scale(1.05);
}

.feature-item h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 6px;
}

.feature-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 40px;
}

.stat-box {
  text-align: center;
}

.stat-box h3 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.stat-box p {
  font-size: 1rem;
  font-weight: 500;
  color: #94A3B8;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
  padding: 80px 0;
  background: var(--gradient-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.4) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.1rem;
  color: #94A3B8;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: #080C16;
  color: var(--white);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-logo span {
  color: var(--primary-color);
}

.brand-col p {
  color: #94A3B8;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #94A3B8;
  font-size: 0.95rem;
}

.footer-col ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 4px;
}

.contact-item span {
  display: block;
  font-size: 0.85rem;
  color: #94A3B8;
  margin-bottom: 4px;
}

.contact-item p {
  font-weight: 500;
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  text-align: center;
  color: #94A3B8;
  font-size: 0.9rem;
}

/* ==========================================================================
   MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 450px;
  padding: 32px 24px;
  transform: scale(0.9);
  transition: var(--transition);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.close-modal {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--secondary-color);
  transform: rotate(90deg);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1fr 350px;
    gap: 40px;
  }
  .hero-image-wrapper {
    display: none; /* Hide image on smaller laptops to give space for form */
  }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-subtitle {
    max-width: 100%;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-trust-indicators {
    justify-content: center;
    margin-bottom: 40px;
  }

  .steps-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  
  .step-connector {
    display: none;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
  
  .nav-links, .nav-cta {
    display: none;
  }
  
  .hamburger {
    display: block;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .courses-grid {
    grid-template-columns: 1fr;
  }
  
  .why-stats {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
  }
}

/* ==========================================================================
   PARTNERS SECTION
   ========================================================================== */
.partners {
  padding: 40px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
}

.partners-label {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.partners-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  opacity: 0.6;
  filter: grayscale(1);
  transition: var(--transition);
}

.partners-slider:hover {
  opacity: 1;
  filter: grayscale(0);
}

.partner-logo span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bg-dark);
}

/* ==========================================================================
   COMPARISON SECTION
   ========================================================================== */
.comparison {
  padding: 100px 0;
  background-color: var(--white);
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-top: 40px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.comparison-table th,
.comparison-table td {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  background: rgba(79, 70, 229, 0.03);
  color: var(--bg-dark);
  font-weight: 700;
}

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

.text-green { color: #10B981; }
.text-red { color: #EF4444; }

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials {
  padding: 100px 0;
  background-color: #F8FAFC;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  padding: 40px;
  position: relative;
}

.quote-icon {
  font-size: 2rem;
  color: var(--primary-color);
  opacity: 0.2;
  margin-bottom: 10px;
}

.testimonial-card p {
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 24px;
  line-height: 1.7;
}

.student-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatar {
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.student-info h6 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.student-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq {
  padding: 100px 0;
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  padding: 24px;
  cursor: pointer;
}

.faq-question {
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--bg-dark);
}

.faq-answer {
  margin-top: 15px;
  color: var(--text-muted);
  font-size: 0.95rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .fa-plus {
  transform: rotate(45deg);
}