/* =========================================
   HERO SECTION
   ========================================= */

   .hero-section {
    padding: 50px 0 80px;
    overflow: hidden;
  }
  
  .hero-layout-wrapper {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }
  
  .hero-heading-block {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .hero-badge {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  
  .hero-main-title {
    margin: 0;
    font-size: clamp(2.8rem, 5vw, 3.4rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-inline: auto;
  }

  
  .hero-description {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: var(--text-secondary);
  }
  
  .hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 8px;
    flex-wrap: wrap;
  }
  
  .hero-showcase-grid {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr) 250px;
    gap: 26px;
    align-items: end;
  }
  
  .hero-side-column {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
  
  .hero-social-links-card {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  
  .hero-social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .hero-social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #dcdcdc;
    font-size: 1rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  }
  
  /* Hover = premium feel */
  .hero-social-icon:hover {
    transform: translateY(-3px);
    background: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  }

  .hero-social-links-card-secondary {
    display: none;
  }

  @media (max-width: 640px) {
    .hero-social-links-card {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
  
    .hero-social-icons {
      gap: 8px;
    }
  
    .hero-social-icon {
      width: 40px;
      height: 40px;
    }
  }
  

  .hero-journey-card {
    background: #f8f9ff;
    border-radius: 26px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid #dcdcdc;
  }
  
  .hero-journey-item {
    background: #ffffff;
    border-radius: 18px;
    padding: 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: all 0.25s ease;
    border: 1px solid #f0f0f0;
  }
  
  .hero-journey-item:hover {
    transform: translateX(4px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
  }
  
  .hero-journey-level {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary);
  }
  
  .hero-journey-item h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
  }
  
  .hero-journey-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
  }

  @media (max-width: 1024px) {
    .hero-journey-card {
      width: 100%;
    }
  }
  
  @media (max-width: 640px) {
    .hero-journey-card {
      padding: 14px;
      border-radius: 20px;
    }
  
    .hero-journey-item {
      padding: 14px;
    }
  }
  
  
  .hero-centre-visual-card {
    position: relative;
    max-height: 560px;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.1);
  }
  
  .hero-centre-visual-card img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    display: block;
  }
  
  .hero-visual-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  }


  .hero-performance-card {
    background: linear-gradient(180deg, #101828 0%, #1b2540 100%);
    border-radius: 28px;
    padding: 22px 20px 20px;
    color: #ffffff;
    box-shadow: 0 20px 50px rgba(10, 19, 39, 0.24);
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .hero-performance-card-header {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
  }
  
  .hero-performance-label {
    margin: 0 0 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
  }
  
  .hero-performance-card-header h3 {
    margin: 0;
    font-size: 1.6rem;
    line-height: 1.05;
    letter-spacing: -0.03em;
  }
  
  .hero-performance-metrics {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .hero-performance-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .hero-performance-row-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .hero-performance-row-top p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
  }
  
  .hero-performance-row-top span {
    font-size: 0.88rem;
    font-weight: 700;
    color: #c9d7ff;
  }
  
  .hero-performance-track {
    width: 100%;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
  }
  
  .hero-performance-fill {
    height: 100%;
    border-radius: 999px;
    width: 0%;
    transition: width 0.9s ease;
  }
  
  /* Colour styles only (NO width here now) */
  .hero-performance-fill-confidence {
    background: linear-gradient(90deg, #67e8f9 0%, #3b82f6 100%);
  }
  
  .hero-performance-fill-accuracy {
    background: linear-gradient(90deg, #86efac 0%, #22c55e 100%);
  }
  
  .hero-performance-fill-exam-technique {
    background: linear-gradient(90deg, #fcd34d 0%, #f59e0b 100%);
  }
  
  .hero-performance-fill-problem-solving {
    background: linear-gradient(90deg, #c4b5fd 0%, #8b5cf6 100%);
  }
  
  .hero-performance-footer-note {
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

@media (max-width: 640px) {
  .hero-performance-card {
    padding: 18px 16px 16px;
    border-radius: 24px;
    gap: 18px;
  }

  .hero-performance-card-header h3 {
    font-size: 1.6rem;
  }

  .hero-performance-track {
    height: 10px;
  }

  .hero-performance-footer-note {
    font-size: 0.86rem;
  }
}
  
  /* =========================================
     HERO RESPONSIVE
     ========================================= */
  
  @media (max-width: 1200px) {
    .hero-showcase-grid {
      grid-template-columns: 220px minmax(0, 1fr) 220px;
      gap: 20px;
    }
  
    .hero-centre-visual-card,
    .hero-centre-visual-card img {
      min-height: 500px;
    }
  
    .hero-main-title {
      font-size: clamp(2.6rem, 5vw, 4.3rem);
    }
  }
  
  @media (max-width: 1024px) {
    .hero-section {
      padding: 80px 0 60px;
    }
  
    .hero-layout-wrapper {
      gap: 38px;
    }
  
    .hero-showcase-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  
    .hero-side-column-left,
    .hero-side-column-right {
      display: none;
    }

  
  
    .hero-centre-visual-card,
    .hero-centre-visual-card img {
      max-width: 700px;
      margin: 0 auto ;
    }
  }
  
  @media (max-width: 768px) {
    .hero-main-title {
      font-size: clamp(2.2rem, 8vw, 3.2rem);
      line-height: 1.06;
    }
  
    .hero-title-highlight::after {
      left: -6px;
      right: -6px;
      height: 20px;
      bottom: 5px;
    }
  
    .hero-description {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 640px) {
    .hero-section {
      padding: 60px 0 40px;
    }
  
    .hero-heading-block {
      gap: 16px;
    }
  
    .hero-actions {
      flex-direction: column;
      align-items: stretch;
    }
  
    .hero-actions a {
      width: 100%;
    }
  
  
    .hero-centre-visual-card,
    .hero-centre-visual-card img {
      min-height: 280px;
      border-radius: 24px;
    }
  
    .hero-social-links-card-secondary {
      display: flex;
    }
  }




  /* =========================================
   VALUE SECTION (ENHANCED)
   ========================================= */

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
  }
  
  .value-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-primary);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  }
  

  
  .value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  }
  
  .value-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(103, 158, 245, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .value-icon i {
    font-size: 18px;
    color: var(--color-primary);
  }
  
  .value-card h3 {
    font-size: 1.25rem;
  }
  
  .value-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
  }
  
  /* =========================================
     VALUE RESPONSIVE
     ========================================= */
  
  @media (max-width: 1024px) {
    .value-grid {
      grid-template-columns: 1fr;
    }
  }




  /* =========================================
   STATEMENT BANNER
   ========================================= */

.statement-banner {
  background: var(--color-primary);
}

.statement-banner .container {
padding: 25px 0;
}

.statement-banner p {
  text-align: center;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 640px) {
  .statement-banner p {
    font-size: 0.88rem;
  }
}



  /* =========================================
   SERVICES OVERVIEW SECTION
   ========================================= */

.services-overview-title-block {
    margin-bottom: 40px;
  }
  
  .services-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  
  .services-overview-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-primary);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
    overflow: hidden;
  }
  
  .featured-services-card {
    border-color: rgba(103, 158, 245, 0.25);
    box-shadow: 0 18px 40px rgba(103, 158, 245, 0.1);
  }
  
  .featured-services-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: var(--color-primary);
  }
  
  .services-overview-label {
    width: fit-content;
    padding: 8px 14px;
    border-radius: var(--radius-rounded);
    background: rgba(103, 158, 245, 0.12);
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
  }
  
  .services-overview-card-top {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  .services-overview-card-top p {
    color: var(--text-secondary);
  }
  
  .services-overview-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  .services-overview-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  
  .services-overview-list i {
    margin-top: 4px;
    color: var(--color-primary);
    font-size: 0.95rem;
    flex-shrink: 0;
  }
  
  .services-overview-list span {
    color: var(--text-primary);
  }
  
  .services-overview-actions {
    margin-top: auto;
    display: flex;
    padding-top: 4px;
  }
  
  .services-overview-actions a {
    min-width: 180px;
  }
  
  /* =========================================
     SERVICES OVERVIEW RESPONSIVE
     ========================================= */
  
  @media (max-width: 1024px) {
    .services-overview-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 640px) {
    .services-overview-card {
      padding: 24px;
      gap: 24px;
    }
  
    .services-overview-actions a {
      width: 100%;
      min-width: 0;
    }
  }










  /* =========================================
   HOW IT WORKS SECTION
   ========================================= */

.how-it-works-section {
  background-color: var(--color-primary);
}

.how-it-works-title-block {
  margin-bottom: 40px;
}
.how-it-works-title-block h2, .how-it-works-title-block p {
  color: var(--color-white);
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.how-it-works-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-primary);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast);
}

.how-it-works-card:hover {
  transform: translateY(-4px);
  border-color: rgba(103, 158, 245, 0.28);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.how-it-works-number {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(103, 158, 245, 0.12);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.how-it-works-card h3 {
  font-size: 1.18rem;
}

.how-it-works-card p {
  color: var(--text-secondary);
  font-size: 0.96rem;
}

/* =========================================
   HOW IT WORKS RESPONSIVE
   ========================================= */

@media (max-width: 1024px) {
  .how-it-works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .how-it-works-grid {
    grid-template-columns: 1fr;
  }

  .how-it-works-card {
    padding: 24px 20px;
  }
}








  /* =========================================
   PRICING SECTION
   ========================================= */

.pricing-section {
  background: var(--color-white);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.pricing-head {
  text-align: center;
  margin-bottom: 32px;
}

.pricing-head h2 {
  margin-bottom: 10px;
}

.pricing-head p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-secondary);
}

.price-toggle {
  width: fit-content;
  display: flex;
  gap: 6px;
  background: #E9EEF7;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 6px;
  margin: 0 auto 28px;
}

.toggle-btn {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 11px 16px;
  border-radius: 10px;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  transition:
    background-color var(--transition-fast),
    color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.toggle-btn.active {
  background: var(--color-white);
  color: var(--text-primary);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

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

.price-card {
  position: relative;
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    transform 0.18s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.price-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.09);
  border-color: rgba(0, 0, 0, 0.08);
}

.price-card.featured {
  border: 1.5px solid rgba(103, 158, 245, 0.35);
  box-shadow: 0 16px 42px rgba(103, 158, 245, 0.16);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(103, 158, 245, 0.24);
}

.price-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price-header h3 {
  font-size: 1.1rem;
}

.pill {
  display: inline-block;
  background: rgba(103, 158, 245, 0.1);
  color: var(--color-primary);
  border: 1px solid rgba(103, 158, 245, 0.2);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.84rem;
  display: none;
}

.price-main {
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
  padding-top: 14px;
}

.price-figure {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--text-primary);
}

.price-figure .currency {
  font-weight: 800;
  font-size: 1.2rem;
}

.price-figure .amount {
  font-weight: 900;
  font-size: 2.2rem;
  font-family: var(--font-heading);
  line-height: 1;
}

.price-figure .per {
  font-weight: 700;
  color: var(--text-secondary);
}

.bundle {
  color: var(--text-primary);
  margin-top: 6px;
  font-size: 0.96rem;
}

.meta {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-top: 4px;
}

.price-points {
  display: grid;
  gap: 8px;
  color: var(--text-primary);
  font-size: 0.96rem;
}

.price-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.price-points i {
  color: var(--color-primary);
  margin-top: 4px;
  flex-shrink: 0;
}

.pricing-button {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

.pricing-note {
  margin-top: 24px;
  text-align: center;
}

.pricing-note p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* =========================================
   PRICING RESPONSIVE
   ========================================= */

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

  .price-badge {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .price-toggle {
    width: 100%;
  }

  .toggle-btn {
    flex: 1;
    text-align: center;
    padding: 11px 10px;
    font-size: 0.92rem;
  }

  .price-card {
    padding: 20px 18px 18px;
  }

  .price-header {
    flex-direction: column;
    align-items: flex-start;
  }
}






/* =========================================
   WHO LEARNDIT IS FOR (SPLIT STYLE)
   ========================================= */

   .who-learntit-is-for-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
  }
  
  .who-learntit-is-for-left {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  
  .who-learntit-is-for-description {
    color: var(--text-secondary);
    max-width: 480px;
  }
  
  .who-learntit-is-for-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  
  .who-learntit-is-for-row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--color-border);
  }
  
  .who-learntit-is-for-row span {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--color-primary);
    min-width: 28px;
  }
  
  .who-learntit-is-for-row p {
    font-size: 1rem;
    color: var(--text-primary);
  }
  
  /* =========================================
     RESPONSIVE
     ========================================= */
  
  @media (max-width: 1024px) {
    .who-learntit-is-for-layout {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  }


  /* =========================================
   TESTIMONIALS SECTION
   ========================================= */

.testimonials-title-block {
    margin-bottom: 40px;
  }
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 24px;
  }
  
  .testimonial-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-primary);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
  
  .featured-testimonial-card {
    border-color: rgba(103, 158, 245, 0.22);
    box-shadow: 0 16px 34px rgba(103, 158, 245, 0.08);
  }
  
  .testimonial-stars {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  .testimonial-stars i {
    font-size: 0.95rem;
    color: var(--color-primary);
  }
  
  .testimonial-quote {
    font-size: 1rem;
    color: var(--text-primary);
  }
  
  .testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: auto;
  }
  
  .testimonial-author h5 {
    font-size: 0.98rem;
  }
  
  .testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-secondary);
  }
  
  /* =========================================
     TESTIMONIALS RESPONSIVE
     ========================================= */
  
  @media (max-width: 1024px) {
    .testimonials-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 640px) {
    .testimonial-card {
      padding: 24px;
      gap: 18px;
    }
  }