/* ===================================
   Landing Page — SOK Academy
   =================================== */

/* Reset & Base */
.landing-body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  height: auto;
  overflow-y: auto;
}

/* Container */
.landing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================================
   Navigation
   =================================== */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: transparent;
}

.landing-nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
  padding: 12px 0;
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark-primary);
  letter-spacing: 1.5px;
  line-height: 1;
}

.nav-brand-subtitle {
  font-size: 9px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 3px;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
  transition: color 0.2s;
}

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

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-btn {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.nav-btn-ghost {
  color: var(--dark-primary);
  background: transparent;
}

.nav-btn-ghost:hover {
  background: rgba(0, 0, 0, 0.04);
}

.nav-btn-primary {
  color: #fff;
  background: var(--gold);
}

.nav-btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 169, 98, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--dark-primary);
}

.mobile-nav {
  display: none;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background: linear-gradient(180deg, #f9f7f2 0%, #ffffff 100%);
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(201, 169, 98, 0.07) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero .landing-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-dark);
  background: rgba(201, 169, 98, 0.1);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-badge svg {
  color: var(--gold);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark-primary);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  text-align: left;
}

.hero-title-accent {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-gray);
  margin-bottom: 36px;
  max-width: 520px;
  text-align: left;
}

/* Hero Buttons */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  transition: all 0.25s ease;
}

.hero-btn-primary {
  color: #fff;
  background: var(--gold);
}

.hero-btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 98, 0.3);
}

.hero-btn-secondary {
  color: var(--dark-primary);
  background: transparent;
  border: 1.5px solid var(--border-gray);
}

.hero-btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: rgba(201, 169, 98, 0.04);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-primary);
}

.hero-stat-label {
  font-size: 13px;
  color: var(--text-light-gray);
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-gray);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

.hero-card {
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.hero-card-main {
  padding: 32px;
  width: 340px;
  position: relative;
  z-index: 2;
}

.hero-card-icon {
  margin-bottom: 20px;
}

.hero-card-content .hero-card-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-dark);
  background: rgba(201, 169, 98, 0.12);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.hero-card-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-primary);
  margin-bottom: 8px;
  text-align: left;
}

.hero-card-content p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.5;
  margin-bottom: 16px;
  text-align: left;
}

.hero-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light-gray);
}

.hero-card-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-light-gray);
}

/* Floating cards */
.hero-card-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 600;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}

.hero-card-float-1 {
  top: 40px;
  right: -10px;
  color: #16a34a;
  animation-delay: 0s;
}

.hero-card-float-2 {
  bottom: 40px;
  left: -20px;
  color: var(--text-gray);
  animation-delay: 3s;
}

.hero-card-avatars {
  display: flex;
}

.hero-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-left: -6px;
  border: 2px solid #fff;
}

.hero-avatar:first-child {
  margin-left: 0;
}

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

/* ===================================
   Section Shared Styles
   =================================== */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-dark);
  background: rgba(201, 169, 98, 0.1);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  color: var(--dark-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-gray);
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* ===================================
   Features Section
   =================================== */
.features-section {
  padding: 100px 0;
  background: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 36px 28px;
  border-radius: 16px;
  border: 1.5px solid #f0ede5;
  background: #fff;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201, 169, 98, 0.1);
  transform: translateY(-4px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(201, 169, 98, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-primary);
  margin-bottom: 10px;
  text-align: left;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-gray);
  text-align: left;
}

/* ===================================
   Courses Preview Section
   =================================== */
.courses-section {
  padding: 100px 0;
  background: #faf8f4;
}

.courses-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.course-preview-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1.5px solid #f0ede5;
  transition: all 0.3s ease;
}

.course-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.course-preview-image {
  height: 160px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.course-preview-level {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 6px;
}

.course-preview-body {
  padding: 24px;
}

.course-preview-body h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--dark-primary);
  margin-bottom: 8px;
  text-align: left;
}

.course-preview-body p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-gray);
  margin-bottom: 20px;
  text-align: left;
}

.course-preview-footer {
  display: flex;
  align-items: center;
  gap: 20px;
}

.course-preview-lessons,
.course-preview-duration {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-light-gray);
  font-weight: 500;
}

/* ===================================
   Pathways Section
   =================================== */
.pathways-section {
  padding: 100px 0;
  background: #fff;
}

.pathways-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.pathways-benefits {
  list-style: none;
  padding: 0;
  margin: 24px 0 24px;
}

.pathways-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--dark-primary);
  padding: 10px 0;
  font-weight: 500;
}

.pathways-benefits li svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* Pathway Timeline Visual */
.pathway-timeline {
  position: relative;
  padding-left: 32px;
}

.pathway-timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: #e8e4dc;
}

.pathway-step {
  position: relative;
  padding: 16px 0 16px 24px;
}

.pathway-step-dot {
  position: absolute;
  left: -26px;
  top: 22px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #ddd9cf;
  background: #fff;
  z-index: 1;
  transition: all 0.3s;
}

.pathway-step-done .pathway-step-dot {
  background: var(--gold);
  border-color: var(--gold);
}

.pathway-step-active .pathway-step-dot {
  background: #fff;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 169, 98, 0.2);
}

.pathway-step-content {
  background: #faf8f4;
  border: 1.5px solid #f0ede5;
  border-radius: 12px;
  padding: 20px 24px;
  transition: all 0.3s;
}

.pathway-step-active .pathway-step-content {
  border-color: var(--gold);
  background: rgba(201, 169, 98, 0.04);
  box-shadow: 0 4px 16px rgba(201, 169, 98, 0.1);
}

.pathway-step-done .pathway-step-content {
  opacity: 0.7;
}

.pathway-step-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 4px;
}

.pathway-step-content h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-primary);
  margin: 0 0 4px;
}

.pathway-step-content p {
  font-size: 13px;
  color: var(--text-gray);
  margin: 0;
}

/* ===================================
   Community / Testimonials Section
   =================================== */
.community-section {
  padding: 100px 0;
  background: #faf8f4;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: #fff;
  border: 1.5px solid #f0ede5;
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark-primary);
  margin-bottom: 24px;
  font-style: italic;
  text-align: left;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.testimonial-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-primary);
}

.testimonial-role {
  display: block;
  font-size: 12px;
  color: var(--text-light-gray);
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
  padding: 80px 0;
  background: #fff;
}

.cta-card {
  background: var(--dark-primary);
  border-radius: 24px;
  padding: 72px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(201, 169, 98, 0.06) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn-white {
  background: #fff;
  color: var(--dark-primary);
}

.hero-btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-btn-ghost-light {
  color: rgba(255, 255, 255, 0.75);
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.hero-btn-ghost-light:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

/* ===================================
   Footer
   =================================== */
.landing-footer {
  padding: 60px 0 0;
  background: #faf8f4;
  border-top: 1px solid #f0ede5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .nav-brand {
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-gray);
  max-width: 280px;
}

.footer-links-group h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark-primary);
  margin-bottom: 16px;
}

.footer-links-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-group li {
  margin-bottom: 10px;
}

.footer-links-group a {
  text-decoration: none;
  font-size: 14px;
  color: var(--text-gray);
  transition: color 0.2s;
}

.footer-links-group a:hover {
  color: var(--gold-dark);
}

.footer-bottom {
  border-top: 1px solid #e8e4dc;
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-light-gray);
}

/* ===================================
   WhatsApp FAB
   =================================== */
.whatsapp-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 1000;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ===================================
   Scroll Animations
   =================================== */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delays for grid items */
.features-grid .animate-in:nth-child(1) { transition-delay: 0s; }
.features-grid .animate-in:nth-child(2) { transition-delay: 0.08s; }
.features-grid .animate-in:nth-child(3) { transition-delay: 0.16s; }
.features-grid .animate-in:nth-child(4) { transition-delay: 0.24s; }
.features-grid .animate-in:nth-child(5) { transition-delay: 0.32s; }
.features-grid .animate-in:nth-child(6) { transition-delay: 0.4s; }

.courses-preview-grid .animate-in:nth-child(1) { transition-delay: 0s; }
.courses-preview-grid .animate-in:nth-child(2) { transition-delay: 0.1s; }
.courses-preview-grid .animate-in:nth-child(3) { transition-delay: 0.2s; }

.testimonials-grid .animate-in:nth-child(1) { transition-delay: 0s; }
.testimonials-grid .animate-in:nth-child(2) { transition-delay: 0.1s; }
.testimonials-grid .animate-in:nth-child(3) { transition-delay: 0.2s; }

.pathway-timeline .animate-in:nth-child(1) { transition-delay: 0s; }
.pathway-timeline .animate-in:nth-child(2) { transition-delay: 0.12s; }
.pathway-timeline .animate-in:nth-child(3) { transition-delay: 0.24s; }
.pathway-timeline .animate-in:nth-child(4) { transition-delay: 0.36s; }

/* ===================================
   Responsive
   =================================== */

/* Tablet */
@media (max-width: 1024px) {
  .hero .landing-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-title {
    font-size: 42px;
    text-align: center;
  }

  .hero-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .hero-visual {
    min-height: 340px;
  }

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

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

  .courses-preview-grid .course-preview-card:nth-child(3) {
    grid-column: span 2;
    max-width: 400px;
    margin: 0 auto;
  }

  .pathways-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .section-subtitle {
    text-align: center !important;
  }

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

  .testimonials-grid .testimonial-card:nth-child(3) {
    grid-column: span 2;
    max-width: 400px;
    margin: 0 auto;
  }

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

/* Mobile */
@media (max-width: 768px) {
  .landing-container {
    padding: 0 20px;
  }

  /* Nav */
  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-nav {
    display: none;
    padding: 16px 0 24px;
    border-top: 1px solid #f0ede5;
    margin-top: 16px;
  }

  .mobile-nav.open {
    display: block;
  }

  .landing-nav:has(.mobile-nav.open),
  .landing-nav.menu-open {
    background: #ffffff !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
  }

  .mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
  }

  .mobile-nav-links li {
    margin-bottom: 4px;
  }

  .mobile-nav-links a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--dark-primary);
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.2s;
  }

  .mobile-nav-links a:hover {
    background: rgba(0, 0, 0, 0.04);
  }

  .mobile-nav-actions {
    display: flex;
    gap: 12px;
    padding: 0 16px;
  }

  .mobile-nav-actions .nav-btn {
    flex: 1;
    text-align: center;
    justify-content: center;
  }

  /* Hero */
  .hero {
    padding: 120px 0 60px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-visual {
    display: none;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat-number {
    font-size: 24px;
  }

  /* Features */
  .features-section {
    padding: 72px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  /* Courses */
  .courses-section {
    padding: 72px 0;
  }

  .courses-preview-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .courses-preview-grid .course-preview-card:nth-child(3) {
    grid-column: span 1;
    max-width: 100%;
  }

  /* Pathways */
  .pathways-section {
    padding: 72px 0;
  }

  /* Testimonials */
  .community-section {
    padding: 72px 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonials-grid .testimonial-card:nth-child(3) {
    grid-column: span 1;
    max-width: 100%;
  }

  /* CTA */
  .cta-section {
    padding: 48px 0;
  }

  .cta-card {
    padding: 48px 28px;
    border-radius: 16px;
  }

  .cta-content h2 {
    font-size: 26px;
  }

  .cta-content p {
    font-size: 15px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-desc {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 0 48px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .hero-stat-divider {
    display: none;
  }

  .whatsapp-fab {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}
