:root {

  --selective-yellow: hsl(42, 94%, 55%);
  --eerie-black-1: hsl(0, 0%, 9%);
  --eerie-black-2: hsl(180, 3%, 7%);
  --quick-silver: hsl(0, 0%, 65%);
  --radical-red: hsl(351, 83%, 61%);
  --light-gray: hsl(0, 0%, 80%);
  --isabelline: hsl(36, 33%, 94%);
  --gray-x-11: hsl(0, 0%, 73%);
  --kappel_15: hsla(170, 75%, 41%, 0.15);
  --platinum: hsl(0, 0%, 90%);
  --gray-web: hsl(0, 0%, 50%);
  --black_80: hsla(0, 0%, 0%, 0.8);
  --white_50: hsla(0, 0%, 100%, 0.5);
  --black_50: hsla(0, 0%, 0%, 0.5);
  --black_30: hsla(0, 0%, 0%, 0.3);
  --kappel: hsl(258, 73%, 47%);
  --white: hsl(0, 0%, 100%);

  /**
   * gradient color
   */

  --gradient: linear-gradient(-90deg,hsl(151, 58%, 46%) 0%,hsl(170, 75%, 41%) 100%);

  /**
   * typography
   */

  --ff-league_spartan: 'League Spartan', sans-serif;
  --ff-poppins: 'Poppins', sans-serif; 

  --fs-1: 4.2rem;
  --fs-2: 3.2rem;
  --fs-3: 2.3rem;
  --fs-4: 1.8rem;
  --fs-5: 1.5rem;
  --fs-6: 1.4rem;
  --fs-7: 1.3rem;

  --fw-500: 500;
  --fw-600: 600;

  /**
   * spacing
   */

  --section-padding: 75px;

  /**
   * shadow
   */

  --shadow-1: 0 6px 15px 0 hsla(0, 0%, 0%, 0.05);
  --shadow-2: 0 10px 30px hsla(0, 0%, 0%, 0.06);
  --shadow-3: 0 10px 50px 0 hsla(220, 53%, 22%, 0.1);

  /**
   * radius
   */

  --radius-pill: 500px;
  --radius-circle: 50%;
  --radius-3: 3px;
  --radius-5: 5px;
  --radius-10: 10px;

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

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

li { list-style: none; }

a,
img,
span,
data,
input,
button,
ion-icon { display: block; }

a {
  color: inherit;
  text-decoration: none;
}

img { height: auto; }

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input { width: 100%; }

button { cursor: pointer; }

ion-icon { pointer-events: none; }

address { font-style: normal; }

html {
  font-family: var(--ff-poppins);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--gray-web);
  font-size: 1.6rem;
  line-height: 1.75;
}

:focus-visible { outline-offset: 4px; }

::-webkit-scrollbar { width: 10px; }

::-webkit-scrollbar-track { background-color: hsl(0, 0%, 98%); }

::-webkit-scrollbar-thumb { background-color: hsl(0, 0%, 80%); }

::-webkit-scrollbar-thumb:hover { background-color: hsl(0, 0%, 70%); }





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 15px; }

.section { padding-block: var(--section-padding); }

.shape {
  position: absolute;
  display: none;
}

.has-bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.h1,
.h2,
.h3 {
  color: var(--eerie-black-1);
  font-family: var(--ff-league_spartan);
  line-height: 1;
}

.h1,
.h2 { font-weight: var(--fw-600); }

.h1 { font-size: var(--fs-1); }

.h2 { font-size: var(--fs-2); }

.h3 {
  font-size: var(--fs-3);
  font-weight: var(--fw-500);
}

.section-title {
  --color: var(--radical-red);
  text-align: center;
}

.section-title .span {
  display: inline-block;
  color: var(--color);
}

.btn {
  background-color: var(--kappel);
  color: var(--white);
  font-family: var(--ff-league_spartan);
  font-size: var(--fs-4);
  display: flex;
  align-items: center;
  gap: 7px;
  max-width: max-content;
  padding: 10px 20px;
  border-radius: var(--radius-5);
  overflow: hidden;
}

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  position: absolute;
  content: "";
}

.btn::before {
  inset: 0;
  background-image: var(--gradient);
  z-index: -1;
  border-radius: inherit;
  transform: translateX(-100%);
  transition: var(--transition-2);
}

.btn:is(:hover, :focus)::before { transform: translateX(0); }

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  background-color: var(--light-gray);
  overflow: hidden;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-subtitle {
  font-size: var(--fs-5);
  text-transform: uppercase;
  font-weight: var(--fw-500);
  letter-spacing: 1px;
  text-align: center;
  margin-block-end: 15px;
}

.section-text {
  font-size: var(--fs-5);
  text-align: center;
  margin-block: 15px 25px;
}

.grid-list {
  display: grid;
  gap: 30px;
}

.category-card,
.stats-card { background-color: hsla(var(--color), 0.1); }

:is(.course, .blog) .section-title { margin-block-end: 40px; }





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn { display: none; }

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  padding-block: 12px;
  box-shadow: var(--shadow-1);
  z-index: 4;
}

.header.active { position: fixed; }

.header .container,
.header-actions,
.navbar .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.header-action-btn,
.nav-close-btn {
  position: relative;
  color: var(--eerie-black-1);
  font-size: 24px;
  transition: var(--transition-1);
}

.header-action-btn:is(:hover, :focus) { color: var(--kappel); }

.header-action-btn .btn-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: var(--kappel);
  color: var(--white);
  font-family: var(--ff-league_spartan);
  font-size: var(--fs-6);
  min-width: 20px;
  height: 20px;
  border-radius: var(--radius-circle);
}

.navbar {
  position: fixed;
  top: 0;
  left: -320px;
  background-color: var(--white);
  width: 100%;
  max-width: 320px;
  height: 100%;
  z-index: 2;
  transition: 0.25s var(--cubic-in);
}

.navbar.active {
  transform: translateX(320px);
  transition: 0.5s var(--cubic-out);
}

.navbar .wrapper {
  padding: 15px 20px;
  border-block-end: 1px solid var(--platinum);
}

.nav-close-btn {
  background-color: var(--white);
  box-shadow: var(--shadow-2);
  padding: 8px;
  border-radius: var(--radius-circle);
}

.nav-close-btn:is(:hover, :focus) {
  background-color: var(--kappel);
  color: var(--white);
}

.navbar-list { padding: 15px 20px; }

.navbar-item:not(:last-child) { border-block-end: 1px solid var(--platinum); }

.navbar-link {
  padding-block: 8px;
  font-weight: var(--fw-500);
  transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus) { color: var(--kappel); }

.overlay {
  position: fixed;
  inset: 0;
  background-color: var(--black_80);
  pointer-events: none;
  opacity: 0;
  z-index: 1;
  transition: var(--transition-1);
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}





/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero { padding-block-start: calc(var(--section-padding) + 80px); }

.hero .container {
  display: grid;
  gap: 40px;
}

.hero-text {
  color: var(--eerie-black-1);
  font-size: var(--fs-4);
  text-align: center;
  margin-block: 18px 20px;
}

.hero .btn { margin-inline: auto; }

.hero-banner {
  display: flex;
  width: 100%; 
  height: 100%; 
  /* gap: 30px; */
  z-index: 2;
}

.hero-banner .img-holder.one {
  border-top-right-radius: 30px;
  border-bottom-left-radius: 10px;
}

.hero-banner .img-holder.two {
  border-top-left-radius: 10px;
  border-bottom-right-radius: 30px;
}
/* body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: flex-end; /* Aligns content to the right side */
 */

.img-holder {
  height: 200%;
  width: 80%; /* Adjusts the width to cover half of the screen, you can change it */
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 30px;
  
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the container */
  border-top-left-radius: 10px;
  border-bottom-right-radius: 30px;
}





/*-----------------------------------*\
  #CATEGORY
\*-----------------------------------*/

.category .section-subtitle { color: var(--radical-red); }

.category .section-title { --color: var(--kappel); }

.category .section-text { margin-block-end: 40px; }

.category-card {
  padding: 50px 30px;
  text-align: center;
  border-radius: var(--radius-5);
}

.category-card .card-icon {
  background-color: hsla(var(--color), 0.1);
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-circle);
  margin-inline: auto;
  margin-block-end: 30px;
}

.category-card .card-text {
  color: var(--eerie-black-1);
  font-size: var(--fs-5);
  margin-block: 15px 25px;
}

.category-card .card-badge {
  background-color: hsla(var(--color), 0.1);
  color: hsl(var(--color));
  font-size: var(--fs-5);
  font-weight: var(--fw-500);
  padding: 2px 18px;
  max-width: max-content;
  margin-inline: auto;
  border-radius: var(--radius-5);
}





/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about {
  padding-block-start: 0;
  overflow: hidden;
}

.about .container {
  display: grid;
  gap: 30px;
}

.about-banner {
  position: relative;
  z-index: 1;
}

.about-banner .img-holder { border-radius: var(--radius-10); }

.about-shape-2 {
  display: block;
  bottom: -100px;
  left: -60px;
  animation: bounce 2.5s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% { transform: translateY(0); }

  40% { transform: translateY(-30px); }

  60% { transform: translateY(-15px); }
}

.about :is(.section-subtitle, .section-title, .section-text) {
  text-align: left;
}

.about-item {
  margin-block: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-item ion-icon {
  color: var(--selective-yellow);
  font-size: 20px;
  --ionicon-stroke-width: 50px;
}

.about-item .span {
  color: var(--eerie-black-1);
  font-family: var(--ff-league_spartan);
}





/*-----------------------------------*\
  #COURSE
\*-----------------------------------*/

.course { background-color: var(--isabelline); }

.course-card {
  position: relative;
  background-color: var(--white);
  border-radius: var(--radius-5);
  overflow: hidden;
}

.course-card .img-cover { transition: var(--transition-2); }

.course-card:is(:hover, :focus-within) .img-cover { transform: scale(1.1); }

.course-card :is(.abs-badge, .badge) {
  font-family: var(--ff-league_spartan);
  border-radius: var(--radius-3);
}

.course-card .abs-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--selective-yellow);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
  padding: 6px 8px;
  padding-block-end: 3px;
}

.course-card .abs-badge ion-icon {
  font-size: 18px;
  margin-block-end: 5px;
  --ionicon-stroke-width: 50px;
}

.course-card .card-content { padding: 25px; }

.course-card .badge {
  background-color: var(--kappel_15);
  max-width: max-content;
  color: var(--kappel);
  line-height: 25px;
  padding-inline: 10px;
}

.course-card .card-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-block: 15px 8px;
  transition: var(--transition-1);
}

.course-card .card-title:is(:hover, :focus) { color: var(--kappel); }

.course-card :is(.wrapper, .rating-wrapper, .card-meta-list, .card-meta-item) {
  display: flex;
  align-items: center;
}

.course-card .wrapper { gap: 10px; }

.course-card .rating-wrapper { gap: 3px; }

.course-card .rating-wrapper ion-icon { color: var(--selective-yellow); }

.course-card .rating-text {
  color: var(--eerie-black-1);
  font-size: var(--fs-6);
  font-weight: var(--fw-500);
}

.course-card .price {
  color: var(--radical-red);
  font-family: var(--ff-league_spartan);
  font-size: var(--fs-4);
  font-weight: var(--fw-600);
  margin-block: 8px 15px;
}

.course-card .card-meta-list { flex-wrap: wrap; }

.course-card .card-meta-item {
  position: relative;
  gap: 5px;
}

.course-card .card-meta-item:not(:last-child)::after {
  content: "|";
  display: inline-block;
  color: var(--platinum);
  padding-inline: 10px;
}

.course-card .card-meta-item ion-icon {
  color: var(--quick-silver);
  --ionicon-stroke-width: 50px;
}

.course-card .card-meta-item .span {
  color: var(--eerie-black-1);
  font-size: var(--fs-7);
}

.course .btn {
  margin-inline: auto;
  margin-block-start: 60px;
}





/*-----------------------------------*\
  #VIDEO
\*-----------------------------------*/

.video {
  background-size: contain;
  background-position: center top;
}

.video-banner {
  position: relative;
  border-top-right-radius: 80px;
  border-bottom-left-radius: 120px;
}

.video .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--radical-red);
  font-size: 30px;
  padding: 16px;
  color: var(--white);
  border-radius: var(--radius-circle);
  box-shadow: 0 0 0 0 var(--white_50);
  z-index: 1;
  animation: pulse 3s ease infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 var(--white_50); }
  100% { box-shadow: 0 0 0 20px transparent; }
}


/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  background-repeat: no-repeat;
  background-color: var(--eerie-black-2);
  color: var(--gray-x-11);
  font-size: var(--fs-5);
}

.footer-top {
  display: grid;
  gap: 30px;
}

.footer-brand-text { margin-block: 20px; }

.footer-brand .wrapper {
  display: flex;
  gap: 5px;
}

.footer-brand .wrapper .span { font-weight: var(--fw-500); }

.footer-link { transition: var(--transition-1); }

.footer-link:is(:hover, :focus) { color: var(--kappel); }

.footer-list-title {
  color: var(--white);
  font-family: var(--ff-league_spartan);
  font-size: var(--fs-3);
  font-weight: var(--fw-600);
  margin-block-end: 10px;
}

.footer-list .footer-link { padding-block: 5px; }

.newsletter-form { margin-block: 20px 35px; }

.newsletter-form .input-field {
  background-color: var(--white);
  padding: 12px;
  border-radius: var(--radius-5);
  margin-block-end: 20px;
}

.newsletter-form .btn {
  min-width: 100%;
  justify-content: center;
}

.social-list {
  display: flex;
  gap: 25px;
}

.social-link { font-size: 20px; }

.footer-bottom {
  border-block-start: 1px solid var(--eerie-black-1);
  padding-block: 30px;
}

.copyright { text-align: center; }

.copyright-link {
  color: var(--kappel);
  display: inline-block;
}





/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 40px;
  right: 30px;
  background-color: var(--kappel);
  color: var(--white);
  font-size: 20px;
  padding: 15px;
  border-radius: var(--radius-circle);
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-1);
}

.back-top-btn.active {
  transform: translateY(10px);
  opacity: 1;
  pointer-events: all;
}





/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for large than 575px screen
 */

@media (min-width: 575px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 520px;
    width: 100%;
    margin-inline: auto;
  }

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

  :is(.course, .blog) .grid-list { grid-template-columns: 1fr; }



  /**
   * HEADER
   */

  .header .container { max-width: unset; }

  .header-actions { gap: 30px; }



  /**
   * HERO
   */

  .hero-banner { grid-template-columns: 1fr 0.9fr; }



  /**
   * VIDEO
   */

  .video .play-btn { padding: 25px; }



  /**
   * STATS
   */

  .stats-card { padding: 40px 30px; }



  /**
   * FOOTER
   */

  .footer-brand,
  .footer-list:last-child { grid-column: 1 / 3; }

  .newsletter-form {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .newsletter-form .input-field { margin-block-end: 0; }

  .newsletter-form .btn { min-width: max-content; }

}





/**
 * responsive for large than 768px screen
 */

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 4.6rem;
    --fs-2: 3.8rem;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 720px; }

  .btn { padding: 15px 30px; }

  :is(.course, .blog) .grid-list { grid-template-columns: 1fr 1fr; }



  /**
   * HEADER
   */

  .header .container { padding-inline: 30px; }

  .header .btn {
    display: flex;
    padding: 10px 30px;
    margin-inline: 20px;
  }



  /**
   * HERO
   */

  .hero { padding-block-start: calc(var(--section-padding) + 90px); }

  .hero .container { gap: 50px; }

  .hero-text { margin-block-end: 30px; }

  .hero-banner {
    position: relative;
    z-index: 1;
  }

  .hero-banner .img-holder { max-width: max-content; }

  .hero-banner .img-holder.one { justify-self: flex-end; }

  .hero-banner .img-holder.two { margin-block-start: 100px; }

  .hero-shape-1 {
    display: block;
    position: absolute;
    bottom: -40px;
    left: -10px;
  }



  /**
   * ABOUT
   */

  .about { padding-block-start: 50px; }

  .about-banner {
    padding: 60px;
    padding-inline-end: 0;
  }

  .about-banner .img-holder {
    max-width: max-content;
    margin-inline: auto;
  }

  .about-shape-1 {
    display: block;
    top: -40px;
    right: -70px;
  }



  /**
   * FOOTER
   */

  .footer-brand,
  .footer-list:last-child { grid-column: auto; }

  .newsletter-form .btn { padding-block: 10px; }

}





/**
 * responsive for large than 992px screen
 */

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 5.5rem;
    --fs-2: 4.5rem;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 960px; }

  .grid-list { grid-template-columns: repeat(4, 1fr); }

  :is(.course, .blog) .grid-list { grid-template-columns: repeat(3, 1fr); }



  /**
   * HERO
   */

  .hero .container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .hero .section-title,
  .hero-text { text-align: left; }

  .hero .btn { margin-inline: 0; }



  /**
   * ABOUT
   */

  .about .container {
    grid-template-columns: 1fr 0.6fr;
    align-items: center;
    gap: 60px;
  }



  /**
   * VIDEO
   */

  .video-banner {
    max-width: 75%;
    margin-inline: auto;
  }



  /**
   * FOOTER
   */

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

}





/**
 * responsive for large than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 6.5rem;

    /**
     * spacing
     */

    --section-padding: 120px;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 1185px; }

  .shape { display: block; }

  .about-content,
  .video-card,
  .blog { position: relative; }



  /**
   * HEADER
   */

  .header-action-btn:last-child,
  .navbar .wrapper,
  .overlay { display: none; }

  .header.active {
    transform: translateY(-100%);
    animation: slideIn 0.5s ease forwards;
  }

  @keyframes slideIn {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(0); }
  }

  .navbar,
  .navbar.active { all: unset; }

  .navbar-list {
    display: flex;
    gap: 50px;
    padding: 0;
  }

  .navbar-item:not(:last-child) { border-block-end: none; }

  .navbar-link {
    color: var(--eerie-black-1);
    padding-block: 20px;
  }

  .header .btn { margin-inline-end: 0; }



  /**
   * HERO
   */

  .hero { padding-block-start: calc(var(--section-padding) + 120px); }

  .hero .container { gap: 80px; }

  .hero-shape-2 {
    top: -80px;
    z-index: -1;
  }



  /**
   * ABOUT
   */

  .about .container { gap: 110px; }

  .about-banner .img-holder { margin-inline: 0; }

  .about-shape-3 {
    top: -20px;
    left: -100px;
    z-index: -1;
  }

  .about-content { z-index: 1; }

  .about-shape-4 {
    top: 30px;
    right: -60px;
    z-index: -1;
  }



  /**
   * VIDEO
   */

  .video-shape-1 {
    top: -50px;
    left: 0;
  }

  .video-shape-2 {
    top: -80px;
    right: 120px;
    z-index: 1;
  }



  /**
   * BLOG
   */

  .blog-shape {
    top: 0;
    left: 0;
  }

}


p{
margin-bottom: 10px;
}




p{
margin-bottom: 10px;
}

.FcC-home {
  --purple-1: #7c3aed;
  --purple-2: #9333ea;
  --purple-3: #a855f7;
  --orange-1: #f97316;
  --orange-2: #fb923c;
  --gold-1: #f5c542;
  --gold-2: #facc15;
  --ink: #111827;
  --muted: #475569;
  --surface: #ffffff;
  --surface-soft: #faf7ff;
  --surface-warm: #fffaf3;
  --border: rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 10px 24px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 18px 40px rgba(124, 58, 237, 0.12);
  --radius-xl: 24px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --gradient-main: linear-gradient(90deg, #7c3aed 0%, #a855f7 50%, #f97316 100%);
  --gradient-btn: linear-gradient(90deg, #7c3aed 0%, #9333ea 100%);
}

.FcC-home * { box-sizing: border-box; }
.FcC-home img { max-width: 100%; display: block; }
.FcC-home a { text-decoration: none; }

.home-section { padding: 90px 0; }

.home-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* padding: 8px 18px; */
  border-radius: 999px;
  background: #f5e9db;
  color: #b45309;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.home-eyebrow--purple {
  background: #f2e8ff;
  color: var(--purple-1);
}

.home-title {
  font-family: "League Spartan", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #0b1220;
  margin: 0;
}

.text-purple { color: var(--purple-2); }
.text-orange { color: var(--orange-1); }

.section-title-md {
  font-family: "League Spartan", sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: #0b1220;
}

.section-head { margin-bottom: 42px; }
.section-head--center { text-align: center; }

.section-subtext {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}

.section-subtext--left {
  margin: 0;
  max-width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn-primary {
  color: #fff;
  background: var(--gradient-btn);
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.24);
}

.btn-primary:hover { transform: translateY(-2px); }

.btn-outline {
  color: var(--purple-1);
  background: #fff;
  border: 2px solid var(--purple-1);
}

.btn-outline:hover { background: #f8f2ff; }

.btn-white {
  color: var(--purple-1);
  background: #fff;
  min-width: 280px;
  font-weight: 800;
}

.btn-gold {
  color: #6b3f00;
  background: linear-gradient(180deg, #ffd65a 0%, #f5bf2f 100%);
  box-shadow: inset 0 -3px 0 rgba(181, 129, 0, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
}

.btn-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 15px;
}

.home-hero {
  padding: 70px 0 44px;
  background: linear-gradient(180deg, #faf7ff 0%, #ffffff 100%);
}

.home-hero__grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 50px;
  align-items: center;
}

.home-hero__text {
  font-size: 18px;
  color: var(--muted);
  max-width: 700px;
  margin-top: 22px;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.hero-reviews {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.hero-review-box {
  min-width: 220px;
  padding: 14px 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.hero-review-logo {
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  margin-bottom: 8px;
}

.google-text {
  color: #4285f4;
}

.trustpilot-text {
  color: #00b67a;
}

.hero-review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #334155;
  font-size: 14px;
}

.hero-review-meta strong {
  color: #0f172a;
  font-size: 15px;
}

.home-hero__media img {
  width: 100%;
  border-radius: 26px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.trust-strip {
  padding: 18px 0;
  background: #fff;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fbf7ff;
  border: 1px solid rgba(124, 58, 237, 0.08);
  border-radius: 16px;
  padding: 16px 18px;
  min-height: 72px;
  color: #312e81;
  font-weight: 600;
}

.trust-item__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #efe5ff;
  font-size: 18px;
  flex-shrink: 0;
}

.why-parents {
  background: linear-gradient(180deg, #ffffff 0%, #fcf8ff 100%);
}

.why-parents__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  background: #fff;
  border: 1px solid rgba(124, 58, 237, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.06);
}

.why-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #f3e8ff, #ffedd5);
  font-size: 24px;
  margin-bottom: 16px;
}

.why-card h3 {
  font-family: "League Spartan", sans-serif;
  font-size: 1.7rem;
  margin: 0 0 10px;
  color: #0f172a;
}

.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.stats-strip {
  padding: 40px 0;
  background: var(--gradient-main);
}

.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  text-align: center;
}

.stats-item h3 {
  font-family: "League Spartan", sans-serif;
  font-size: clamp(2.3rem, 4vw, 4rem);
  color: #fff;
  margin: 0 0 4px;
}

.stats-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
}

.getting-started__inner {
  background: #fafafa;
  border-radius: 34px;
  padding: 52px 40px;
}

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

.step-card {
  text-align: left;
  padding: 8px 8px 0;
}

.step-card__visual {
  width: 35px;
  height: 35px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  font-family: "League Spartan", sans-serif;
  font-size: 3rem;
  color: #fff;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}

.step-card__visual--purple { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }
.step-card__visual--pink { background: linear-gradient(135deg, #f0abfc, #f9a8d4); }
.step-card__visual--lime { background: linear-gradient(135deg, #d9f99d, #bef264); color: #365314; }

.step-card h3 {
  font-family: "League Spartan", sans-serif;
  font-size: 1.8rem;
  margin: 0 0 8px;
  color: #0f172a;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.getting-started__cta {
  margin-top: 34px;
  text-align: center;
}

.courses-showcase {
  background: #fff;
}

.course-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 10px 18px;
  border-radius: 14px;
  background: #fbf3c0;
  color: #725400;
  font-weight: 700;
}

.course-grid-alt {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 30px;
  margin-bottom: 34px;
}

.course-panel {
  border-radius: 28px;
  padding: 30px 30px 0;
  overflow: hidden;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.course-panel--lavender {
  background: #eef0ff;
  border-bottom: 6px solid #d5d9ff;
}

.course-panel--cream {
  background: #f7efe1;
  border-bottom: 6px solid #ecdfc9;
}

.course-panel--mint {
  background: #dff5f4;
  border-bottom: 6px solid #c4eded;
}

.course-panel__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 26px;
}

.course-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 10px;
  background: #f5d262;
  color: #8a5c00;
  font-size: 14px;
  font-weight: 700;
}

.course-badge--new {
  background: #b794f4;
  color: #fff;
}

.course-icon-bubble {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.45);
  font-size: 38px;
}

.course-panel h3 {
  font-family: "League Spartan", sans-serif;
  font-size: 3rem;
  line-height: 1;
  margin: 0 0 12px;
  color: #0f172a;
}

.course-panel p {
  color: #334155;
  font-size: 17px;
  max-width: 250px;
  margin: 0 0 34px;
}

.course-meta-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  color: #0f172a;
  font-size: 16px;
  margin-top: auto;
  margin-bottom: 26px;
}

.course-panel__footer {
  margin-left: -30px;
  margin-right: -30px;
  padding: 24px 30px 28px;
  border-top: 1px solid rgba(80, 90, 120, 0.14);
}

.compact-courses-grid {
  margin-top: 12px;
}

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

.compact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.compact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
}

.compact-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.course-card__body {
  padding: 18px;
}

.course-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.level-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.level-tag--green { background: #dcfce7; color: #15803d; }
.level-tag--yellow { background: #fef3c7; color: #a16207; }
.level-tag--red { background: #fee2e2; color: #b91c1c; }

.rating {
  color: #334155;
  font-size: 15px;
  font-weight: 700;
}

.compact-card h3 {
  font-family: "League Spartan", sans-serif;
  font-size: 2rem;
  line-height: 1;
  margin: 0 0 8px;
  color: #0f172a;
}

.compact-card p {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 14px;
  min-height: 48px;
}

.course-card__details {
  color: #334155;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}

.course-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.price {
  font-family: "League Spartan", sans-serif;
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  color: var(--purple-1);
}

.price span {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
  margin-left: 2px;
}

.enroll-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 10px;
  background: linear-gradient(90deg, #f97316, #fb923c);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}

.about-preview {
  background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
}

.about-preview__grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 42px;
  align-items: center;
}

.about-preview__image img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
}

.about-preview__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 26px 0 28px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-feature__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f2e8ff;
  color: var(--purple-1);
  font-size: 20px;
  flex-shrink: 0;
}

.about-feature h3 {
  font-size: 18px;
  margin: 0 0 4px;
  color: #0f172a;
}

.about-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.testimonials-section {
  background: #fff;
}

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

.testimonial-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.testimonial-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gradient-btn);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-card h3 {
  font-family: "League Spartan", sans-serif;
  font-size: 1.7rem;
  margin: 0 0 3px;
  color: #0f172a;
}

.testimonial-card__top p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.testimonial-stars {
  color: #facc15;
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.testimonial-card blockquote {
  margin: 0;
  color: #334155;
  font-size: 17px;
  font-style: italic;
}

.testimonial-country {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #f8fafc;
  color: #334155;
  font-size: 14px;
  font-weight: 600;
}

.testimonials-cta {
  text-align: center;
  margin-top: 34px;
}

.home-cta {
  padding: 88px 0;
  background: var(--gradient-main);
  text-align: center;
}

.home-cta__inner h2 {
  font-family: "League Spartan", sans-serif;
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  line-height: 1;
  color: #fff;
  margin: 0 0 16px;
}

.home-cta__inner p {
  max-width: 780px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 20px;
}

@media (max-width: 1100px) {
  .trust-strip__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-parents__grid,
  .course-grid,
  .testimonial-grid,
  .stats-strip__grid,
  .about-preview__features,
  .course-grid-alt,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-preview__grid,
  .home-hero__grid {
    grid-template-columns: 1fr;
  }

  .about-preview__image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .home-section,
  .home-hero {
    padding: 64px 0;
  }

  .section-subtext,
  .home-hero__text,
  .home-cta__inner p {
    font-size: 16px;
  }

  .trust-strip__grid,
  .why-parents__grid,
  .course-grid,
  .testimonial-grid,
  .stats-strip__grid,
  .about-preview__features,
  .course-grid-alt,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero-reviews {
    flex-direction: column;
  }

  .hero-review-box {
    width: 100%;
  }

  .course-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .enroll-btn,
  .btn-small {
    width: 100%;
  }

  .compact-card img {
    height: 200px;
  }

  .getting-started__inner {
    padding: 34px 20px;
  }

  .course-panel {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .btn,
  .btn-primary,
  .btn-outline,
  .btn-white,
  .btn-gold {
    width: 100%;
  }

  .home-hero__actions {
    flex-direction: column;
  }

  .testimonial-card,
  .why-card,
  .course-card__body,
  .trust-item {
    padding-left: 16px;
    padding-right: 16px;
  }

  .compact-card h3,
  .course-panel h3 {
    font-size: 1.75rem;
  }
}

