:root {
    /* Brand */
    --color-primary: #f6a11e;
    --color-secondary: #111827; /* deep neutral (used for headings/icons) */

    /* Primary variants */
    --color-primary-50: #fff7e6;
    --color-primary-100: #ffe9bf;
    --color-primary-200: #ffd58a;
    --color-primary-300: #ffc155;
    --color-primary-400: #ffb22f;
    --color-primary-500: #f6a11e; /* primary */
    --color-primary-600: #e28f0b;
    --color-primary-700: #c67800;

    /* Secondary variants (neutral) */
    --color-secondary-50: #f9fafb;
    --color-secondary-100: #f3f4f6;
    --color-secondary-200: #e5e7eb;
    --color-secondary-300: #d1d5db;
    --color-secondary-400: #9ca3af;
    --color-secondary-500: #6b7280;
    --color-secondary-600: #4b5563;
    --color-secondary-700: #374151;
    --color-secondary-800: #1f2937;
    --color-secondary-900: #111827;

    /* Text */
    --color-text: #111111;
    --color-text-muted: #6b7280;
    --color-text-subtle: #374151;
    --color-text-inverse: #ffffff;

    /* Background */
    --color-bg: #ffffff;
    --color-bg-soft: #fafafa;
    --color-bg-tint: #fff7e6; /* warm tint */

    /* Borders */
    --color-border: #e5e7eb;
    --color-border-soft: #f1f5f9;

    /* Surfaces */
    --color-surface: #ffffff;
    --color-surface-hover: #f8fafc;

    /* Shadows (color tokens only) */
    --color-shadow: rgba(0, 0, 0, 0.1);
    --color-shadow-soft: rgba(0, 0, 0, 0.06);

    /* States */
    --color-focus: rgba(246, 161, 30, 0.35);
    --color-focus-ring: rgba(246, 161, 30, 0.18);

    --bg: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --border: #e5e7eb;

    --shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    --shadowHover: 0 14px 40px rgba(15, 23, 42, 0.14);
    --radius: 18px;

    /* BRAND */
    --brand: #f6a11e;
    --brandBorder: rgba(246, 161, 30, 0.35);
    --brandShadow: rgba(246, 161, 30, 0.22);

    --badgeBg: #fff4e0;
    --badgeText: #a35a00;

    --gap: 16px; /* keep in sync with JS */
}

/* ================================
   GLOBAL BASE STYLES
   File: css/globals/base.css
=================================== */

html,
body {
    font-family: "Libre Franklin", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, Arial, sans-serif;

    color: var(--color-text);
    background: var(--color-bg);
    margin: 0px;
    
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    box-sizing: border-box;
}
a {
    text-decoration: none;
    color: inherit;
}
button {
    font: inherit;
}

.section {
    display: Flex;
    justify-content: center;
}

/* ================= HEADER ================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--color-bg, #fff);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.site-header,
.header__inner{
  overflow: visible;
}

.header__inner{
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* logo */
.header__logo img{
  height: 80px;
  width: auto;
  display: block;
}

/* burger */
.header__burger{
  width:42px;
  height:42px;
  border:0;
  background:transparent;
  display:none; /* desktop hidden */
  cursor:pointer;
  padding:8px;
  border-radius:10px;

  /* important */
  flex-direction:column;
  justify-content:center;
  align-items:center;
}
.header__burger span{
  display:block;
  width:22px;        /* IMPORTANT */
  height:2px;
  background:#111;
  margin:4px 0;
  border-radius:99px;
}

/* desktop nav */
.header__nav{
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: 18px;
  flex: 1;
  min-width: 0;
}

.header__nav .nav-item{
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* links */
.header__link,
.header__nav .nav-link{
  background: transparent;
  border: 0;
  padding: 8px 0;
  cursor: pointer;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
      display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 8px;
}

.header__nav .nav-link:hover{
  color: var(--color-primary, #F6A11E);
}

/* dropdown positioning under each menu item */
.header__nav .nav-item .dropdown{
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 2000;
  min-width: 260px;
}

/* "open" state controlled by JS data-open */
.header__nav .nav-item.has-dd .dropdown{
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .18s ease;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  padding: 10px;
  margin-top: 10px;
}

.dropdown::before{
  content:"";
  position:absolute;
  top:-8px;
  left:34px;
  width:14px;
  height:14px;
  background: var(--color-surface);
  border-left:1px solid var(--color-border-soft);
  border-top:1px solid var(--color-border-soft);
  transform: rotate(45deg);
}

.header__nav .nav-item.has-dd[data-open="true"] .dropdown{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* simple dropdown list */
.dd-list{
  display: flex;
  flex-direction: column;
  padding: 4px 0;
  gap: 4px;
}
.dd-item{
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #111;
  font-weight: 600;
}
.dd-item:hover{
  background: var(--color-surface-hover);
  color: var(--color-primary);
}

/* Courses mega dropdown bits (optional) */
.courses-dd .two-selects{
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  flex-direction: column;
  padding: 4px;
}
.courses-dd .select-like{
  flex: 1;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 10px;
  padding: 12px 12px;
  font-weight: 500;
  cursor: pointer;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  user-select: none;
  color: var(--color-text);
}
.courses-dd .select-like:hover{
  border-color: rgba(246,161,30,.55);
  box-shadow: 0 0 0 4px rgba(246,161,30,.12);
}

.select-like.active{
  color: var(--color-primary);
  background: rgba(246,161,30,.08);
  border-color: var(--color-focus);
}

.courses-dd .subpanel{
  display: none;
  background: #fff;
  border-radius: 10px;
  padding: 6px 0;
  position: absolute;
    top: 12px;
    left: calc(100% + 2px);
    width: 260px;
    border: 1px solid var(--color-border-soft);
    box-shadow: 0 12px 30px var(--color-shadow);
}

.subpanel::before{
  content:"";
  position:absolute;
  top:22px;
  left:-7px;
  width:14px;
  height:14px;
  background: var(--color-surface);
  border-left:1px solid var(--color-border-soft);
  border-bottom:1px solid var(--color-border-soft);
  transform: rotate(45deg);
}
.courses-dd[data-panel="type"] .panel-type{ display: block; }
.courses-dd[data-panel="field"] .panel-field{ display: block; }

.courses-dd .subpanel a{
  display: block;
  padding: 10px 12px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
  border-radius: 8px;
}
.courses-dd .subpanel a:hover{
  background: rgba(246,161,30,.10);
   color: var(--color-primary);
}

/* Right actions */
.header__actions{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  flex-wrap: nowrap;
  margin-left: 0px;
}



.header__actions > *{
  flex: 0 0 auto;
}

/* icon button */
.header__iconbtn{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* divider */
.header__divider{
  width: 1px;
  height: 26px;
  background: rgba(0,0,0,.10);
}

/* user dropdown */
.user-dd{
  position: relative;
  height: 42px;
  align-items: center;
}
.header__userBtn{
  border: 0;
  background: transparent;
  font-weight: 800;
  cursor: pointer;
  color: #111;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.user-dropdown{
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .18s ease;
  z-index: 2000;
  margin-top: 12px;
}
.user-dd[data-open="true"] .user-dropdown{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.user-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 5px;
  text-decoration: none;
  font-weight: 400;
  color: #4D5C6D;
  transition: background .2s ease;
  font-size: 14px;
}
.user-dropdown a:hover{
  background: rgba(246,161,30,.10);
  color: var(--color-primary);
}

.user-icon {
  width: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #888;
}

.user-dropdown a:hover .user-icon {
  color: var(--color-primary);
}

.user-dropdown .logout {
  border-top: 1px solid rgba(0,0,0,.06);
  margin-top: 6px;
}

/* CTA */
.header__cta{
  text-decoration: none;
  background: var(--color-primary, #F6A11E);
  color: #fff;
  font-weight: 800;
  padding: 10px 16px;
  border-radius: 999px;
  white-space: nowrap;
  border: 0;
  cursor: pointer;
}

.signIn {
   
    color: #black;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 500;
    border: 0;
    cursor: pointer;
    white-space: nowrap;
    display: none;
}

.signUp {
    background: var(--color-primary);
    color: var(--color-text-inverse);
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 500;
    border: 0;
    cursor: pointer;
    white-space: nowrap;
    display: none;
    /*box-shadow: 0 6px 14px rgba(246, 161, 30, .25);*/
}

/* Desktop-only blocks */
.header__desktopOnly{ display: flex; }

.chev{
  width:7px;
  height:7px;
  display:inline-block;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform: rotate(45deg);
  margin-top:-2px;
  opacity:.8;
}

.my-course-btn{
  background: var(--color-primary);
  color: var(--color-text-inverse);
  padding:10px 16px;
  border-radius:999px;
  font-weight:400;
  border:0;
  cursor:pointer;
  white-space:nowrap;
  box-shadow: 0 6px 14px rgba(246,161,30,.25);
  display: none;
}
.cta:hover{ filter: brightness(.98); }

.icon-btn{
  width:38px;
  height:38px;
  border-radius:10px;
  display:grid;
  place-items:center;
  border:1px solid transparent;
  background: transparent;
  cursor:pointer;
  color: var(--color-secondary-900);
}
.icon-btn:hover{
  border-color: var(--color-border);
  background: var(--color-bg-soft);
}
.divider{
  width:1px;
  height:26px;
  background: var(--color-border);
}

.user-btn{
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:10px;
  border:1px solid transparent;
  cursor:pointer;
  background: var(--color-bg);
  font-weight:400;
  color: var(--color-text);
  display: none;
}
.user-btn:hover{
  border-color: var(--color-border);
  background: var(--color-bg-soft);
}

/* ================= MOBILE BREAKPOINT ================= */
@media (max-width: 980px){
  .header__burger{
    display:flex;   /* IMPORTANT — not inline-block */
  }
  .header__nav{ display: none; }
  .header__desktopOnly{ display: none !important; }

  .header__inner{
    justify-content: space-between;
  }

  .header__logo{
    margin: 0 auto;
  }
  
  .signIn {
   
    padding: 7px 10px;
}

.signUp {
    padding: 7px 10px;
    /*box-shadow: 0 6px 14px rgba(246, 161, 30, .25);*/
}

.header__inner {
    padding: 7px 8px;
    gap: 8px;
}

/* logo */
.header__logo img{
  height: 65px;
}

}

/* ================= DRAWER ================= */
.drawer{
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
}
.drawer.is-open{
  pointer-events: auto;
}

.drawer__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  transition: opacity .2s ease;
}
.drawer.is-open .drawer__overlay{
  opacity: 1;
}

/* panel (MUST remain absolute for slide) */
.drawer__panel{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: min(88vw, 360px);
  background: #fff;
  transform: translateX(-105%);
  transition: transform .25s ease;
  display: flex;
  flex-direction: column;
}
.drawer.is-open .drawer__panel{
  transform: translateX(0);
}

/* top profile bar */
.drawer__top{
  padding: 16px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.drawer__profile{
  display: flex;
  align-items: center;
  gap: 12px;
  display: none;
}

.mobile_logo {
    display: none;
}
.drawer__avatar{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #e9e9e9;
}
.drawer__name{
  font-weight: 600;
  color: #111;
  line-height: 1.1;
}
.drawer__account{
  font-size: 12px;
  color: rgba(0,0,0,.55);
  text-decoration: none;
}
.drawer__close{
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  border-radius: 10px;
}

/* nav scroll */
.drawer__nav{
  padding: 10px 0;
  overflow: auto; /* allows full expansion without overlap */
  -webkit-overflow-scrolling: touch;
}

/* items */
.drawer__item{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  text-decoration: none;
  color: #111;
  font-weight: 400;
}
.drawer__item:hover{
  background: rgba(0,0,0,.03);
}

.drawer__icon{
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* accordion container */
.drawer__acc{
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

/* accordion button */
.drawer__accBtn{
  width: 100%;
  padding: 14px 16px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  color: #111;
}

.drawer__left{
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-weight: 400;
}

/* chevron */
.drawer__chev{
  transition: transform .2s ease;
  color: #111;
}

/* MAIN panel (IMPORTANT: no fixed max-height here; JS sets it) */
.drawer__accPanel,
.drawer__subAccPanel{
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
  background: #fff;
}

/* open state: only rotate chevron, do NOT cap height */
.drawer__acc.is-open .drawer__chev{
  transform: rotate(180deg);
}

.drawer__acc.is-open > .drawer__accPanel{
  max-height: 2000px; /* big enough */
}

/* nested accordion (Choose Course Type / Choose Field) */
.drawer__subAcc{
  border-top: 1px solid rgba(0,0,0,.05);
}

.drawer__subAccBtn{
  width: 100%;
  padding: 12px 16px 12px 52px;
  border: 0;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 800;
  color: #111;
}

.drawer__subAccPanel{
  max-height: 0;
  overflow: hidden;
  transition: max-height .22s ease;
  background: #fff;
}

/* sub links */
.drawer__subItem,
.drawer__subLink{
  display: block;
  padding: 12px 16px 12px 72px;
  text-decoration: none;
  color: #111;
  font-weight: 600;
}
.drawer__subItem:hover,
.drawer__subLink:hover{
  background: rgba(246,161,30,.10);
}

/* active highlight */
.drawer__accBtn.is-active,
.drawer__item.is-active{
  color: var(--color-primary, #F6A11E);
}
.drawer__accBtn.is-active .drawer__icon,
.drawer__item.is-active .drawer__icon{
  color: var(--color-primary, #F6A11E);
}

 


/* ================================
   HERO SLIDE ANIMATION (RTL)
=================================== */









/* big rounded feel at bottom like screenshot */
/*.hero__inner::after{*/
/*  content:"";*/
/*  position:absolute;*/
/*  left:0; right:0;*/
/*  bottom:-90px;*/
/*  height: 180px;*/
/*  background: rgba(255,255,255,.55);*/
/*  border-radius: 999px;*/
/*  filter: blur(0px);*/
/*}*/


.user-dd {
  position: relative;
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 1000;
  min-width: 180px;
}

/* ===== Mobile drawer nested accordion (Choose Course Type/Field) ===== */

.drawer__subAcc{
  border-top: 1px solid rgba(0,0,0,.06);
}

.drawer__subAccBtn{
  width: 100%;
  border: 0;
  background: transparent;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: #111;
  font-weight: 600;
}

.drawer__subIcon{
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: #111;
}

.drawer__subAccBtn .drawer__left{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
}

.drawer__subAccBtn .drawer__chev{
  display: inline-flex;
  transition: transform .2s ease;
  color: #777;
}

.drawer__subAcc.is-open .drawer__subAccBtn .drawer__chev{
  transform: rotate(180deg);
  color: var(--color-primary, #f6a11e);
}

.drawer__subAcc.is-open > .drawer__subAccPanel{
  max-height: 1200px; /* big enough */
}

.drawer__acc.is-open .drawer__chev{
  transform: rotate(180deg);
}

/* Panel animation */
.drawer__subAccPanel{
  max-height: 0px;
  overflow: hidden;
  transition: max-height .25s ease;
  padding: 0 0;
}

/* Links inside */
.drawer__subLink{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 54px; /* indent like screenshot */
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

.drawer__subLink:hover{
  background: rgba(0,0,0,.03);
}

/* square checkbox look */
.drawer__box{
  width: 16px;
  height: 16px;
  border: 1.5px solid rgba(0,0,0,.25);
  border-radius: 3px;
  background: transparent;
  flex: 0 0 auto;
}



/* Responsive */
@media (max-width: 1100px){
  .hero__content{ padding-left: 40px; }
  .hero__title{ font-size: 52px; }
  .hero__visual{ width: 480px; right: 24px; }
}

@media (max-width: 900px){
  .hero__inner{
    padding-bottom: 170px;
  }

  .hero__visual{
    position: static;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    padding: 0 16px 10px;
  }

  .hero__content{
    padding: 58px 20px 20px;
    max-width: 100%;
    text-align: center;
  }
   .hero-dots {
        justify-content: center;
    }
  

  .hero__stats{
    grid-template-columns: repeat(2, 1fr);
    width: calc(100% - 32px);
  }
}

@media (max-width: 520px){
  .hero__title{ font-size: 40px; }
  .hero__subtitle{ font-size: 16px; }
  .hero__stats{ grid-template-columns: 1fr; }
}

.drawer__svg{
  width: 20px;
  height: 20px;
  display: block;
}

.drawer__icon{
  width: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111; /* uses currentColor */
}

.drawer__subItem {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 16px 12px 52px;
  text-decoration: none;
  color: #111;
  font-weight: 400;
}

.drawer__subIcon {
  width: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
}

.mobile_register {
    display: none;
}

.header--scrolled {
  box-shadow: 
    0 1px 0 0 rgba(139, 141, 157, .05),
    0 5px 10px -7px rgba(65, 71, 108, .25);
  transition: box-shadow 0.25s ease;
}
/* =========================
   SEARCH POPUP
========================= */
.searchPopup{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}

.searchPopup.is-open{
   display: block;
}

.searchPopup__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.25);
  pointer-events: auto;
}

.searchPopup.is-open .searchPopup__overlay{
  opacity: 1;
}

.searchPopup__panel{
  position: relative;
  width: 100%;
  z-index: 2;
}

.searchPopup__inner {
    width: min(1300px, calc(100% - 32px));
    margin: 0px auto 0 auto;
}

.searchPopup__bar{
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.searchPopup__input{
  border: 0;
  outline: 0;
  flex: 1;
  font-size: 18px;
  padding: 10px 8px;
}

.searchPopup__iconBtn,
.searchPopup__closeBtn{
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 999px;
  color: #111;
}

.searchPopup__iconBtn:hover,
.searchPopup__closeBtn:hover{
  background: rgba(0,0,0,.06);
}

.searchPopup__results{
  margin-top: 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  overflow: hidden;
  max-height: 60vh;
  overflow-y: auto;
  display: none;
}

.searchPopup__results.is-visible{
  display: block;
}

.searchItem{
  display: block;
  padding: 14px 16px;
  text-decoration: none;
  color: #111;
  border-bottom: 1px solid rgba(0,0,0,.06);
  font-weight: 600;
}

.searchItem:last-child{
  border-bottom: 0;
}

.searchItem:hover{
  background: rgba(246,161,30,.10);
}

.searchEmpty{
  padding: 14px 16px;
  color: rgba(0,0,0,.60);
  font-weight: 600;
}

/* Mobile spacing */
@media (max-width: 980px){
  .searchPopup__inner{
    width: calc(100% - 20px);
    margin-top: 0px;
  }

  .searchPopup__input{
    font-size: 16px;
  }
}


  .lls-course-hero {
        background-color: transparent;
    background-image: linear-gradient(180deg, #FFFFFF 0%, #FFA2002B 100%);
    padding: 72px 0 120px;
    overflow: hidden;
  }

  .lls-container {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
  }

  .lls-course-hero__wrap {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
  }

  .lls-course-hero__content {
    max-width: 700px;
  }

  .lls-course-hero__eyebrow {
    margin: 0 0 20px;
    font-size: 18px;
    line-height: 1.5;
    color: var(--brand);
    font-weight: 500;
  }

  .lls-course-hero__title {
    margin: 0 0 28px;
    font-size: clamp(42px, 5vw, 45px);
    line-height: 1.25;
    letter-spacing: -0.03em;
    color: #000;
    font-weight: 700;
  }

  .lls-course-hero__text {
    margin: 0 0 28px;
    font-size: 18px;
    line-height: 1.55;
    color: #111;
    max-width: 660px;
  }

  .lls-course-hero__countdown-label {
    margin: 0 0 14px;
    font-size: 18px;
    line-height: 1.3;
    color: #000;
    font-weight: 700;
  }

  .lls-course-hero__countdown {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 24px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.32);
    border: 1px solid rgba(0, 0, 0, 0.04);
    margin-bottom: 28px;
    flex-wrap: wrap;
  }

  .lls-course-hero__countdown-icon {
    width: 34px;
    height: 34px;
    color: var(--color-text-muted);
    flex: 0 0 auto;
  }

  .lls-course-hero__countdown-icon svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .lls-course-hero__time-box {
    min-width: 62px;
    text-align: center;
    background: #F6A11E14;
    border-radius: 2px;
    padding: 10px 10px;
  }

  .lls-course-hero__time-box span {
    display: block;
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 6px;
  }

  .lls-course-hero__time-box small {
    display: block;
    font-size: 14px;
    line-height: 1.2;
    color: #111;
    font-weight: 500;
  }

  .lls-course-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    padding: 18px 28px;
    gap: 8px;
    background: var(--brand);
    color: var(--color-text-inverse);
    text-decoration: none;
    border-radius: 999px;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(246, 161, 30, 0.22);
    transition: transform var(--transition-base, 250ms ease),
      box-shadow var(--transition-base, 250ms ease),
      background var(--transition-base, 250ms ease);
      width: max-content;
  }
  
  .lls-course-hero__cta.loading {
  opacity: 0.7;
  pointer-events: none;
  cursor: not-allowed;
}

/* spinner */
.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
  
  .countdown-section {
      display: flex;
      flex-direction: column;
  }
  
  .lls-course-hero__countdown {
      width: max-content;
      background-color: #fffbf4;
  }

  .lls-course-hero__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(246, 161, 30, 0.28);
    background: var(--color-primary-600);
  }

  .lls-course-hero__cta:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px var(--color-focus-ring), 0 16px 34px rgba(246, 161, 30, 0.28);
  }

  .lls-course-hero__media {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .lls-course-hero__media img {
    width: 85%;
    max-width: 720px;
    height: auto;
    display: block;
    object-fit: contain;
  }

  @media (max-width: 1100px) {
    .lls-course-hero__wrap {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .lls-course-hero__content {
      max-width: 100%;
    }

    .lls-course-hero__media {
      order: -1;
      
    }

    .lls-course-hero__media img {
      max-width: 520px;
    }
  }

  @media (max-width: 640px) {
    .lls-course-hero {
      padding: 46px 0 105px;
    }

 .lls-course-hero__media {
      display: none;
    }
    .lls-course-hero__content {
        text-align: center;
    }

    .lls-course-hero__eyebrow {
      font-size: 16px;
      margin-bottom: 14px;
    }

    .lls-course-hero__title {
      margin-bottom: 20px;
      font-size: clamp(34px, 30px, 52px);
    }

    .lls-course-hero__text {
      font-size: 16px;
      margin-bottom: 20px;
    }

    .lls-course-hero__countdown-label {
      font-size: 20px;
    }

    .lls-course-hero__countdown {
      gap: 10px;
      padding: 18px 14px;
      border-radius: 18px;
    }

    .lls-course-hero__countdown-icon {
      width: 28px;
      height: 28px;
    }

    .lls-course-hero__time-box {
      min-width: 56px;
      padding: 10px 8px;
    }

    .lls-course-hero__time-box span {
      font-size: 24px;
    }

    .lls-course-hero__time-box small {
      font-size: 13px;
    }

    .lls-course-hero__cta {
      min-width: 180px;
      padding: 16px 24px;
      font-size: 17px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .lls-course-hero__cta {
      transition: none;
    }
  }
  
  /* Floating stats card */
.hero__stats {
    width: min(1100px, calc(100% - 60px));
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;

    padding: 35px 40px;
    z-index: 3;
    margin-top: -55px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 14px;
}

.stat__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 56px;
}

.stat__icon img {
    width: 33px;
    height: 33px;
}

.stat__text {
    width: 65%;
}

.stat__value {
    font-weight: 400;
    font-size: 16px;
    color: var(--color-text-subtle);
    
    line-height: 1.1;
}

.stat__label {
    margin-top: 6px;
    font-size: 22px;
    line-height: 1.35;
    color: #0b0b0b;
    font-weight: 600;
}


@media (max-width: 900px) {

    .hero__stats {
        grid-template-columns: repeat(2, 1fr);
        width: calc(100% - 32px);
    }
}

@media (max-width: 520px) {
    .hero__stats {
        grid-template-columns: 1fr;
        gap: 36px
    }
}


.stat__lottie {
  display: block;
}

.stat__lottie--duration {
  width: 40px;
  height: 40px;
}

.stat__lottie--calendar {
  width: 58px;
  height: 58px;
}

.stat__lottie--rupee {
  width: 38px;
  height: 38px;
}

.stat__lottie svg {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.lls-about-course {
    padding: 85px 0 72px;
    background: var(--color-bg-soft);
  }

  /*.lls-container {*/
  /*  width: min(1380px, calc(100% - 48px));*/
  /*  margin: 0 auto;*/
  /*}*/

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

  .lls-section-title {
    margin: 0;
    font-size: clamp(30px, 30px, 46px);
    line-height: 1.15;
    font-weight: 600;
    color: var(--color-secondary-900);
  }

  .lls-section-line {
    display: block;
    width: 68px;
    height: 4px;
    margin: 16px auto 0;
    border-radius: 999px;
    background: var(--brand);
  }

  .lls-about-course__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
    gap: 52px;
    align-items: start;
  }

  .lls-about-course__card {
    background: var(--color-surface);
    border: 1px solid var(--color-border-soft);
    border-radius: 34px;
    box-shadow: 0 4px 18px var(--color-shadow-soft);
    padding: 34px 30px 34px;
  }

  .lls-about-course__card p {
    margin: 0 0 15px;
    font-size: 16px;
    line-height: 2;
    color: var(--color-text);
  }

  .lls-about-course__highlight {
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--color-secondary-900);
    text-transform: uppercase;
  }

  .lls-about-course__list {
    margin: 0;
    padding-left: 0;
    list-style: none;
    counter-reset: about-course-list;
  }

  .lls-about-course__list li {
    counter-increment: about-course-list;
    margin: 0 0 15px;
    font-size: 16px;
    line-height: 2;
    color: var(--color-text);
  }

  .lls-about-course__list li:last-child {
    margin-bottom: 0;
  }

  .lls-about-course__list li::before {
    content: counter(about-course-list) ". ";
    font-style: italic;
  }

  .lls-about-course__list em {
    font-style: italic;
  }

  .lls-about-course__media-col {
    padding-top: 10px;
  }

  .lls-about-course__media-title {
    margin: 0 0 18px;
    font-size: clamp(22px, 2vw, 22px);
    line-height: 1.3;
    font-weight: 700;
    color: var(--color-secondary-500);
  }

  .lls-about-course__video {
    position: relative;
    display: block;
    overflow: hidden;
    background: #eee6db;
    text-decoration: none;
  }

  .lls-about-course__video img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16 / 9.4;
  }

  .lls-about-course__play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 84px;
    height: 60px;
    transform: translate(-50%, -50%);
    border-radius: 18px;
    background: rgba(47, 47, 47, 0.72);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-base, 250ms ease),
      background var(--transition-base, 250ms ease);
  }

  .lls-about-course__play svg {
    width: 28px;
    height: 28px;
    margin-left: 4px;
  }

  .lls-about-course__video:hover .lls-about-course__play {
    transform: translate(-50%, -50%) scale(1.06);
    background: rgba(32, 32, 32, 0.82);
  }

  .lls-about-course__video:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px var(--color-focus-ring);
  }

  @media (max-width: 1024px) {
    .lls-about-course__grid {
      grid-template-columns: 1fr;
      gap: 28px;
    }

    .lls-about-course__media-col {
      padding-top: 0;
    }
  }

  @media (max-width: 640px) {
    .lls-about-course {
      padding: 46px 0 54px;
    }

   

    .lls-section-head {
      margin-bottom: 28px;
    }

    .lls-about-course__card {
      border-radius: 24px;
      padding: 24px 18px;
    }

    .lls-about-course__card p,
    .lls-about-course__list li {
      font-size: 16px;
      line-height: 1.85;
      margin-bottom: 20px;
    }

    .lls-about-course__play {
      width: 70px;
      height: 50px;
      border-radius: 14px;
    }

    .lls-about-course__play svg {
      width: 22px;
      height: 22px;
    }
  }
  
  .lls-key-features {
  padding: 70px 0;
  background: var(--color-bg-soft);
}

.lls-key-features__title {
  margin: 0 0 32px;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #50667d;
}

.lls-key-features__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.lls-feature-card {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 118px;
  padding: 14px 14px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: transform var(--transition-base, 250ms ease),
    box-shadow var(--transition-base, 250ms ease),
    border-color var(--transition-base, 250ms ease);
}

.lls-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadowHover);
  border-color: var(--brandBorder);
}

.lls-feature-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 999px;
  background: #f3e2c3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lls-feature-icon img {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: contain;
}

.lls-feature-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
  color: var(--color-secondary-900);
}

@media (max-width: 1100px) {
  .lls-key-features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .lls-key-features {
    padding: 46px 0 54px;
  }

  .lls-key-features__title {
    margin-bottom: 24px;
    font-size: 26px;
  }

  .lls-key-features__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lls-feature-card {
    min-height: 100px;
    padding: 16px 18px;
    border-radius: 18px;
    gap: 14px;
  }

  .lls-feature-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
  }

  .lls-feature-icon img {
    width: 26px;
    height: 26px;
  }

  .lls-feature-card p {
    font-size: 16px;
    line-height: 1.4;
  }
}

.lls-journey-timeline {
    padding: 72px 0;
    background: var(--color-bg-soft);
  }


  .lls-journey-timeline__head {
    text-align: center;
    margin-bottom: 40px;
  }

  .lls-journey-timeline__title {
    margin: 0;
    font-size: clamp(32px, 30px, 54px);
    line-height: 1.12;
    font-weight: 600;
    color: var(--color-secondary-900);
    letter-spacing: -0.02em;
  }

  .lls-journey-timeline__subtitle {
    margin: 18px 0 0;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-muted);
  }

  .lls-journey-timeline__line {
    display: block;
    width: 108px;
    height: 4px;
    border-radius: 999px;
    background: var(--brand);
    margin: 18px auto 0;
  }

  /* horizontal scroll area */
  .lls-journey-timeline__scroller {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--color-secondary-300) transparent;
    -webkit-overflow-scrolling: touch;
  }

  .lls-journey-timeline__scroller::-webkit-scrollbar {
    height: 8px;
  }

  .lls-journey-timeline__scroller::-webkit-scrollbar-track {
    background: transparent;
  }

  .lls-journey-timeline__scroller::-webkit-scrollbar-thumb {
    background: var(--color-secondary-300);
    border-radius: 999px;
  }

  .lls-journey-timeline__track {
    display: flex;
    align-items: flex-end;
    gap: 36px;
    min-width: max-content;
    padding: 10px 40px 0 40px;
    position: relative;
  }

  /* connecting line */
  .lls-journey-timeline__track::after {
    content: "";
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 73px;
    height: 5px;
    background: #ececf0;
    border-radius: 999px;
    z-index: 0;
  }

  .lls-journey-step {
    width: 328px;
    flex: 0 0 328px;
    position: relative;
    z-index: 1;
  }

  .lls-journey-step__card {
    background: #efc398;
    border-radius: 14px;
    padding: 24px 24px 26px;
    min-height: 195px;
    box-shadow: 0 2px 10px var(--color-shadow-soft);
  }

  .lls-journey-step__card--raised {
    min-height: 250px;
  }


  .lls-journey-step__card--short {
    min-height: 256px;
    margin-bottom: 0;
  }

  .lls-journey-step__card p {
    margin: 0 0 24px;
    color: #111111;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
  }

  .lls-journey-step__card p:last-child {
    margin-bottom: 0;
  }

  .lls-journey-step__emphasis {
    font-weight: 600 !important;
  }

  .lls-journey-step__bottom {
    position: relative;
    padding-top: 28px;
  }

  .lls-journey-step__icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: #efc398;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary-700);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
  }

  .lls-journey-step__icon svg {
    width: 21px;
    height: 21px;
    display: block;
  }

  .lls-journey-step__week {
    margin: 0;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
    color: var(--color-secondary-900);
  }

  @media (max-width: 640px) {
    .lls-journey-timeline {
      padding: 46px 0 54px;
    }

  
    .lls-journey-timeline__head {
      margin-bottom: 26px;
    }

    .lls-journey-timeline__track {
      gap: 22px;
      padding: 10px 18px 0 18px;
    }

    .lls-journey-timeline__track::after {
      left: 18px;
      right: 18px;
      bottom: 68px;
    }

    .lls-journey-step {
      width: 280px;
      flex-basis: 280px;
    }

    .lls-journey-step__card {
      padding: 18px 18px 20px;
      border-radius: 12px;
    }

    .lls-journey-step__card p {
      font-size: 16px;
      line-height: 1.65;
      margin-bottom: 18px;
    }

    .lls-journey-step__card--raised {
      min-height: 320px;
      margin-bottom: 46px;
    }

    .lls-journey-step__card--mid {
      min-height: 290px;
      margin-bottom: 22px;
    }

    .lls-journey-step__card--short {
      min-height: 230px;
    }

    .lls-journey-step__icon {
      width: 40px;
      height: 40px;
      margin-bottom: 14px;
    }

    .lls-journey-step__icon svg {
      width: 18px;
      height: 18px;
    }

    .lls-journey-step__week {
      font-size: 18px;
    }
  }
  
   .lls-why-join {
    padding: 72px 0;
    background: var(--color-bg-soft);
  }


  .lls-why-join__head {
    text-align: center;
    margin-bottom: 36px;
  }

  .lls-why-join__title {
    margin: 0;
    font-size: clamp(32px, 30px, 54px);
    line-height: 1.12;
    font-weight: 600;
    color: var(--color-secondary-900);
    letter-spacing: -0.02em;
  }

  .lls-why-join__line {
    display: block;
    width: 138px;
    height: 4px;
    border-radius: 999px;
    background: var(--brand);
    margin: 20px auto 0;
  }

  .lls-why-join__list {
    display: grid;
    gap: 12px;
  }

  .lls-why-join__item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 64px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid var(--color-border-soft);
    border-radius: 14px;
  }

  .lls-why-join__icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lls-why-join__icon svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .lls-why-join__item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    color: var(--color-secondary-600);
  }

  .lls-why-join__tag {
    display: inline-block;
    padding: 6px 12px;
    background: #ff9800;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
  }

  @media (max-width: 640px) {
    .lls-why-join {
      padding: 46px 0 54px;
    }

   

    .lls-why-join__head {
      margin-bottom: 24px;
    }

    .lls-why-join__line {
      width: 110px;
      margin-top: 16px;
    }

    .lls-why-join__item {
      align-items: flex-start;
      padding: 14px;
      border-radius: 12px;
    }

    .lls-why-join__item p {
      font-size: 16px;
      line-height: 1.45;
    }

    .lls-why-join__icon {
      width: 30px;
      height: 30px;
      min-width: 30px;
      margin-top: 1px;
    }

    .lls-why-join__tag {
      padding: 6px 10px;
    }
  }
  
  

  .lls-faculty {
    padding: 72px 0 56px;
    background: var(--color-bg-soft);
  }


  .lls-faculty__head {
    text-align: center;
    margin-bottom: 42px;
  }

  .lls-faculty__title {
    margin: 0;
    font-size: clamp(32px, 30px, 54px);
    line-height: 1.12;
    font-weight: 600;
    color: var(--color-secondary-900);
    letter-spacing: -0.02em;
  }

  .lls-faculty__line {
    display: block;
    width: 100px;
    height: 4px;
    border-radius: 999px;
    margin: 18px auto 0;
    background: var(--brand);
  }

  .lls-faculty__subtitle {
    margin: 26px auto 0;
    max-width: 1260px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-muted);
  }

  .lls-faculty__slider-wrap {
    display: grid;
    grid-template-columns: 56px 1fr 56px;
    gap: 18px;
    align-items: center;
  }

  .lls-faculty__viewport {
    overflow: hidden;
  }

  .lls-faculty__track {
    display: flex;
    gap: 26px;
    transition: transform var(--transition-slow, 400ms ease);
    will-change: transform;
  }

  .lls-faculty-card {
    flex: 0 0 calc((100% - 78px) / 4);
    min-width: 0;
  }

  .lls-faculty-card__image {
    background: var(--brand);
    overflow: hidden;
    aspect-ratio: 1 / 1.08;
    border-radius: 5px;
  }

  .lls-faculty-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 5px;
  }

  .lls-faculty-card__body {
    padding-top: 14px;
  }

  .lls-faculty-card__name {
    margin: 0;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 600;
    color: var(--color-secondary-900);
  }

  .lls-faculty-card__role {
    margin: 12px 0 0;
    font-size: 16px;
    line-height: 1.55;
    color: var(--color-text-muted);
  }

  .lls-faculty__nav {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1.5px solid var(--brand);
    background: transparent;
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition-base, 250ms ease),
      color var(--transition-base, 250ms ease),
      transform var(--transition-base, 250ms ease);
  }

  .lls-faculty__nav:hover {
    background: var(--brand);
    color: #fff;
    transform: translateY(-1px);
  }

  .lls-faculty__nav:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
  }

  .lls-faculty__nav svg {
    width: 18px;
    height: 18px;
    display: block;
  }

  .lls-faculty__dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
  }

  .lls-faculty__dot {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    border: 0;
    background: #ead7b7;
    cursor: pointer;
    transition: transform var(--transition-base, 250ms ease),
      background var(--transition-base, 250ms ease);
  }

  .lls-faculty__dot.is-active {
    background: var(--brand);
    transform: scale(1.05);
  }

  @media (max-width: 1180px) {
    .lls-faculty-card {
      flex-basis: calc((100% - 26px) / 2);
    }
  }

  @media (max-width: 767px) {
    .lls-faculty {
      padding: 46px 0 48px;
    }

 

    .lls-faculty__head {
      margin-bottom: 28px;
    }

    .lls-faculty__line {
      width: 100px;
      margin-top: 16px;
    }

    .lls-faculty__subtitle {
      margin-top: 18px;
      font-size: 15px;
      line-height: 1.65;
    }

    .lls-faculty__slider-wrap {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .lls-faculty__nav {
      display: none;
    }

    .lls-faculty-card {
      flex-basis: 100%;
    }

    .lls-faculty__track {
      gap: 18px;
    }

    .lls-faculty__dots {
      margin-top: 20px;
      gap: 10px;
    }

    .lls-faculty__dot {
      width: 12px;
      height: 12px;
    }
  }
  
  
  .lls-modules {
    padding: 72px 0 56px;
    background: var(--color-bg-soft);
  }

.lls-container-module {
    width: min(1080px, calc(100% - 48px));
    margin: 0 auto;
  }
  .lls-modules__head {
    text-align: center;
    margin-bottom: 52px;
  }

  .lls-modules__title {
    margin: 0;
    font-size: clamp(32px, 30px, 54px);
    line-height: 1.12;
    font-weight: 600;
    color: var(--color-secondary-900);
    letter-spacing: -0.02em;
  }

  .lls-modules__line {
    display: block;
    width: 154px;
    height: 4px;
    border-radius: 999px;
    margin: 18px auto 0;
    background: var(--brand);
  }

  .lls-modules__subtitle {
    margin: 26px auto 0;
    max-width: 980px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-muted);
  }

  .lls-modules__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
  }

  .lls-modules__label {
    margin: 0;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #0f3b68;
  }

  .lls-modules__expand {
    border: 0;
    border-radius: 999px;
    background: var(--brand);
    color: var(--color-secondary-900);
    padding: 14px 18px;
    min-width: 154px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
    transition: transform var(--transition-base, 250ms ease),
      box-shadow var(--transition-base, 250ms ease);
  }

  .lls-modules__expand:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(246, 161, 30, 0.18);
  }

  .lls-modules__expand svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-base, 250ms ease);
  }

  .lls-modules__expand.is-expanded svg {
    transform: rotate(180deg);
  }

  .lls-modules__list {
    display: grid;
    gap: 12px;
  }

  .lls-module {
    border-bottom: 1px solid rgba(17, 24, 39, 0.06);
  }

  .lls-module__summary {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    text-align: left;
  }

  .lls-module__left,
  .lls-module__right {
    display: flex;
    align-items: center;
  }

  .lls-module__left {
    gap: 12px;
    min-width: 0;
  }

  .lls-module__play {
    width: 24px;
    height: 24px;
    min-width: 24px;
    color: #8a8a8a;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lls-module__play svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .lls-module__title-row {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 500;
    color: #062d57;
  }

  .lls-module__lock {
    width: 18px;
    height: 18px;
    color: #a4acb8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .lls-module__lock svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .lls-module__topics {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
    color: #f29a13;
    white-space: nowrap;
  }

  .lls-module__content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--transition-base, 250ms ease);
  }

  .lls-module.is-open .lls-module__content {
    grid-template-rows: 1fr;
  }

  .lls-module__topics-list {
    overflow: hidden;
    padding: 0 28px 0 68px;
  }

  .lls-module.is-open .lls-module__topics-list {
    padding-bottom: 18px;
  }

  .lls-module__topic {
    padding: 10px 0;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text-subtle);
    border-top: 1px dashed rgba(17, 24, 39, 0.08);
  }

  .lls-module__topic:first-child {
    margin-top: 2px;
  }

  @media (max-width: 767px) {
    .lls-modules {
      padding: 46px 0 42px;
    }

   
    .lls-modules__head {
      margin-bottom: 28px;
    }

    .lls-modules__subtitle {
      margin-top: 18px;
      font-size: 15px;
      line-height: 1.65;
    }

    .lls-modules__topbar {
      align-items: flex-start;
      flex-direction: column;
      margin-bottom: 10px;
    }

    .lls-modules__label {
      font-size: 16px;
    }

    .lls-modules__expand {
      min-width: auto;
      padding: 12px 16px;
      font-size: 16px;
    }

    .lls-module__summary {
      padding: 16px 0;
      align-items: flex-start;
      gap: 12px;
    }

    .lls-module__left {
      align-items: flex-start;
      gap: 10px;
      flex: 1;
    }

    .lls-module__right {
      padding-top: 4px;
    }

    .lls-module__title-row {
      font-size: 18px;
      line-height: 1.4;
    }

    .lls-module__topics {
      font-size: 14px;
    }

    .lls-module__topics-list {
      padding: 0 0 0 38px;
    }

    .lls-module.is-open .lls-module__topics-list {
      padding-bottom: 14px;
    }

    .lls-module__topic {
      font-size: 15px;
      padding: 9px 0;
    }
  }

.lls-reading-module {
  padding: 72px 0;
  background: var(--color-bg-soft);
}


.lls-reading-module__grid {
  display: grid;
  grid-template-columns: 600px minmax(0, 1fr);
  gap: 84px;
  align-items: start;
}

.lls-reading-module__media {
  display: flex;
  justify-content: center;
}

.lls-reading-module__media img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  object-fit: contain;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

.lls-reading-module__content {
  min-width: 0;
}

.lls-reading-module__title {
  margin: 0;
  font-size: clamp(30px, 26px, 50px);
  line-height: 1.15;
  font-weight: 400;
  color: var(--color-secondary-700);
  letter-spacing: -0.02em;
}

.lls-reading-module__subtitle {
  margin: 14px 0 20px;
  font-size: 16px;
  line-height: 1.5;
  color: #b0b7c1;
  font-weight: 400;
}

.lls-reading-module__form {
  max-width: 620px;
}

.lls-reading-module__field {
  margin-bottom: 18px;
}

.lls-reading-module__field label {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.45;
  color: #000;
  font-weight: 500;
}

.lls-reading-module__field label span {
  color: #e53935;
}

.lls-reading-module__field input,
.lls-reading-module__field select {
  width: 100%;
  height: 40px;
  border: 1px solid #d8dadd;
  border-radius: 3px;
  background: #fff;
  padding: 0 16px;
  font-size: 16px;
  color: var(--color-secondary-900);
  outline: none;
  box-sizing: border-box;
  transition: border-color var(--transition-base, 250ms ease),
    box-shadow var(--transition-base, 250ms ease);
}

.lls-reading-module__field input::placeholder {
  color: #8f96a0;
}

.lls-reading-module__field input:focus,
.lls-reading-module__field select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--color-focus-ring);
}

.lls-reading-module__select-wrap {
  position: relative;
}

.lls-reading-module__field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 46px;
  cursor: pointer;
  color: #111;
}

.lls-reading-module__select-icon {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #111;
  pointer-events: none;
}

.lls-reading-module__select-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.lls-reading-module__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 18px;
  cursor: pointer;
}

.lls-reading-module__consent input {
  width: 16px;
  height: 16px;
  margin: 3px 0 0;
  accent-color: var(--brand);
  flex: 0 0 auto;
}

.lls-reading-module__consent span {
  font-size: 16px;
  line-height: 1.55;
  color: #111;
}

.lls-reading-module__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 156px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(246, 161, 30, 0.22);
  transition: transform var(--transition-base, 250ms ease),
    box-shadow var(--transition-base, 250ms ease),
    background var(--transition-base, 250ms ease),
    opacity var(--transition-base, 250ms ease);
}

.lls-reading-module__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(246, 161, 30, 0.28);
  background: var(--color-primary-600);
}

.lls-reading-module__btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--color-focus-ring),
    0 14px 28px rgba(246, 161, 30, 0.28);
}

.lls-reading-module__btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.lls-reading-module__btn-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lls-reading-module__btn-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.lls-reading-module__message {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.5;
}

.lls-reading-module__message.is-success {
  color: #15803d;
}

.lls-reading-module__message.is-error {
  color: #dc2626;
}

@media (max-width: 1024px) {
  .lls-reading-module__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .lls-reading-module__media {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .lls-reading-module {
    padding: 46px 0 54px;
  }



  .lls-reading-module__title {
    font-size: clamp(28px, 8vw, 40px);
  }

  .lls-reading-module__subtitle {
    margin-top: 10px;
    margin-bottom: 16px;
    font-size: 16px;
  }

  .lls-reading-module__field {
    margin-bottom: 14px;
  }

  .lls-reading-module__field input,
  .lls-reading-module__field select {
    height: 46px;
    font-size: 15px;
  }

  .lls-reading-module__consent span {
    font-size: 15px;
  }

  .lls-reading-module__btn {
    min-width: 148px;
    height: 44px;
    font-size: 15px;
  }
}


  .lls-certificate {
    padding: 40px 0;
    background-color: transparent;
    background-image: linear-gradient(180deg, #FFFDFB 0%, #FFE7BE 100%);
  }

  .lls-container-certificate {
    width: min(1020px, calc(100% - 48px));
    margin: 0 auto;
  }

  .lls-certificate__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 72px;
    align-items: center;
  }

  .lls-certificate__content {
    max-width: 520px;
  }

  .lls-certificate__title {
    margin: 0;
    font-size: clamp(44px, 45px, 76px);
    line-height: 0.98;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #000;
  }

  .lls-certificate__subtitle {
    margin: 12px 0 28px;
    font-size: clamp(24px, 30px, 50px);
    line-height: 1.15;
    font-weight: 300;
    letter-spacing: -0.02em;
    color: #111;
  }

  .lls-certificate__list {
    margin: 0;
    padding: 0 0 25px 0;
    list-style: none;
    display: grid;
    gap: 22px;
  }

  .lls-certificate__list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 18px;
    line-height: 1.65;
    color: #4f5f76;
  }

  .lls-certificate__icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    color: var(--brand);
    margin-top: 5px;
  }

  .lls-certificate__icon svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .lls-certificate__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 192px;
    height: 64px;
    margin-top: 42px;
    padding: 0 30px;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(246, 161, 30, 0.2);
    transition: transform var(--transition-base, 250ms ease),
      box-shadow var(--transition-base, 250ms ease),
      background var(--transition-base, 250ms ease);
  }

  .lls-certificate__btn:hover {
    transform: translateY(-2px);
    background: var(--color-primary-600);
    box-shadow: 0 18px 34px rgba(246, 161, 30, 0.28);
  }

  .lls-certificate__btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px var(--color-focus-ring),
      0 18px 34px rgba(246, 161, 30, 0.28);
  }

  .lls-certificate__media {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .lls-certificate__media img {
    width: 100%;
    max-width: 720px;
    height: auto;
    display: block;
    object-fit: contain;
  }

  @media (max-width: 1024px) {
    .lls-certificate__grid {
      grid-template-columns: 1fr;
      gap: 34px;
    }

    .lls-certificate__content {
      max-width: 100%;
    }
  }

  @media (max-width: 640px) {
    .lls-certificate {
      padding: 48px 0 54px;
    }

 

    .lls-certificate__subtitle {
      margin: 10px 0 22px;
    }

    .lls-certificate__list {
      gap: 16px;
    }

    .lls-certificate__list li {
      font-size: 16px;
      line-height: 1.55;
    }

    .lls-certificate__btn {
      min-width: 170px;
      height: 56px;
      margin-top: 30px;
      font-size: 16px;
    }
  }


  .lls-feedback {
    padding: 72px 0 56px;
    background: var(--color-bg-soft);
  }



  .lls-feedback__head {
    text-align: center;
    margin-bottom: 46px;
  }

  .lls-feedback__title {
    margin: 0;
    font-size: clamp(32px, 30px, 54px);
    line-height: 1.12;
    font-weight: 600;
    color: var(--color-secondary-900);
    letter-spacing: -0.02em;
  }

  .lls-feedback__line {
    display: block;
    width: 108px;
    height: 4px;
    border-radius: 999px;
    background: var(--brand);
    margin: 18px auto 0;
  }

  .lls-feedback__subtitle {
    margin: 26px auto 0;
    max-width: 900px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-muted);
  }

  .lls-feedback__slider-wrap {
    display: grid;
    grid-template-columns: 56px 1fr 56px;
    gap: 20px;
    align-items: center;
  }

  .lls-feedback__viewport {
    overflow: hidden;
  }

  .lls-feedback__track {
    display: flex;
    transition: transform var(--transition-slow, 400ms ease);
    will-change: transform;
  }

  .lls-feedback__slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
    align-items: start;
  }

  .lls-feedback-card {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 26px;
    align-items: start;
  }

  .lls-feedback-card__profile {
    text-align: center;
  }

  .lls-feedback-card__profile img {
    width: 96px;
    height: 96px;
    border-radius: 999px;
    object-fit: cover;
    display: block;
    margin: 0 auto 14px;
    border: 2px solid rgba(17, 24, 39, 0.18);
  }

  .lls-feedback-card__stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    color: #e8a23b;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 14px;
  }

  .lls-feedback-card__name {
    margin: 0;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 600;
    color: var(--color-secondary-900);
  }

  .lls-feedback-card__university {
    margin: 8px 0 0;
    font-size: 13px;
    line-height: 1.45;
    color: #2f2f2f;
  }

  .lls-feedback-card__meta {
    margin: 8px 0 0;
    font-size: 12px;
    line-height: 1.4;
    color: #777;
    font-style: italic;
  }

  .lls-feedback-card__content p {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.7;
    color: #5c6f84;
  }

  .lls-feedback-card__content p:last-child {
    margin-bottom: 0;
  }

  .lls-feedback-card__content strong {
    color: #4a5f77;
    font-weight: 800;
  }

  .lls-feedback__nav {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1.5px solid var(--brand);
    background: transparent;
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition-base, 250ms ease),
      color var(--transition-base, 250ms ease),
      transform var(--transition-base, 250ms ease);
  }

  .lls-feedback__nav:hover {
    background: var(--brand);
    color: #fff;
    transform: translateY(-1px);
  }

  .lls-feedback__nav:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
  }

  .lls-feedback__nav svg {
    width: 18px;
    height: 18px;
    display: block;
  }

  .lls-feedback__dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
  }

  .lls-feedback__dot {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    border: 0;
    background: #ead7b7;
    cursor: pointer;
    transition: transform var(--transition-base, 250ms ease),
      background var(--transition-base, 250ms ease);
  }

  .lls-feedback__dot.is-active {
    background: var(--brand);
    transform: scale(1.04);
  }

  @media (max-width: 1100px) {
    .lls-feedback__slide {
      grid-template-columns: 1fr;
      gap: 34px;
    }
  }

  @media (max-width: 767px) {
    .lls-feedback {
      padding: 46px 0 48px;
    }



    .lls-feedback__head {
      margin-bottom: 28px;
    }

    .lls-feedback__subtitle {
      margin-top: 18px;
      font-size: 15px;
      line-height: 1.65;
    }

    .lls-feedback__slider-wrap {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .lls-feedback__nav {
      display: none;
    }

    .lls-feedback-card {
      grid-template-columns: 1fr;
      gap: 18px;
    }

    .lls-feedback-card__content p {
      font-size: 16px;
      line-height: 1.65;
    }

    .lls-feedback__dots {
      margin-top: 24px;
      gap: 10px;
    }

    .lls-feedback__dot {
      width: 12px;
      height: 12px;
    }
  }
  
  
  /* ================================
   LOGOS MARQUEE
   File: css/components/logos-marquee.css
=================================== */

.logos-marquee {
    padding: 48px 0 40px;
    background: #ffffff;
}

.logos-marquee__inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

.logos-marquee__title {
    text-align: center;
    margin: 0 0 28px;
    font-size: 30px;
    font-weight: 600;
    color: var(--color-text);
}

/* Each row viewport */
.logo-row {
    position: relative;
    overflow: hidden;
    padding: 12px 0;
}

/* Gradient edge fade like premium marquee */
.logo-row::before,
.logo-row::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 70px;
    z-index: 2;
    pointer-events: none;
}
.logo-row::before {
    left: 0;
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
.logo-row::after {
    right: 0;
    background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

/* Track */
.logo-track {
    display: flex;
    gap: 26px;
    width: max-content;
    will-change: transform;
    animation-duration: 60s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.logo-track:hover {
    animation-play-state: paused; /* pause on hover */
}

/* Cards */
.logo-card {
    width: 230px;
    height: 90px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    display: grid;
    place-items: center;
    padding: 14px;
}

.logo-card img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    display: block;
}

/* Animations: RIGHT and LEFT */
@keyframes marqueeLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
@keyframes marqueeRight {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

.marquee-left {
    animation-name: marqueeLeft;
}
.marquee-right {
    animation-name: marqueeRight;
}

/* Optional: make third row a bit slower */
.logo-track.slow {
    animation-duration: 35s;
}

/* Responsive card sizing */
@media (max-width: 980px) {
    .logos-marquee__title {
        font-size: 26px;
    }
    .logo-card {
        width: 190px;
        height: 82px;
    }
    .logo-card img {
        max-height: 54px;
    }
}
@media (max-width: 520px) {
    .logo-card {
        width: 160px;
        height: 78px;
    }
}

/* Accessibility: reduced motion */
@media (prefers-reduced-motion: reduce) {
    .logo-track {
        animation: none;
    }
    .logo-row {
        overflow-x: auto;
    }
}


  .lls-callback {
    padding: 72px 0;
    background: var(--color-bg-soft);
  }

  .lls-container-call-back {
    width: min(1020px, calc(100% - 48px));
    margin: 0 auto;
  }

.lls-callback__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 500px;
    gap: 50px;
    align-items: center;
}

  .lls-callback__left {
    max-width: 620px;
  }

  .lls-callback__title {
    margin: 0 0 18px;
    font-size: clamp(30px, 30px, 60px);
    line-height: 1.1;
    font-weight: 700;
    color: var(--color-secondary-900);
    letter-spacing: -0.02em;
  }

  .lls-callback__text {
    margin: 0 0 52px;
    font-size: 16px;
    line-height: 1.5;
    color: #111;
    max-width: 620px;
  }

  .lls-callback__form {
    max-width: 620px;
  }

  .lls-callback__field {
    margin-bottom: 20px;
  }

  .lls-callback__field label {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 600;
    color: #4f5f76;
  }

  .lls-callback__field label span {
    color: #e53935;
  }

  .lls-callback__field input {
    width: 100%;
    height: 46px;
    border: 1px solid #d8dadd;
    border-radius: 3px;
    background: #fff;
    padding: 0 14px;
    font-size: 16px;
    color: var(--color-secondary-900);
    outline: none;
    box-sizing: border-box;
    transition: border-color var(--transition-base, 250ms ease),
      box-shadow var(--transition-base, 250ms ease);
  }

  .lls-callback__field input:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--color-focus-ring);
  }

  .lls-callback__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 46px;
    padding: 0 26px;
    border: 0;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(246, 161, 30, 0.22);
    transition: transform var(--transition-base, 250ms ease),
      box-shadow var(--transition-base, 250ms ease),
      background var(--transition-base, 250ms ease);
  }

  .lls-callback__btn:hover {
    transform: translateY(-1px);
    background: var(--color-primary-600);
    box-shadow: 0 14px 28px rgba(246, 161, 30, 0.28);
  }

  .lls-callback__btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px var(--color-focus-ring),
      0 14px 28px rgba(246, 161, 30, 0.28);
  }

  .lls-callback__right {
    display: grid;
    gap: 16px;
    align-self: center;
  }

  .lls-callback__point {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 64px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid var(--color-border-soft);
    border-radius: 12px;
  }

  .lls-callback__icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lls-callback__icon svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .lls-callback__point p {
    margin: 0;
    font-size: 20px;
    line-height: 1.45;
    font-weight: 600;
    color: var(--color-secondary-900);
  }

  @media (max-width: 1100px) {
    .lls-callback__grid {
      grid-template-columns: 1fr;
      gap: 28px;
    }

    .lls-callback__left,
    .lls-callback__form,
    .lls-callback__text {
      max-width: 100%;
    }
  }

  @media (max-width: 640px) {
    .lls-callback {
      padding: 46px 0 54px;
    }



    .lls-callback__title {
      margin-bottom: 14px;
    }

    .lls-callback__text {
      margin-bottom: 28px;
      font-size: 16px;
      line-height: 1.65;
    }

    .lls-callback__field {
      margin-bottom: 22px;
    }

    .lls-callback__field input {
      height: 44px;
      font-size: 15px;
    }

    .lls-callback__btn {
      min-width: 180px;
      height: 44px;
      font-size: 15px;
    }

    .lls-callback__point {
      align-items: flex-start;
      padding: 14px;
    }

    .lls-callback__point p {
      font-size: 16px;
      line-height: 1.4;
    }

    .lls-callback__icon {
      width: 34px;
      height: 34px;
      min-width: 34px;
      margin-top: 1px;
    }
  }
  
  .lls-callback__message {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.5;
}

.lls-callback__message.is-success {
  color: #15803d;
}

.lls-callback__message.is-error {
  color: #dc2626;
}

.lls-callback__btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}



/* SECTION */
.faq{
  padding: 80px 0 90px;
  background: #fff;
}

.faq__inner{
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 16px;
}

.faq__head{
  text-align: center;
  margin-bottom: 34px;
}

.faq__title{
  margin: 0;
  font-size: 30px;
  font-weight: 600;
  color: var(--color-text);
}

.faq__underline{
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 999px;
  margin: 16px auto 0;
}

/* LIST */
.faq__list{
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

/* ITEM */
.faq-item{
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
}

.faq-item__btn{
  width: 100%;
  padding: 18px 18px 18px 22px;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;

}

.faq-item__q{
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  width: 87%;
}

.faq-item__icon{
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #2f2f2f;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: transform .25s ease;
}

/* PANEL (answer) */
.faq-item__panel{
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}

.faq-item__a{
  padding: 0 22px 18px 22px;
  color: #444;
  font-size: 16px;
  line-height: 1.8;
}

/* OPEN STATE */
.faq-item.is-open .faq-item__panel{
  max-height: 240px;
}

.faq-item.is-open .faq-item__icon{
  transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 980px){
  .faq__title{ font-size: 32px; }
  .faq__list{ gap: 16px; }
  .faq-item__btn{ padding: 16px 14px 16px 16px; }
}

.stat__label--skeleton {
  min-height: 28px;
  border-radius: 6px;
  background: linear-gradient(90deg, #ececec 25%, #f5f5f5 50%, #ececec 75%);
  background-size: 200% 100%;
  animation: statShimmer 1.2s infinite linear;
  color: transparent;
}

@keyframes statShimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}


.lls-module__lesson-link,
.lls-module__topic-link {
  color: inherit;
  text-decoration: none;
}

.lls-module__lesson-link:hover,
.lls-module__topic-link:hover {
  color: var(--brand);
}

.lls-module__topic {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-subtle);
  border-top: 1px dashed rgba(17, 24, 39, 0.08);
}

.lls-module__topic-icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: #a7adb7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lls-module__topic-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.lls-module__topic-text,
.lls-module__topic-link {
  flex: 1;
}

.lls-module.has-access .lls-module__lock {
  display: none;
}


.lls-faculty__viewport,
.lls-feedback__viewport {
  touch-action: pan-y;
}


/* ✅ Mobile only sticky bottom bar */
.lls-mobile-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
 
  z-index: 999999999;
  background: rgba(19, 43, 49, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.12);
  display: none;
}

.lls-mobile-sticky-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: #fff;
  border-radius: 0;
  padding: 10px 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.lls-mobile-sticky-bar__content {
  min-width: 0;
  flex: 1;
}

.lls-mobile-sticky-bar__title {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
  color: var(--color-secondary-900);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lls-mobile-sticky-bar__btn {
  flex: 0 0 auto;
  min-width: 136px;
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(246, 161, 30, 0.24);
}

.lls-mobile-sticky-bar__btn.loading {
  pointer-events: none;
  opacity: 0.8;
}

@media (max-width: 767px) {
  .lls-mobile-sticky-bar {
    display: block;
  }

  body {
    padding-bottom: 88px;
  }
  
  .waWidget__fab {
      margin-bottom: 70px;
    margin-left: -13px;
    width: 50px;
    height: 50px;
  }
  
      .aiWidget__fab {
        right: 7px !important;
        bottom: 80px !important;
    }
    
    .waWidget__fab img {
    width: 50px;
    height: 50px;
    fill: currentColor;
}

.aiWidget__fab img {
    border-radius: 50%;
    width: 50px;
    height: 50px; 
    
}
}

@media (min-width: 768px) {
  .lls-mobile-sticky-bar {
    display: none !important;
  }
}

/* hidden by default */
#enroll-botton-stikcy {
  display: none;
}

/* keep alignment same as header */
.enroll-botton-stikcy {
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
    color: var(--color-text-inverse);
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 400;
    border: 0;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 6px 14px rgba(246, 161, 30, .25);
}

/*.header-buttons {*/
  
/*    flex-direction: row;*/
/*}*/

.lls-call-popup {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(24px);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
  }

  .lls-call-popup.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 9999999;
  }

  .lls-call-popup__card {
    position: relative;
    width: min(445px, calc(100vw - 32px));
    background: #fff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 28px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
    padding: 26px 28px 22px;
  }

  .lls-call-popup__close {
    position: absolute;
    top: 5px;
    right: 2px;
    width: 45px;
    height: 41px;
    border: 0;
    background: transparent;
    color: #7b8794;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .lls-call-popup__close:hover {
    background: rgba(17, 24, 39, 0.06);
  }

  .lls-call-popup__close svg {
    width: 16px;
    height: 16px;
    display: block;
  }

  .lls-call-popup__top {
    display: flex;
    align-items: flex-start;
    gap: 18px;
  }

  .lls-call-popup__icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 999px;
    border: 1.5px solid rgba(17, 24, 39, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2f2f2f;
  }

  .lls-call-popup__icon svg {
    width: 28px;
    height: 28px;
    display: block;
  }

  .lls-call-popup__text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: #5b6777;
  }

  .lls-call-popup__text strong {
    color: #38485c;
    font-weight: 700;
  }

  .lls-call-popup__text a {
    color: #f6a11e;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
  }

  .lls-call-popup__actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 22px;
    padding-left: 76px;
  }

  .lls-call-popup__btn {
    min-width: 108px;
    height: 46px;
    padding: 0 24px;
    border-radius: 999px;
    background: #f6a11e;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(246, 161, 30, 0.22);
  }

  .lls-call-popup__link {
    border: 0;
    background: transparent;
    color: #6e7987;
    font-size: 16px;
    cursor: pointer;
    padding: 0;
  }

  @media (max-width: 640px) {
    .lls-call-popup {
      right: 12px;
      left: 12px;
      bottom: 12px;
    }

    .lls-call-popup__card {
      width: 100%;
      border-radius: 22px;
      padding: 22px 18px 18px;
    }

    .lls-call-popup__top {
      gap: 14px;
    }

    .lls-call-popup__icon {
      width: 52px;
      height: 52px;
      min-width: 52px;
    }

    .lls-call-popup__text p {
      font-size: 15px;
      line-height: 1.5;
      padding-right: 18px;
    }

    .lls-call-popup__actions {
      padding-left: 0;
      margin-top: 18px;
      gap: 16px;
    }

    .lls-call-popup__btn {
      min-width: 100px;
      height: 42px;
      font-size: 15px;
    }

    .lls-call-popup__link {
      font-size: 15px;
    }
  }
.site-footer {
    background: #3d3b3b;
    color: var(--color-text-inverse);
}

.footer-inner {
    max-width: 1330px;
    margin: 0 auto;
    padding: 60px 16px;
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 1fr;
    gap: 48px;
}

/* Logo */
.footer-logo img {
    height: 74px;
    width: auto;
    display: block;
    margin-bottom: 22px;
}

.footer-brand {
    padding: 0px 45px 0px 0px;
}

/* Typography */
.footer-heading {
    margin: 0 0 18px;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--color-text-inverse);
}

.footer-title {
    margin: 0 0 16px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.55;
    color: var(--color-text-inverse);
}

/* Contact lines */
.footer-line {
    display: flex;
    gap: 7px;
    align-items: flex-start;
    padding: 4px 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    line-height: 1.6;
}
.footer-line:hover {
    color: var(--color-primary);
}
.footer-line.no-hover:hover {
    color: rgba(255, 255, 255, 0.92);
}

.fi {
    width: 22px;
    line-height: 1.5;
    opacity: 0.95;
}

/* Separators */
.footer-sep {
    height: 2px;
    width: 220px;
    background: var(--color-primary);
    margin: 24px 0;
    opacity: 0.85;
}

.footer-dashed {
    height: 1px;
    width: 260px;
    border-bottom: 2px dashed var(--color-primary);
    margin: 22px 0 18px;
    opacity: 0.8;
}

/* Useful links */
.footer-links {
    display: grid;
    gap: 14px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 500;
}
.footer-links a:hover {
    color: var(--color-primary);
}

/* Hiring */
.footer-hiring {
    display: inline-block;
    margin-top: 6px;
    font-size: 14px;
    font-weight: 800;
    color: var(--color-primary);
}
.footer-hiring:hover {
    filter: brightness(0.98);
    text-decoration: underline;
}

/* Subscribe */
.footer-subscribe {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 10px;
    margin-bottom: 22px;
    flex-direction: column;
}

.email-subscribe {
    gap:14px;
    display: flex;
}
.footer-subscribe input {
    flex: 1;
    height: 46px;
    padding: 0 14px;
    border-radius: 4px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--color-text-inverse);
    outline: none;
}
.footer-subscribe input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.footer-subscribe input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px var(--color-focus-ring);
}

.footer-subscribe button {
    height: 46px;
    padding: 0 10px;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 800;
    background: var(--color-primary);
    color: var(--color-text-inverse);
}
.footer-subscribe button:hover {
    filter: brightness(0.98);
}

/* Social icons */
.footer-social {
    display: flex;
    gap: 14px;
    margin: 22px 0 18px;
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #ffffff;
    color: #3d3b3b;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.25s ease;
}

.social-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-btn:hover {
    background: var(--color-primary);
    color: var(--color-text-inverse);
    transform: translateY(-2px);
}

/* Policy links */
.footer-policy {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 0px 6px;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.6;
}
.footer-policy a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
}
.footer-policy a:hover {
    color: var(--color-primary);
}
.footer-policy .dot {
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 980px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 46px 16px;
    }
    .footer-sep,
    .footer-dashed {
        width: 100%;
        max-width: 320px;
    }
}


/* =========================
   WhatsApp Floating Widget
========================= */
.waWidget {
  position: fixed;
  left: 22px;
  bottom: 40px;
  z-index: 999999; /* keep above FAQ etc. */
  pointer-events: none; /* enable only when needed via children */
  font-family: inherit;
}

/* Floating button */
.waWidget__fab {
  pointer-events: auto;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;

  background: #f6a11e00;
  /*color: var(--color-text-inverse);*/

  box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
}

.waWidget__fab:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadowHover);
}

.waWidget__fab img {
  width: 60px;
  height: 60px;
  fill: currentColor;
}

/* Overlay to close on outside click */
.waWidget__overlay {
 pointer-events: none;
}

/* Popup */
.waWidget__popup {
  position: absolute;
  left: 0;
  bottom: 84px;
  width: min(350px, calc(100vw - 44px));
  border-radius: 18px;
  overflow: hidden;

  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadowHover);

  transform: translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

/* Header */
.waWidget__header {
  display: flex;
  align-items: center;
  gap: 20px 12px;
  padding: 14px 14px;
  background: #095E54;
  color: var(--color-text-inverse);
}

.waWidget__avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--color-secondary-700);
  border: 2px solid rgba(255,255,255,.18);
  flex: 0 0 auto;
}

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

.waWidget__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.waWidget__name {
  font-weight: 800;
  font-size: 16px;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.waWidget__role {
  font-weight: 600;
  font-size: 13px;
  opacity: .9;
}

.waWidget__close {
  margin-left: auto;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.12);
  color: var(--color-text-inverse);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.waWidget__close:hover {
  background: rgba(255,255,255,.18);
}

/* Body */
.waWidget__body {
  position: relative;
  padding: 14px;
  background-image: url("https://www.lawctopuslawschool.com/wp-content/uploads/2024/07/whatsapp-1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.waWidget__body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(230, 221, 212, 0.91); /* #E6DDD4 at 0.91 */
  z-index: 0;
}

/* Keep content above overlay */
.waWidget__msg {
  position: relative;
  z-index: 1;
}

.waWidget__msg {
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: 14px;
  padding: 12px 12px 10px;
  max-width: 78%;
}

.waWidget__msgName {
  font-weight: 800;
  font-size: 13px;
  color: var(--color-text-subtle);
  margin-bottom: 6px;
}

.waWidget__msgText {
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.4;
}

.waWidget__msgTime {
  margin-top: 8px;
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: right;
}

/* Footer */
.waWidget__footer {
  padding: 12px 14px 14px;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border-soft);
}

.waWidget__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
 gap: 10px;
  background: #4FCE5D;
  color: var(--color-text-inverse);

  box-shadow: 0 10px 20px var(--brandShadow);
  transition: transform .15s ease, filter .2s ease;
}




.waWidget__ctaIcon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.waWidget__cta:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
}

/* OPEN STATE */
.waWidget.is-open .waWidget__popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/*.waWidget.is-open .waWidget__overlay {*/
/*  pointer-events: auto;*/
/*}*/

/* Mobile: keep within screen */
@media (max-width: 520px) {
  .waWidget {
    left: 14px;
    bottom: 14px;
  }
  .waWidget__popup {
    bottom: 78px;
  }
}

/* =========================
   AI Floating Button (Right)
========================= */
.aiWidget__fab {
  position: fixed;
  right: 22px;
  bottom: 40px;
  z-index: 999998;

  width: 60px;
  height: 60px;
  border-radius: 999px;

  display: grid;
  place-items: center;

  background: #ffffff00;
  border: 1px solid var(--color-border);

  box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .2s ease;

  cursor: pointer;
  display: none;
}

.aiWidget__fab:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadowHover);
}

.aiWidget__fab img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    object-fit: contain;
}

@media (max-width: 520px) {
.aiWidget__fab {
    right: 14px;
    bottom: 14px;
}
}


  .cookie-banner{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-top: 0.5px solid #dad3d3;
    z-index: 99999;
    display: none;
    font-family: Arial, sans-serif;
    transform: translateY(100%);
    transition: transform 0.4s ease;
  }

  .cookie-banner.show{
    display: block;
    transform: translateY(0);
  }

  .cookie-banner__inner{
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
  }

  .cookie-banner__text{
    flex: unset;
    font-size: 14px;
    line-height: 1.4;
    color: #000;
  }

  .cookie-banner__link{
    color: #d10000;
    font-weight: 600;
    text-decoration: none;
  }

  .cookie-banner__btn{
    background: #000;
    color: #fff;
    border: 1px solid #000;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 20px !important
  }
