@charset "UTF-8";
/* ===========================
   COLOR VARIABLES
=========================== */
/* Brand Colors */
/* Text Colors */
/* Background Colors */
/* Card backgrounds */
/* Accent Colors */
/* Glass & Overlay */
/* ===========================
   TYPOGRAPHY
=========================== */
/* Font Weights */
/* ===========================
   SPACING & LAYOUT
=========================== */
/* Border Radius */
/* Spacing */
/* Layout */
/* Canonical page container — single source of truth for horizontal
   alignment across every section/page. Tweak these to shift all
   left/right gutters and content width site-wide.
   max-width is wide so content fills large/wide monitors instead of
   leaving big empty side margins; below this width it goes edge-to-edge
   minus the gutter. */
/* ===========================
   HERO SECTION VARIABLES
=========================== */
/* Hero Typography */
/* Hero Spacing */
/* Hero Colors */
/* Hero Button */
/* Hero Images */
/* ===========================
   TRANSITIONS & ANIMATIONS
=========================== */
/* ===========================
   BREAKPOINTS
=========================== */
/* ===========================
   LEGACY VARIABLES (keeping for backward compatibility)
=========================== */
.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

/* ===========================
   CUSTOM FONTS
=========================== */
* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  font-family: "Ubuntu", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background-size: 30% auto, cover;
  color: #e8e6e5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
  font-size: 16px;
  background-color: #0E0E0E;
}

body > main {
  flex: 1 0 auto;
}

body > .footer-section {
  flex-shrink: 0;
}

.container {
  width: 100%;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px;
}
@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.container {
  margin-top: 40px;
}

/* Global Mobile Adjustments */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
}
.highlight {
  color: #F47923 !important;
}

/* Skeleton Loading Effect */
.skeleton {
  background-color: #191919;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.05) 20%, rgba(255, 255, 255, 0.1) 60%, rgba(255, 255, 255, 0));
  background-size: 200% 100%;
  animation: skeleton-shimmer 2s infinite;
  border-radius: 4px;
  display: inline-block;
}

@keyframes skeleton-shimmer {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 100% 0;
  }
}
.site-header {
  max-width: 100vw;
  position: sticky;
  top: 0;
  z-index: 9999 !important;
  background: rgba(10, 10, 15, 0.82) !important;
  -webkit-backdrop-filter: blur(20px) saturate(140%) !important;
  backdrop-filter: blur(20px) saturate(140%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}
.site-header .header-inner {
  width: 100%;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px;
  display: flex;
  align-items: center;
  gap: 35px;
  height: 80px;
}
@media (max-width: 768px) {
  .site-header .header-inner {
    height: 64px;
    padding-left: 16px;
    padding-right: 16px;
    justify-content: space-between;
    position: relative;
  }
}
@media (max-width: 768px) {
  .site-header .desktop-only {
    display: none !important;
  }
}
.site-header .mobile-only {
  display: none !important;
}
@media (max-width: 768px) {
  .site-header .mobile-only {
    display: flex !important;
  }
  .site-header .mobile-only.social-icons {
    display: block !important;
  }
}
.site-header .brand {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: #e8e6e5;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .site-header .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
.site-header .brand .brand-logo {
  width: 192px;
  height: 43px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.6));
}
@media (max-width: 768px) {
  .site-header .brand .brand-logo {
    width: 140px;
    height: 32px;
  }
}
.site-header .brand .brand-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.site-header .brand .brand-title {
  font-weight: 900;
  letter-spacing: 1px;
  color: #F47923;
  font-size: 24px;
  line-height: 1;
}
.site-header .brand .brand-sub {
  font-size: 13px;
  color: #b7b3b0;
  margin-top: 4px;
}
.site-header .main-nav {
  flex: 1 1 auto;
  font-size: 1rem;
}
.site-header .main-nav ul {
  display: flex;
  align-items: center;
  gap: 17px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-header .main-nav ul .d-link {
  color: #b3b3b3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.site-header .main-nav ul .d-link:hover {
  color: #F47923 !important;
}
.site-header .main-nav ul .d-link::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background: #F47923;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-in-out;
}
.site-header .main-nav ul .d-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
@media (max-width: 768px) {
  .site-header .main-nav {
    position: fixed;
    left: -100%;
    top: 0;
    bottom: 0;
    width: 82vw;
    max-width: 320px;
    height: 100vh;
    background: rgba(14, 14, 18, 0.88) !important;
    -webkit-backdrop-filter: blur(24px) saturate(140%) !important;
    backdrop-filter: blur(24px) saturate(140%) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
    z-index: 10001 !important;
    transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 15px 0 45px rgba(0, 0, 0, 0.85), 0 0 30px rgba(244, 121, 35, 0.15) !important;
  }
  .site-header .main-nav.open {
    left: 0;
  }
  .site-header .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    width: 100%;
    padding: 1.25rem 0.85rem;
  }
  .site-header .main-nav .nav-item {
    width: 100%;
    border-bottom: none;
    padding: 0.2rem 0;
  }
  .site-header .main-nav .nav-item a,
  .site-header .main-nav .nav-item .nav-btn {
    padding: 0.75rem 1rem !important;
    border-radius: 12px !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    transition: all 0.25s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    width: 100% !important;
  }
  .site-header .main-nav .nav-item a:hover,
  .site-header .main-nav .nav-item a:active,
  .site-header .main-nav .nav-item .nav-btn:hover {
    background: rgba(244, 121, 35, 0.12) !important;
    color: #f47923 !important;
    transform: translateX(4px);
  }
  .site-header .main-nav .nav-item.login-link {
    padding: 0.5rem 0 1rem;
    width: 100%;
  }
  .site-header .main-nav .nav-item .mobile-btn-login {
    background: linear-gradient(135deg, #f47923, #d96210) !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    padding: 0.75rem 1.25rem !important;
    border-radius: 14px !important;
    justify-content: center !important;
    box-shadow: 0 6px 20px rgba(244, 121, 35, 0.35);
  }
  .site-header .main-nav .nav-item.user-info-mobile {
    padding: 0.5rem 0 1.25rem;
    width: 100%;
  }
  .site-header .main-nav .nav-item.user-info-mobile .user-profile-mobile {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 0.85rem 1rem;
    width: 100%;
  }
  .site-header .main-nav .nav-item.user-info-mobile .mobile-user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #f47923;
    box-shadow: 0 0 15px rgba(244, 121, 35, 0.4);
    object-fit: cover;
  }
  .site-header .main-nav .nav-item.user-info-mobile .user-details-mobile {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .site-header .main-nav .nav-item.user-info-mobile .mobile-user-name {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    word-break: break-word;
  }
  .site-header .main-nav .nav-item.user-info-mobile .mobile-logout-btn {
    font-size: 0.78rem !important;
    padding: 3px 12px !important;
    color: #f47923 !important;
    text-decoration: none;
    background: rgba(244, 121, 35, 0.15) !important;
    border: 1px solid rgba(244, 121, 35, 0.35) !important;
    border-radius: 20px !important;
    width: fit-content !important;
    font-weight: 700 !important;
    transition: all 0.2s ease;
  }
  .site-header .main-nav .nav-item.user-info-mobile .mobile-logout-btn:hover {
    background: #f47923 !important;
    color: #ffffff !important;
  }
  .site-header .main-nav .nav-item.social-icons {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: auto;
    padding: 1.25rem 0.5rem 2rem;
    width: 100%;
  }
  .social-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }
  .social-grid a {
    width: 36px !important;
    height: 36px !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.95rem !important;
    transition: all 0.25s ease !important;
    padding: 0 !important;
  }
  .social-grid a:hover {
    background: #f47923 !important;
    border-color: #f47923 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 121, 35, 0.4);
  }
}

.site-header .main-nav .nav-item.dropdown {
  position: relative !important;
}
.site-header .main-nav .nav-item #coursesBtn {
  position: relative;
  padding: 8px 36px 8px 18px !important;
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  background: transparent;
  border: 1.5px solid #f47923 !important;
  border-radius: 8px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
  transition: all 0.25s ease;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.45);
}
.site-header .main-nav .nav-item #coursesBtn:hover,
.site-header .main-nav .nav-item #coursesBtn.open {
  cursor: pointer;
  background: #f47923 !important;
  color: #ffffff !important;
  border-color: #f47923 !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 14px rgba(244, 121, 35, 0.4);
}
@media (min-width: 769px) {
  .site-header .main-nav .nav-item #coursesBtn::after {
    content: "";
    position: absolute;
    padding-left: 10px;
    margin-right: 10px;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("/assets/images/nav/course-arrow.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
}
@media (max-width: 768px) {
  .site-header .main-nav .nav-item #coursesBtn {
    font-size: 1.2rem;
    font-weight: 500;
    padding: 1rem 0;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }
}
.site-header .main-nav .nav-item a,
.site-header .main-nav .nav-item .nav-btn {
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  padding: 6px 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  white-space: nowrap;
  transition: color 150ms ease, background 120ms ease, border-color 120ms ease;
}
@media (max-width: 768px) {
  .site-header .main-nav .nav-item a,
  .site-header .main-nav .nav-item .nav-btn {
    padding: 1.2rem 0;
    width: 100%;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
  }
  .site-header .main-nav .nav-item a:hover,
  .site-header .main-nav .nav-item .nav-btn:hover {
    background: transparent;
  }
}
.site-header .main-nav .nav-item a:hover,
.site-header .main-nav .nav-item .nav-btn:hover {
  color: #e8e6e5;
}
.site-header .main-nav .nav-item.spacer {
  flex: 1 1 auto;
  pointer-events: none;
}
.site-header .main-nav .nav-item .labs-pill {
  background: linear-gradient(90deg, #F47923, #F47923);
  padding: 4px 22px;
  border-radius: 6px;
  font-weight: 400;
  box-shadow: 0 10px 26px rgba(249, 115, 22, 0.1);
  display: inline-flex;
  align-items: center;
}
.site-header .main-nav .nav-item.cta .btn-outline {
  border: 1.5px solid #f47923 !important;
  padding: 8px 20px !important;
  border-radius: 8px !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.45);
  display: inline-flex;
  align-items: center;
}
.site-header .main-nav .nav-item.cta .btn-outline:hover {
  cursor: pointer;
  background-color: #F47923;
}
.site-header .main-nav .nav-item .dropdown {
  position: relative;
  height: 100%;
}
.site-header .main-nav .nav-item .dropdown .btn.a-reg {
  background: transparent;
  border: 1px solid #F47923;
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.site-header .main-nav .nav-item .dropdown .btn.a-reg img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.site-header .main-nav .nav-item .dropdown .btn.a-reg:hover {
  border-color: #F47923;
  color: rgba(255, 255, 255, 0.9);
}
.site-header .main-nav .nav-item .dropdown .btn.a-reg .user-name-text {
  max-width: 120px;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}
.site-header .main-nav .nav-item .dropdown .dropdown-menu-body {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  left: auto;
  min-width: 200px;
  background: #222222;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 2px solid #F47923;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  padding: 12px 0;
  margin: 0;
  list-style: none;
  display: none;
  z-index: 100;
}
.site-header .main-nav .nav-item .dropdown .dropdown-menu-body.show {
  display: block;
}
.site-header .main-nav .nav-item .dropdown .dropdown-menu-body .line {
  display: none;
}
.site-header .main-nav .nav-item .dropdown .dropdown-menu-body .d-item {
  display: block;
  padding: 10px 24px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.2s ease;
}
.site-header .main-nav .nav-item .dropdown .dropdown-menu-body .d-item:hover {
  color: #F47923;
  background: transparent;
}
.site-header .main-nav .nav-item .dropdown-toggle {
  background: #121212;
}
.site-header .main-nav .nav-item.dropdown .dropdown-toggle {
  border: 1px solid #F47923;
  padding: 7px 14px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b7b3b0;
  font-size: 17px;
  font-weight: 400;
}
.site-header .main-nav .nav-item.dropdown .dropdown-toggle.open {
  border: 1.5px solid #F47923;
  background: linear-gradient(90deg, #F47923, #F47923);
  color: #e8e6e5;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.08);
}
.site-header .main-nav .nav-item.dropdown .chev {
  opacity: 0.9;
  transform: translateY(1px);
}
.site-header .main-nav .nav-item.dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 190px;
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.98), rgba(11, 11, 11, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  padding: 8px;
  display: none;
  z-index: 80;
}
.site-header .main-nav .nav-item.dropdown .dropdown-menu a {
  display: block;
  padding: 10px 12px;
  color: #b7b3b0;
  text-decoration: none;
  border-radius: 8px;
}
.site-header .main-nav .nav-item.dropdown .dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.02);
  color: #e8e6e5;
}
.site-header .main-nav .nav-item.dropdown .dropdown-menu.open {
  display: block;
}
.site-header .nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  background: transparent;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
  z-index: 10;
}
@media (max-width: 768px) {
  .site-header .nav-toggle {
    display: flex;
  }
}
.site-header .nav-toggle span {
  display: block;
  height: 2px;
  background: #ffffff;
  width: 26px;
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.site-header .nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.site-header .nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.site-header .nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.site-header .nav-overlay {
  position: fixed;
  inset: 0;
  background: #000000;
  z-index: 10000 !important;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.site-header .nav-overlay.active {
  opacity: 1;
  visibility: visible;
}
.site-header .social-icons {
  padding-top: 1.5rem !important;
}
.site-header .social-icons .mobile-nav-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 0 1.5rem 0;
  width: 100%;
}
.site-header .social-icons .social-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  width: 100%;
}
.site-header .social-icons .social-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: rgba(232, 230, 229, 0.8);
  font-size: 1.1rem;
  transition: all 0.2s ease;
}
.site-header .social-icons .social-grid a:hover {
  color: #F47923;
  background: rgba(244, 121, 35, 0.1);
  transform: translateY(-2px);
}
body.nav-open {
  overflow: hidden;
}

.footer-section {
  background: #1A1A1A;
  color: #e8e6e5;
  padding: 2.875rem 0 0.875rem 0;
}
.footer-section .footer-container {
  max-width: 1800px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
@media (max-width: 768px) {
  .footer-section .footer-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 480px) {
  .footer-section .footer-container {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    justify-content: center;
  }
}
.footer-section .footer-container .footer-brand-section {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-width: 280px;
}
@media (max-width: 1023px) {
  .footer-section .footer-container .footer-brand-section {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 0.5rem 1.2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #262626;
    margin-bottom: 2rem;
    width: 100%;
  }
}
.footer-section .footer-container .footer-brand-section .ninja-brand {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1023px) {
  .footer-section .footer-container .footer-brand-section .ninja-brand {
    grid-column: 1;
    grid-row: 1/3;
  }
}
.footer-section .footer-container .footer-brand-section .ninja-brand .footer-ninja-logo {
  height: 5.5rem;
  width: auto;
  object-fit: contain;
  align-self: flex-start;
}
@media (max-width: 1023px) {
  .footer-section .footer-container .footer-brand-section .ninja-brand .footer-ninja-logo {
    height: 4rem;
    align-self: center;
  }
}
.footer-section .footer-container .footer-brand-section .ninja-brand .footer-ninja-text {
  font-size: 0.85rem;
  color: #e8e6e5;
  margin-top: 0.8rem;
  font-weight: 400;
  line-height: 1.4;
  max-width: 100%;
}
.footer-section .footer-container .footer-brand-section .ninja-brand .footer-ninja-text br {
  display: none;
}
@media (max-width: 1023px) {
  .footer-section .footer-container .footer-brand-section .ninja-brand .footer-ninja-text {
    font-size: 0.75rem;
    max-width: 140px;
  }
  .footer-section .footer-container .footer-brand-section .ninja-brand .footer-ninja-text br {
    display: block;
  }
}
@media (max-width: 480px) {
  .footer-section .footer-container .footer-brand-section .ninja-brand .footer-ninja-text {
    font-size: 9px !important;
    text-align: center;
  }
}
.footer-section .footer-container .footer-brand-section .partner-logos {
  display: flex;
  align-items: center;
}
.footer-section .footer-container .footer-brand-section .partner-logos .footer-startup-logo {
  width: 14rem;
  height: auto;
  object-fit: contain;
}
@media (max-width: 1023px) {
  .footer-section .footer-container .footer-brand-section .partner-logos .footer-startup-logo {
    width: 12rem;
  }
}
.footer-section .footer-container .footer-brand-section .partner-logos .footer-gst-logo {
  grid-column: 2;
  height: 4.5rem;
  width: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 4px;
  padding: 4px;
}
@media (max-width: 1023px) {
  .footer-section .footer-container .footer-brand-section .partner-logos .footer-gst-logo {
    grid-column: 2;
    grid-row: 2;
    height: 2.8rem;
  }
}
.footer-section .footer-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.footer-section .footer-header .footer-logo {
  height: 5rem;
  width: 7rem;
  flex-shrink: 0;
  object-fit: contain;
}
.footer-section .footer-header .footer-header-content {
  flex: 1;
}
.footer-section .footer-header .footer-header-content .footer-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  border-radius: 9999px;
  background: #27272a;
  color: #d4d4d8;
}
.footer-section .footer-header .footer-header-content .footer-title-main {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 1rem;
  line-height: 1.2;
}
.footer-section .footer-header .footer-header-content .footer-description {
  color: #9ca3af;
  margin-top: 0.75rem;
  max-width: 100%;
}
.footer-section .footer-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 12px;
  border-radius: 1rem;
  background-color: #0E0E0E;
}
@media (min-width: 768px) {
  .footer-section .footer-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1427px) {
  .footer-section .footer-cards {
    width: 85rem;
    margin-left: 1rem;
  }
}
.footer-section .footer-cards .footer-card {
  background: #1a1a1a;
  border: 1px solid #3a3a3a;
  border-radius: 1rem;
  padding: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 180px;
}
.footer-section .footer-cards .footer-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #fff;
  padding-right: 3rem;
}
.footer-section .footer-cards .footer-card p {
  font-size: 0.9rem;
  color: #9ca3af;
  line-height: 1.5;
  flex-grow: 1;
}
.footer-section .footer-cards .footer-card .arrow-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
}
.footer-section .footer-cards .footer-card .arrow-btn .arrow-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}
.footer-section .footer-cards .footer-card .arrow-btn .arrow-default {
  opacity: 1;
}
.footer-section .footer-cards .footer-card .arrow-btn .arrow-hover {
  opacity: 0;
}
.footer-section .footer-cards .footer-card .arrow-btn:hover .arrow-default {
  opacity: 0;
}
.footer-section .footer-cards .footer-card .arrow-btn:hover .arrow-hover {
  opacity: 1;
}
.footer-section .footer-cards .footer-card:hover {
  transform: translateY(-5px);
}
.footer-section .footer-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  /* margin-bottom: 4rem; */
  text-align: left;
  width: 100%;
  min-width: 0;
  padding-left: 1rem;
}
@media (min-width: 1024px) {
  .footer-section .footer-columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: left;
    margin-bottom: 0;
    flex: 1;
  }
}
.footer-section .footer-columns .footer-column .footer-title {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  margin-left: 0;
  line-height: 1.57;
}
@media (min-width: 1024px) {
  .footer-section .footer-columns .footer-column .footer-title {
    font-size: 2.66rem;
  }
}
.footer-section .footer-columns .footer-column .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section .footer-columns .footer-column .footer-links li {
  margin-bottom: 1rem;
  color: #ffffff;
  cursor: pointer;
  transition: color 0.2s;
  font-size: 0.95rem;
  font-weight: 300;
}
@media (min-width: 1024px) {
  .footer-section .footer-columns .footer-column .footer-links li {
    font-size: 1.25rem;
  }
}
.footer-section .footer-columns .footer-column .footer-links li:hover {
  color: #F47923;
}
.footer-section .footer-bottom {
  border-top: 1px solid #262626;
  padding: 1rem 48px 0;
  margin: 2rem auto 0;
  max-width: 1800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: #666666;
  font-size: 0.84rem;
  width: 100%;
}
@media (max-width: 768px) {
  .footer-section .footer-bottom {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 1023px) {
  .footer-section .footer-bottom {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
  }
}
@media (min-width: 1024px) {
  .footer-section .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-section .footer-bottom .footer-legal {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
@media (max-width: 1023px) {
  .footer-section .footer-bottom .footer-legal {
    order: 2;
  }
}
.footer-section .footer-bottom .footer-legal a {
  color: #666666;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.84rem;
  font-weight: 400;
}
.footer-section .footer-bottom .footer-legal a:hover {
  color: #F47923;
}
.footer-section .footer-bottom .footer-social {
  display: flex;
  gap: 1rem;
}
@media (max-width: 1023px) {
  .footer-section .footer-bottom .footer-social {
    order: 4;
    border-top: 1px solid #262626;
    padding-top: 1rem;
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
  }
}
.footer-section .footer-bottom .footer-social i {
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.2s;
  color: #c9c9c9;
}
.footer-section .footer-bottom .footer-social i:hover {
  color: #fff;
  transform: translateY(-2px);
}
.footer-section .footer-bottom .footer-copyright {
  margin: 0;
  color: #666666;
  font-size: 0.74rem;
  font-weight: 400;
}
@media (max-width: 1023px) {
  .footer-section .footer-bottom .footer-copyright {
    order: 1;
  }
}
@media (min-width: 1024px) {
  .footer-section .footer-bottom .footer-copyright {
    order: 3;
  }
}

.bg-img {
  position: absolute;
  transform: translate(-60%, -25%);
}

.hero {
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 48px 1.5rem;
  position: relative;
  gap: 40px;
  overflow: hidden;
}
.hero__content {
  max-width: 1100px;
  z-index: 10;
  flex: 1.5;
  animation: slideInLeft 0.8s ease-out;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}
@media (max-width: 480px) {
  .hero__content {
    background: rgba(53, 51, 51, 0.95);
    padding: 2rem 1.5rem;
    border-radius: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 20px;
    gap: 20px;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
}
.hero__heading-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  position: relative;
}
@media (max-width: 480px) {
  .hero__heading-wrapper {
    gap: 18px;
    text-align: left;
  }
}
.hero__title {
  font-size: 56px;
  font-weight: 500;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 0;
  letter-spacing: -1.5px;
}
.hero__title .text-underline-sml {
  position: relative;
  display: inline-block;
  font-weight: 600;
}
.hero__title .text-underline-sml::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 22px;
  background: url("/assets/images/hero/Vector 1.png") no-repeat center bottom;
  background-size: contain;
  z-index: -1;
}
@media (max-width: 480px) {
  .hero__title .text-underline-sml::after {
    bottom: -4px !important;
  }
}
.hero__title .text-underline-lg {
  position: relative;
  display: inline-block;
  font-weight: 600;
}
.hero__title .text-underline-lg::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 22px;
  background: url("/assets/images/hero/Vector 1.png") no-repeat center bottom;
  background-size: contain;
  z-index: -1;
}
@media (max-width: 480px) {
  .hero__title .text-underline-lg::after {
    bottom: -4px !important;
  }
}
@media (max-width: 1200px) {
  .hero__title {
    font-size: 56px;
  }
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 40px;
    line-height: 1.3;
  }
}
@media (max-width: 480px) {
  .hero__title {
    font-size: 32px;
    letter-spacing: 0;
    text-align: left;
  }
}
.hero__desc {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(232, 230, 229, 0.7);
  max-width: 700px;
  margin: 0;
}
@media (max-width: 768px) {
  .hero__desc {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .hero__desc {
    font-size: 14px;
    color: rgba(232, 230, 229, 0.8);
  }
}
.hero__btn-container {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  right: 4rem;
  transform: translate(4rem, 0);
}
@media (max-width: 480px) {
  .hero__btn-container {
    width: 100%;
    right: 0;
    transform: translate(0, 0);
    justify-content: flex-start;
  }
}
.hero__btn-container button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 15px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid #ff7b23;
  background: transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  z-index: 1;
}
@media (max-width: 768px) {
  .hero__btn-container button {
    font-size: 14px;
    padding: 10px 20px;
    width: auto;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .hero__btn-container button {
    font-size: 12px;
    padding: 7px 14px;
    width: auto;
    text-align: center;
  }
}
.hero__btn-container button::before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("/assets/images/hero/scdl-btn-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.hero__btn-container button span {
  position: relative;
  z-index: 1;
}
.hero__btn-container button:hover {
  background: #ff7b23;
  transform: translateY(-2px);
}
.hero__btn-container button:hover::before {
  background-image: url("/assets/images/hero/scdl-btn-icon-wt.png");
}
.hero__btn-container button:active {
  transform: translateY(0) scale(0.98);
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F47923;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .hero__btn {
    font-size: 14px;
    padding: 10px 20px;
    width: auto;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .hero__btn {
    font-size: 12px;
    padding: 11px 11px;
    width: auto;
    text-align: center;
  }
}
.hero__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
  z-index: 0;
}
.hero__btn span {
  position: relative;
  z-index: 1;
}
.hero__btn:hover {
  transform: translateY(-4px);
}
.hero__btn:hover::before {
  left: 100%;
}
.hero__btn:hover ~ .hero__btn-arrow {
  opacity: 1;
  transform: translateX(0) translateY(-4px);
  visibility: visible;
}
.hero__btn:hover ~ button,
.hero__btn:hover ~ .hero__btn--subscription {
  transform: translateX(55px);
}
@media (max-width: 768px) {
  .hero__btn:hover ~ button,
  .hero__btn:hover ~ .hero__btn--subscription {
    transform: none;
  }
}
.hero__btn-arrow {
  width: 44px;
  height: 44px;
  background: #F47923;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-30px);
  margin-right: -44px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  text-decoration: none;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
}
@media (max-width: 768px) {
  .hero__btn-arrow {
    display: none;
  }
}
.hero__btn-arrow img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.hero__btn-arrow:hover {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1.1);
}
.hero__btn-arrow:hover + button {
  transform: translateX(55px);
}
.hero__carousel-wrapper {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 5;
  height: 38rem;
  padding-right: 8px;
}
@media (max-width: 768px) {
  .hero__carousel-wrapper {
    display: none;
  }
}
.hero {
  /* Responsive breakpoints */
}
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 10px 20px 40px 20px;
    min-height: auto;
    gap: 30px;
    align-items: flex-start;
  }
}

.carousel-content {
  position: relative;
  width: 300px;
  height: 100%;
  display: flex;
  align-items: center;
}

.carousel-arrow {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  pointer-events: none;
  animation: arrowPoke 3s infinite ease-in-out;
}
.carousel-arrow svg {
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
}

.carousel-track {
  width: 100%;
  height: 560px;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 84%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 84%, transparent 100%);
}

.carousel-scroll {
  position: relative;
  height: 100%;
}

.carousel-item {
  position: absolute;
  top: 50%;
  left: 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  animation-duration: var(--total-duration);
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-delay: calc(var(--i) * -3s);
  transform: translateY(-50%);
  opacity: 0;
  will-change: transform, opacity;
}

.carousel-text {
  font-size: 30px;
  font-weight: 600;
  color: #ffffff;
  opacity: 1;
  transition: opacity 0.3s;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.items-count-1 .carousel-item {
  animation-name: dynamicSnappyScroll-1;
}

@keyframes dynamicSnappyScroll-1 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  80% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-2 .carousel-item {
  animation-name: dynamicSnappyScroll-2;
}

@keyframes dynamicSnappyScroll-2 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  40% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  50% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  90% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-3 .carousel-item {
  animation-name: dynamicSnappyScroll-3;
}

@keyframes dynamicSnappyScroll-3 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  26.6666666667% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  33.3333333333% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  60% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  66.6666666667% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  93.3333333333% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-4 .carousel-item {
  animation-name: dynamicSnappyScroll-4;
}

@keyframes dynamicSnappyScroll-4 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  20% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  25% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  45% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  50% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  70% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  75% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  95% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-5 .carousel-item {
  animation-name: dynamicSnappyScroll-5;
}

@keyframes dynamicSnappyScroll-5 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  16% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  20% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  36% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  40% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  56% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  60% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  76% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  80% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  96% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-6 .carousel-item {
  animation-name: dynamicSnappyScroll-6;
}

@keyframes dynamicSnappyScroll-6 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  13.3333333333% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  16.6666666667% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  30% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  33.3333333333% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  46.6666666667% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  50% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  63.3333333333% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  66.6666666667% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  80% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  83.3333333333% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  96.6666666667% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-7 .carousel-item {
  animation-name: dynamicSnappyScroll-7;
}

@keyframes dynamicSnappyScroll-7 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  11.4285714286% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  14.2857142857% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  25.7142857143% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  28.5714285714% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  40% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  42.8571428571% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  54.2857142857% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  57.1428571429% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  68.5714285714% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  71.4285714286% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  82.8571428571% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  85.7142857143% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  97.1428571429% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-8 .carousel-item {
  animation-name: dynamicSnappyScroll-8;
}

@keyframes dynamicSnappyScroll-8 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  10% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  12.5% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  22.5% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  25% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  35% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  37.5% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  47.5% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  50% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  60% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  62.5% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  72.5% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  75% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  85% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  87.5% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  97.5% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-9 .carousel-item {
  animation-name: dynamicSnappyScroll-9;
}

@keyframes dynamicSnappyScroll-9 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  8.8888888889% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  11.1111111111% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  20% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  22.2222222222% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  31.1111111111% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  33.3333333333% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  42.2222222222% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  44.4444444444% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  53.3333333333% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  55.5555555556% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  64.4444444444% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  66.6666666667% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  75.5555555556% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  77.7777777778% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  86.6666666667% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  88.8888888889% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  97.7777777778% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-10 .carousel-item {
  animation-name: dynamicSnappyScroll-10;
}

@keyframes dynamicSnappyScroll-10 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  8% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  10% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  18% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  20% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  28% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  30% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  38% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  40% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  48% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  50% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  58% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  60% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  68% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  70% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  78% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  80% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  88% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  90% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  98% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-11 .carousel-item {
  animation-name: dynamicSnappyScroll-11;
}

@keyframes dynamicSnappyScroll-11 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  7.2727272727% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  9.0909090909% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  16.3636363636% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  18.1818181818% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  25.4545454545% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  27.2727272727% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  34.5454545455% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  36.3636363636% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  43.6363636364% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  45.4545454545% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  52.7272727273% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  54.5454545455% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  61.8181818182% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  63.6363636364% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  70.9090909091% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  72.7272727273% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  80% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  81.8181818182% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  89.0909090909% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  90.9090909091% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  98.1818181818% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-12 .carousel-item {
  animation-name: dynamicSnappyScroll-12;
}

@keyframes dynamicSnappyScroll-12 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  6.6666666667% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  8.3333333333% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  15% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  16.6666666667% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  23.3333333333% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  25% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  31.6666666667% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  33.3333333333% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  40% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  41.6666666667% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  48.3333333333% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  50% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  56.6666666667% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  58.3333333333% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  65% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  66.6666666667% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  73.3333333333% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  75% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  81.6666666667% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  83.3333333333% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  90% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  91.6666666667% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  98.3333333333% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-13 .carousel-item {
  animation-name: dynamicSnappyScroll-13;
}

@keyframes dynamicSnappyScroll-13 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  6.1538461538% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  7.6923076923% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  13.8461538462% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  15.3846153846% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  21.5384615385% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  23.0769230769% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  29.2307692308% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  30.7692307692% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  36.9230769231% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  38.4615384615% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  44.6153846154% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  46.1538461538% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  52.3076923077% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  53.8461538462% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  60% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  61.5384615385% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  67.6923076923% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  69.2307692308% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  75.3846153846% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  76.9230769231% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  83.0769230769% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  84.6153846154% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  90.7692307692% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  92.3076923077% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  98.4615384615% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-14 .carousel-item {
  animation-name: dynamicSnappyScroll-14;
}

@keyframes dynamicSnappyScroll-14 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  5.7142857143% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  7.1428571429% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  12.8571428571% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  14.2857142857% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  20% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  21.4285714286% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  27.1428571429% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  28.5714285714% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  34.2857142857% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  35.7142857143% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  41.4285714286% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  42.8571428571% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  48.5714285714% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  50% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  55.7142857143% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  57.1428571429% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  62.8571428571% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  64.2857142857% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  70% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  71.4285714286% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  77.1428571429% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  78.5714285714% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  84.2857142857% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  85.7142857143% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  91.4285714286% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  92.8571428571% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  98.5714285714% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-15 .carousel-item {
  animation-name: dynamicSnappyScroll-15;
}

@keyframes dynamicSnappyScroll-15 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  5.3333333333% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  6.6666666667% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  12% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  13.3333333333% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  18.6666666667% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  20% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  25.3333333333% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  26.6666666667% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  32% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  33.3333333333% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  38.6666666667% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  40% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  45.3333333333% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  46.6666666667% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  52% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  53.3333333333% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  58.6666666667% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  60% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  65.3333333333% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  66.6666666667% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  72% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  73.3333333333% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  78.6666666667% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  80% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  85.3333333333% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  86.6666666667% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  92% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  93.3333333333% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  98.6666666667% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-16 .carousel-item {
  animation-name: dynamicSnappyScroll-16;
}

@keyframes dynamicSnappyScroll-16 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  5% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  6.25% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  11.25% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  12.5% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  17.5% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  18.75% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  23.75% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  25% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  30% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  31.25% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  36.25% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  37.5% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  42.5% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  43.75% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  48.75% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  50% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  55% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  56.25% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  61.25% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  62.5% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  67.5% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  68.75% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  73.75% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  75% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  80% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  81.25% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  86.25% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  87.5% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  92.5% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  93.75% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  98.75% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-17 .carousel-item {
  animation-name: dynamicSnappyScroll-17;
}

@keyframes dynamicSnappyScroll-17 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  4.7058823529% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  5.8823529412% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  10.5882352941% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  11.7647058824% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  16.4705882353% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  17.6470588235% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  22.3529411765% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  23.5294117647% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  28.2352941176% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  29.4117647059% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  34.1176470588% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  35.2941176471% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  40% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  41.1764705882% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  45.8823529412% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  47.0588235294% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  51.7647058824% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  52.9411764706% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  57.6470588235% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  58.8235294118% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  63.5294117647% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  64.7058823529% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  69.4117647059% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  70.5882352941% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  75.2941176471% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  76.4705882353% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  81.1764705882% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  82.3529411765% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  87.0588235294% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  88.2352941176% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  92.9411764706% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  94.1176470588% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  98.8235294118% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-18 .carousel-item {
  animation-name: dynamicSnappyScroll-18;
}

@keyframes dynamicSnappyScroll-18 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  4.4444444444% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  5.5555555556% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  10% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  11.1111111111% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  15.5555555556% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  16.6666666667% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  21.1111111111% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  22.2222222222% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  26.6666666667% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  27.7777777778% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  32.2222222222% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  33.3333333333% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  37.7777777778% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  38.8888888889% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  43.3333333333% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  44.4444444444% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  48.8888888889% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  50% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  54.4444444444% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  55.5555555556% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  60% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  61.1111111111% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  65.5555555556% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  66.6666666667% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  71.1111111111% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  72.2222222222% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  76.6666666667% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  77.7777777778% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  82.2222222222% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  83.3333333333% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  87.7777777778% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  88.8888888889% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  93.3333333333% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  94.4444444444% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  98.8888888889% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-19 .carousel-item {
  animation-name: dynamicSnappyScroll-19;
}

@keyframes dynamicSnappyScroll-19 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  4.2105263158% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  5.2631578947% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  9.4736842105% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  10.5263157895% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  14.7368421053% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  15.7894736842% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  20% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  21.0526315789% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  25.2631578947% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  26.3157894737% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  30.5263157895% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  31.5789473684% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  35.7894736842% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  36.8421052632% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  41.0526315789% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  42.1052631579% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  46.3157894737% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  47.3684210526% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  51.5789473684% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  52.6315789474% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  56.8421052632% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  57.8947368421% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  62.1052631579% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  63.1578947368% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  67.3684210526% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  68.4210526316% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  72.6315789474% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  73.6842105263% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  77.8947368421% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  78.9473684211% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  83.1578947368% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  84.2105263158% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  88.4210526316% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  89.4736842105% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  93.6842105263% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  94.7368421053% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  98.9473684211% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-20 .carousel-item {
  animation-name: dynamicSnappyScroll-20;
}

@keyframes dynamicSnappyScroll-20 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  4% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  5% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  9% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  10% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  14% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  15% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  19% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  20% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  24% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  25% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  29% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  30% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  34% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  35% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  39% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  40% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  44% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  45% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  49% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  50% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  54% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  55% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  59% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  60% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  64% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  65% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  69% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  70% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  74% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  75% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  79% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  80% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  84% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  85% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  89% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  90% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  94% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  95% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  99% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-21 .carousel-item {
  animation-name: dynamicSnappyScroll-21;
}

@keyframes dynamicSnappyScroll-21 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  3.8095238095% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  4.7619047619% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  8.5714285714% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  9.5238095238% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  13.3333333333% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  14.2857142857% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  18.0952380952% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  19.0476190476% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  22.8571428571% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  23.8095238095% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  27.619047619% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  28.5714285714% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  32.380952381% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  33.3333333333% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  37.1428571429% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  38.0952380952% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  41.9047619048% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  42.8571428571% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  46.6666666667% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  47.619047619% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  51.4285714286% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  52.380952381% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  56.1904761905% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  57.1428571429% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  60.9523809524% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  61.9047619048% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  65.7142857143% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  66.6666666667% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  70.4761904762% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  71.4285714286% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  75.2380952381% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  76.1904761905% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  80% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  80.9523809524% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  84.7619047619% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  85.7142857143% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  89.5238095238% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  90.4761904762% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  94.2857142857% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  95.2380952381% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  99.0476190476% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-22 .carousel-item {
  animation-name: dynamicSnappyScroll-22;
}

@keyframes dynamicSnappyScroll-22 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  3.6363636364% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  4.5454545455% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  8.1818181818% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  9.0909090909% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  12.7272727273% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  13.6363636364% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  17.2727272727% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  18.1818181818% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  21.8181818182% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  22.7272727273% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  26.3636363636% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  27.2727272727% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  30.9090909091% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  31.8181818182% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  35.4545454545% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  36.3636363636% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  40% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  40.9090909091% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  44.5454545455% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  45.4545454545% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  49.0909090909% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  50% {
    transform: translateY(-50%) translate(-363px, 572px) rotate(44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  53.6363636364% {
    transform: translateY(-50%) translate(-363px, 572px) rotate(44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  54.5454545455% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  58.1818181818% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  59.0909090909% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  62.7272727273% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  63.6363636364% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  67.2727272727% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  68.1818181818% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  71.8181818182% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  72.7272727273% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  76.3636363636% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  77.2727272727% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  80.9090909091% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  81.8181818182% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  85.4545454545% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  86.3636363636% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  90% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  90.9090909091% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  94.5454545455% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  95.4545454545% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  99.0909090909% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-23 .carousel-item {
  animation-name: dynamicSnappyScroll-23;
}

@keyframes dynamicSnappyScroll-23 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  3.4782608696% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  4.347826087% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  7.8260869565% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  8.6956521739% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  12.1739130435% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  13.0434782609% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  16.5217391304% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  17.3913043478% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  20.8695652174% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  21.7391304348% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  25.2173913043% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  26.0869565217% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  29.5652173913% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  30.4347826087% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  33.9130434783% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  34.7826086957% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  38.2608695652% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  39.1304347826% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  42.6086956522% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  43.4782608696% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  46.9565217391% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  47.8260869565% {
    transform: translateY(-50%) translate(-363px, 572px) rotate(44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  51.3043478261% {
    transform: translateY(-50%) translate(-363px, 572px) rotate(44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  52.1739130435% {
    transform: translateY(-50%) translate(-363px, -572px) rotate(-44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  55.652173913% {
    transform: translateY(-50%) translate(-363px, -572px) rotate(-44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  56.5217391304% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  60% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  60.8695652174% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  64.347826087% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  65.2173913043% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  68.6956521739% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  69.5652173913% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  73.0434782609% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  73.9130434783% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  77.3913043478% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  78.2608695652% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  81.7391304348% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  82.6086956522% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  86.0869565217% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  86.9565217391% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  90.4347826087% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  91.3043478261% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  94.7826086957% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  95.652173913% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  99.1304347826% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-24 .carousel-item {
  animation-name: dynamicSnappyScroll-24;
}

@keyframes dynamicSnappyScroll-24 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  3.3333333333% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  4.1666666667% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  7.5% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  8.3333333333% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  11.6666666667% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  12.5% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  15.8333333333% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  16.6666666667% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  20% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  20.8333333333% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  24.1666666667% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  25% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  28.3333333333% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  29.1666666667% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  32.5% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  33.3333333333% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  36.6666666667% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  37.5% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  40.8333333333% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  41.6666666667% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  45% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  45.8333333333% {
    transform: translateY(-50%) translate(-363px, 572px) rotate(44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  49.1666666667% {
    transform: translateY(-50%) translate(-363px, 572px) rotate(44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  50% {
    transform: translateY(-50%) translate(-432px, 624px) rotate(48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  53.3333333333% {
    transform: translateY(-50%) translate(-432px, 624px) rotate(48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  54.1666666667% {
    transform: translateY(-50%) translate(-363px, -572px) rotate(-44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  57.5% {
    transform: translateY(-50%) translate(-363px, -572px) rotate(-44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  58.3333333333% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  61.6666666667% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  62.5% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  65.8333333333% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  66.6666666667% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  70% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  70.8333333333% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  74.1666666667% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  75% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  78.3333333333% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  79.1666666667% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  82.5% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  83.3333333333% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  86.6666666667% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  87.5% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  90.8333333333% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  91.6666666667% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  95% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  95.8333333333% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  99.1666666667% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-25 .carousel-item {
  animation-name: dynamicSnappyScroll-25;
}

@keyframes dynamicSnappyScroll-25 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  3.2% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  4% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  7.2% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  8% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  11.2% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  12% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  15.2% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  16% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  19.2% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  20% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  23.2% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  24% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  27.2% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  28% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  31.2% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  32% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  35.2% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  36% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  39.2% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  40% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  43.2% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  44% {
    transform: translateY(-50%) translate(-363px, 572px) rotate(44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  47.2% {
    transform: translateY(-50%) translate(-363px, 572px) rotate(44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  48% {
    transform: translateY(-50%) translate(-432px, 624px) rotate(48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  51.2% {
    transform: translateY(-50%) translate(-432px, 624px) rotate(48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  52% {
    transform: translateY(-50%) translate(-432px, -624px) rotate(-48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  55.2% {
    transform: translateY(-50%) translate(-432px, -624px) rotate(-48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  56% {
    transform: translateY(-50%) translate(-363px, -572px) rotate(-44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  59.2% {
    transform: translateY(-50%) translate(-363px, -572px) rotate(-44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  60% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  63.2% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  64% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  67.2% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  68% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  71.2% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  72% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  75.2% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  76% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  79.2% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  80% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  83.2% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  84% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  87.2% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  88% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  91.2% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  92% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  95.2% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  96% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  99.2% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-26 .carousel-item {
  animation-name: dynamicSnappyScroll-26;
}

@keyframes dynamicSnappyScroll-26 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  3.0769230769% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  3.8461538462% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  6.9230769231% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  7.6923076923% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  10.7692307692% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  11.5384615385% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  14.6153846154% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  15.3846153846% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  18.4615384615% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  19.2307692308% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  22.3076923077% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  23.0769230769% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  26.1538461538% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  26.9230769231% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  30% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  30.7692307692% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  33.8461538462% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  34.6153846154% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  37.6923076923% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  38.4615384615% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  41.5384615385% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  42.3076923077% {
    transform: translateY(-50%) translate(-363px, 572px) rotate(44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  45.3846153846% {
    transform: translateY(-50%) translate(-363px, 572px) rotate(44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  46.1538461538% {
    transform: translateY(-50%) translate(-432px, 624px) rotate(48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  49.2307692308% {
    transform: translateY(-50%) translate(-432px, 624px) rotate(48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  50% {
    transform: translateY(-50%) translate(-507px, 676px) rotate(52deg) scale(0.45);
    opacity: 0;
    filter: blur(67.6px);
  }
  53.0769230769% {
    transform: translateY(-50%) translate(-507px, 676px) rotate(52deg) scale(0.45);
    opacity: 0;
    filter: blur(67.6px);
  }
  53.8461538462% {
    transform: translateY(-50%) translate(-432px, -624px) rotate(-48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  56.9230769231% {
    transform: translateY(-50%) translate(-432px, -624px) rotate(-48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  57.6923076923% {
    transform: translateY(-50%) translate(-363px, -572px) rotate(-44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  60.7692307692% {
    transform: translateY(-50%) translate(-363px, -572px) rotate(-44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  61.5384615385% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  64.6153846154% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  65.3846153846% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  68.4615384615% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  69.2307692308% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  72.3076923077% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  73.0769230769% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  76.1538461538% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  76.9230769231% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  80% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  80.7692307692% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  83.8461538462% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  84.6153846154% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  87.6923076923% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  88.4615384615% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  91.5384615385% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  92.3076923077% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  95.3846153846% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  96.1538461538% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  99.2307692308% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-27 .carousel-item {
  animation-name: dynamicSnappyScroll-27;
}

@keyframes dynamicSnappyScroll-27 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  2.962962963% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  3.7037037037% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  6.6666666667% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  7.4074074074% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  10.3703703704% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  11.1111111111% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  14.0740740741% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  14.8148148148% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  17.7777777778% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  18.5185185185% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  21.4814814815% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  22.2222222222% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  25.1851851852% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  25.9259259259% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  28.8888888889% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  29.6296296296% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  32.5925925926% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  33.3333333333% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  36.2962962963% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  37.037037037% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  40% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  40.7407407407% {
    transform: translateY(-50%) translate(-363px, 572px) rotate(44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  43.7037037037% {
    transform: translateY(-50%) translate(-363px, 572px) rotate(44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  44.4444444444% {
    transform: translateY(-50%) translate(-432px, 624px) rotate(48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  47.4074074074% {
    transform: translateY(-50%) translate(-432px, 624px) rotate(48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  48.1481481481% {
    transform: translateY(-50%) translate(-507px, 676px) rotate(52deg) scale(0.45);
    opacity: 0;
    filter: blur(67.6px);
  }
  51.1111111111% {
    transform: translateY(-50%) translate(-507px, 676px) rotate(52deg) scale(0.45);
    opacity: 0;
    filter: blur(67.6px);
  }
  51.8518518519% {
    transform: translateY(-50%) translate(-507px, -676px) rotate(-52deg) scale(0.45);
    opacity: 0;
    filter: blur(67.6px);
  }
  54.8148148148% {
    transform: translateY(-50%) translate(-507px, -676px) rotate(-52deg) scale(0.45);
    opacity: 0;
    filter: blur(67.6px);
  }
  55.5555555556% {
    transform: translateY(-50%) translate(-432px, -624px) rotate(-48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  58.5185185185% {
    transform: translateY(-50%) translate(-432px, -624px) rotate(-48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  59.2592592593% {
    transform: translateY(-50%) translate(-363px, -572px) rotate(-44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  62.2222222222% {
    transform: translateY(-50%) translate(-363px, -572px) rotate(-44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  62.962962963% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  65.9259259259% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  66.6666666667% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  69.6296296296% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  70.3703703704% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  73.3333333333% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  74.0740740741% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  77.037037037% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  77.7777777778% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  80.7407407407% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  81.4814814815% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  84.4444444444% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  85.1851851852% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  88.1481481481% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  88.8888888889% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  91.8518518519% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  92.5925925926% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  95.5555555556% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  96.2962962963% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  99.2592592593% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-28 .carousel-item {
  animation-name: dynamicSnappyScroll-28;
}

@keyframes dynamicSnappyScroll-28 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  2.8571428571% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  3.5714285714% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  6.4285714286% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  7.1428571429% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  10% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  10.7142857143% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  13.5714285714% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  14.2857142857% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  17.1428571429% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  17.8571428571% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  20.7142857143% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  21.4285714286% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  24.2857142857% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  25% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  27.8571428571% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  28.5714285714% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  31.4285714286% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  32.1428571429% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  35% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  35.7142857143% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  38.5714285714% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  39.2857142857% {
    transform: translateY(-50%) translate(-363px, 572px) rotate(44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  42.1428571429% {
    transform: translateY(-50%) translate(-363px, 572px) rotate(44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  42.8571428571% {
    transform: translateY(-50%) translate(-432px, 624px) rotate(48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  45.7142857143% {
    transform: translateY(-50%) translate(-432px, 624px) rotate(48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  46.4285714286% {
    transform: translateY(-50%) translate(-507px, 676px) rotate(52deg) scale(0.45);
    opacity: 0;
    filter: blur(67.6px);
  }
  49.2857142857% {
    transform: translateY(-50%) translate(-507px, 676px) rotate(52deg) scale(0.45);
    opacity: 0;
    filter: blur(67.6px);
  }
  50% {
    transform: translateY(-50%) translate(-588px, 728px) rotate(56deg) scale(0.45);
    opacity: 0;
    filter: blur(78.4px);
  }
  52.8571428571% {
    transform: translateY(-50%) translate(-588px, 728px) rotate(56deg) scale(0.45);
    opacity: 0;
    filter: blur(78.4px);
  }
  53.5714285714% {
    transform: translateY(-50%) translate(-507px, -676px) rotate(-52deg) scale(0.45);
    opacity: 0;
    filter: blur(67.6px);
  }
  56.4285714286% {
    transform: translateY(-50%) translate(-507px, -676px) rotate(-52deg) scale(0.45);
    opacity: 0;
    filter: blur(67.6px);
  }
  57.1428571429% {
    transform: translateY(-50%) translate(-432px, -624px) rotate(-48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  60% {
    transform: translateY(-50%) translate(-432px, -624px) rotate(-48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  60.7142857143% {
    transform: translateY(-50%) translate(-363px, -572px) rotate(-44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  63.5714285714% {
    transform: translateY(-50%) translate(-363px, -572px) rotate(-44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  64.2857142857% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  67.1428571429% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  67.8571428571% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  70.7142857143% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  71.4285714286% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  74.2857142857% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  75% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  77.8571428571% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  78.5714285714% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  81.4285714286% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  82.1428571429% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  85% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  85.7142857143% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  88.5714285714% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  89.2857142857% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  92.1428571429% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  92.8571428571% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  95.7142857143% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  96.4285714286% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  99.2857142857% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-29 .carousel-item {
  animation-name: dynamicSnappyScroll-29;
}

@keyframes dynamicSnappyScroll-29 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  2.7586206897% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  3.4482758621% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  6.2068965517% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  6.8965517241% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  9.6551724138% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  10.3448275862% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  13.1034482759% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  13.7931034483% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  16.5517241379% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  17.2413793103% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  20% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  20.6896551724% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  23.4482758621% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  24.1379310345% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  26.8965517241% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  27.5862068966% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  30.3448275862% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  31.0344827586% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  33.7931034483% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  34.4827586207% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  37.2413793103% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  37.9310344828% {
    transform: translateY(-50%) translate(-363px, 572px) rotate(44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  40.6896551724% {
    transform: translateY(-50%) translate(-363px, 572px) rotate(44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  41.3793103448% {
    transform: translateY(-50%) translate(-432px, 624px) rotate(48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  44.1379310345% {
    transform: translateY(-50%) translate(-432px, 624px) rotate(48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  44.8275862069% {
    transform: translateY(-50%) translate(-507px, 676px) rotate(52deg) scale(0.45);
    opacity: 0;
    filter: blur(67.6px);
  }
  47.5862068966% {
    transform: translateY(-50%) translate(-507px, 676px) rotate(52deg) scale(0.45);
    opacity: 0;
    filter: blur(67.6px);
  }
  48.275862069% {
    transform: translateY(-50%) translate(-588px, 728px) rotate(56deg) scale(0.45);
    opacity: 0;
    filter: blur(78.4px);
  }
  51.0344827586% {
    transform: translateY(-50%) translate(-588px, 728px) rotate(56deg) scale(0.45);
    opacity: 0;
    filter: blur(78.4px);
  }
  51.724137931% {
    transform: translateY(-50%) translate(-588px, -728px) rotate(-56deg) scale(0.45);
    opacity: 0;
    filter: blur(78.4px);
  }
  54.4827586207% {
    transform: translateY(-50%) translate(-588px, -728px) rotate(-56deg) scale(0.45);
    opacity: 0;
    filter: blur(78.4px);
  }
  55.1724137931% {
    transform: translateY(-50%) translate(-507px, -676px) rotate(-52deg) scale(0.45);
    opacity: 0;
    filter: blur(67.6px);
  }
  57.9310344828% {
    transform: translateY(-50%) translate(-507px, -676px) rotate(-52deg) scale(0.45);
    opacity: 0;
    filter: blur(67.6px);
  }
  58.6206896552% {
    transform: translateY(-50%) translate(-432px, -624px) rotate(-48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  61.3793103448% {
    transform: translateY(-50%) translate(-432px, -624px) rotate(-48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  62.0689655172% {
    transform: translateY(-50%) translate(-363px, -572px) rotate(-44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  64.8275862069% {
    transform: translateY(-50%) translate(-363px, -572px) rotate(-44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  65.5172413793% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  68.275862069% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  68.9655172414% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  71.724137931% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  72.4137931034% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  75.1724137931% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  75.8620689655% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  78.6206896552% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  79.3103448276% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  82.0689655172% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  82.7586206897% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  85.5172413793% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  86.2068965517% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  88.9655172414% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  89.6551724138% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  92.4137931034% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  93.1034482759% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  95.8620689655% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  96.5517241379% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  99.3103448276% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-30 .carousel-item {
  animation-name: dynamicSnappyScroll-30;
}

@keyframes dynamicSnappyScroll-30 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  2.6666666667% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  3.3333333333% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  6% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  6.6666666667% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  9.3333333333% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  10% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  12.6666666667% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  13.3333333333% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  16% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  16.6666666667% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  19.3333333333% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  20% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  22.6666666667% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  23.3333333333% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  26% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  26.6666666667% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  29.3333333333% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  30% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  32.6666666667% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  33.3333333333% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  36% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  36.6666666667% {
    transform: translateY(-50%) translate(-363px, 572px) rotate(44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  39.3333333333% {
    transform: translateY(-50%) translate(-363px, 572px) rotate(44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  40% {
    transform: translateY(-50%) translate(-432px, 624px) rotate(48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  42.6666666667% {
    transform: translateY(-50%) translate(-432px, 624px) rotate(48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  43.3333333333% {
    transform: translateY(-50%) translate(-507px, 676px) rotate(52deg) scale(0.45);
    opacity: 0;
    filter: blur(67.6px);
  }
  46% {
    transform: translateY(-50%) translate(-507px, 676px) rotate(52deg) scale(0.45);
    opacity: 0;
    filter: blur(67.6px);
  }
  46.6666666667% {
    transform: translateY(-50%) translate(-588px, 728px) rotate(56deg) scale(0.45);
    opacity: 0;
    filter: blur(78.4px);
  }
  49.3333333333% {
    transform: translateY(-50%) translate(-588px, 728px) rotate(56deg) scale(0.45);
    opacity: 0;
    filter: blur(78.4px);
  }
  50% {
    transform: translateY(-50%) translate(-675px, 780px) rotate(60deg) scale(0.45);
    opacity: 0;
    filter: blur(90px);
  }
  52.6666666667% {
    transform: translateY(-50%) translate(-675px, 780px) rotate(60deg) scale(0.45);
    opacity: 0;
    filter: blur(90px);
  }
  53.3333333333% {
    transform: translateY(-50%) translate(-588px, -728px) rotate(-56deg) scale(0.45);
    opacity: 0;
    filter: blur(78.4px);
  }
  56% {
    transform: translateY(-50%) translate(-588px, -728px) rotate(-56deg) scale(0.45);
    opacity: 0;
    filter: blur(78.4px);
  }
  56.6666666667% {
    transform: translateY(-50%) translate(-507px, -676px) rotate(-52deg) scale(0.45);
    opacity: 0;
    filter: blur(67.6px);
  }
  59.3333333333% {
    transform: translateY(-50%) translate(-507px, -676px) rotate(-52deg) scale(0.45);
    opacity: 0;
    filter: blur(67.6px);
  }
  60% {
    transform: translateY(-50%) translate(-432px, -624px) rotate(-48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  62.6666666667% {
    transform: translateY(-50%) translate(-432px, -624px) rotate(-48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  63.3333333333% {
    transform: translateY(-50%) translate(-363px, -572px) rotate(-44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  66% {
    transform: translateY(-50%) translate(-363px, -572px) rotate(-44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  66.6666666667% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  69.3333333333% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  70% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  72.6666666667% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  73.3333333333% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  76% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  76.6666666667% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  79.3333333333% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  80% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  82.6666666667% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  83.3333333333% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  86% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  86.6666666667% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  89.3333333333% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  90% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  92.6666666667% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  93.3333333333% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  96% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  96.6666666667% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  99.3333333333% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes arrowPoke {
  0%, 80% {
    transform: translateY(-50%) translateX(0);
  }
  90% {
    transform: translateY(-50%) translateX(12px);
  }
  100% {
    transform: translateY(-50%) translateX(0);
  }
}
.hero__btn--subscription {
  gap: 8px;
  background: linear-gradient(135deg, #fb8c3e 0%, #f97316 55%, #ea6a0a 100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), box-shadow 0.3s ease;
  animation: sna-premium-glow 2.6s ease-in-out infinite;
}
.hero__btn--subscription::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -60%;
  width: 45%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  animation: sna-premium-sheen 2.6s ease-in-out infinite;
  pointer-events: none;
}
.hero__btn--subscription i {
  font-size: 18px;
}
.hero__btn--subscription:hover {
  transform: translateY(-4px);
}

.about-section {
  width: 100%;
}
.about-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  /* Nested media queries for container */
}
@media (max-width: 600px) {
  .about-section .container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (min-width: 600px) and (max-width: 1024px) {
  .about-section .container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
  }
}
.about-section {
  /* LEFT SIDE */
}
.about-section .about-left {
  color: #e8e6e5;
  /* Tablet view - make it flex to stretch content */
}
@media (min-width: 600px) and (max-width: 1024px) {
  .about-section .about-left {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}
.about-section .about-left .section-label {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 10px;
}
.about-section .about-left h2 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 40px;
  color: white;
}
.about-section .about-left h2 span {
  color: #F47923;
}
.about-section .about-left h2 {
  /* Nested media queries for h2 */
}
@media (min-width: 600px) and (max-width: 1024px) {
  .about-section .about-left h2 {
    font-size: 42px;
    margin-bottom: 30px;
  }
}
@media (max-width: 1024px) {
  .about-section .about-left h2 {
    font-size: 40px;
  }
}
.about-section .about-left h2 {
  /* Mobile view - scale down h2 */
}
@media (max-width: 600px) {
  .about-section .about-left h2 {
    font-size: 20px;
    margin-bottom: 0;
    line-height: 1.25;
    width: 100%;
    text-align: center;
  }
}
.about-section .about-left {
  /* ORBIT IMAGE BOX */
}
.about-section .about-left .orbit-box {
  width: 100%;
  height: 28rem;
  background: #1c1c1c;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-section .about-left .orbit-box img {
  width: 100%;
  height: 100%;
}
.about-section .about-left .orbit-box {
  /* Nested media queries for orbit-box */
}
@media (min-width: 600px) and (max-width: 1024px) {
  .about-section .about-left .orbit-box {
    height: auto;
    flex: 1;
  }
}
@media (max-width: 1024px) {
  .about-section .about-left .orbit-box {
    height: 350px;
  }
}
.about-section .about-left .orbit-box {
  /* Mobile view - hide orbit-box */
}
@media (max-width: 600px) {
  .about-section .about-left .orbit-box {
    display: none;
  }
}
.about-section {
  /* RIGHT SIDE */
}
.about-section .about-right {
  padding-top: 17px;
  margin-top: 66px;
  /* Mobile view - reduce margins */
}
@media (max-width: 600px) {
  .about-section .about-right {
    padding-top: 10px;
    margin-top: 0;
  }
}
.about-section .about-right {
  /* Tablet view - reduce margins */
}
@media (min-width: 600px) and (max-width: 1024px) {
  .about-section .about-right {
    padding-top: 0;
    margin-top: 4rem;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
}
.about-section .about-right .about-text {
  font-size: 18px;
  line-height: 1.6;
  color: #e8e6e5;
  margin-bottom: 40px;
  /* Mobile view - scale down text */
}
@media (max-width: 600px) {
  .about-section .about-right .about-text {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
.about-section .about-right .about-text {
  /* Tablet view - slight reduction */
}
@media (min-width: 600px) and (max-width: 1024px) {
  .about-section .about-right .about-text {
    font-size: 16px;
  }
}
.about-section .about-right {
  /* STAT CARD GRID */
}
.about-section .about-right .stat-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 25px;
  max-width: 100%;
  margin-bottom: 40px;
  margin-top: 75px;
  align-items: stretch;
  /* Mobile view - scale down stat-grid but keep 2 columns */
}
@media (max-width: 600px) {
  .about-section .about-right .stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 100%;
    margin-bottom: 0;
    margin-top: 0;
  }
}
.about-section .about-right .stat-grid {
  /* Tablet view - scale down */
}
@media (min-width: 600px) and (max-width: 1024px) {
  .about-section .about-right .stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 100%;
    margin-top: 50px;
    height: 100%;
  }
}
.about-section .about-right .stat-grid .stat-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
  /* Left Column: Two Stat Cards */
}
.about-section .about-right .stat-grid .stat-column:first-child .stat-card:nth-child(1) {
  height: auto;
  flex: 1.3;
}
.about-section .about-right .stat-grid .stat-column:first-child .stat-card:nth-child(2) {
  height: auto;
  flex: 1;
}
.about-section .about-right .stat-grid .stat-column {
  /* Right Column: Instructor Image Only */
}
.about-section .about-right .stat-grid .stat-column:last-child .stat-card {
  height: 100%;
}
.about-section .about-right .stat-grid .stat-column {
  /* Nested media queries for stat-column */
}
@media (min-width: 600px) and (max-width: 1024px) {
  .about-section .about-right .stat-grid .stat-column {
    height: 100%;
  }
  .about-section .about-right .stat-grid .stat-column:first-child .stat-card:nth-child(1) {
    height: auto;
    flex: 1.22;
  }
  .about-section .about-right .stat-grid .stat-column:first-child .stat-card:nth-child(2) {
    height: auto;
    flex: 1;
  }
  .about-section .about-right .stat-grid .stat-column:last-child .stat-card {
    height: 100%;
  }
}
.about-section .about-right .stat-grid .stat-column {
  /* Mobile view - scale down heights keep 2 columns */
}
@media (max-width: 600px) {
  .about-section .about-right .stat-grid .stat-column {
    gap: 12px;
  }
  .about-section .about-right .stat-grid .stat-column:first-child .stat-card:nth-child(1) {
    height: auto;
    flex: 1.23;
  }
  .about-section .about-right .stat-grid .stat-column:first-child .stat-card:nth-child(2) {
    height: auto;
    flex: 1;
  }
  .about-section .about-right .stat-grid .stat-column:last-child .stat-card {
    height: 100%;
  }
}
.about-section .about-right .stat-grid .stat-card {
  background: #1A1A1A;
  border: 2px solid transparent;
  border-radius: 24px;
  padding: 30px;
  color: #e8e6e5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.about-section .about-right .stat-grid .stat-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.03) -30%, #713b14 100%);
  -webkit-mask: linear-gradient(#e8e6e5 0 0) content-box, linear-gradient(#e8e6e5 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.about-section .about-right .stat-grid .stat-card h3 {
  font-size: 2.5rem;
  color: #F47923;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
  /* Tablet view - scale down h3 */
}
@media (min-width: 600px) and (max-width: 1024px) {
  .about-section .about-right .stat-grid .stat-card h3 {
    font-size: 2.25rem;
  }
}
.about-section .about-right .stat-grid .stat-card h3 {
  /* Mobile view - scale down h3 */
}
@media (max-width: 600px) {
  .about-section .about-right .stat-grid .stat-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px !important;
  }
}
.about-section .about-right .stat-grid .stat-card.left-btm h3 {
  font-size: 2.25rem;
  /* Tablet view - scale down */
}
@media (min-width: 600px) and (max-width: 1024px) {
  .about-section .about-right .stat-grid .stat-card.left-btm h3 {
    font-size: 1.875rem;
  }
}
.about-section .about-right .stat-grid .stat-card.left-btm h3 {
  /* Mobile view - scale down */
}
@media (max-width: 600px) {
  .about-section .about-right .stat-grid .stat-card.left-btm h3 {
    font-size: 1.5rem;
  }
}
.about-section .about-right .stat-grid .stat-card p.stat-label {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #e8e6e5;
  line-height: 1.3;
  /* Tablet view - scale down */
}
@media (min-width: 600px) and (max-width: 1024px) {
  .about-section .about-right .stat-grid .stat-card p.stat-label {
    font-size: 1rem;
    margin-bottom: 12px;
  }
}
.about-section .about-right .stat-grid .stat-card p.stat-label {
  /* Mobile view - scale down */
}
@media (max-width: 600px) {
  .about-section .about-right .stat-grid .stat-card p.stat-label {
    font-size: 0.938rem;
    margin-bottom: 8px;
  }
}
.about-section .about-right .stat-grid .stat-card p.desc {
  font-size: 12px;
  color: #cfcfcf;
  line-height: 1.5;
  /* Mobile view - scale down desc text */
}
@media (max-width: 600px) {
  .about-section .about-right .stat-grid .stat-card p.desc {
    font-size: 7.6px;
  }
}
.about-section .about-right .stat-grid .stat-card p.desc {
  /* Tablet view - slight reduction */
}
@media (min-width: 600px) and (max-width: 1024px) {
  .about-section .about-right .stat-grid .stat-card p.desc {
    font-size: 13px;
  }
}
.about-section .about-right .stat-grid .stat-card {
  /* Mobile view - scale down padding */
}
@media (max-width: 600px) {
  .about-section .about-right .stat-grid .stat-card {
    padding: 16px;
    border-radius: 16px;
  }
  .about-section .about-right .stat-grid .stat-card::before {
    border-radius: 16px;
  }
}
.about-section .about-right .stat-grid .stat-card {
  /* Tablet view - slight reduction */
}
@media (min-width: 600px) and (max-width: 1024px) {
  .about-section .about-right .stat-grid .stat-card {
    padding: 20px;
    border-radius: 20px;
  }
  .about-section .about-right .stat-grid .stat-card::before {
    border-radius: 20px;
  }
}
.about-section .about-right .stat-grid {
  /* INSTRUCTOR CARD */
}
.about-section .about-right .stat-grid .instructor-card {
  padding: 0;
  position: relative;
  background: #1A1A1A;
  overflow: hidden;
  border-radius: 24px;
  /* Instructor Info Card */
}
.about-section .about-right .stat-grid .instructor-card .instructor-info {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  z-index: 5;
  width: calc(100% - 40px);
  height: auto;
}
.about-section .about-right .stat-grid .instructor-card .info-item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(60, 60, 60, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 12px 15px;
  opacity: 0;
  visibility: hidden;
  animation: fadeLoop 12s infinite linear;
  animation-play-state: paused;
  border: 1px solid rgba(244, 121, 35, 0.2);
  box-sizing: border-box;
}
.about-section .about-right .stat-grid .instructor-card .info-item::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.03) -30%, #713b14 100%);
  -webkit-mask: linear-gradient(#e8e6e5 0 0) content-box, linear-gradient(#e8e6e5 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.about-section .about-right .stat-grid .instructor-card .info-item img {
  display: inline-block !important;
  opacity: 1 !important;
  animation: none !important;
}
.about-section .about-right .stat-grid .instructor-card .info-item .role-badge {
  display: inline-block;
  background-color: #6f492e;
  color: white;
  padding: 2px 6px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 500;
  margin-bottom: 12px;
  border: 2px solid #F47923;
  /* Tablet view - scale down role-badge */
}
@media (max-width: 600px) {
  .about-section .about-right .stat-grid .instructor-card .info-item .role-badge {
    border: 1px solid #F47923 !important;
  }
}
.about-section .about-right .stat-grid .instructor-card .info-item .instructor-name {
  color: #e8e6e5;
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 2px 0;
  line-height: 1.3;
}
.about-section .about-right .stat-grid .instructor-card .info-item .linkedin-link {
  color: #F47923;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  transition: color 0.3s ease;
}
.about-section .about-right .stat-grid .instructor-card .info-item .linkedin-link:hover {
  color: rgba(244, 121, 35, 0.8);
}
.about-section .about-right .stat-grid .instructor-card .info-item .linkedin-link .arrow-icon {
  width: 17px;
  height: 21px;
  object-fit: contain;
  display: inline-block !important;
  opacity: 1 !important;
  flex-shrink: 0;
  position: relative;
  left: 7px;
}
.about-section .about-right .stat-grid .instructor-card .info-item-1 {
  animation-delay: 0s;
}
.about-section .about-right .stat-grid .instructor-card .info-item-2 {
  animation-delay: 4s;
}
.about-section .about-right .stat-grid .instructor-card .info-item-3 {
  animation-delay: 8s;
}
.about-section .about-right .stat-grid .instructor-card > img {
  position: absolute;
  top: 122px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  animation: fadeLoop 12s infinite linear;
  animation-play-state: paused;
}
.about-section .about-right .stat-grid .instructor-card.anim-ready .info-item,
.about-section .about-right .stat-grid .instructor-card.anim-ready img {
  animation-play-state: running;
}
.about-section .about-right .stat-grid .instructor-card .ninja-head-1 {
  animation-delay: 0s;
}
.about-section .about-right .stat-grid .instructor-card .ninja-head-2 {
  animation-delay: 4s;
}
.about-section .about-right .stat-grid .instructor-card .ninja-head-3 {
  animation-delay: 8s;
}
.about-section .about-right .stat-grid .instructor-card {
  /* Nested media queries for instructor-card */
}
@media (min-width: 600px) and (max-width: 1024px) {
  .about-section .about-right .stat-grid .instructor-card img {
    width: 100%;
    max-width: 350px;
  }
}
.about-section .about-right .stat-grid .instructor-card {
  /* Mobile view - scale down info card */
}
@media (max-width: 600px) {
  .about-section .about-right .stat-grid .instructor-card .instructor-info {
    top: 15px;
    left: 15px;
    right: 15px;
    width: calc(100% - 30px);
  }
  .about-section .about-right .stat-grid .instructor-card .info-item {
    padding: 4px 7px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .about-section .about-right .stat-grid .instructor-card .info-item::before {
    border-radius: 12px;
  }
  .about-section .about-right .stat-grid .instructor-card .info-item .role-badge {
    padding: 3px 4px;
    font-size: 8px;
    margin: 5px 0 2px 0;
    border-radius: 16px;
    width: 50%;
    text-align: center;
    align-items: center;
  }
  .about-section .about-right .stat-grid .instructor-card .info-item .instructor-name {
    font-size: 13px;
    margin: 4px 0 0 0;
    line-height: 1;
  }
  .about-section .about-right .stat-grid .instructor-card .info-item .linkedin-link {
    font-size: 10px;
    gap: 2px;
    margin: 3px 0 6px 0;
    line-height: 1;
    display: inline-flex;
  }
  .about-section .about-right .stat-grid .instructor-card .info-item .linkedin-link .arrow-icon {
    width: 9px;
    height: 11px;
    left: 2px;
  }
  .about-section .about-right .stat-grid .instructor-card img {
    max-width: 300px;
  }
}
.about-section .about-right .stat-grid .instructor-card {
  /* Tablet view - scale down info card */
}
@media (min-width: 600px) and (max-width: 1024px) {
  .about-section .about-right .stat-grid .instructor-card .instructor-info {
    top: 15px;
    left: 15px;
    right: 15px;
    width: calc(100% - 30px);
  }
  .about-section .about-right .stat-grid .instructor-card .info-item {
    padding: 10px 12px;
    border-radius: 14px;
  }
  .about-section .about-right .stat-grid .instructor-card .info-item::before {
    border-radius: 14px;
  }
  .about-section .about-right .stat-grid .instructor-card .info-item .role-badge {
    padding: 2px 6px;
    font-size: 9px;
    margin-bottom: 8px;
  }
  .about-section .about-right .stat-grid .instructor-card .info-item .instructor-name {
    font-size: 14px;
    margin: 0 0 6px 0;
  }
  .about-section .about-right .stat-grid .instructor-card .info-item .linkedin-link {
    font-size: 12px;
  }
  .about-section .about-right .stat-grid .instructor-card img {
    max-width: 320px;
  }
}
.about-section .about-right .stat-grid {
  /* Nested media queries for stat-grid */
}
@media (min-width: 600px) and (max-width: 1024px) {
  .about-section .about-right .stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 100%;
    height: 100%;
  }
}
@keyframes fadeLoop {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  3% {
    opacity: 1;
    visibility: visible;
  }
  30.33% {
    opacity: 1;
    visibility: visible;
  }
  33.33% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.learning-section {
  width: 100%;
  padding: 6rem 0 35px 0;
  color: #e8e6e5;
}
@media (max-width: 480px) {
  .learning-section {
    padding: 3rem 0 0 0;
    margin-bottom: 4rem;
  }
}
.learning-section .container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) {
  .learning-section .container {
    padding: 0 16px;
  }
}
.learning-section .section-subtitle {
  font-size: 1rem;
  opacity: 0.7;
  margin-bottom: 1rem;
}
.learning-section .section-title {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
@media (min-width: 480px) and (max-width: 1024px) {
  .learning-section .section-title {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  .learning-section .section-title {
    font-size: 2.4rem;
  }
}
@media (max-width: 480px) {
  .learning-section .section-title {
    font-size: 1.7rem;
  }
}
.learning-section .section-title span {
  color: #F47923;
}
.learning-section .section-desc {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 3rem;
}
@media (min-width: 480px) and (max-width: 1024px) {
  .learning-section .section-desc {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .learning-section .section-desc {
    font-size: 0.9rem;
  }
}
.learning-section {
  /* === FEATURE CARDS MARQUEE === */
}
.learning-section .feature-cards-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 3rem;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
@media (max-width: 480px) {
  .learning-section .feature-cards-wrapper {
    margin-bottom: 1rem;
  }
}
.learning-section .feature-cards-grid {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
  width: 100%;
}
@media (max-width: 1024px) {
  .learning-section .feature-cards-grid {
    gap: 2.5rem;
  }
}
@media (max-width: 480px) {
  .learning-section .feature-cards-grid {
    gap: 1.5rem;
  }
}
.learning-section .feature-cards-grid .track {
  display: flex;
  gap: 3rem;
  animation: feature-cards-marquee 20s linear infinite;
  width: max-content;
}
@media (max-width: 1024px) {
  .learning-section .feature-cards-grid .track {
    gap: 2.5rem;
    animation: feature-cards-marquee 25s linear infinite;
  }
}
@media (max-width: 480px) {
  .learning-section .feature-cards-grid .track {
    gap: 1.5rem;
    animation: feature-cards-marquee 20s linear infinite;
  }
}
.learning-section .feature-cards-wrapper:hover .track {
  animation-play-state: paused;
}
.learning-section .feature-card {
  background: #1c1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
  width: 16rem;
}
@media (max-width: 1024px) {
  .learning-section .feature-card {
    border-radius: 0.75rem;
    padding: 0.75rem;
    gap: 0.5rem;
    width: 155px;
    height: auto;
  }
}
@media (max-width: 480px) {
  .learning-section .feature-card {
    border-radius: 0.75rem;
    padding: 0.75rem;
    gap: 0.5rem;
    width: 155px;
    height: auto;
  }
}
.learning-section .feature-card__icon {
  width: 100%;
  height: 80px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .learning-section .feature-card__icon {
    height: 45px;
    margin: 0.5rem 0;
  }
}
@media (max-width: 480px) {
  .learning-section .feature-card__icon {
    height: 45px;
    margin: 0.5rem 0;
  }
}
.learning-section .feature-card__icon img {
  height: 110px;
  object-fit: contain;
}
@media (max-width: 1024px) {
  .learning-section .feature-card__icon img {
    height: 60px;
  }
}
@media (max-width: 480px) {
  .learning-section .feature-card__icon img {
    height: 60px;
  }
}
.learning-section .feature-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: #e8e6e5;
}
@media (max-width: 1024px) {
  .learning-section .feature-card__title {
    font-size: 0.65rem;
    line-height: 1.2;
    word-break: break-word;
    margin-top: 0.7rem;
  }
}
@media (max-width: 480px) {
  .learning-section .feature-card__title {
    font-size: 0.65rem;
    line-height: 1.2;
    word-break: break-word;
    margin-top: 0.7rem;
  }
}
.learning-section .feature-card__description {
  font-size: 0.8rem;
  line-height: 1.6;
  opacity: 0.7;
  margin: 0;
}
@media (max-width: 1024px) {
  .learning-section .feature-card__description {
    font-size: 0.7rem;
    line-height: 1.3;
    word-break: break-word;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .learning-section .feature-card__description {
    font-size: 0.7rem;
    line-height: 1.3;
    word-break: break-word;
    width: 100%;
  }
}
.learning-section .feature-card__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
@media (max-width: 1024px) {
  .learning-section .feature-card__bullets {
    gap: 0.1rem;
    font-size: 0.6rem;
  }
}
@media (max-width: 480px) {
  .learning-section .feature-card__bullets {
    gap: 0.1rem;
    font-size: 0.6rem;
  }
}
.learning-section .feature-card__bullets li {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.7;
  padding-left: 1.2rem;
  position: relative;
}
@media (max-width: 1024px) {
  .learning-section .feature-card__bullets li {
    font-size: 0.7rem;
    line-height: 1.2;
    padding-left: 0.8rem;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
@media (max-width: 480px) {
  .learning-section .feature-card__bullets li {
    font-size: 0.7rem;
    line-height: 1.2;
    padding-left: 0.8rem;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.learning-section .feature-card__bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-weight: bold;
}
.learning-section .feature-card-bg {
  background-image: url(/assets/images/learning/code-arena.png);
  background-size: cover;
}
.learning-section .review {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  gap: 2rem;
}
@media (max-width: 768px) {
  .learning-section .review {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}
.learning-section .review .titles .section-title {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
@media (max-width: 480px) {
  .learning-section .review .titles .section-title {
    font-size: 1.7rem;
  }
}
.learning-section .review .titles .section-title span {
  color: #F47923;
}
.learning-section .review .titles .section-desc {
  font-size: 1.1rem;
  opacity: 0.7;
  margin: 0;
  color: #e8e6e5;
}
@media (max-width: 480px) {
  .learning-section .review .titles .section-desc {
    font-size: 0.9rem;
  }
}
.learning-section .review .button {
  flex-shrink: 0;
  align-self: center;
}
@media (max-width: 480px) {
  .learning-section .review .button {
    position: absolute;
    transform: translate(0, 29rem);
  }
}
@media (max-width: 400px) {
  .learning-section .review .button {
    position: absolute;
    transform: translate(0, 33rem);
  }
}
.learning-section .review .button .btn {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  background: #3d2311;
  border: 1px solid rgba(244, 121, 35, 0.3);
  border-radius: 30px;
  color: #d8c2b3;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.learning-section .review .button .btn:hover {
  background: #F47923;
  color: #000;
  border-color: #F47923;
}
.learning-section {
  /* === GRID LAYOUT === */
}
.learning-section .learning-grid {
  display: grid;
  grid-template-columns: 291px 1fr 301px;
  grid-gap: 1.5rem;
}
@media (min-width: 480px) and (max-width: 1024px) {
  .learning-section .learning-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.5rem;
  }
}
@media (max-width: 1024px) {
  .learning-section .learning-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .learning-section .learning-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
@media (max-width: 480px) {
  .learning-section .learning-grid {
    justify-items: center;
  }
}
.learning-section {
  /* === CARDS === */
}
.learning-section .learning-card {
  background: #181818;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.learning-section .learning-card img {
  width: 100%;
  display: block;
}
.learning-section .learning-card.small-card {
  grid-column: span 1;
  width: 291px;
  height: 342px;
  padding: 0 2rem 2rem;
  justify-content: space-between;
}
@media (min-width: 480px) and (max-width: 1024px) {
  .learning-section .learning-card.small-card {
    grid-column: span 1;
    max-width: 100%;
    width: 270px;
    height: 320px;
  }
  .learning-section .learning-card.small-card .image-wrapper img {
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .learning-section .learning-card.small-card {
    grid-column: span 1;
    max-width: 100%;
    width: 100%;
    width: 291px;
  }
}
.learning-section .learning-card.small-card .image-wrapper {
  position: relative;
  width: 120%;
  height: 100%;
  margin: 0;
}
.learning-section .learning-card.small-card .image-wrapper img {
  width: 100%;
  margin: 0;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: -25px;
  opacity: 0;
  transition: opacity 0.6s ease-out;
}
.learning-section .learning-card.small-card .image-wrapper img.image-1 {
  opacity: 1;
}
.learning-section .learning-card.small-card .image-wrapper img.image-2 {
  opacity: 0;
}
.learning-section .learning-card.small-card:hover .image-wrapper img.image-1 {
  opacity: 0;
}
.learning-section .learning-card.small-card:hover .image-wrapper img.image-2 {
  opacity: 1;
}
.learning-section .learning-card.small-card .card-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.learning-section .learning-card.small-card .card-content p {
  opacity: 0.7;
  font-size: 0.95rem;
  line-height: 1.5;
}
.learning-section .learning-card.large-card {
  grid-column: span 2;
  padding: 0;
  background: #111;
  min-height: 300px;
}
@media (min-width: 480px) and (max-width: 1024px) {
  .learning-section .learning-card.large-card {
    grid-column: span 1;
    max-width: 100%;
    width: 100%;
    max-width: 500px;
    min-height: 280px;
  }
  .learning-section .learning-card.large-card img {
    width: 90%;
    height: 90%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 768px) {
  .learning-section .learning-card.large-card {
    grid-column: span 1;
    max-width: 100%;
    width: 100%;
  }
}
.learning-section .learning-card.large-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease-out;
}
.learning-section .learning-card.large-card img.image-1 {
  opacity: 1;
}
.learning-section .learning-card.large-card img.image-2 {
  opacity: 0;
}
.learning-section .learning-card:hover img.image-1 {
  opacity: 0;
}
.learning-section .learning-card:hover img.image-2 {
  opacity: 1;
}
.learning-section .learning-card.testimonial-card {
  grid-column: span 2;
  background: #121212;
  padding: 2rem 1rem 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
@media (min-width: 480px) {
  .learning-section .learning-card.testimonial-card {
    flex-direction: column-reverse !important;
  }
}
@media (min-width: 480px) and (max-width: 1024px) {
  .learning-section .learning-card.testimonial-card {
    grid-column: span 1;
    max-width: 100%;
    padding: 1.5rem 2rem;
    width: 100%;
    height: 13rem;
  }
  .learning-section .learning-card.testimonial-card .quote {
    font-size: 4rem;
  }
  .learning-section .learning-card.testimonial-card p {
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  .learning-section .learning-card.testimonial-card {
    grid-column: span 1;
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .learning-section .learning-card.testimonial-card {
    padding: 1rem 0rem 4rem 2rem;
    width: 100%;
    height: auto;
  }
  .learning-section .learning-card.testimonial-card p {
    font-size: 0.8rem;
    max-width: 19rem;
  }
}
.learning-section .learning-card.testimonial-card .quote-desc {
  position: relative;
  padding-bottom: 14px;
}
@media (max-width: 480px) {
  .learning-section .learning-card.testimonial-card .quote-desc {
    padding-bottom: 2.5rem;
  }
}
.learning-section .learning-card.testimonial-card .quote {
  position: relative;
  top: -21px;
  margin-bottom: 1rem;
  margin-top: -0.5rem;
  width: auto;
  height: 0px;
}
@media (max-width: 480px) {
  .learning-section .learning-card.testimonial-card .quote {
    margin-bottom: 0.8rem;
    height: 1.5rem;
    top: 0;
  }
}
.learning-section .learning-card.testimonial-card .quote .quote-image {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  display: block;
  transform: translate(0, -3rem);
}
@media (max-width: 480px) {
  .learning-section .learning-card.testimonial-card .quote .quote-image {
    width: 1.5rem;
    height: 4rem;
    transform: translate(0, -1rem);
  }
}
.learning-section .learning-card.testimonial-card p {
  position: absolute;
  top: 40%;
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 500;
  max-width: 90%;
  opacity: 0;
  animation: contentSwap 6s ease-out infinite;
  color: #ffffff;
}
@media (max-width: 480px) {
  .learning-section .learning-card.testimonial-card p {
    font-size: 0.7rem;
    max-width: 84%;
    top: 0;
  }
}
.learning-section .learning-card.testimonial-card p.quote-1 {
  animation-delay: 0s;
}
.learning-section .learning-card.testimonial-card p.quote-2 {
  animation-delay: 3s;
}
.learning-section .learning-card.testimonial-card p span {
  color: #f47923 !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #f47923 !important;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(244, 121, 35, 0.35);
}
.learning-section .learning-card.stats-card {
  grid-column: span 1;
  width: 301px;
  height: 252px;
  text-align: center;
  background: #141414;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 480px) {
  .learning-section .learning-card.stats-card {
    grid-column: span 1;
    width: 328px;
    height: 119px;
    text-align: center;
    background: #141414;
    padding: 1rem 1rem 1rem 1.6rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
}
@media (min-width: 480px) and (max-width: 1024px) {
  .learning-section .learning-card.stats-card {
    grid-column: span 1;
    max-width: 100%;
    width: 280px;
    height: 240px;
  }
  .learning-section .learning-card.stats-card h2 {
    font-size: 3.5rem;
  }
  .learning-section .learning-card.stats-card p {
    font-size: 1rem;
  }
  .learning-section .learning-card.stats-card .avatars img {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 768px) {
  .learning-section .learning-card.stats-card {
    grid-column: span 1;
    max-width: 100%;
    width: 100%;
  }
}
.learning-section .learning-card.stats-card h2 {
  font-family: "Ubuntu", sans-serif;
  font-size: 4rem;
  background: linear-gradient(to bottom, #F47923 0%, #6d3103 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.learning-section .learning-card.stats-card p {
  opacity: 0.8;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
@media (max-width: 480px) {
  .learning-section .learning-card.stats-card p {
    opacity: 0.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: absolute;
    bottom: -18px;
    left: 31px;
  }
}
.learning-section .learning-card.stats-card .avatars {
  display: flex;
  justify-content: center;
}
.learning-section .learning-card.stats-card .avatars img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid #141414;
  margin-left: -15px;
}
.learning-section .learning-card.stats-card .avatars img:first-child {
  margin-left: 0;
}

/* === ANIMATIONS === */
@keyframes feature-cards-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%);
  }
}
@keyframes contentSwap {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.opportunities {
  color: #e8e6e5;
  padding-top: 2.5rem;
}
@media (max-width: 768px) {
  .opportunities {
    padding-top: 1.5rem;
  }
}
.opportunities .label {
  font-size: 1rem;
  color: #b3b3b3;
  margin-bottom: 0.5rem;
}
.opportunities .title {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .opportunities .title {
    font-size: 18px;
    text-align: center;
  }
}
.opportunities .title .highlight {
  color: #F47923;
}
.opportunities .see-all {
  float: right;
  color: #b3b3b3;
  margin-top: -2rem;
  font-size: 1rem;
  text-decoration: underline;
  cursor: pointer;
}
.opportunities {
  /* Categories */
}
.opportunities__categories {
  margin: 2.5rem 0;
  display: flex;
  gap: 1.2rem;
}
@media (max-width: 768px) {
  .opportunities__categories {
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
  }
  .opportunities__categories::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 600px) {
  .opportunities__categories {
    gap: 0.5rem;
    padding-bottom: 0 !important;
    margin: 1rem 0 0.5rem 0;
  }
}
@media (max-width: 600px) {
  .opportunities__categories .has-arrow {
    padding-right: 0.1rem !important;
  }
  .opportunities__categories .has-arrow.active, .opportunities__categories .has-arrow:hover {
    padding-right: 0.3rem !important;
  }
}
.opportunities__categories .cat-btn {
  background: transparent;
  border: 1px solid #2a2a2a;
  padding: 0.7rem 1.4rem;
  border-radius: 0.7rem;
  font-size: 1rem;
  color: #b3b3b3;
  cursor: pointer;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
@media (max-width: 768px) {
  .opportunities__categories .cat-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }
}
@media (max-width: 600px) {
  .opportunities__categories .cat-btn {
    padding: 0.1rem 0.5rem;
    font-size: 15px;
    gap: 0;
  }
}
.opportunities__categories .cat-btn .arrow-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}
@media (max-width: 600px) {
  .opportunities__categories .cat-btn .arrow-icon {
    width: 15px;
    height: 13px;
  }
}
.opportunities__categories .cat-btn.active, .opportunities__categories .cat-btn:hover {
  background: rgba(244, 121, 35, 0.1);
  border-color: #F47923;
  color: #F47923;
}
.opportunities__categories .cat-btn.active .arrow-icon, .opportunities__categories .cat-btn:hover .arrow-icon {
  transform: translateX(3px);
}
.opportunities {
  /* Cards Container - holds both buttons and wrapper */
}
.opportunities__cards-container {
  position: relative;
}
.opportunities__cards-container .scroll-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #000;
  border: 1px solid #2a2a2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  transition: all 0.3s ease;
  color: #fff;
  border: none;
}
@media (max-width: 768px) {
  .opportunities__cards-container .scroll-nav {
    width: 2rem;
    height: 2rem;
  }
}
@media (max-width: 576px) {
  .opportunities__cards-container .scroll-nav {
    width: 2rem;
    height: 2rem;
  }
}
.opportunities__cards-container .scroll-nav:hover {
  background: #1a1a1a;
  transform: translateY(-50%) scale(1.1);
}
.opportunities__cards-container .scroll-nav--left {
  left: calc(max(0px, (100% - 1800px) / 2) + 28px);
}
.opportunities__cards-container .scroll-nav--right {
  right: calc(max(0px, (100% - 1800px) / 2) + 28px);
}
.opportunities__cards-container .scroll-nav svg {
  width: 24px;
  height: 24px;
}
@media (max-width: 768px) {
  .opportunities__cards-container .scroll-nav svg {
    width: 1rem;
    height: 1rem;
  }
}
@media (max-width: 576px) {
  .opportunities__cards-container .scroll-nav svg {
    width: 1rem;
    height: 1rem;
  }
}
.opportunities {
  /* Cards Wrapper */
}
.opportunities__cards-wrapper {
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
}
@media (max-width: 576px) {
  .opportunities__cards-wrapper {
    scroll-snap-type: x mandatory;
    -webkit-mask-image: none;
    mask-image: none;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.opportunities__cards-wrapper::-webkit-scrollbar {
  display: none;
}
.opportunities__cards {
  display: flex;
  gap: 2rem;
  padding: 1rem 4rem 1rem 4rem;
  width: max-content;
}
@media (max-width: 768px) {
  .opportunities__cards {
    padding: 1rem 3rem 1rem 3rem;
  }
}
@media (max-width: 576px) {
  .opportunities__cards {
    padding: 1rem 0;
  }
}
.opportunities {
  /* Card */
}
.opportunities .opp-card {
  width: 360px;
  background: #141414;
  border: 1.2px solid transparent;
  background: linear-gradient(#141414, #141414) padding-box, linear-gradient(135deg, rgba(244, 121, 35, 0.85) 0%, rgba(244, 121, 35, 0.55) 20%, rgba(244, 121, 35, 0.25) 40%, rgba(244, 121, 35, 0.12) 60%, rgba(244, 121, 35, 0.05) 80%, transparent 100%) border-box;
  border-radius: 1rem;
  padding: 1.2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}
@media (max-width: 768px) {
  .opportunities .opp-card {
    width: 320px;
    padding: 1rem;
    gap: 0.8rem;
  }
}
@media (max-width: 576px) {
  .opportunities .opp-card {
    width: calc(100vw - 16px * 2);
    padding: 1rem;
    gap: 0.7rem;
    scroll-snap-align: center;
  }
}
.opportunities .opp-card:hover {
  transform: translateY(-5px);
}
.opportunities .opp-card:hover::before {
  content: "";
  position: absolute;
  top: -140%;
  left: 0;
  width: 100%;
  height: 190%;
  background: radial-gradient(circle, rgba(244, 121, 35, 0.35), transparent 70%);
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
.opportunities .opp-card .opp-card__body {
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.opportunities .opp-card .opp-card__body .opp-card__title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.8rem;
}
@media (max-width: 768px) {
  .opportunities .opp-card .opp-card__body .opp-card__title {
    font-size: 0.8rem;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
  }
}
@media (max-width: 576px) {
  .opportunities .opp-card .opp-card__body .opp-card__title {
    font-size: 0.7rem;
    gap: 0.4rem;
    margin-bottom: 0.6rem;
  }
}
.opportunities .opp-card .opp-card__body .opp-card__title img {
  width: 2.5rem;
  height: 2.5rem;
}
@media (max-width: 768px) {
  .opportunities .opp-card .opp-card__body .opp-card__title img {
    width: 2rem;
    height: 2rem;
  }
}
@media (max-width: 576px) {
  .opportunities .opp-card .opp-card__body .opp-card__title img {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.opportunities .opp-card .opp-card__body .opp-card__tags {
  margin: 0.8rem 0;
  display: flex;
  gap: 0.6rem;
}
@media (max-width: 768px) {
  .opportunities .opp-card .opp-card__body .opp-card__tags {
    gap: 0.5rem;
    margin: 0.6rem 0;
  }
}
@media (max-width: 576px) {
  .opportunities .opp-card .opp-card__body .opp-card__tags {
    gap: 0.4rem;
    margin: 0.5rem 0;
    flex-wrap: wrap;
  }
}
.opportunities .opp-card .opp-card__body .opp-card__tags .tag {
  background: #1f1f1f;
  padding: 0.3rem 0.7rem;
  border-radius: 0.7rem;
  font-size: 0.85rem;
}
@media (max-width: 768px) {
  .opportunities .opp-card .opp-card__body .opp-card__tags .tag {
    padding: 0.25rem 0.6rem;
    font-size: 0.75rem;
  }
}
@media (max-width: 576px) {
  .opportunities .opp-card .opp-card__body .opp-card__tags .tag {
    padding: 0.2rem 0.5rem;
    font-size: 0.65rem;
  }
}
.opportunities .opp-card .opp-card__body .opp-card__desc {
  font-size: 0.8rem;
  color: #b3b3b3;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .opportunities .opp-card .opp-card__body .opp-card__desc {
    font-size: 0.75rem;
    line-height: 1.4;
  }
}
@media (max-width: 576px) {
  .opportunities .opp-card .opp-card__body .opp-card__desc {
    font-size: 0.7rem;
    line-height: 1.3;
  }
}
.opportunities .opp-card .opp-card__image {
  width: 100%;
  aspect-ratio: 12/5;
  background: #141414;
  border-radius: 0.7rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.opportunities .opp-card .opp-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.opportunities .opp-card .btn-view {
  display: block;
  width: 100%;
  margin-top: auto;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.9rem;
  padding: 0.7rem 1.2rem;
  border-radius: 0.6rem;
  border: 1px solid #F47923;
  color: #fff;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: background 0.3s ease, transform 0.2s ease;
}
@media (max-width: 768px) {
  .opportunities .opp-card .btn-view {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
  }
}
@media (max-width: 576px) {
  .opportunities .opp-card .btn-view {
    font-size: 0.75rem;
    padding: 0.55rem 0.8rem;
  }
}
.opportunities .opp-card .btn-view:hover {
  background: rgba(244, 121, 35, 0.12);
  transform: translateY(-2px);
}
.opportunities .cta_container {
  background-image: url("/assets/images/opportunities/cta-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 2rem auto 0;
  padding: 1rem 48px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1800px;
}
@media (max-width: 768px) {
  .opportunities .cta_container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 600px) {
  .opportunities .cta_container {
    margin-top: 0 !important;
  }
}
@media (max-width: 600px) {
  .opportunities .cta_container .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.opportunities {
  /* Bottom CTA Box */
}
.opportunities__cta {
  padding: 3rem 4rem;
  border-radius: 2rem;
  background: #1c1c1c;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  overflow: visible;
}
@media (max-width: 768px) {
  .opportunities__cta {
    padding: 2rem;
    border-radius: 1.5rem;
  }
}
@media (max-width: 600px) {
  .opportunities__cta {
    padding: 20px 18px;
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 1rem;
    overflow: visible;
  }
}
.opportunities__cta h3 {
  font-size: 2.7rem;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  z-index: 2;
  position: relative;
  max-width: 50rem;
}
@media (max-width: 768px) {
  .opportunities__cta h3 {
    font-size: 2.2rem;
  }
}
@media (max-width: 600px) {
  .opportunities__cta h3 {
    font-size: 13px;
    margin-bottom: 1rem;
    max-width: 160px;
  }
}
.opportunities__cta h3 span {
  color: #F47923;
}
.opportunities__cta .cta-btn-orange {
  display: none;
  background: #ff7b23;
  color: #ffffff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  z-index: 2;
  position: relative;
}
@media (max-width: 600px) {
  .opportunities__cta .cta-btn-orange {
    display: inline-block;
    font-size: 0.5rem;
    padding: 0.5rem 1rem;
  }
}
.opportunities__cta .cta-btn-orange:hover {
  background: rgb(93.7254901961%, 37.4901960784%, 0%);
  transform: translateY(-2px);
}
.opportunities__cta .cta-text .cta-link-wrapper {
  text-decoration: none;
  display: inline-block;
}
@media (max-width: 600px) {
  .opportunities__cta .cta-text .cta-link-wrapper {
    display: none;
  }
}
.opportunities__cta .cta-text .cta-link-wrapper:hover .cta-subtext {
  color: #ffffff;
}
.opportunities__cta .cta-text .cta-link-wrapper:hover .cta-subtext svg {
  transform: translate(3px, -3px);
}
.opportunities__cta .cta-text .cta-subtext {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b3b3b3;
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 0.5rem;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .opportunities__cta .cta-text .cta-subtext {
    font-size: 1rem;
  }
}
.opportunities__cta .cta-text .cta-subtext svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}
.opportunities__cta .cta-icon {
  width: 18rem;
  height: 22rem;
  position: absolute;
  right: 4rem;
  top: 50%;
  transform: translateY(-50%) rotate(-5deg);
  z-index: 1;
}
@media (max-width: 768px) {
  .opportunities__cta .cta-icon {
    width: 14rem;
    height: 18rem;
    right: 2rem;
  }
}
@media (max-width: 600px) {
  .opportunities__cta .cta-icon {
    width: 8rem;
    height: 11rem;
    position: absolute;
    right: -0.5rem;
    top: 35%;
    transform: translateY(-50%) rotate(-5deg);
    margin-top: 0;
    z-index: 5;
  }
}
.opportunities__cta .cta-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  right: 25px;
  opacity: 0;
  animation: imageSwap 6s ease-out infinite;
}
.opportunities__cta .cta-icon img.image-1 {
  animation-delay: 0.5s;
}
.opportunities__cta .cta-icon img.image-2 {
  animation-delay: 3.5s;
}
.opportunities__cta .cta-icon-bg {
  width: 500px;
  height: 260px;
  background: url("/assets/images/opportunities/light-image-bg.png") no-repeat center/contain;
  opacity: 0.9;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .opportunities__cta .cta-icon-bg {
    width: 400px;
    height: 200px;
  }
}
@media (max-width: 576px) {
  .opportunities__cta .cta-icon-bg {
    display: none;
  }
}

/* === ANIMATIONS === */
@keyframes imageSwap {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cardBorderMove {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
.skills-section {
  padding: 0.5rem 0 3rem;
  overflow: hidden;
  width: 100%;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px;
}
@media (max-width: 768px) {
  .skills-section {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.skills-section {
  margin: 0 auto 0 auto !important;
}
@media (max-width: 480px) {
  .skills-section {
    padding: 0 !important;
  }
}
.skills-section .skills-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
}
@media (max-width: 480px) {
  .skills-section .skills-container {
    padding: 0 !important;
  }
}
.skills-section .skills-header {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .skills-section .skills-header {
    padding: 0 20px;
    width: 8rem;
  }
}
.skills-section .skills-header .label {
  display: block;
  font-size: 2.2rem;
  width: 10rem;
  margin-top: 5px;
  color: #F47923;
  font-weight: 700;
}
@media (max-width: 480px) {
  .skills-section .skills-header .label {
    width: 9rem;
  }
}
.skills-section .skills-marquee {
  flex: 1;
  position: relative;
  width: auto;
  overflow: hidden;
  white-space: nowrap;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.skills-section .skills-marquee .track {
  display: flex;
  gap: 80px;
  animation: marquee 80s linear infinite;
  width: max-content;
}
.skills-section .skills-marquee .track .item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.8rem;
  color: #e8e6e5;
  font-weight: 500;
}
.skills-section .skills-marquee .track .item img {
  height: 64px;
  width: auto;
  opacity: 1;
}
.skills-section .skills-marquee .track .item img[alt=CSS],
.skills-section .skills-marquee .track .item img[alt=HTML] {
  height: 84px;
}
.skills-section .skills-marquee .track .item i {
  font-size: 58px;
  line-height: 1;
  opacity: 1;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .skills-section .skills-container {
    flex-direction: row;
    align-items: center;
    gap: 5px;
  }
  .skills-section .skills-marquee {
    width: 100%;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .skills-section .skills-marquee .track {
    gap: 40px;
  }
  .skills-section .skills-marquee .track .item {
    font-size: 1.2rem;
  }
  .skills-section .skills-header .count {
    font-size: 2rem;
  }
  .skills-section .skills-header .label {
    font-size: 1.4rem;
  }
}
@media (max-width: 600px) {
  .skills-section .skills-marquee .track {
    gap: 28px;
  }
  .skills-section .skills-marquee .track .item {
    font-size: 0.9rem;
    gap: 8px;
  }
  .skills-section .skills-marquee .track .item img {
    height: 30px;
    width: auto;
  }
  .skills-section .skills-marquee .track .item img[alt=CSS],
  .skills-section .skills-marquee .track .item img[alt=HTML] {
    height: 38px;
  }
  .skills-section .skills-marquee .track .item i {
    font-size: 26px;
    line-height: 1;
  }
}
.tech-section {
  font-family: "Ubuntu", sans-serif;
  color: #fff;
}
@media (max-width: 1024px) {
  .tech-section {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .tech-section {
    padding: 50px 0;
  }
}
@media (max-width: 600px) {
  .tech-section {
    padding: 40px 0;
  }
}
@media (max-width: 480px) {
  .tech-section {
    padding: 30px 0;
  }
}
.tech-section .container {
  max-width: 1800px !important;
  margin: auto !important;
  padding-left: 48px;
  padding-right: 48px;
}
@media (max-width: 768px) {
  .tech-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.tech-section .cta_container {
  padding: 32px 0 64px 0;
  background-image: url("/assets/images/opportunities/cta-bg.png");
  background-size: cover;
}
@media (max-width: 480px) {
  .tech-section .cta_container {
    padding: 30px 0 30px 0;
  }
}
@media (max-width: 1024px) {
  .tech-section .alumni-brands {
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .tech-section .alumni-brands {
    margin-bottom: 50px;
  }
}
@media (max-width: 600px) {
  .tech-section .alumni-brands {
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .tech-section .alumni-brands {
    margin-bottom: 35px;
  }
}
.tech-section .alumni-brands .alumni-title {
  font-size: 23px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 50px;
  letter-spacing: 0.5px;
  display: inline-block;
  background: linear-gradient(90deg, #5f5f5f 0%, #ffffff 50%, #5f5f5f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 1024px) {
  .tech-section .alumni-brands .alumni-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .tech-section .alumni-brands .alumni-title {
    font-size: 24px;
    margin-bottom: 35px;
  }
}
@media (max-width: 600px) {
  .tech-section .alumni-brands .alumni-title {
    font-size: 22px;
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .tech-section .alumni-brands .alumni-title {
    font-size: 20px;
    margin-bottom: 25px;
  }
}
.tech-section .alumni-brands .alumni-title .brands-text {
  background: none;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}
.tech-section .alumni-brands .brands-logos {
  position: relative;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.tech-section .alumni-brands .brands-logos .track {
  display: flex;
  gap: 100px;
  animation: brands-marquee 25s linear infinite;
  width: max-content;
  align-items: center;
}
@media (max-width: 1024px) {
  .tech-section .alumni-brands .brands-logos .track {
    gap: 80px;
    animation: brands-marquee 20s linear infinite;
  }
}
@media (max-width: 768px) {
  .tech-section .alumni-brands .brands-logos .track {
    gap: 60px;
    animation: brands-marquee 18s linear infinite;
  }
}
@media (max-width: 600px) {
  .tech-section .alumni-brands .brands-logos .track {
    gap: 50px;
    animation: brands-marquee 15s linear infinite;
  }
}
@media (max-width: 480px) {
  .tech-section .alumni-brands .brands-logos .track {
    gap: 40px;
    animation: brands-marquee 15s linear infinite;
  }
}
.tech-section .alumni-brands .brands-logos .track .brand-logo {
  max-width: 180px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .tech-section .alumni-brands .brands-logos .track .brand-logo {
    max-width: 150px;
  }
}
@media (max-width: 768px) {
  .tech-section .alumni-brands .brands-logos .track .brand-logo {
    max-width: 130px;
  }
}
@media (max-width: 600px) {
  .tech-section .alumni-brands .brands-logos .track .brand-logo {
    max-width: 85px;
  }
}
@media (max-width: 480px) {
  .tech-section .alumni-brands .brands-logos .track .brand-logo {
    max-width: 70px;
  }
}
.tech-section .alumni-brands .brands-logos .track .brand-logo:hover {
  opacity: 1;
  transform: scale(1.05);
  animation-play-state: paused;
}
.tech-section .alumni-brands .brands-logos:hover .track {
  animation-play-state: paused;
}
.tech-section .tech-talks {
  margin-top: 64px;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .tech-section .tech-talks {
    margin-top: 48px;
  }
}
@media (max-width: 768px) {
  .tech-section .tech-talks {
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  .tech-section .tech-talks {
    margin-top: 28px;
  }
}
.tech-section .tech-talks .section-label {
  font-size: 16px;
  color: #bbbbbb;
  display: inline-block;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .tech-section .tech-talks .section-label {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
@media (max-width: 480px) {
  .tech-section .tech-talks .section-label {
    font-size: 13px;
  }
}
.tech-section .tech-talks .section-title {
  font-size: 46px;
  font-weight: 400;
  margin-bottom: 20px;
  margin-left: 0;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .tech-section .tech-talks .section-title {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .tech-section .tech-talks .section-title {
    font-size: 30px;
    margin-bottom: 15px;
  }
}
@media (max-width: 600px) {
  .tech-section .tech-talks .section-title {
    font-size: 18px;
    text-align: center;
    margin-left: 0;
  }
}
@media (max-width: 480px) {
  .tech-section .tech-talks .section-title {
    font-size: 18px;
    text-align: center;
    margin-left: 0;
  }
}
.tech-section .tech-talks .section-title .highlight {
  color: #F47923;
  font-weight: 400;
}
.tech-section .tech-talks .section-subtitle {
  font-size: 1.2rem;
  color: #c9c9c9;
  margin-bottom: 50px;
  margin-left: 0;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .tech-section .tech-talks .section-subtitle {
    font-size: 14px;
    margin-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .tech-section .tech-talks .section-subtitle {
    font-size: 13px;
    margin-left: 17px;
  }
}
@media (max-width: 480px) {
  .tech-section .tech-talks .section-subtitle {
    font-size: 12px;
  }
}
.tech-section .tech-talks .gallery-grid {
  display: grid;
  grid-template-columns: 820px 490px;
  gap: 1rem;
  margin-bottom: 50px;
  justify-content: center;
}
@media (max-width: 1024px) {
  .tech-section .tech-talks .gallery-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 0.75rem;
    justify-content: stretch;
  }
}
@media (max-width: 768px) {
  .tech-section .tech-talks .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}
@media (max-width: 600px) {
  .tech-section .tech-talks .gallery-grid {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 0;
    margin: 0 0 50px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .tech-section .tech-talks .gallery-grid::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 480px) {
  .tech-section .tech-talks .gallery-grid {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 0;
    margin: 0 0 50px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .tech-section .tech-talks .gallery-grid::-webkit-scrollbar {
    display: none;
  }
}
.tech-section .tech-talks .gallery-grid .img-card {
  border-radius: 38px;
  overflow: hidden;
  height: 340px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
@media (max-width: 1024px) {
  .tech-section .tech-talks .gallery-grid .img-card {
    height: 280px;
    border-radius: 40px;
  }
}
@media (max-width: 768px) {
  .tech-section .tech-talks .gallery-grid .img-card {
    height: 240px;
    border-radius: 35px;
  }
}
@media (max-width: 600px) {
  .tech-section .tech-talks .gallery-grid .img-card {
    height: 240px;
    border-radius: 15px;
    width: 100%;
    min-width: 100%;
    flex-shrink: 0;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
}
@media (max-width: 480px) {
  .tech-section .tech-talks .gallery-grid .img-card {
    height: 200px;
    border-radius: 14px;
    width: 100%;
    min-width: 100%;
    flex-shrink: 0;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
}
.tech-section .tech-talks .gallery-grid .img-card:hover {
  transform: translateY(-5px);
  /* Vintage inner shadow */
}
.tech-section .tech-talks .gallery-grid .img-card:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30%;
  pointer-events: none;
  background: linear-gradient(to top, rgb(2, 1, 0), rgba(0, 0, 0, 0.35) 70%, rgba(1, 0, 0, 0.9) 100%);
  filter: blur(24px);
  transform: translateY(16px);
  z-index: 0;
}
@media (max-width: 480px) {
  .tech-section .tech-talks .gallery-grid .img-card:hover::after {
    height: 70%;
  }
}
.tech-section .tech-talks .gallery-grid .img-card:hover .img-overlay {
  opacity: 1;
  transform: translateY(0);
}
.tech-section .tech-talks .gallery-grid .img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.tech-section .tech-talks .gallery-grid .img-card {
  /* Text-only overlay (NO background) */
}
.tech-section .tech-talks .gallery-grid .img-card .img-overlay {
  color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px 30px;
  /* No background */
  background: none;
  backdrop-filter: none;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s ease;
  z-index: 2;
}
.tech-section .tech-talks .gallery-grid .img-card .img-overlay .overlay-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.3;
}
@media (max-width: 480px) {
  .tech-section .tech-talks .gallery-grid .img-card .img-overlay .overlay-title {
    font-size: 12px;
    color: #e8e6e5;
  }
}
.tech-section .tech-talks .gallery-grid .img-card .img-overlay .overlay-title span {
  font-weight: 400;
  color: #c9c9c9;
}
@media (max-width: 480px) {
  .tech-section .tech-talks .gallery-grid .img-card .img-overlay .overlay-title span {
    color: #e8e6e5;
  }
}
.tech-section .tech-talks .gallery-grid .img-card .img-overlay .overlay-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #bbbbbb;
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 480px) {
  .tech-section .tech-talks .gallery-grid .img-card .img-overlay .overlay-subtitle {
    font-size: 9px;
  }
}
.tech-section .tech-talks .cta-container {
  text-align: center;
}
.tech-section .tech-talks .cta-container .cta-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 1rem;
  border: 2px solid #F47923;
  color: #F47923;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.3px;
}
@media (max-width: 768px) {
  .tech-section .tech-talks .cta-container .cta-btn {
    padding: 12px 28px;
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .tech-section .tech-talks .cta-container .cta-btn {
    padding: 10px 24px;
    font-size: 14px;
  }
}
.tech-section .tech-talks .cta-container .cta-btn:hover {
  background: #F47923;
  color: #000;
  transform: translateY(-2px);
}

@keyframes brands-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (min-width: 1024px) {
  .hero,
  .skills-section,
  .about-section .container,
  .opportunities .container,
  .opportunities__cards-wrapper,
  .learning-section .container,
  .tech-section .container {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
.dashboard__hero {
  margin: 1rem 0 2.5rem 0;
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  background-color: #181818;
  background-image: url(/assets/images/course/bg-frame.png);
  background-position: right center;
  background-size: auto 100%;
}
@media (max-width: 768px) {
  .dashboard__hero {
    margin: 0 0 1.5rem 0;
    padding: 1.5rem 1rem;
  }
}
.dashboard__hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  margin: 0 0.5rem;
}
.dashboard__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.75rem;
  color: #cfcfcf;
  opacity: 0.7;
  margin-bottom: 1rem;
}
.dashboard__badge i {
  color: #ffe089;
  font-size: 0.85rem;
}
.dashboard__title {
  font-size: 45px;
  font-weight: 400;
  color: #e8e6e5;
  margin: 0 0 0.75rem 0;
  line-height: 1.2;
  max-width: 30rem;
}
.dashboard__title .highlight {
  color: #F47923;
}
@media (max-width: 1024px) {
  .dashboard__title {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .dashboard__title {
    font-size: 1.75rem;
  }
}
@media (max-width: 480px) {
  .dashboard__title {
    font-size: 1.5rem;
    width: 16rem;
  }
}
.dashboard__subtitle {
  font-size: 19px;
  color: #cfcfcf;
  margin: 0 0 1.5rem 0;
  max-width: 650px;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .dashboard__subtitle {
    font-size: 10px;
  }
}

.dashboard {
  max-width: 1800px;
  margin: 20px auto;
  padding-left: 48px;
  padding-right: 48px;
}
@media (min-width: 1024px) {
  .dashboard {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media (max-width: 768px) {
  .dashboard {
    padding-left: 16px;
    padding-right: 16px;
  }
}
/* Glassmorphic Modern Search Bar System */
.dashboard__search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 480px;
  background: rgba(23, 23, 27, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 6px;
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.dashboard__search:focus-within,
.dashboard__search:hover {
  border-color: rgba(244, 121, 35, 0.5);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(244, 121, 35, 0.2);
}
@media (max-width: 768px) {
  .dashboard__search {
    max-width: 100%;
  }
}
.dashboard__search-input-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  padding: 0.5rem 0.85rem;
  border-radius: 12px;
  flex: 1;
}
.dashboard__search-input-wrapper i {
  color: #f47923;
  font-size: 1.1rem;
  filter: drop-shadow(0 0 8px rgba(244, 121, 35, 0.5));
}
.dashboard__search-input {
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 0.95rem;
  width: 100%;
  font-family: "Ubuntu", sans-serif;
}
.dashboard__search-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.dashboard__search-btn {
  background: linear-gradient(135deg, #f47923, #d96210);
  color: #ffffff;
  border: none;
  padding: 0.65rem 1.4rem;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  font-family: "Ubuntu", sans-serif;
  box-shadow: 0 6px 20px rgba(244, 121, 35, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}
.dashboard__search-btn:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 10px 25px rgba(244, 121, 35, 0.5);
}
.dashboard__filters-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6rem;
  margin: 2rem 0;
}
@media (max-width: 768px) {
  .dashboard__filters-section {
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
  }
}
.dashboard__filters-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 635px;
  min-width: 635px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .dashboard__filters-left {
    width: 100%;
    min-width: 0;
    order: 2;
  }
}
.dashboard__filter-track {
  flex: 1;
  overflow: hidden;
  position: relative;
  scroll-behavior: smooth;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.dashboard__filter-list {
  display: flex;
  gap: 0.5rem;
  white-space: nowrap;
}
.dashboard__filter-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  border-radius: 15px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s ease;
  background: transparent;
  color: #e8e6e5;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-family: "Ubuntu", sans-serif;
}
.dashboard__filter-btn--active {
  background: linear-gradient(135deg, #f5f0e8 0%, #e8dfc8 100%);
  color: #F47923;
  border-color: transparent;
  font-weight: 600;
}
.dashboard__filter-btn:hover:not(.dashboard__filter-btn--active) {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.07);
}
@media (max-width: 480px) {
  .dashboard__filter-btn {
    padding: 0.45rem 0.9rem;
    font-size: 0.8rem;
  }
}
.dashboard__filter-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}
.dashboard__filter-arrow img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.dashboard__filter-arrow:hover {
  opacity: 0.7;
}
.dashboard__filters-right {
  display: flex;
  align-items: center;
  width: 46%;
  min-width: 500px;
  flex-shrink: 0;
  gap: 0.5rem;
  background: rgba(23, 23, 27, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 6px;
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.dashboard__filters-right:focus-within,
.dashboard__filters-right:hover {
  border-color: rgba(244, 121, 35, 0.5);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(244, 121, 35, 0.2);
}
@media (max-width: 768px) {
  .dashboard__filters-right {
    width: 100%;
    min-width: 0;
    order: 1;
  }
}
.dashboard__filter-search-wrapper {
  flex: 1;
  background: transparent;
  padding: 0.5rem 0.85rem;
  border-radius: 12px;
}
.dashboard__filter-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 0.95rem;
  font-family: "Ubuntu", sans-serif;
}
.dashboard__filter-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.dashboard__filter-search-btn {
  background: linear-gradient(135deg, #f47923, #d96210);
  color: #ffffff;
  border: none;
  padding: 0.65rem 1.6rem;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  font-family: "Ubuntu", sans-serif;
  box-shadow: 0 6px 20px rgba(244, 121, 35, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  min-width: 120px;
}
.dashboard__filter-search-btn:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 10px 25px rgba(244, 121, 35, 0.5);
}
@media (max-width: 768px) {
  .dashboard__filter-search-btn {
    border-radius: 15px;
    min-width: unset;
    padding: 0.65rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .dashboard__filter-search-btn {
    padding: 5px 25px;
    font-size: 15px;
  }
}

.dashboard__course-card {
  background-color: #141414;
  border: 1px solid rgba(244, 121, 35, 0.5);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  width: 100%;
}
.dashboard__course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(244, 121, 35, 0.15);
}
@media (max-width: 768px) {
  .dashboard__course-card {
    width: 100%;
  }
}
.dashboard__course-image {
  width: 100%;
  padding: 0.8rem;
  background-color: #141414;
}
.dashboard__course-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0.6rem;
  transition: transform 0.3s ease;
}
.dashboard__course-card:hover .dashboard__course-image img {
  transform: scale(1.02);
}
.dashboard__course-info {
  padding: 0.75rem 1rem 1rem;
}
.dashboard__course-top-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #cfcfcf;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.2rem;
}
.dashboard__course-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #e8e6e5;
  margin: 0 0 0.4rem 0;
  line-height: 1.3;
}
.dashboard__course-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: #cfcfcf;
}
.dashboard__course-label::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("/assets/images/course/cr-icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.dashboard__section {
  margin-bottom: 2.5rem;
}
.dashboard__section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.dashboard__section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #e8e6e5;
  margin: 0;
  white-space: nowrap;
}
.dashboard__section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
}
.dashboard__courses-grid {
  display: grid;
  gap: 1.5rem;
  margin: 0 auto;
  width: 100%;
  max-width: none;
  justify-content: center;
  justify-items: stretch;
  position: relative;
}
.dashboard__courses-grid > a.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.dashboard__courses-grid > a.reveal.is-revealed {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .dashboard__courses-grid > a.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.dashboard__courses-grid--three-col {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .dashboard__courses-grid--three-col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .dashboard__courses-grid--three-col {
    grid-template-columns: 1fr;
  }
}
.dashboard__courses-grid--small {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
@media (max-width: 768px) {
  .dashboard__courses-grid--small {
    grid-template-columns: 1fr;
  }
}
.dashboard__courses-grid--large {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1200px) {
  .dashboard__courses-grid--large {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .dashboard__courses-grid--large {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .dashboard__courses-grid--large {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .dashboard__courses-grid--large {
    grid-template-columns: 1fr;
  }
}
.dashboard__view-more {
  display: none;
  justify-content: center;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .dashboard__view-more {
    display: flex;
  }
}
@media (max-width: 480px) {
  .dashboard__view-more {
    display: flex;
  }
}
.dashboard__view-more-btn {
  background-color: transparent;
  color: #e8e6e5;
  border: 2px solid #F47923;
  padding: 6px 15px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: "Ubuntu", sans-serif;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.dashboard__view-more-btn:hover {
  background-color: #F47923;
  border-color: #F47923;
}
.dashboard__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 3rem;
  padding: 1rem;
}
.dashboard__pagination-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease ease-in-out;
  font-family: "Ubuntu", sans-serif;
}
.dashboard__pagination-btn:hover:not(.disabled):not(.dashboard__pagination-btn--active) {
  background: rgba(255, 255, 255, 0.1);
  color: #e8e6e5;
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.dashboard__pagination-btn--active {
  background: linear-gradient(135deg, #f5f0e8 0%, #e8dfc8 100%);
  color: #F47923;
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.dashboard__pagination-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.02);
}
.dashboard__pagination-btn i {
  font-size: 0.8rem;
}
.dashboard__no-results {
  grid-column: 1/-1;
  padding: 3rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 1rem;
  color: #cfcfcf;
  font-size: 1.1rem;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  margin: 1rem 0;
}
.dashboard__loader {
  display: none;
  justify-content: center;
  align-items: center;
  padding: 4rem;
  grid-column: 1/-1;
  width: 100%;
  margin: 2rem 0;
}
/* Manoz load-9 animation for course filter loading */
.dashboard__spinner.load-9 {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  position: relative;
}
.dashboard__spinner.load-9 .spinner {
  position: relative;
  width: 45px;
  height: 45px;
  margin: 0 auto;
  animation: loadingI 2s linear infinite;
}
.dashboard__spinner.load-9 .bubble-1,
.dashboard__spinner.load-9 .bubble-2 {
  position: absolute;
  top: 0;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  background-color: #f47923;
  box-shadow: 0 0 16px rgba(244, 121, 35, 0.75);
  animation: bounce 2s ease-in-out infinite;
}
.dashboard__spinner.load-9 .bubble-2 {
  top: auto;
  bottom: 0;
  animation-delay: -1.0s;
}

@keyframes loadingI {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: scale(0.0);
  }
  50% {
    transform: scale(1.0);
  }
}
.course-popup {
  position: absolute;
  top: calc(100% + 14px);
  left: -125px;
  transform-origin: 175px 0;
  width: 880px;
  max-width: calc(100vw - 32px);
  background: #0d0d12 !important;
  -webkit-backdrop-filter: blur(24px) saturate(140%) !important;
  backdrop-filter: blur(24px) saturate(140%) !important;
  border-radius: 24px !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.95), 0 0 40px rgba(244, 121, 35, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  display: none;
  z-index: 10000;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}
.course-popup.open {
  display: block !important;
  animation: courseGrowFromButton 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.course-popup__arrow {
  position: absolute;
  top: -12px;
  left: 175px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 12px solid #0d0d12;
  filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.5));
}
.course-popup__container {
  display: flex;
  min-height: 520px;
  border-radius: 24px;
  overflow: hidden;
}
.course-popup__sidebar {
  width: 240px;
  background: rgba(255, 255, 255, 0.03);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  flex-shrink: 0;
}
.course-popup__categories {
  display: block !important;
  list-style: none !important;
  padding: 0 14px !important;
  margin: 0 !important;
}
.course-popup__category {
  padding: 13px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.95rem;
  width: 100%;
  border-radius: 12px;
  margin-bottom: 4px;
}
.course-popup__category i {
  font-size: 18px;
  opacity: 0.6;
  transition: transform 0.25s ease;
}
.course-popup__category:hover {
  background: rgba(244, 121, 35, 0.14);
  color: #f47923;
}
.course-popup__category:hover i {
  transform: translateX(3px);
  opacity: 1;
}
.course-popup__category.active {
  background: linear-gradient(135deg, #f47923, #d96210) !important;
  color: #ffffff !important;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(244, 121, 35, 0.4);
}
.course-popup__category.active i {
  opacity: 1;
  transform: translateX(3px);
}
.course-popup__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 15px 20px;
}
.course-popup__content {
  flex: 1;
  padding: 32px 36px;
  background: transparent;
}
.course-popup__content-header {
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 12px;
}
.course-popup__content-title {
  font-size: 1.4rem;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.course-popup__courses-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 12px;
}
.course-popup__courses-grid::-webkit-scrollbar {
  width: 5px;
}
.course-popup__courses-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
}
.course-popup__courses-grid::-webkit-scrollbar-thumb {
  background: rgba(244, 121, 35, 0.4);
  border-radius: 10px;
}
.course-popup__courses-grid::-webkit-scrollbar-thumb:hover {
  background: #f47923;
}
.course-popup__item {
  display: flex;
  gap: 20px;
  background: rgba(255, 255, 255, 0.04);
  padding: 18px;
  border-radius: 15px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.course-popup__item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(244, 121, 35, 0.15);
  border: 1px solid rgba(244, 121, 35, 0.4);
  cursor: pointer;
}
.course-popup__item-image {
  width: 140px;
  height: 95px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.course-popup__item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.course-popup__item-title {
  font-size: 1.15rem;
  color: #ffffff;
  margin: 0 0 6px 0;
  font-weight: 700;
}
.course-popup__item-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 10px 0;
  line-height: 1.4;
}
.course-popup__item-meta {
  display: flex;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}
.course-popup__item-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.course-popup__item-meta span i {
  font-size: 0.95rem;
  color: #f47923;
}

@keyframes courseGrowFromButton {
  0% {
    opacity: 0;
    transform: scale(0.92) translateY(-12px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
/* Tablet & Mobile Responsive for Master Popup */
@media (max-width: 900px) {
  .course-popup {
    left: 50% !important;
    transform: translateX(-50%) !important;
    transform-origin: center top !important;
    width: 92vw !important;
    max-width: 600px !important;
  }
  .course-popup__arrow {
    left: 15% !important;
  }
}
@media (max-width: 768px) {
  .course-popup {
    position: static;
    width: 100% !important;
    max-width: none !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    transform: none !important;
    margin: 0 !important;
  }
  .course-popup.open {
    display: block;
    animation: none;
  }
  .course-popup__arrow {
    display: none;
  }
  .course-popup__container {
    display: none;
  }
  .course-popup__mobile-view {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0.5rem 0 1.5rem 0;
  }
  .course-popup__mobile-category-group {
    margin-bottom: 2rem;
  }
  .course-popup__mobile-category-group:last-child {
    margin-bottom: 0;
  }
  .course-popup__mobile-category-group::after {
    content: "";
    display: block;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
  }
  .course-popup__mobile-category-group:last-child::after {
    display: none;
  }
  .course-popup__mobile-category-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
  }
  .course-popup__mobile-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  .course-popup__mobile-list li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-left: 0.8rem;
  }
  .course-popup__mobile-list li:last-child {
    border-bottom: none;
  }
  .course-popup__mobile-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0.5rem;
    color: rgba(255, 255, 255, 0.5) !important;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition: all 0.2s ease;
    width: 100%;
    box-sizing: border-box;
  }
  .course-popup__mobile-list li a span {
    flex: 1;
    min-width: 0;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }
  .course-popup__mobile-list li a i {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.3);
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: 10px;
  }
  .course-popup__mobile-list li a:hover {
    color: #F47923 !important;
  }
  .course-popup__mobile-list li a:hover i {
    color: #F47923;
    transform: translateX(3px);
  }
  .nav-btn.dropdown-toggle.open i.ri-arrow-right-s-line {
    transform: rotate(90deg);
  }
}
@keyframes sna-premium-sheen {
  0%, 55% {
    left: -60%;
  }
  100% {
    left: 140%;
  }
}
@keyframes sna-premium-glow {
  0%, 100% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 4px 16px rgba(249, 115, 22, 0.35);
  }
  50% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 4px 28px rgba(249, 115, 22, 0.65);
  }
}
.course-popup__subscription {
  position: relative;
  overflow: hidden;
  margin: 10px 14px 4px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  border-radius: 12px;
  background: linear-gradient(135deg, #fb8c3e 0%, #f97316 55%, #ea6a0a 100%);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.25s ease;
  animation: sna-premium-glow 2.6s ease-in-out infinite;
}
.course-popup__subscription::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -60%;
  width: 45%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  animation: sna-premium-sheen 2.6s ease-in-out infinite;
  pointer-events: none;
}
.course-popup__subscription span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.course-popup__subscription i {
  font-size: 18px;
}
.course-popup__subscription:hover {
  transform: translateX(2px) scale(1.02);
}

.course-popup__mobile-subscription {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fb8c3e 0%, #f97316 55%, #ea6a0a 100%);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  animation: sna-premium-glow 2.6s ease-in-out infinite;
}
.course-popup__mobile-subscription::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -60%;
  width: 45%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  animation: sna-premium-sheen 2.6s ease-in-out infinite;
  pointer-events: none;
}
.course-popup__mobile-subscription span {
  flex: 1;
}
.course-popup__mobile-subscription i {
  font-size: 18px;
}

.course-idv {
  background-color: #0A0A0A;
  color: #e8e6e5;
  padding-bottom: 5rem;
  display: flex;
  flex-direction: column;
}
.course-idv .container,
.course-idv .container--wide {
  max-width: 1700px;
  width: 95%;
}
.course-idv__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: left;
  margin-bottom: 3rem;
  line-height: 1.2;
  margin-left: 0;
}
.course-idv__section-title .highlight {
  color: #F47923 !important;
}
@media (max-width: 480px) {
  .course-idv__section-title {
    margin-left: 0;
    font-size: 25px !important;
  }
}
@media (max-width: 1024px) {
  .course-idv__section-title {
    font-size: 2rem;
    text-align: center;
  }
}
.course-idv__section-subtitle {
  text-align: left;
  font-size: 2.25rem;
  color: #e8e6e5;
  margin-bottom: 0.5rem;
  margin-left: 0;
}
@media (max-width: 1024px) {
  .course-idv__section-subtitle {
    text-align: center;
    margin-left: 0;
  }
}
@media (max-width: 480px) {
  .course-idv__section-subtitle {
    margin-left: 0;
    font-size: 25px !important;
  }
}
.course-idv__master,
.course-idv .skills-section {
  padding: 1rem 0;
  text-align: left;
  order: 4;
}
@media (max-width: 1024px) {
  .course-idv__master,
  .course-idv .skills-section {
    text-align: center;
  }
}
@media (max-width: 1024px) {
  .course-idv .skills-section .skills-container {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    text-align: left;
  }
}
@media (max-width: 1024px) {
  .course-idv .skills-section .skills-header {
    width: auto;
  }
}
@media (max-width: 1024px) {
  .course-idv .skills-section .skills-marquee {
    width: 100%;
    flex: 1 1 auto;
  }
}
@media (max-width: 1024px) {
  .course-idv .skills-section .skills-marquee .track {
    justify-content: flex-start;
  }
}
.course-idv__master-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 3rem;
}
@media (max-width: 600px) {
  .course-idv__master-icons {
    gap: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
  .course-idv__master-icons .master-icon:last-child {
    grid-column: span 2;
  }
}

.master-icon {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #ffffff;
  font-weight: 500;
}
.master-icon img {
  height: 30px;
  width: auto;
}
.master-icon i {
  font-size: 2rem;
}
.master-icon span {
  font-size: 1.125rem;
}

.course-idv__hero {
  padding: 3rem 0;
  order: 1;
}
@media (max-width: 1024px) {
  .course-idv__hero {
    padding: 2rem 0;
  }
}
@media (max-width: 480px) {
  .course-idv__hero {
    padding: 1rem 0;
  }
}
.course-idv__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 4rem;
  justify-content: stretch;
  align-items: stretch;
}
@media (max-width: 1400px) {
  .course-idv__hero-grid {
    gap: 3rem;
  }
}
@media (max-width: 1200px) {
  .course-idv__hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 696px;
    margin: 0 auto;
    width: 95%;
  }
}
@media (max-width: 768px) {
  .course-idv__hero-grid {
    width: 100%;
    gap: 1.5rem;
  }
}
.course-idv__hero-banner-card {
  background: rgba(23, 23, 27, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 520px;
  height: 100%;
  overflow: hidden;
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.course-idv__hero-banner-card:hover {
  border-color: rgba(244, 121, 35, 0.35);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(244, 121, 35, 0.15);
}
@media (max-width: 1200px) {
  .course-idv__hero-banner-card {
    min-height: auto;
    aspect-ratio: 696/461;
  }
}
@media (max-width: 768px) {
  .course-idv__hero-banner-card {
    max-width: 100%;
    aspect-ratio: auto;
    padding: 1rem;
  }
}
.course-idv__hero-enroll {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.course-idv__hero-banner {
  overflow: hidden;
  width: 100%;
  line-height: 0;
  border-radius: 14px;
}
.course-idv__hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.course-idv__hero-banner-card:hover .course-idv__hero-banner img {
  transform: scale(1.03);
}

.enroll-card {
  background: rgba(23, 23, 27, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 640px;
  min-height: 520px;
  height: 100%;
  box-sizing: border-box;
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.enroll-card:hover {
  border-color: rgba(244, 121, 35, 0.4);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(244, 121, 35, 0.18);
}
@media (max-width: 1200px) {
  .enroll-card {
    min-height: auto;
  }
}
@media (max-width: 768px) {
  .enroll-card {
    max-width: 100%;
    padding: 1.5rem;
  }
}
.enroll-card__badge {
  border: 1.5px solid #f47923;
  background: rgba(244, 121, 35, 0.15);
  color: #f47923;
  display: inline-block;
  padding: 0.25rem 1.1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  width: fit-content;
  box-shadow: 0 0 15px rgba(244, 121, 35, 0.25);
}
.enroll-card__title {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  overflow-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 480px) {
  .enroll-card__title {
    font-size: 1.75rem;
  }
}
.enroll-card__meta {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.enroll-card__meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.enroll-card__meta .meta-item i {
  color: #f47923;
  font-size: 1.05rem;
  filter: drop-shadow(0 0 6px rgba(244, 121, 35, 0.5));
}
.enroll-card__price {
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.enroll-card__price .price-label {
  color: #f47923;
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.enroll-card__price .price-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.enroll-card__price .price-old {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  font-size: 1.25rem;
  font-weight: 500;
}
.enroll-card__price .price-new {
  font-size: 1.55rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 0 15px rgba(244, 121, 35, 0.3);
}
@media (max-width: 380px) {
  .enroll-card__price .price-new {
    font-size: 1.25rem;
  }
}
.enroll-card__overview {
  margin-bottom: 1.5rem;
}
.enroll-card__overview .overview-title {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}
.enroll-card__overview .overview-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.enroll-card__overview .overview-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.9);
}
.enroll-card__overview .overview-list li i {
  color: #f47923;
  font-size: 1.15rem;
  margin-top: 0.1rem;
  filter: drop-shadow(0 0 6px rgba(244, 121, 35, 0.5));
}
.enroll-card__btn {
  background: linear-gradient(135deg, #f47923, #d96210);
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0.4rem 0.4rem 1.4rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 8px 25px rgba(244, 121, 35, 0.4);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: auto;
}
.enroll-card__btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 12px 30px rgba(244, 121, 35, 0.55);
}
.enroll-card__btn-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 42px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.enroll-card__btn-icon {
  background: white;
  color: #F47923;
  width: 42px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 1.1rem;
}

.course-idv__benefits {
  padding: 1rem 0;
  order: 3;
}
@media (max-width: 480px) {
  .course-idv__benefits {
    order: 2;
  }
}
.course-idv__benefits__section-title {
  font-size: 3rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.2;
  margin-left: 0;
  max-width: 65rem;
  text-align: left;
}
.course-idv__benefits__section-title .highlight {
  color: #F47923 !important;
}
@media (max-width: 1024px) {
  .course-idv__benefits__section-title {
    font-size: 22px;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .course-idv__benefits__section-title {
    margin-left: 0;
  }
}
.course-idv__benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 769px) {
  .course-idv__benefits-grid {
    background-color: #121212;
    border-radius: 1.5rem;
    padding: 1rem 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    gap: 0;
  }
}
@media (max-width: 768px) {
  .course-idv__benefits-grid {
    gap: 1rem;
  }
}

.benefits-col {
  display: flex;
  flex-direction: row;
}
@media (min-width: 769px) {
  .benefits-col {
    position: relative;
  }
  .benefits-col:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 90%;
    height: 1px;
    background-color: rgba(244, 121, 35, 0.08);
  }
}

.benefit-card {
  flex: 1;
  background-color: #121212;
  padding: 3rem 2rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 769px) {
  .benefit-card {
    background-color: transparent;
    border: none;
    border-radius: 0;
    padding: 2rem 2rem;
  }
  .benefit-card:not(:last-child) {
    position: relative;
  }
  .benefit-card:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(244, 121, 35, 0.08);
  }
}
@media (max-width: 480px) {
  .benefit-card {
    background-color: transparent;
    border: none;
    padding: 10px 0;
    width: 100%;
  }
}
.benefit-card__icon {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}
@media (max-width: 480px) {
  .benefit-card__icon {
    margin-bottom: 10px;
  }
}
.benefit-card__icon img {
  height: 50px;
  width: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .benefit-card__icon img {
    height: 45px;
  }
}
.benefit-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
  width: 100%;
  text-align: center;
}
@media (max-width: 480px) {
  .benefit-card__title {
    font-size: 17.1px;
    margin-bottom: 10px;
  }
}
.benefit-card__desc {
  font-size: 0.9rem;
  color: #cfcfcf;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 480px) {
  .benefit-card__desc {
    font-size: 10.5px;
    color: #999;
    line-height: 1.6;
    max-width: 85%;
    margin: 0 auto;
  }
}

.course-idv__mentor {
  padding: 1rem 0;
  order: 5;
}
@media (max-width: 768px) {
  .course-idv__mentor {
    display: none;
  }
}
@media (max-width: 480px) {
  .course-idv__mentor h2 {
    margin-left: 0;
  }
}
.course-idv__mentor-card {
  background-color: #121212;
  border-radius: 1rem;
  padding: 3rem;
  max-width: 92rem;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .course-idv__mentor-card {
    padding: 2rem 1.5rem;
    max-width: 21rem;
  }
}

.mentor-card__container {
  position: relative;
  width: 100%;
}

.mentor-slide {
  display: none;
  width: 100%;
  position: relative;
}
.mentor-slide.active {
  display: flex;
}

.mentor-card__content {
  display: flex;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) {
  .mentor-card__content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
}
.mentor-card__image {
  flex-shrink: 0;
  width: 280px;
  height: 320px;
  border-radius: 1rem;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.active .mentor-card__image {
  opacity: 1;
}
.mentor-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .mentor-card__image {
    width: 200px;
    height: 230px;
  }
}
@media (max-width: 480px) {
  .mentor-card__image {
    width: 218px;
    height: 209px;
  }
}
.mentor-card__info .mentor-badge,
.mentor-card__info .mentor-name,
.mentor-card__info .mentor-bio {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.active .mentor-card__info .mentor-badge,
.active .mentor-card__info .mentor-name,
.active .mentor-card__info .mentor-bio {
  opacity: 1;
  transform: translateY(0);
}
.mentor-slide:not(.active) .mentor-card__info .mentor-badge,
.mentor-slide:not(.active) .mentor-card__info .mentor-name,
.mentor-slide:not(.active) .mentor-card__info .mentor-bio {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.5s ease-in, transform 0.5s ease-in;
}
.active .mentor-card__info .mentor-badge {
  transition-delay: 0.1s;
}
.active .mentor-card__info .mentor-name {
  transition-delay: 0.2s;
}
.active .mentor-card__info .mentor-bio {
  transition-delay: 0.3s;
}
.active .mentor-card__info .mentor-title {
  transition-delay: 0.4s;
}
.mentor-card__info .mentor-badge {
  display: inline-block;
  background-color: #6f492e;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
  border: 2px solid #F47923;
}
@media (max-width: 480px) {
  .mentor-card__info .mentor-badge {
    display: none;
  }
}
.mentor-card__info .mentor-name {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}
.mentor-card__info .mentor-name .highlight {
  color: #F47923 !important;
}
@media (max-width: 480px) {
  .mentor-card__info .mentor-name {
    font-size: 17px;
    font-weight: 400;
  }
  .mentor-card__info .mentor-name .highlight {
    display: block;
  }
}
.mentor-card__info .mentor-bio {
  font-size: 1rem;
  color: #cfcfcf;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
@media (max-width: 480px) {
  .mentor-card__info .mentor-bio {
    font-size: 9.6px;
  }
}
.mentor-card__info .mentor-title {
  color: #F47923;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 13px;
  justify-content: flex-start;
  position: relative;
  width: fit-content;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .mentor-card__info .mentor-title {
    justify-content: center;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .mentor-card__info .mentor-title {
    font-size: 11px;
  }
}
.active .mentor-card__info .mentor-title {
  opacity: 1;
  transform: translateY(0);
}

.course-idv__topics {
  padding: 1rem 0 0;
  order: 2;
}
@media (max-width: 480px) {
  .course-idv__topics {
    order: 3;
    padding: 0;
  }
}
.course-idv__topics__section-title {
  font-size: 3.5rem;
  font-weight: 700;
  text-align: left;
  margin-bottom: 3rem;
  line-height: 1.2;
}
.course-idv__topics__section-title .highlight {
  color: #F47923 !important;
}
@media (max-width: 1024px) {
  .course-idv__topics__section-title {
    font-size: 22px;
    text-align: center;
  }
}
.course-idv__topics-content {
  background-color: #151515;
  padding: 2rem 0;
  box-shadow: 0 0 0 100vmax #151515;
  clip-path: inset(0 -100vmax);
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 480px) {
  .course-idv__topics-content {
    padding: 2rem 0;
  }
}
.course-idv__topics-content .topic-item {
  display: flex;
  gap: 1rem;
}
.course-idv__topics-content .topic-item::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #e8e6e5;
  border-radius: 50%;
  margin-top: 0.6rem;
  flex-shrink: 0;
}
.course-idv__topics-content .topic-item p {
  color: #cfcfcf;
  line-height: 1.8;
  font-size: 1.05rem;
  margin: 0;
}
@media (max-width: 480px) {
  .course-idv__topics-content .topic-item p {
    font-size: 13px;
    line-height: 1.3;
  }
}

.enrollment-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}
.enrollment-popup-overlay.active {
  display: flex;
}

.enrollment-popup {
  border-radius: 16px;
  width: 100%;
  max-width: 850px;
  padding: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  scroll-behavior: auto !important;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  contain: paint;
  will-change: transform;
  --glow-width: 20%;
  --glow-x-top: 10%;
  --glow-x-bottom: 90%;
  --glow-top-offset: 0px;
  background-color: rgba(18, 18, 22, 0.94);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-image: linear-gradient(90deg, transparent 0%, rgba(243, 133, 51, 0.1) 15%, rgba(243, 133, 51, 0.5) 30%, #f38533 50%, rgba(243, 133, 51, 0.5) 70%, rgba(243, 133, 51, 0.1) 85%, transparent 100%), linear-gradient(90deg, transparent 0%, rgba(243, 133, 51, 0.1) 15%, rgba(243, 133, 51, 0.5) 30%, #f38533 50%, rgba(243, 133, 51, 0.5) 70%, rgba(243, 133, 51, 0.1) 85%, transparent 100%);
  background-size: var(--glow-width) 2px, var(--glow-width) 2px;
  background-position: var(--glow-x-top) var(--glow-top-offset), var(--glow-x-bottom) calc(100% - var(--glow-bottom-offset));
  background-repeat: no-repeat;
  background-attachment: scroll, scroll;
}
.enrollment-popup::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Opera */
}
.enrollment-popup {
  /* Nested media queries for enrollment-popup */
}
@media (min-width: 600px) and (max-width: 1024px) {
  .enrollment-popup {
    padding: 30px;
  }
}
@media (max-width: 600px) {
  .enrollment-popup {
    padding: 20px;
  }
}
.enrollment-popup__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  /* Nested media queries for __header */
}
@media (max-width: 600px) {
  .enrollment-popup__header {
    margin-bottom: 20px;
  }
}
.enrollment-popup__logo {
  width: 40px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.enrollment-popup__logo img {
  width: 100%;
  height: 100%;
  object-fit: auto;
}
.enrollment-popup__title {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  /* Nested media queries for __title */
}
@media (max-width: 600px) {
  .enrollment-popup__title {
    font-size: 20px;
  }
}
.enrollment-popup__close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: transparent;
  border: none;
  color: #f38533;
  font-size: 24px;
  cursor: pointer;
  transition: 0.2s ease;
  /* Nested media queries for __close */
}
@media (max-width: 600px) {
  .enrollment-popup__close {
    top: 20px;
    right: 20px;
    font-size: 20px;
  }
}
.enrollment-popup__close:hover {
  transform: scale(1.1);
}
.enrollment-popup__tabs {
  display: flex;
  border-bottom: 1px solid #333333;
  margin-bottom: 40px;
  gap: 30px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.enrollment-popup__tabs::-webkit-scrollbar {
  display: none;
}
.enrollment-popup__tabs {
  /* Nested media queries for __tabs */
}
@media (max-width: 600px) {
  .enrollment-popup__tabs {
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 5px;
  }
}
.enrollment-popup__tab {
  background: transparent;
  border: none;
  padding: 0 0 12px 0;
  color: #888888;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: 0.2s ease;
  /* Nested media queries for __tab */
}
@media (max-width: 600px) {
  .enrollment-popup__tab {
    font-size: 13px;
  }
}
.enrollment-popup__tab.active {
  color: #ffffff;
}
.enrollment-popup__tab.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #f38533;
  border-radius: 3px 3px 0 0;
}
.enrollment-popup__tab.completed {
  color: #888888;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: default;
}
.enrollment-popup__tab.completed i {
  color: #f38533;
  font-size: 16px;
}
.enrollment-popup__tab:hover:not(.active):not(.completed) {
  color: #cccccc;
}
.enrollment-popup__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
  /* Nested media queries for __form */
}
@media (max-width: 600px) {
  .enrollment-popup__form {
    margin-bottom: 20px;
  }
}
.enrollment-popup__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.enrollment-popup__row.full-width {
  grid-template-columns: 1fr;
}
@media (max-width: 600px) {
  .enrollment-popup__row.kyc-row-2 {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}
@media (min-width: 600px) {
  .enrollment-popup__row.kyc-row-4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .enrollment-popup__row.kyc-row-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 8px;
  }
}
.enrollment-popup__row {
  /* Nested media queries for __row */
}
@media (min-width: 600px) and (max-width: 1024px) {
  .enrollment-popup__row {
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .enrollment-popup__row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.enrollment-popup__group--invalid input[type=text],
.enrollment-popup__group--invalid input[type=email],
.enrollment-popup__group--invalid input[type=tel],
.enrollment-popup__group--invalid select,
.enrollment-popup__group--invalid .enrollment-popup__select-trigger {
  border-color: #ff4d4f !important;
}
.enrollment-popup__group--invalid .enrollment-popup__custom-select--country .enrollment-popup__select-trigger {
  border-color: #333333 !important;
}
.enrollment-popup__field-error {
  color: #ff4d4f;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  margin: 2px 0 0;
}
.enrollment-popup__group:has(.enrollment-popup__mobile-input) .enrollment-popup__field-error {
  margin-left: 88px;
}
.enrollment-popup__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.enrollment-popup__group label {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}
.enrollment-popup__group label .required {
  color: #f38533;
  margin-left: 2px;
}
@media (max-width: 600px) {
  .enrollment-popup__row.kyc-row-4 .enrollment-popup__group label {
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .enrollment-popup__row.kyc-row-4 .enrollment-popup__group input[type=text] {
    padding: 0 8px;
    font-size: 12px;
  }
}
.enrollment-popup__group input[type=text],
.enrollment-popup__group input[type=email],
.enrollment-popup__group input[type=tel],
.enrollment-popup__group select {
  background: #1e1e1e;
  border: 1px solid #333333;
  border-radius: 8px;
  height: 48px;
  padding: 0 16px;
  color: #ffffff;
  font-size: 14px;
  outline: none;
  transition: 0.2s ease;
  width: 100%;
  appearance: none;
  font-family: "Ubuntu", sans-serif;
}
.enrollment-popup__group input[type=text]::placeholder,
.enrollment-popup__group input[type=email]::placeholder,
.enrollment-popup__group input[type=tel]::placeholder,
.enrollment-popup__group select::placeholder {
  color: #888888;
}
.enrollment-popup__group input[type=text]:focus,
.enrollment-popup__group input[type=email]:focus,
.enrollment-popup__group input[type=tel]:focus,
.enrollment-popup__group select:focus {
  border-color: #f38533;
}
.enrollment-popup__group input[type=text]:-webkit-autofill, .enrollment-popup__group input[type=text]:-webkit-autofill:hover, .enrollment-popup__group input[type=text]:-webkit-autofill:active,
.enrollment-popup__group input[type=email]:-webkit-autofill,
.enrollment-popup__group input[type=email]:-webkit-autofill:hover,
.enrollment-popup__group input[type=email]:-webkit-autofill:active,
.enrollment-popup__group input[type=tel]:-webkit-autofill,
.enrollment-popup__group input[type=tel]:-webkit-autofill:hover,
.enrollment-popup__group input[type=tel]:-webkit-autofill:active,
.enrollment-popup__group select:-webkit-autofill,
.enrollment-popup__group select:-webkit-autofill:hover,
.enrollment-popup__group select:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #1e1e1e inset !important;
  box-shadow: 0 0 0 1000px #1e1e1e inset !important;
  -webkit-text-fill-color: #ffffff !important;
  border: 1px solid #333333 !important;
  border-top-color: #333333 !important;
  border-bottom-color: #333333 !important;
  border-radius: 8px !important;
  -webkit-background-clip: padding-box !important;
  background-clip: padding-box !important;
  caret-color: #ffffff;
  transition: background-color 5000s ease-in-out 0s !important;
}
.enrollment-popup__group input[type=text]:-webkit-autofill:focus,
.enrollment-popup__group input[type=email]:-webkit-autofill:focus,
.enrollment-popup__group input[type=tel]:-webkit-autofill:focus,
.enrollment-popup__group select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #1e1e1e inset !important;
  box-shadow: 0 0 0 1000px #1e1e1e inset !important;
  -webkit-text-fill-color: #ffffff !important;
  border: 1px solid #f38533 !important;
  border-radius: 8px !important;
  -webkit-background-clip: padding-box !important;
  background-clip: padding-box !important;
  caret-color: #ffffff;
  transition: background-color 5000s ease-in-out 0s !important;
}
.enrollment-popup__group .select-wrapper {
  position: relative;
  width: 100%;
}
.enrollment-popup__group .select-wrapper .select-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #888888;
  pointer-events: none;
}
.enrollment-popup__file-upload {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 60px;
  padding: 0 24px;
  border: 2px dashed #f38533;
  border-radius: 8px;
  cursor: pointer;
  color: #f38533;
  font-size: 14px;
  transition: 0.2s ease;
}
.enrollment-popup__file-upload i {
  font-size: 20px;
}
.enrollment-popup__file-upload:hover {
  background-color: rgba(243, 133, 51, 0.05);
}
.enrollment-popup__file-upload--uploaded {
  justify-content: space-between;
  border-style: solid;
  background-color: rgba(243, 133, 51, 0.08);
}
.enrollment-popup__file-upload--uploaded .enrollment-popup__file-replace {
  display: inline-flex;
}
.enrollment-popup__file-main {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.enrollment-popup__file-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.enrollment-popup__file-replace {
  display: none;
  align-items: center;
  flex-shrink: 0;
  padding: 4px 14px;
  border: 1px solid #f38533;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.enrollment-popup__file-replace:hover {
  background-color: #f38533;
  color: #fff;
}
.enrollment-popup__custom-select {
  position: relative;
  width: 100%;
  cursor: pointer;
}
.enrollment-popup__custom-select.open .enrollment-popup__select-trigger {
  border-color: rgba(255, 255, 255, 0.2);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.enrollment-popup__custom-select.open .enrollment-popup__select-trigger i {
  transform: rotate(180deg);
}
.enrollment-popup__custom-select.open .enrollment-popup__options-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.enrollment-popup__custom-select--country {
  width: 80px;
  flex-shrink: 0;
}
.enrollment-popup__custom-select--country .enrollment-popup__select-trigger {
  border-radius: 8px;
  border-right: none;
  padding: 0 10px;
}
.enrollment-popup__custom-select--country .enrollment-popup__select-trigger span {
  font-size: 10px;
}
.enrollment-popup__custom-select--country.open .enrollment-popup__select-trigger {
  border-bottom-left-radius: 0;
}
.enrollment-popup__custom-select--country .enrollment-popup__options-list {
  width: 80px;
}
.enrollment-popup__custom-select--country .enrollment-popup__option {
  font-size: 10px;
}
.enrollment-popup__select-trigger {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.enrollment-popup__select-trigger span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}
.enrollment-popup__select-trigger i {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}
.enrollment-popup__select-trigger:hover {
  border-color: rgba(244, 121, 35, 0.4);
  background: rgba(255, 255, 255, 0.08);
}
.enrollment-popup__custom-select.open .enrollment-popup__select-trigger {
  border-color: #f47923;
  box-shadow: 0 0 15px rgba(244, 121, 35, 0.25);
}
.enrollment-popup__options-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: rgba(18, 18, 24, 0.94);
  border: 1px solid rgba(244, 121, 35, 0.3);
  border-radius: 12px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 220px;
  overflow-y: auto;
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(244, 121, 35, 0.12);
}
.enrollment-popup__options-list::-webkit-scrollbar {
  width: 5px;
}
.enrollment-popup__options-list::-webkit-scrollbar-thumb {
  background: rgba(244, 121, 35, 0.3);
  border-radius: 10px;
}
.enrollment-popup__option {
  padding: 11px 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.15s ease;
  cursor: pointer;
}
.enrollment-popup__option:hover {
  background-color: rgba(244, 121, 35, 0.15);
  color: #ffffff;
  padding-left: 22px;
}
.enrollment-popup__option.selected {
  color: #f47923;
  background-color: rgba(244, 121, 35, 0.22);
  font-weight: 600;
}
.enrollment-popup__option:first-child {
  border-top-left-radius: 11px;
  border-top-right-radius: 11px;
}
.enrollment-popup__option:last-child {
  border-bottom-left-radius: 11px;
  border-bottom-right-radius: 11px;
}
.enrollment-popup__mobile-input {
  display: flex;
  gap: 8px;
  position: relative;
}
.enrollment-popup__mobile-input input {
  flex: 1;
  border-radius: 0 8px 8px 0;
}
.enrollment-popup__dob-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  /* Nested media queries for __dob-inputs */
}
@media (max-width: 600px) {
  .enrollment-popup__dob-inputs {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }
}
.enrollment-popup__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid #333333;
  padding-top: 30px;
  /* Nested media queries for __footer */
}
@media (max-width: 768px) {
  .enrollment-popup__footer {
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
  }
}
.enrollment-popup__support {
  color: #888888;
  font-size: 13px;
  max-width: 350px;
  /* Nested media queries for __support */
}
@media (max-width: 768px) {
  .enrollment-popup__support {
    text-align: center;
    max-width: 100%;
  }
}
.enrollment-popup__support p {
  margin: 0;
  line-height: 1.5;
}
.enrollment-popup__support a {
  color: #f38533;
  text-decoration: underline;
  font-weight: 500;
}
.enrollment-popup__support a:hover {
  color: rgb(90%, 41.4705882353%, 5.2941176471%);
}
.enrollment-popup__next-btn {
  background: #f38533;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  height: 35px;
  padding: 0 40px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s ease;
  /* Nested media queries for __next-btn */
}
@media (max-width: 768px) {
  .enrollment-popup__next-btn {
    width: 100%;
  }
}
.enrollment-popup__next-btn:hover:not(:disabled) {
  background: rgb(90%, 41.4705882353%, 5.2941176471%);
  transform: translateY(-2px);
}
.enrollment-popup__next-btn:disabled {
  background: #444;
  color: #888;
  cursor: not-allowed;
  transform: none;
  opacity: 0.6;
}
.enrollment-popup__payment-group {
  display: grid;
  gap: 1rem;
}
.enrollment-popup__payment-card {
  background: #1e1e1e;
  border: 1px solid #F47923;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: 0.2s ease;
}
.enrollment-popup__payment-card.active {
  background: rgba(244, 121, 35, 0.05);
}
.enrollment-popup__payment-card .radio-dot {
  width: 18px;
  height: 18px;
  border: 2px solid #F47923;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.enrollment-popup__payment-card .radio-dot::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #F47923;
  border-radius: 50%;
}
.enrollment-popup__payment-card .enrollment-popup__payment-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}
.enrollment-popup__payment-card .enrollment-popup__payment-info .payment-name {
  color: #F47923;
  font-size: 16px;
  font-weight: 500;
}
.enrollment-popup__payment-card .enrollment-popup__payment-info .payment-amount {
  color: #F47923;
  font-size: 16px;
  font-weight: 700;
}
.enrollment-popup__price-summary {
  border: 1px solid #ffffff;
  border-radius: 4px;
  padding: 0;
  margin-top: 10px;
  background: transparent;
}
.enrollment-popup__price-summary .summary-title {
  color: #ffffff;
  font-size: 15px;
  margin: 0;
  padding: 12px 16px;
  font-weight: 500;
}
.enrollment-popup__price-summary .summary-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  border-top: 1px solid #ffffff;
}
@media (max-width: 600px) {
  .enrollment-popup__price-summary .summary-grid {
    grid-template-columns: 1fr;
  }
}
.enrollment-popup__price-summary .summary-item {
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.enrollment-popup__price-summary .summary-item.border-left {
  border-left: 1px solid #ffffff;
}
@media (max-width: 600px) {
  .enrollment-popup__price-summary .summary-item.border-left {
    border-left: none;
    border-top: 1px solid #ffffff;
  }
}
.enrollment-popup__price-summary .summary-item .label {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}
.enrollment-popup__price-summary .summary-item .value {
  color: #F47923;
  font-size: 18px;
  font-weight: 700;
}
.enrollment-popup__policy-check .checkbox-container {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
}
.enrollment-popup__policy-check .checkbox-container input {
  width: 18px;
  height: 18px;
  accent-color: #F47923;
}
.enrollment-popup__captcha-container {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 600px) {
  .enrollment-popup__captcha-container {
    justify-content: center;
  }
}

.review-hero {
  padding: 100px 20px 60px;
  text-align: center;
  background: #1A1A1A;
  background-image: url("/assets/images/review/cta-bg.png");
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .review-hero {
    padding: 80px 20px 40px;
  }
}
@media (max-width: 480px) {
  .review-hero {
    padding: 60px 20px 30px;
  }
}
.review-hero__container {
  max-width: 900px;
  margin: 0 auto;
  justify-items: center;
}
.review-hero__img {
  width: 100%;
  max-width: 400px;
  height: auto;
}
@media (max-width: 480px) {
  .review-hero__img {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .review-hero__img {
    width: 50%;
  }
}
.review-hero__title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .review-hero__title {
    font-size: 42px;
  }
}
@media (max-width: 480px) {
  .review-hero__title {
    font-size: 32px;
  }
}
.review-hero__title .highlight {
  color: #F47923;
  background: linear-gradient(135deg, #F47923 0%, #feb176 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.review-hero__subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #b3b3b3;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .review-hero__subtitle {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .review-hero__subtitle {
    font-size: 11px;
  }
}

.review-stats {
  padding: 40px 0;
  background: #0a0a0a;
}
@media (max-width: 768px) {
  .review-stats {
    padding: 30px 0;
  }
}
.review-stats__container {
  max-width: 1920px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
}
@media (min-width: 1024px) {
  .review-stats__container {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 768px) {
  .review-stats__container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.review-stats__card {
  height: auto;
  background: #141414;
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-stats__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.review-stats__card--map {
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .review-stats__card--map {
    padding: 30px 20px;
    min-height: 300px;
  }
}
@media (max-width: 480px) {
  .review-stats__card--map {
    padding: 20px 15px;
    min-height: 250px;
  }
}
.review-stats__card--students {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  text-align: center;
  background: linear-gradient(135deg, #141414 0%, rgba(244, 121, 35, 0.05) 100%);
}
@media (max-width: 768px) {
  .review-stats__card--students {
    padding: 50px 30px;
  }
}
@media (max-width: 480px) {
  .review-stats__card--students {
    padding: 40px 20px;
  }
}
.review-stats__map {
  width: 100%;
  max-width: 597.49px;
  height: auto;
  aspect-ratio: 597.49/390.06;
  position: relative;
}
.review-stats__map img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}
.review-stats__map .map-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.review-stats__map:hover .map-primary {
  opacity: 0;
}
.review-stats__map:hover .map-hover {
  opacity: 1;
}
.review-stats__number {
  font-size: 96px;
  font-weight: 700;
  font-family: "Ubuntu", sans-serif;
  line-height: 1;
  color: #F47923;
  background: linear-gradient(to bottom, #F47923 0%, #6d3103 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .review-stats__number {
    font-size: 80px;
  }
}
@media (max-width: 768px) {
  .review-stats__number {
    font-size: 72px;
  }
}
@media (max-width: 480px) {
  .review-stats__number {
    font-size: 64px;
  }
}
.review-stats__label {
  font-size: 20px;
  color: #b3b3b3;
  font-weight: 500;
}
@media (max-width: 768px) {
  .review-stats__label {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .review-stats__label {
    font-size: 16px;
  }
}
.review-stats__card {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}
.review-stats__card:nth-child(1) {
  animation-delay: 0.1s;
}
.review-stats__card:nth-child(2) {
  animation-delay: 0.2s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.review-testimonials {
  padding: 60px 0 40px;
}
@media (max-width: 768px) {
  .review-testimonials {
    padding: 50px 0 30px;
  }
}
@media (max-width: 480px) {
  .review-testimonials {
    padding: 40px 0 20px;
  }
}
.review-testimonials__container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) {
  .review-testimonials__container {
    padding: 0 16px;
  }
}
@media (min-width: 1024px) {
  .review-testimonials__container {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
.review-testimonials__box {
  max-width: 1920px;
  margin: 50px auto 0;
  width: 100%;
  padding-left: 48px;
  padding-right: 48px;
  background-image: url("/assets/images/review/cta-bg.png");
  background-size: cover;
  background-position: center;
}
@media (min-width: 1024px) {
  .review-testimonials__box {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 768px) {
  .review-testimonials__box {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 480px) {
  .review-testimonials__box {
    margin-top: 30px;
    display: flex;
    justify-content: center;
  }
}
.review-testimonials__title {
  font-size: 48px;
  font-weight: 300;
  text-align: left;
  color: #ffffff;
  width: 100%;
  max-width: 400px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .review-testimonials__title {
    font-size: 38px;
  }
}
@media (max-width: 480px) {
  .review-testimonials__title {
    font-size: 28px;
    max-width: 16rem;
    text-align: center;
  }
}
.review-testimonials__title .highlight {
  color: #F47923;
}
.review-testimonials__row {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .review-testimonials__row {
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .review-testimonials__row {
    margin-bottom: 25px;
  }
}
.review-testimonials__row:last-of-type {
  margin-bottom: 30px;
}
.review-testimonials__cards-wrapper {
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  cursor: grab;
}
.review-testimonials__cards-wrapper::-webkit-scrollbar {
  display: none;
}
.review-testimonials__cards-wrapper:active {
  cursor: grabbing;
}
.review-testimonials__cards {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0;
  width: max-content;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .review-testimonials__cards {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .review-testimonials__cards {
    gap: 1rem;
    padding: 1rem 0;
    align-items: flex-start;
    scroll-snap-type: x mandatory;
  }
}
@media (max-width: 480px) {
  .review-testimonials__cards {
    gap: 1rem;
    padding: 1rem 0;
  }
}
.review-testimonials__loader {
  display: none;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  margin-top: 20px;
  width: 100%;
}
.review-testimonials__spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top: 4px solid #F47923;
  border-radius: 50%;
  animation: review-spin 1s linear infinite;
}

@keyframes review-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.review-card {
  background: #333131;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.6rem;
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  width: 390px;
  height: 640px;
  flex-shrink: 0;
  min-width: 390px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .review-card {
    width: calc((100% - 4.5rem) / 4);
    min-width: 0;
    flex: 0 0 calc((100% - 4.5rem) / 4);
  }
}
@media (max-width: 768px) {
  .review-card {
    width: calc(100vw - 16px * 2);
    min-width: calc(100vw - 16px * 2);
    height: auto;
    scroll-snap-align: center;
  }
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(244, 121, 35, 0.2);
}
.review-card__header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #141414;
}
.review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-card__info {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
.review-card__user {
  flex: 1;
  min-width: 0;
}
.review-card__name {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 3px 0;
}
.review-card__role {
  font-size: 11px;
  color: #b3b3b3;
  margin: 0;
  line-height: 1.3;
  opacity: 0.75;
}
.review-card__social {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.review-card__social-link {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b3b3b3;
  transition: all 0.3s ease;
  text-decoration: none;
}
.review-card__social-link:hover {
  border-color: rgba(244, 121, 35, 0.5);
  background: rgba(244, 121, 35, 0.1);
  color: #F47923;
  transform: translateY(-2px);
}
.review-card__text {
  font-size: 13px;
  line-height: 1.55;
  color: #cfcfcf;
  margin: 0;
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
}
.review-card__screenshot {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
}
.review-card__screenshot img,
.review-card__screenshot video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .review-card__screenshot {
    flex-grow: 0;
  }
  .review-card__screenshot img,
  .review-card__screenshot video {
    height: auto;
    object-fit: contain;
  }
}
.review-card {
  animation: fadeInUp 0.6s ease-out both;
}
.review-card:nth-child(2) {
  animation-delay: 0.2s;
}
.review-card:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.about-hero {
  background: #191919;
  padding: 90px 0 90px;
  position: relative;
}
@media (max-width: 768px) {
  .about-hero {
    padding: 100px 0 40px;
  }
}
@media (max-width: 480px) {
  .about-hero {
    padding: 30px 0 30px;
  }
}
.about-hero .container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
@media (min-width: 1024px) {
  .about-hero .container {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media (max-width: 768px) {
  .about-hero .container {
    text-align: center;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.about-hero .hero-content {
  flex: 1;
}
@media (min-width: 1024px) {
  .about-hero .hero-content {
    max-width: min(calc(100vw - 512px), 1290px);
  }
}
.about-hero .hero-title {
  font-size: 62px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
  line-height: 1.2;
}
.about-hero .hero-title::after {
  content: " Us";
  color: #F47923;
}
@media (max-width: 768px) {
  .about-hero .hero-title {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .about-hero .hero-title {
    font-size: 27px;
  }
}
.about-hero .hero-subtitle {
  font-size: 31px;
  font-weight: 400;
  color: #cfcfcf;
  margin: 0;
}
@media (max-width: 768px) {
  .about-hero .hero-subtitle {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .about-hero .hero-subtitle {
    font-size: 13px;
  }
}
.about-hero .hero-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  padding: 20px;
  min-width: 120px;
  min-height: 120px;
  justify-content: center;
}
@media (max-width: 768px) {
  .about-hero .hero-badge {
    align-self: flex-start;
    min-width: 100px;
    min-height: 100px;
    padding: 15px;
  }
}
@media (max-width: 480px) {
  .about-hero .hero-badge {
    display: none;
  }
}
.about-hero .hero-badge .badge-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.about-hero .hero-badge .badge-text {
  font-size: 10px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.about-badge {
  position: absolute;
  right: 15.5rem;
  bottom: 4rem;
  display: none;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .about-badge {
    display: flex;
  }
}
.about-badge .badge-circle {
  position: relative;
  width: 9rem;
  height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  animation: spin 12s linear infinite;
}
.about-badge .badge-circle svg {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0.5rem;
}
.about-badge .badge-arrow {
  position: absolute;
  width: 90px;
  height: auto;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.about-timeline {
  background: #000;
  padding: 80px 0 100px;
  position: relative;
}
@media (max-width: 1024px) {
  .about-timeline {
    padding: 60px 0 80px;
  }
}
@media (max-width: 480px) {
  .about-timeline {
    padding: 40px 0 60px;
  }
}
.about-timeline .container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (min-width: 1024px) {
  .about-timeline .container {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media (max-width: 768px) {
  .about-timeline .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.about-timeline .timeline-wrapper {
  position: relative;
}
.about-timeline .timeline-wrapper::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 60px;
  width: 2px;
  background: rgba(244, 121, 35, 0.3);
  transform: translateX(-50%);
  z-index: 0;
}
@media (max-width: 1024px) {
  .about-timeline .timeline-wrapper::before {
    left: auto;
    right: 30px;
    transform: none;
  }
}
@media (max-width: 480px) {
  .about-timeline .timeline-wrapper::before {
    left: auto;
    right: 20px;
  }
}
.about-timeline .timeline-item {
  position: relative;
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .about-timeline .timeline-item {
    margin-bottom: 60px;
  }
}
@media (max-width: 480px) {
  .about-timeline .timeline-item {
    margin-bottom: 50px;
  }
}
.about-timeline .timeline-item:last-child {
  margin-bottom: 0;
}
.about-timeline .timeline-item .timeline-content {
  display: flex;
  gap: 60px;
  align-items: center;
  position: relative;
}
@media (max-width: 1024px) {
  .about-timeline .timeline-item .timeline-content {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 60px;
  }
}
@media (max-width: 480px) {
  .about-timeline .timeline-item .timeline-content {
    padding-left: 0;
    padding-right: 50px;
    gap: 16px;
    align-items: stretch;
  }
}
.about-timeline .timeline-item .timeline-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: #F47923;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 0 4px #1A1A1A, 0 0 0 6px rgba(244, 121, 35, 0.3);
}
@media (max-width: 1024px) {
  .about-timeline .timeline-item .timeline-dot {
    left: auto;
    right: 23px;
    top: 20px;
    transform: none;
  }
}
@media (max-width: 480px) {
  .about-timeline .timeline-item .timeline-dot {
    left: auto;
    right: 15px;
    width: 12px;
    height: 12px;
    box-shadow: 0 0 0 3px #1A1A1A, 0 0 0 5px rgba(244, 121, 35, 0.3);
  }
}
.about-timeline .timeline-item.left .timeline-content {
  justify-content: flex-end;
}
.about-timeline .timeline-item.left .timeline-content .timeline-text {
  order: 1;
  text-align: left;
  padding-right: 80px;
}
.about-timeline .timeline-item.left .timeline-content .timeline-image {
  order: 2;
  margin-left: auto;
}
@media (max-width: 1024px) {
  .about-timeline .timeline-item.left .timeline-content {
    justify-content: flex-start;
  }
  .about-timeline .timeline-item.left .timeline-content .timeline-text {
    order: 1;
    text-align: left;
    padding: 0;
    flex: 1;
    max-width: 100%;
  }
  .about-timeline .timeline-item.left .timeline-content .timeline-image {
    order: 2;
    margin: 0;
    flex: 1;
    max-width: 100%;
  }
}
.about-timeline .timeline-item.right .timeline-content {
  justify-content: flex-start;
}
.about-timeline .timeline-item.right .timeline-content .timeline-text {
  order: 2;
  text-align: left;
  padding-left: 80px;
}
.about-timeline .timeline-item.right .timeline-content .timeline-image {
  order: 1;
  margin-right: auto;
}
@media (max-width: 1024px) {
  .about-timeline .timeline-item.right .timeline-content {
    justify-content: flex-start;
  }
  .about-timeline .timeline-item.right .timeline-content .timeline-text {
    order: 1;
    text-align: left;
    padding: 0;
    flex: 1;
    max-width: 100%;
  }
  .about-timeline .timeline-item.right .timeline-content .timeline-image {
    order: 2;
    margin: 0;
    flex: 1;
    max-width: 100%;
  }
}
.about-timeline .timeline-item .timeline-text {
  flex: 0 0 calc(50% - 30px);
  max-width: calc(50% - 30px);
}
.about-timeline .timeline-item .timeline-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .about-timeline .timeline-item .timeline-title {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .about-timeline .timeline-item .timeline-title {
    font-size: 20px;
  }
}
.about-timeline .timeline-item .timeline-title .title-normal {
  color: #F47923;
}
.about-timeline .timeline-item .timeline-title .title-highlight {
  color: #ffffff;
}
.about-timeline .timeline-item .timeline-year {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px 0;
}
@media (max-width: 1024px) {
  .about-timeline .timeline-item .timeline-year {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .about-timeline .timeline-item .timeline-year {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
.about-timeline .timeline-item .timeline-description {
  font-size: 14px;
  font-weight: 400;
  color: #cfcfcf;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 1024px) {
  .about-timeline .timeline-item .timeline-description {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .about-timeline .timeline-item .timeline-description {
    font-size: 12px;
    line-height: 1.6;
  }
}
.about-timeline .timeline-item .timeline-image {
  flex: 0 0 calc(50% - 30px);
  max-width: calc(50% - 30px);
  background: #15151a;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 480px) {
  .about-timeline .timeline-item .timeline-image {
    flex: 1;
    max-width: 100%;
  }
}
.about-timeline .timeline-item .timeline-image img {
  width: 100%;
  height: auto;
  display: block;
}
.about-timeline .timeline-footer {
  text-align: center;
  margin-top: 80px;
}
@media (max-width: 1024px) {
  .about-timeline .timeline-footer {
    margin-top: 60px;
  }
}
@media (max-width: 480px) {
  .about-timeline .timeline-footer {
    margin-top: 50px;
  }
}
.about-timeline .see-more-link {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #F47923;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: all 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  line-height: inherit;
}
@media (max-width: 480px) {
  .about-timeline .see-more-link {
    font-size: 14px;
  }
}
.about-timeline .see-more-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #F47923;
  transform: scaleX(1);
  transition: transform 0.3s ease;
}
.about-timeline .see-more-link:hover {
  color: #feb176;
}
.about-timeline .see-more-link:hover::after {
  transform: scaleX(0.8);
}

.payment-page {
  min-height: 60vh;
  padding: 2rem 1rem;
}

.payment-container {
  width: 100%;
  max-width: 1000px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #3f3f3f;
  border-radius: 12px;
  padding: 1.5rem;
}
.payment-container__title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
}

.payment-list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.payment-list__item:last-child {
  border-bottom: none;
}
.payment-list__label {
  flex-grow: 1;
  cursor: pointer;
  font-size: 1rem;
  color: #e0e0e0;
}
.payment-list__radio {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #f47923;
}

.payment-qr {
  width: 100%;
  max-width: 1000px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #3f3f3f;
  border-radius: 12px;
  padding: 1.5rem;
}
.payment-qr__inner {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
.payment-qr__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.payment-qr__upi-icons {
  text-align: center;
  font-size: 0.85rem;
  color: #aaa;
}
.payment-qr__icon-row {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.3rem 0;
}
.payment-qr__total {
  text-align: center;
  font-size: 1.1rem;
  color: #f47923;
}
.payment-qr__code {
  width: 150px;
  flex-shrink: 0;
}
.payment-qr__code svg {
  width: 100%;
  height: auto;
}
.payment-qr__upload {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.payment-qr__dropzone {
  border: 2px dashed #555;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.2s;
  cursor: pointer;
}
.payment-qr__dropzone.dragover {
  border-color: #f47923;
}
.payment-qr__preview {
  text-align: center;
}
.payment-qr__actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.payment-qr__note {
  font-size: 0.85rem;
  color: #888;
  text-align: center;
  line-height: 1.5;
}
.payment-qr__note a {
  color: #f47923;
}

.payment-processing {
  width: 100%;
  max-width: 1000px;
  text-align: center;
  padding: 2rem;
}
.payment-processing__spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  margin: 0 auto 1rem;
}
.payment-processing__spinner .loader {
  --color-1: #fd6e0c;
  --size: 1px;
  width: calc(8 * var(--size));
  height: calc(40 * var(--size));
  border-radius: calc(4 * var(--size));
  display: block;
  position: relative;
  background: currentColor;
  color: var(--color-1);
  box-sizing: border-box;
  animation: animloader 0.3s 0.3s linear infinite alternate;
}
.payment-processing__spinner .loader::after, .payment-processing__spinner .loader::before {
  content: "";
  width: calc(8 * var(--size));
  height: calc(40 * var(--size));
  border-radius: calc(4 * var(--size));
  background: currentColor;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(20 * var(--size));
  box-sizing: border-box;
  animation: animloader 0.3s 0.45s linear infinite alternate;
}
.payment-processing__spinner .loader::before {
  left: calc(-20 * var(--size));
  animation-delay: 0s;
}

@keyframes animloader {
  0% {
    height: calc(48 * var(--size));
  }
  100% {
    height: calc(4 * var(--size));
  }
}
.payment-error {
  width: 100%;
  max-width: 1000px;
  background: rgba(217, 83, 79, 0.12);
  border: 1px solid rgba(217, 83, 79, 0.4);
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
  color: #f2bfbd;
}

.payment-status-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: max(62vh, 480px);
  padding: 48px 16px;
}

.payment-result {
  width: 100%;
  max-width: 600px;
  background-color: rgba(23, 23, 27, 0.62);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  background-image: radial-gradient(ellipse 70% 55% at 50% -10%, rgba(249, 115, 22, 0.14), transparent 65%), linear-gradient(90deg, transparent 0%, rgba(249, 115, 22, 0.1) 15%, rgba(249, 115, 22, 0.5) 30%, #f97316 50%, rgba(249, 115, 22, 0.5) 70%, rgba(249, 115, 22, 0.1) 85%, transparent 100%);
  background-size: 100% 100%, 42% 2px;
  background-position: 50% 0, 50% 0;
  background-repeat: no-repeat, no-repeat;
  border: 1px solid #26262b;
  border-radius: 22px;
  padding: 48px 44px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.payment-result .payment-processing__spinner {
  margin-bottom: 20px;
}
.payment-result__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
}
.payment-result__icon--success {
  background: rgba(52, 199, 89, 0.14);
  color: #34c759;
}
.payment-result__icon--failed {
  background: rgba(217, 83, 79, 0.14);
  color: #e4605c;
}
.payment-result__icon--pending {
  background: rgba(244, 121, 35, 0.12);
  color: #f47923;
}
.payment-result__title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.3;
}
.payment-result__text {
  font-size: 15px;
  color: #9a9aa2;
  line-height: 1.6;
  margin: 0 0 22px;
}
.payment-result__ref {
  display: inline-block;
  font-size: 13px;
  color: #b3b3b3;
  background: #1f1f24;
  border: 1px solid #26262b;
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 26px;
}
.payment-result__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 36px;
  background: linear-gradient(180deg, #fb8c3e 0%, #f97316 100%);
  color: #fff;
  border: none;
  border-radius: 11px;
  font-size: 15.5px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.35);
  transition: 0.2s ease;
}
.payment-result__cta:hover {
  transform: translateY(-1px);
  color: #fff;
}

@media (max-width: 600px) {
  .payment-result {
    padding: 32px 20px;
    border-radius: 16px;
  }
}
/* All-Access subscription checkout (/payment/subscribe) + courses upsell banner.
   Authored in plain CSS (literal token values) so the compiled styles.css
   block can be mirrored verbatim. Palette: accent #F47923 / #fb8c3e–#f97316
   gradient, panels #17171b, borders #26262b, text #fff / #b3b3b3 / #9a9aa2. */
.subscribe-page {
  /* Utility classes (w-100/m-auto) aren't bundled here — size explicitly,
     or the flex-column section shrink-wraps and everything stacks. */
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  gap: 2rem;
}

/* ---- Hero ------------------------------------------------------------ */
.subscribe-page__hero {
  width: 100%;
  text-align: center;
  padding-top: 0.5rem;
}

.subscribe-page__hero-badge {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #fb8c3e 0%, #f97316 100%);
  box-shadow: 0 0 0 10px rgba(249, 115, 22, 0.1), 0 0 34px 8px rgba(249, 115, 22, 0.35);
}

.subscribe-page__hero-badge i {
  font-size: 34px;
  color: #141417;
}

.subscribe-page__title {
  color: #ffffff;
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 6px;
}

.subscribe-page__title span {
  color: #F47923;
}

.subscribe-page__subtitle {
  color: #9a9aa2;
  font-size: 15px;
  margin-bottom: 18px;
}

.subscribe-page__perks {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.subscribe-page__perks li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #d6d6db;
  font-size: 13px;
  padding: 8px 16px;
  border: 1px solid #26262b;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  white-space: nowrap;
  flex: 0 0 auto;
  cursor: default;
  transition: 0.2s ease;
}

.subscribe-page__perks li:hover {
  border-color: rgba(249, 115, 22, 0.6);
  background: rgba(249, 115, 22, 0.08);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.18);
}

.subscribe-page__perks li i {
  color: #F47923;
  font-size: 15px;
}

@media (max-width: 768px) {
  .subscribe-page__perks {
    flex-wrap: wrap;
  }
}
/* ---- Shared card (gate / manage states) ------------------------------ */
.subscribe-page__card {
  width: 100%;
  max-width: 640px;
  text-align: center;
  background-color: rgba(23, 23, 27, 0.62);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  background-image: linear-gradient(90deg, transparent 0%, rgba(249, 115, 22, 0.1) 15%, rgba(249, 115, 22, 0.5) 30%, #f97316 50%, rgba(249, 115, 22, 0.5) 70%, rgba(249, 115, 22, 0.1) 85%, transparent 100%);
  background-size: 42% 2px;
  background-position: 50% 0;
  background-repeat: no-repeat;
  border: 1px solid #26262b;
  border-radius: 22px;
  padding: 40px 44px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.subscribe-page__card-title {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 10px;
}

.subscribe-page__card-text {
  color: #9a9aa2;
  font-size: 14.5px;
  line-height: 23px;
  margin: 0 0 22px;
}

.subscribe-page__card-hint {
  color: #6f6f76;
  font-size: 12.5px;
  margin: 16px 0 0;
}

.subscribe-page__card-hint i {
  color: #F47923;
  margin-right: 4px;
}

.subscribe-page__card-hint a {
  color: #F47923;
  text-decoration: none;
}

/* ---- Onboarding steps rail ------------------------------------------- */
.subscribe-page__steps {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 0;
  margin: 0 0 26px;
}

.subscribe-page__steps li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  max-width: 170px;
}

.subscribe-page__steps li + li::before {
  content: "";
  position: absolute;
  top: 20px;
  right: calc(50% + 26px);
  width: calc(100% - 52px);
  height: 2px;
  background: #26262b;
}

.subscribe-page__steps li.done + li::before {
  background: linear-gradient(90deg, #f97316, rgba(249, 115, 22, 0.35));
}

.subscribe-page__step-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #26262b;
  background: #1d1d22;
  color: #6f6f76;
  font-size: 18px;
  z-index: 1;
}

.subscribe-page__steps li.active .subscribe-page__step-dot {
  border-color: #F47923;
  color: #F47923;
  box-shadow: 0 0 0 5px rgba(249, 115, 22, 0.12), 0 0 18px rgba(249, 115, 22, 0.35);
}

.subscribe-page__steps li.done .subscribe-page__step-dot {
  background: linear-gradient(180deg, #fb8c3e 0%, #f97316 100%);
  border-color: #f97316;
  color: #141417;
}

.subscribe-page__step-label {
  font-size: 12px;
  color: #6f6f76;
}

.subscribe-page__steps li.active .subscribe-page__step-label {
  color: #ffffff;
  font-weight: 600;
}

.subscribe-page__steps li.done .subscribe-page__step-label {
  color: #9a9aa2;
}

/* ---- CTA buttons ------------------------------------------------------ */
.subscribe-page__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 36px;
  background: linear-gradient(180deg, #fb8c3e 0%, #f97316 100%);
  color: #ffffff;
  border: none;
  border-radius: 11px;
  font-size: 15.5px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.35);
  transition: 0.2s ease;
}

.subscribe-page__cta:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 9px 24px rgba(249, 115, 22, 0.45);
  color: #ffffff;
}

.subscribe-page__cta:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

.subscribe-page__cta--block {
  display: flex;
  width: 100%;
}

.subscribe-page__cta--ghost {
  background: none;
  border: 1px solid #F47923;
  color: #F47923;
  box-shadow: none;
}

.subscribe-page__cta--ghost:hover {
  background: rgba(249, 115, 22, 0.1);
  color: #F47923;
}

/* ---- Checkout: plans + sticky order rail ------------------------------ */
.subscribe-page__checkout {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  align-items: start;
}

.subscribe-page__section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.subscribe-page__section-title span {
  color: #F47923;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  border: 1px solid rgba(249, 115, 22, 0.45);
  border-radius: 7px;
  padding: 2px 7px;
  background: rgba(249, 115, 22, 0.08);
}

.subscribe-page__plans {
  display: grid;
  gap: 16px;
}

/* Plan cards (extends .enrollment-popup__payment-card) */
.subscribe-page__plan-card {
  align-items: flex-start;
  background-color: rgba(23, 23, 27, 0.62);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid #26262b;
  border-radius: 16px;
  padding: 18px 20px;
  transition: 0.2s ease;
}

.subscribe-page__plan-card:hover {
  border-color: rgba(249, 115, 22, 0.5);
}

.subscribe-page__plan-card .enrollment-popup__payment-radio .radio-dot::after {
  content: none;
}

.subscribe-page__plan-card.active {
  border-color: #F47923;
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.06) 0%, rgba(249, 115, 22, 0.015) 100%), #17171b;
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.35), 0 12px 30px rgba(0, 0, 0, 0.35);
}

.subscribe-page__plan-card.active .radio-dot::after {
  content: "";
}

.subscribe-page__plan-card .enrollment-popup__payment-info {
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.subscribe-page__plan-card .enrollment-popup__payment-info .payment-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16.5px;
  font-weight: 600;
}

.subscribe-page__plan-card .enrollment-popup__payment-info .payment-amount small {
  color: #b3b3b3;
  font-size: 12px;
  font-weight: 400;
}

.subscribe-page__plan-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #F47923;
  border: 1px solid rgba(249, 115, 22, 0.45);
  background: rgba(249, 115, 22, 0.08);
  border-radius: 999px;
  padding: 3px 9px;
}

.subscribe-page__plan-meta {
  color: #b3b3b3;
  font-size: 13px;
}

.subscribe-page__plan-desc {
  color: #8a8a91;
  font-size: 13px;
}

/* Order summary rail */
.subscribe-page__checkout-aside {
  position: sticky;
  top: 24px;
}

.subscribe-page__order {
  background-color: rgba(23, 23, 27, 0.62);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  background-image: linear-gradient(90deg, transparent 0%, rgba(249, 115, 22, 0.1) 15%, rgba(249, 115, 22, 0.5) 30%, #f97316 50%, rgba(249, 115, 22, 0.5) 70%, rgba(249, 115, 22, 0.1) 85%, transparent 100%);
  background-size: 55% 2px;
  background-position: 50% 0;
  background-repeat: no-repeat;
  border: 1px solid #26262b;
  border-radius: 20px;
  padding: 24px;
  display: grid;
  gap: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.subscribe-page__order .subscribe-page__section-title {
  margin-bottom: 0;
}

.subscribe-page__summary {
  display: grid;
  gap: 0;
  transition: 0.2s ease;
}

.subscribe-page__summary--loading {
  opacity: 0.45;
}

.subscribe-page__summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px dashed #26262b;
}

.subscribe-page__summary-row:last-child {
  border-bottom: none;
}

.subscribe-page__summary-row .label {
  color: #9a9aa2;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.subscribe-page__summary-row .value {
  color: #ffffff;
  font-size: 14.5px;
  text-align: right;
}

.subscribe-page__summary-row .value small {
  color: #8a8a91;
  font-size: 12px;
  font-weight: 400;
}

.subscribe-page__summary-row--total .value {
  color: #F47923;
  font-size: 17px;
  font-weight: 700;
}

.subscribe-page__coupon {
  display: grid;
  gap: 10px;
}

.subscribe-page__coupon-toggle {
  background: none;
  border: none;
  padding: 0;
  color: #F47923;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.subscribe-page__coupon-toggle:hover {
  text-decoration: underline;
}

.subscribe-page__coupon-inputs {
  display: flex;
  gap: 8px;
}

.subscribe-page__coupon-input {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #26262b;
  border-radius: 10px;
  color: #ffffff;
  font-size: 13.5px;
  padding: 10px 13px;
  text-transform: uppercase;
}

.subscribe-page__coupon-input:focus {
  outline: none;
  border-color: #F47923;
}

.subscribe-page__coupon-apply {
  padding: 10px 18px;
  font-size: 13px;
}

.subscribe-page__coupon-msg--ok {
  color: #4ade80;
}

.subscribe-page__autopay {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid #26262b;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.02);
  padding: 13px 15px;
}

.subscribe-page__autopay i {
  color: #F47923;
  font-size: 20px;
  margin-top: 1px;
}

.subscribe-page__autopay-name {
  display: block;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 600;
}

.subscribe-page__autopay-desc {
  display: block;
  color: #9a9aa2;
  font-size: 12.5px;
  line-height: 19px;
  margin-top: 2px;
}

.subscribe-page__autopay-desc--warn {
  color: #eab308;
}

.subscribe-page__secured {
  text-align: center;
  color: #6f6f76;
  font-size: 12px;
  margin: 0;
}

.subscribe-page__secured i {
  color: #22c55e;
  margin-right: 4px;
}

.subscribe-page .payment-error button {
  background: none;
  color: #ffffff;
  border: 1px solid #b3b3b3;
  border-radius: 999px;
  padding: 8px 24px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s ease;
}

.subscribe-page .payment-error button:hover {
  border-color: #F47923;
  color: #F47923;
}

/* Manage / gate variants share __card; keep legacy hook alive */
.subscribe-page__manage {
  padding: 40px 44px;
}

.subscribe-page__gate {
  max-width: 880px;
  padding: 48px 56px;
  background-color: rgba(23, 23, 27, 0.62);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  background-image: radial-gradient(ellipse 70% 55% at 50% -10%, rgba(249, 115, 22, 0.14), transparent 65%), linear-gradient(90deg, transparent 0%, rgba(249, 115, 22, 0.1) 15%, rgba(249, 115, 22, 0.5) 30%, #f97316 50%, rgba(249, 115, 22, 0.5) 70%, rgba(249, 115, 22, 0.1) 85%, transparent 100%);
  background-size: 100% 100%, 42% 2px;
  background-position: 50% 0, 50% 0;
  background-repeat: no-repeat, no-repeat;
}

.subscribe-page__gate .subscribe-page__card-title {
  font-size: 1.6rem;
}

.subscribe-page__gate .subscribe-page__card-text {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.subscribe-page__gate-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 6px 0 26px;
}

.subscribe-page__gate-items > div {
  border: 1px solid #26262b;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  padding: 18px 14px;
  transition: 0.2s ease;
}

.subscribe-page__gate-items > div:hover {
  border-color: rgba(249, 115, 22, 0.55);
  background: rgba(249, 115, 22, 0.06);
  transform: translateY(-2px);
}

.subscribe-page__gate-items i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  border-radius: 50%;
  color: #F47923;
  font-size: 20px;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.35);
}

.subscribe-page__gate-items span {
  display: block;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 600;
}

.subscribe-page__gate-items small {
  display: block;
  color: #8a8a91;
  font-size: 12px;
  margin-top: 3px;
}

@media (max-width: 640px) {
  .subscribe-page__gate {
    padding: 32px 22px;
  }
  .subscribe-page__gate-items {
    grid-template-columns: 1fr;
  }
}

/* ---- Trial lead-in (promo card above the plan preview) --------------- */
.subscribe-page__trial-lead {
  padding: 34px 44px;
  border-color: rgba(249, 115, 22, 0.45);
}
.subscribe-page__trial-lead-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #F47923;
  border: 1px solid rgba(249, 115, 22, 0.4);
  background: rgba(249, 115, 22, 0.1);
}
.subscribe-page__trial-lead-badge i {
  font-size: 14px;
}
.subscribe-page__trial-lead .subscribe-page__card-text i {
  color: #F47923;
  margin-right: 4px;
}
@media (max-width: 640px) {
  .subscribe-page__trial-lead {
    padding: 28px 22px;
  }
}

@media (max-width: 992px) {
  .subscribe-page__checkout {
    grid-template-columns: 1fr;
  }
  .subscribe-page__checkout-aside {
    position: static;
  }
}
@media (max-width: 576px) {
  .subscribe-page__card {
    padding: 28px 20px;
  }
  .subscribe-page__title {
    font-size: 1.6rem;
  }
  .subscribe-page__steps li {
    max-width: 110px;
  }
}
/* ---- DigiLocker return notice ------------------------------------------ */
.subscribe-page__notice {
  width: 100%;
  max-width: 680px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  border-radius: 12px;
  padding: 13px 18px;
}

.subscribe-page__notice i {
  font-size: 19px;
}

.subscribe-page__notice--ok {
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.4);
  background: rgba(34, 197, 94, 0.08);
}

.subscribe-page__notice--ok i {
  color: #22c55e;
}

.subscribe-page__notice--warn {
  color: #fde68a;
  border: 1px solid rgba(234, 179, 8, 0.4);
  background: rgba(234, 179, 8, 0.08);
}

.subscribe-page__notice--warn i {
  color: #eab308;
}

/* ---- Courses-page upsell banner --------------------------------------- */
.subscribe-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: rgba(244, 121, 35, 0.08);
  border: 1px solid rgba(244, 121, 35, 0.45);
  border-radius: 8px;
  padding: 12px 20px;
  margin-bottom: 1.25rem;
}

.subscribe-banner__text {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 14px;
}

.subscribe-banner__text i {
  color: #F47923;
  font-size: 20px;
}

.subscribe-banner__cta {
  color: #F47923;
  border: 1px solid #F47923;
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: 0.2s ease;
}

.subscribe-banner__cta:hover {
  background: #F47923;
  color: #141417;
}

/* ---- Duration slider (Advanced plan term picker) ----------------------- */
.subscribe-page__duration {
  width: 100%;
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid #26262b;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.subscribe-page__duration-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.subscribe-page__duration-label {
  font-size: 13px;
  color: #9a9aa2;
}

.subscribe-page__duration-value {
  font-size: 14px;
  font-weight: 600;
  color: #F47923;
}

.subscribe-page__duration-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(to right, #F47923 0%, #F47923 var(--fill, 0%), #2c2c31 var(--fill, 0%), #2c2c31 100%);
  outline: none;
  cursor: pointer;
}

.subscribe-page__duration-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #F47923;
  border: 3px solid #141417;
  box-shadow: 0 0 0 2px #F47923, 0 4px 10px rgba(0, 0, 0, 0.45);
  transition: transform 0.15s ease;
}

.subscribe-page__duration-slider::-webkit-slider-thumb:hover {
  transform: scale(1.12);
}

.subscribe-page__duration-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #F47923;
  border: 3px solid #141417;
  box-shadow: 0 0 0 2px #F47923, 0 4px 10px rgba(0, 0, 0, 0.45);
}

.subscribe-page__duration-slider::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: #2c2c31;
}

.subscribe-page__duration-slider::-moz-range-progress {
  height: 6px;
  border-radius: 999px;
  background: #F47923;
}

.subscribe-page__duration-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 11px;
  color: #6f6f76;
}

.subscribe-page__duration-ticks span.active {
  color: #F47923;
  font-weight: 600;
}

.subscribe-page__duration-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.subscribe-page__price-original {
  font-size: 14px;
  color: #8a8a91;
  text-decoration: line-through;
}

.subscribe-page__price-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.4);
  background: rgba(34, 197, 94, 0.08);
  border-radius: 999px;
  padding: 2px 8px;
}

.subscribe-page__price-payable {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.subscribe-page__duration-note {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: #9a9aa2;
}

.sna-modal {
  position: fixed;
  inset: 0;
  z-index: 100001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.sna-modal__card {
  position: relative;
  width: 100%;
  max-width: 560px;
  background-color: rgba(23, 23, 27, 0.72);
  background-image: radial-gradient(ellipse 70% 55% at 50% -10%, rgba(249, 115, 22, 0.14), transparent 65%), linear-gradient(90deg, transparent 0%, rgba(249, 115, 22, 0.1) 15%, rgba(249, 115, 22, 0.5) 30%, #f97316 50%, rgba(249, 115, 22, 0.5) 70%, rgba(249, 115, 22, 0.1) 85%, transparent 100%);
  background-size: 100% 100%, 42% 2px;
  background-position: 50% 0, 50% 0;
  background-repeat: no-repeat, no-repeat;
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 44px;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}
.sna-modal__close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: #f97316;
  font-size: 24px;
  line-height: 1;
  padding: 4px;
}
.sna-modal__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  background: linear-gradient(135deg, #fb8c3e 0%, #f97316 55%, #ea6a0a 100%);
  box-shadow: 0 6px 22px rgba(249, 115, 22, 0.45);
}
.sna-modal__title {
  font-size: 24px;
  color: #fff;
  margin: 0 0 12px;
  font-weight: 600;
  line-height: 1.3;
}
.sna-modal__text {
  font-size: 15px;
  color: #9a9aa2;
  margin: 0 0 28px;
  line-height: 1.6;
}
.sna-modal__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.sna-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s ease;
}
.sna-modal__btn--primary {
  background: linear-gradient(180deg, #fb8c3e 0%, #f97316 100%);
  color: #fff;
  border: none;
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.35);
}
.sna-modal__btn--primary:hover {
  transform: translateY(-1px);
  color: #fff;
}
.sna-modal__btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.sna-modal__btn--ghost:hover {
  border-color: #f97316;
  color: #f97316;
}
@media (max-width: 600px) {
  .sna-modal__card {
    padding: 30px 20px;
    border-radius: 16px;
  }
  .sna-modal__title {
    font-size: 20px;
  }
  .sna-modal__actions {
    flex-direction: column;
  }
  .sna-modal__btn {
    width: 100%;
  }
}

/* ---- Premium glass polish layer (subscription surfaces) ---- */
.subscribe-page__perks li {
  background: rgba(23, 23, 27, 0.55);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.subscribe-page__perks li:hover {
  transform: translateY(-2px);
  border-color: rgba(249, 115, 22, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 8px 22px rgba(249, 115, 22, 0.18);
}

.subscribe-page__card,
.subscribe-page__gate,
.payment-result,
.myaccount__subscription-card,
.sna-modal__card {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 20px 50px rgba(0, 0, 0, 0.4);
}

.subscribe-page__plan-card {
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.subscribe-page__plan-card:hover {
  transform: translateY(-2px);
  border-color: rgba(249, 115, 22, 0.45);
}

.subscribe-page__plan-card.active {
  border-color: rgba(249, 115, 22, 0.85);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 10px 32px rgba(249, 115, 22, 0.22);
}

.subscribe-page__duration-slider::-webkit-slider-thumb {
  background: linear-gradient(135deg, #fb8c3e 0%, #f97316 100%);
  box-shadow: 0 0 0 5px rgba(249, 115, 22, 0.18), 0 4px 14px rgba(249, 115, 22, 0.5);
}

.subscribe-page__duration-slider::-moz-range-thumb {
  background: linear-gradient(135deg, #fb8c3e 0%, #f97316 100%);
  box-shadow: 0 0 0 5px rgba(249, 115, 22, 0.18), 0 4px 14px rgba(249, 115, 22, 0.5);
}

@keyframes sna-modal-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.sna-modal__card {
  animation: sna-modal-in 0.28s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.sna-modal__icon {
  box-shadow: 0 0 0 8px rgba(249, 115, 22, 0.12), 0 6px 22px rgba(249, 115, 22, 0.45);
}

.payment-result__icon--success {
  box-shadow: 0 0 0 8px rgba(52, 199, 89, 0.08);
}

.payment-result__icon--failed {
  box-shadow: 0 0 0 8px rgba(217, 83, 79, 0.08);
}

.myaccount__subscription-upsell,
.course-popup__subscription,
.course-popup__mobile-subscription,
.hero__btn--subscription {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
  .subscribe-page__perks li {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
  }
}
/* ---- Site-wide premium polish: glass card edges, hover lift, modal shell ---- */
.myaccount__panel,
.myaccount__pay-card,
.myaccount__subscription-card,
.course-popup__container,
.subscribe-page__card,
.payment-result,
.sna-modal__card,
.enrollment-popup {
  border-color: rgba(255, 255, 255, 0.09);
}

.myaccount__pay-card,
.course-popup__item {
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.myaccount__pay-card:hover {
  transform: translateY(-2px);
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.course-popup__item:hover {
  transform: translateY(-2px);
}

.myaccount__panel,
.myaccount__pay-card {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 8px 24px rgba(0, 0, 0, 0.28);
}

.enrollment-popup__header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 14px;
}

/* Reduced motion: keep the glass, drop the animation. */
@media (prefers-reduced-motion: reduce) {
  .sna-modal__card,
  .enrollment-popup,
  .course-popup__subscription,
  .course-popup__mobile-subscription,
  .hero__btn--subscription,
  .myaccount__subscription-upsell,
  .myaccount__profile-badge--premium {
    animation: none !important;
  }
}
/* Fallback for browsers without backdrop-filter: use solid card surfaces. */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .myaccount__panel,
  .myaccount__pay-card,
  .myaccount__subscription-card,
  .subscribe-page__card,
  .subscribe-page__plan-card,
  .payment-result,
  .sna-modal__card,
  .enrollment-popup {
    background-color: #17171b !important;
  }
}
.myaccount {
  padding: 0 0 5rem;
  color: #e8e6e5;
  position: relative;
}
@media (max-width: 768px) {
  .myaccount {
    padding: 0 0 3rem;
  }
}
.myaccount .container--wide {
  width: 95%;
  max-width: 1480px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .myaccount .container--wide {
    width: 94%;
  }
}
.myaccount__content {
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .myaccount__content {
    margin-top: 1rem;
  }
}
.myaccount__panels {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .myaccount__panels {
    gap: 1rem;
  }
}
.myaccount__placeholder {
  background: #191919;
  border-radius: 1rem;
  padding: 3rem 1.5rem;
  text-align: center;
  color: #b3b3b3;
}
.myaccount__placeholder i {
  font-size: 2rem;
  color: #F47923;
  display: inline-block;
  margin-bottom: 0.75rem;
}
.myaccount__placeholder-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
}
.myaccount__placeholder-text {
  color: #b3b3b3;
  font-size: 0.9rem;
  margin: 0;
}

.myaccount__header {
  position: relative;
  width: 100%;
  text-align: center;
  padding: 2.75rem 1rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .myaccount__header {
    padding: 1.75rem 1rem;
    margin-bottom: 1rem;
  }
}
.myaccount__header-grid {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  width: auto;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.myaccount__header-grid--left {
  left: 0;
}
.myaccount__header-grid--right {
  right: 0;
  transform: scaleX(-1);
}
.myaccount__header-title {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  background-image: linear-gradient(90deg, #1a1a1a -10%, #6f6f6f 10%, #ffffff 50%, #6f6f6f 89%, #1a1a1a 120%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .myaccount__header-title {
    font-size: 2rem;
  }
}

.myaccount__profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0 1rem;
}
@media (max-width: 768px) {
  .myaccount__profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding-bottom: 1.25rem;
  }
}
.myaccount__profile-avatar {
  appearance: none;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 0.65rem;
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.myaccount__profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.myaccount__profile-avatar:hover {
  transform: translateY(-1px);
}
.myaccount__profile-avatar:hover .myaccount__profile-avatar-overlay {
  opacity: 1;
}
.myaccount__profile-avatar:focus-visible {
  outline: 2px solid #F47923;
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .myaccount__profile-avatar {
    width: 88px;
    height: 88px;
    border-radius: 0.85rem;
  }
}
.myaccount__profile-avatar-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.myaccount__profile-avatar-overlay i {
  font-size: 1.4rem;
  line-height: 1;
}
.myaccount__profile-info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}
.myaccount__profile-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.1;
}
@media (max-width: 768px) {
  .myaccount__profile-name {
    font-size: 1.25rem;
  }
}
.myaccount__profile-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  color: #b3b3b3;
  font-size: 0.85rem;
}
@media (max-width: 768px) {
  .myaccount__profile-meta {
    justify-content: center;
  }
}
.myaccount__profile-email {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #b3b3b3;
}
.myaccount__profile-email i {
  color: #b3b3b3;
  font-size: 0.95rem;
}
.myaccount__profile-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.6rem;
  border-radius: 30px;
  background: rgba(244, 121, 35, 0.12);
  color: #F47923;
  font-weight: 500;
  font-size: 0.75rem;
  white-space: nowrap;
  position: relative;
}
.myaccount__profile-badge::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F47923;
  margin-right: 0.4rem;
}

.myaccount__tabs {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 0.25rem;
}
.myaccount__tabs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 130px;
  justify-content: space-around;
  overflow-x: auto;
  scrollbar-width: none;
}
.myaccount__tabs-list::-webkit-scrollbar {
  display: none;
}
@media (max-width: 768px) {
  .myaccount__tabs-list {
    gap: 1.25rem;
  }
}
.myaccount__tabs-item {
  flex: 0 0 auto;
}
.myaccount__tabs-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 0.1rem;
  color: #b3b3b3;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.myaccount__tabs-link i {
  font-size: 1.15rem;
  line-height: 1;
}
.myaccount__tabs-link:hover {
  color: #ffffff;
}
@media (max-width: 768px) {
  .myaccount__tabs-link {
    font-size: 0.95rem;
    padding: 0.7rem 0.1rem;
  }
}
.myaccount__tabs-item.is-active .myaccount__tabs-link {
  color: #F47923;
  border-bottom-color: #F47923;
}

.myaccount__panel {
  background: #191919;
  border-radius: 1rem;
}
.myaccount__panel-head {
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
@media (max-width: 768px) {
  .myaccount__panel-head {
    padding: 0.85rem 1rem;
  }
}
.myaccount__panel-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.01em;
}
.myaccount__panel-body {
  padding: 1.5rem;
}
@media (max-width: 768px) {
  .myaccount__panel-body {
    padding: 1rem;
  }
}

.myaccount__form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 2rem;
}
@media (max-width: 768px) {
  .myaccount__form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.myaccount__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}
.myaccount__field--full {
  grid-column: 1/-1;
}
.myaccount__field-label {
  font-size: 0.78rem;
  color: #b3b3b3;
  font-weight: 500;
  margin: 0;
}
.myaccount__field-input {
  appearance: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.55rem;
  color: #ffffff;
  font-size: 0.95rem;
  font-family: inherit;
  padding: 0 0.85rem;
  height: 44px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s ease;
}
.myaccount__field-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.myaccount__field-input:hover:not([readonly]):not(:disabled) {
  border-color: rgba(255, 255, 255, 0.18);
}
.myaccount__field-input:focus:not([readonly]) {
  border-color: #F47923;
}
.myaccount__field-input[readonly], .myaccount__field-input:disabled {
  color: #e8e6e5;
  cursor: default;
  pointer-events: none;
}
@media (max-width: 480px) {
  .myaccount__field-input {
    height: 40px;
    font-size: 0.9rem;
  }
}
.myaccount__field-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: nowrap;
}
.myaccount__field-row--dob .myaccount__custom-select {
  flex: 1 1 0;
  min-width: 0;
}
@media (max-width: 480px) {
  .myaccount__field-row {
    gap: 0.45rem;
  }
}
.myaccount__field-required {
  color: #ff4d4f;
  margin-left: 2px;
}
.myaccount__field--invalid .myaccount__field-input,
.myaccount__field--invalid .myaccount__pill-row,
.myaccount__field--invalid .myaccount__pill-input,
.myaccount__field--invalid .myaccount__select-trigger,
.myaccount__field--invalid .myaccount__file {
  border-color: #ff4d4f;
}
.myaccount__field-error {
  color: #ff4d4f;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
}

.myaccount__custom-select {
  position: relative;
  width: 100%;
  cursor: pointer;
  user-select: none;
}
.myaccount__custom-select.open {
  z-index: 200;
}
.myaccount__custom-select[data-disabled=true] {
  cursor: default;
}
.myaccount__custom-select[data-disabled=true] .myaccount__select-trigger {
  cursor: default;
}
.myaccount__custom-select[data-disabled=true] .myaccount__select-trigger:hover {
  border-color: rgba(255, 255, 255, 0.08);
}
.myaccount__custom-select[data-disabled=true] i {
  opacity: 0.45;
}
.myaccount__custom-select.open .myaccount__select-trigger {
  border-color: #F47923;
}
.myaccount__custom-select.open .myaccount__select-trigger i {
  transform: rotate(180deg);
  color: #F47923;
}
.myaccount__custom-select.open .myaccount__options-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.myaccount__select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0 0.85rem;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.05);
  width: 100%;
  transition: all 0.2s ease;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.myaccount__select-trigger:hover {
  border-color: rgba(244, 121, 35, 0.4);
  background: rgba(255, 255, 255, 0.08);
}
.myaccount__select-trigger span {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.myaccount__select-trigger i {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.2s ease, color 0.2s ease;
}
@media (max-width: 480px) {
  .myaccount__select-trigger {
    height: 40px;
  }
}
.myaccount__options-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: rgba(18, 18, 24, 0.94);
  border: 1px solid rgba(244, 121, 35, 0.3);
  border-radius: 0.55rem;
  z-index: 1000;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(244, 121, 35, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
  max-height: 240px;
  overflow-y: auto;
  padding: 0.25rem 0;
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}
.myaccount__options-list::-webkit-scrollbar {
  width: 5px;
}
.myaccount__options-list::-webkit-scrollbar-thumb {
  background: rgba(244, 121, 35, 0.3);
  border-radius: 10px;
}
.myaccount__custom-select.open .myaccount__options-list {
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.myaccount__option {
  padding: 0.55rem 0.85rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.15s ease;
}
.myaccount__option:hover {
  background-color: rgba(244, 121, 35, 0.15);
  color: #ffffff;
  padding-left: 1.05rem;
}
.myaccount__option.selected {
  color: #f47923;
  background-color: rgba(244, 121, 35, 0.22);
  font-weight: 600;
}
.myaccount__option.selected {
  color: #F47923;
  background-color: rgba(244, 121, 35, 0.06);
}

.myaccount__pill-row {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  width: 100%;
}
.myaccount__pill-row--bonded {
  gap: 0;
}
.myaccount__pill-row--bonded .myaccount__pill-prefix {
  border-right: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.myaccount__pill-row--bonded .myaccount__pill-input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.myaccount__pill-row--bonded:focus-within:has(.myaccount__pill-input:not([readonly])) .myaccount__pill-prefix,
.myaccount__pill-row--bonded:focus-within:has(.myaccount__pill-input:not([readonly])) .myaccount__pill-input {
  border-color: #F47923;
}
.myaccount__pill-prefix {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  padding: 0 0.85rem;
  height: 44px;
  background: #1f1f1f;
  color: #b3b3b3;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.55rem;
  font-size: 0.95rem;
  line-height: 1;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .myaccount__pill-prefix {
    min-width: 48px;
    height: 40px;
  }
}
.myaccount__pill-input {
  appearance: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.55rem;
  color: #ffffff;
  font-size: 0.95rem;
  font-family: inherit;
  padding: 0 0.85rem;
  height: 44px;
  outline: none;
  flex: 1 1 auto;
  min-width: 0;
  transition: border-color 0.2s ease;
}
.myaccount__pill-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.myaccount__pill-input:hover:not([readonly]):not(:disabled) {
  border-color: rgba(255, 255, 255, 0.18);
}
.myaccount__pill-input:focus:not([readonly]) {
  border-color: #F47923;
}
.myaccount__pill-input[readonly] {
  cursor: default;
  pointer-events: none;
}
@media (max-width: 480px) {
  .myaccount__pill-input {
    height: 40px;
    font-size: 0.9rem;
  }
}
.myaccount__custom-select--phone {
  flex: 0 0 auto;
  width: 92px;
}
.myaccount__custom-select--phone .myaccount__select-trigger {
  padding: 0 0.6rem;
}
.myaccount__custom-select--phone .myaccount__select-trigger span {
  font-size: 12px;
}
@media (max-width: 480px) {
  .myaccount__custom-select--phone .myaccount__select-trigger span {
    font-size: 10px;
  }
}
.myaccount__custom-select--phone .myaccount__select-trigger i {
  font-size: 1rem;
}
.myaccount__custom-select--phone .myaccount__options-list {
  min-width: 110px;
}
@media (max-width: 480px) {
  .myaccount__custom-select--phone {
    width: 84px;
  }
}

.myaccount__file {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 10px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.55rem;
  flex-wrap: wrap;
  transition: border-color 0.2s ease;
}
.myaccount__file:hover {
  border-color: rgba(255, 255, 255, 0.18);
}
@media (max-width: 480px) {
  .myaccount__file {
    min-height: 40px;
  }
}
.myaccount__file-icon {
  color: #b3b3b3;
  font-size: 1rem;
  line-height: 1;
  display: inline-flex;
}
.myaccount__file-name {
  color: #ffffff;
  font-size: 0.9rem;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.myaccount__file-edit {
  color: #b3b3b3;
  font-size: 0.95rem;
  line-height: 1;
  display: inline-flex;
}
.myaccount__file-replace {
  appearance: none;
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.35rem;
  padding: 0.3rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.myaccount__file-replace:hover:not(:disabled) {
  border-color: #F47923;
  color: #F47923;
}
.myaccount__file-replace:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.myaccount__edit-actions {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 500;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0;
}
@media (max-width: 768px) {
  .myaccount__edit-actions {
    right: 1rem;
    bottom: 1rem;
    gap: 0.6rem;
  }
}
.myaccount__edit-cancel {
  appearance: none;
  background: rgba(28, 28, 32, 0.92);
  backdrop-filter: blur(6px);
  color: #b3b3b3;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.55rem;
  height: 48px;
  padding: 0 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.myaccount__edit-cancel i {
  font-size: 1.15rem;
  line-height: 1;
}
.myaccount__edit-cancel:hover {
  background: rgba(48, 48, 54, 0.95);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
}
.myaccount__edit-cancel[hidden] {
  display: none;
}
.myaccount__edit-toggle {
  appearance: none;
  background: #F47923;
  color: #ffffff;
  border: 0;
  border-radius: 0.65rem;
  min-width: 48px;
  height: 48px;
  padding: 0 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(244, 121, 35, 0.35);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, padding 0.25s ease, min-width 0.25s ease;
}
.myaccount__edit-toggle i {
  font-size: 1.25rem;
  line-height: 1;
}
.myaccount__edit-toggle span {
  display: none;
  white-space: nowrap;
}
.myaccount__edit-toggle:hover {
  background: rgb(96.162464986%, 53.251846193%, 23.2492997199%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(244, 121, 35, 0.45);
}
.myaccount__edit-toggle.is-saving, .myaccount__edit-toggle[data-mode=on] {
  padding: 0 1.25rem;
  min-width: 0;
  border-radius: 0.55rem;
}
.myaccount__edit-toggle.is-saving span, .myaccount__edit-toggle[data-mode=on] span {
  display: inline;
}

.myaccount[data-edit-mode=off] .myaccount__field-input,
.myaccount[data-edit-mode=off] .myaccount__pill-input,
.myaccount[data-edit-mode=off] .myaccount__select-trigger {
  cursor: default;
}
.myaccount[data-edit-mode=off] .myaccount__field-input,
.myaccount[data-edit-mode=off] .myaccount__pill-input {
  caret-color: transparent;
}
.myaccount[data-edit-mode=on] .myaccount__field-input,
.myaccount[data-edit-mode=on] .myaccount__pill-input {
  caret-color: #F47923;
}

.myaccount__mc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .myaccount__mc-header {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
}
.myaccount__mc-intro {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
  flex: 1 1 auto;
}
.myaccount__mc-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
@media (max-width: 480px) {
  .myaccount__mc-title {
    font-size: 1.35rem;
  }
}
.myaccount__mc-title-accent {
  color: #F47923;
}
.myaccount__mc-subtitle {
  color: #b3b3b3;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 480px) {
  .myaccount__mc-subtitle {
    font-size: 0.85rem;
  }
}
.myaccount__mc-total {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 10px;
  background: #191919;
  border: 1px solid rgba(244, 121, 35, 0.18);
  border-radius: 0.6rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .myaccount__mc-total {
    align-self: flex-start;
  }
}
.myaccount__mc-total-icon {
  width: 36px;
  height: 36px;
  border-radius: 0.45rem;
  background: rgba(244, 121, 35, 0.14);
  color: #F47923;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.myaccount__mc-total-icon i {
  font-size: 1.1rem;
  line-height: 1;
}
.myaccount__mc-total-info {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  line-height: 1.1;
}
.myaccount__mc-total-label {
  color: #b3b3b3;
  font-size: 0.78rem;
}
.myaccount__mc-total-count {
  color: #F47923;
  font-size: 1rem;
  font-weight: 700;
}
.myaccount__mc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 380px);
  justify-content: start;
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .myaccount__mc-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}
@media (max-width: 768px) {
  .myaccount__mc-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.myaccount__mc-card {
  background: #191919;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease;
  min-height: 479px;
}
.myaccount__mc-card:hover {
  border-color: rgba(244, 121, 35, 0.25);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .myaccount__mc-card {
    min-height: 0;
  }
}
.myaccount__mc-card-image {
  aspect-ratio: 16/10;
  background: #2a2a2a;
  overflow: hidden;
  margin: 0.85rem 0.85rem 0;
  border-radius: 0.6rem;
  border: 1px solid rgba(244, 121, 35, 0.4);
}
.myaccount__mc-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.myaccount__mc-card-body {
  padding: 1rem 1.1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1 1 auto;
}
.myaccount__mc-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}
@media (max-width: 480px) {
  .myaccount__mc-card-title {
    font-size: 1.1rem;
  }
}
.myaccount__mc-card-instructor {
  color: #b3b3b3;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0.4rem;
  padding: 0.35rem 0.6rem;
  align-self: flex-start;
}
.myaccount__mc-card-instructor i {
  color: #F47923;
  font-size: 0.95rem;
}
.myaccount__mc-card-progress {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.15rem;
}
.myaccount__mc-card-progress-bar {
  flex: 1 1 auto;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  overflow: hidden;
}
.myaccount__mc-card-progress-bar span {
  display: block;
  height: 100%;
  background: #F47923;
  border-radius: 99px;
  transition: width 0.4s ease;
}
.myaccount__mc-card-progress-label {
  color: #b3b3b3;
  font-size: 0.78rem;
  white-space: nowrap;
}
.myaccount__mc-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  color: #b3b3b3;
  font-size: 0.82rem;
  flex-wrap: wrap;
}
.myaccount__mc-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.myaccount__mc-card-meta span i {
  color: #b3b3b3;
  font-size: 0.9rem;
}
.myaccount__mc-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  margin-top: 0.4rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.myaccount__mc-card-cta i {
  font-size: 1.05rem;
  line-height: 1;
}
.myaccount__mc-card-cta--primary {
  background: #F47923;
  color: #ffffff;
}
.myaccount__mc-card-cta--primary:hover {
  background: rgb(96.162464986%, 53.251846193%, 23.2492997199%);
  transform: translateY(-1px);
}
.myaccount__mc-card-cta--success {
  background: rgba(34, 197, 94, 0.08);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.45);
}
.myaccount__mc-card-cta--success:hover {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.7);
}
.myaccount__mc-card-cta--secondary {
  background: #1A1A1A;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.myaccount__mc-card-cta--secondary:hover {
  border-color: #F47923;
  color: #F47923;
}

.myaccount__pay-subtabs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .myaccount__pay-subtabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
}
.myaccount__pay-subtab {
  appearance: none;
  background: transparent;
  border: 1px solid rgba(244, 121, 35, 0.5);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: 99px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.myaccount__pay-subtab:hover {
  background: rgba(244, 121, 35, 0.08);
}
.myaccount__pay-subtab.is-active {
  background: #F47923;
  color: #ffffff;
  border-color: #F47923;
}
@media (max-width: 480px) {
  .myaccount__pay-subtab {
    text-align: center;
    padding: 7px 0;
    font-size: 0.78rem;
    white-space: normal;
    min-width: 0;
  }
}
.myaccount__pay-section {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.myaccount__pay-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.myaccount__pay-section-title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}
.myaccount__pay-section-title i {
  font-size: 1.2rem;
  line-height: 1;
}
.myaccount__pay-section-title--success {
  color: #22c55e;
}
.myaccount__pay-section-title--success i {
  color: #22c55e;
}
.myaccount__pay-section-title--warning {
  color: #F47923;
}
.myaccount__pay-section-title--warning i {
  color: #F47923;
}
.myaccount__pay-section-title--danger {
  color: #ef4444;
}
.myaccount__pay-section-title--danger i {
  color: #ef4444;
}
.myaccount__pay-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.95rem;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 600;
}
.myaccount__pay-pill--success {
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.4);
  background: rgba(34, 197, 94, 0.1);
}
.myaccount__pay-pill--warning {
  color: #F47923;
  border: 1px solid rgba(244, 121, 35, 0.45);
  background: rgba(244, 121, 35, 0.12);
}
.myaccount__pay-pill--danger {
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.1);
}
.myaccount__pay-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.myaccount__pay-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem;
  gap: 0.4rem;
}
@media (max-width: 768px) {
  .myaccount__pay-empty {
    padding: 3.5rem 1rem;
  }
}
.myaccount__pay-empty-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}
@media (max-width: 768px) {
  .myaccount__pay-empty-title {
    font-size: 1.05rem;
  }
}
.myaccount__pay-empty-text {
  font-size: 0.88rem;
  color: #b3b3b3;
  margin: 0;
}
@media (max-width: 768px) {
  .myaccount__pay-empty-text {
    font-size: 0.82rem;
  }
}
.myaccount__pay-card {
  background: #191919;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 1rem;
  width: 65%;
  padding: 1.1rem;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 3.25rem;
  align-items: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.myaccount__pay-card:hover {
  border-color: rgba(244, 121, 35, 0.18);
}
@media (max-width: 768px) {
  .myaccount__pay-card {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }
}
@media (max-width: 480px) {
  .myaccount__pay-card {
    width: 100%;
  }
}
.myaccount__pay-card-image {
  aspect-ratio: 16/10;
  background: #cccccc;
  border-radius: 0.6rem;
  overflow: hidden;
  width: 180px;
}
.myaccount__pay-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .myaccount__pay-card-image {
    width: 100%;
    aspect-ratio: 16/9;
  }
}
.myaccount__pay-card-main {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 0;
}
.myaccount__pay-card-details {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 1.25rem;
  row-gap: 0.4rem;
  margin: 0;
}
.myaccount__pay-card-row {
  display: contents;
}
.myaccount__pay-card-row dt {
  color: #b3b3b3;
  font-size: 0.8rem;
  font-weight: 500;
  margin: 0;
}
.myaccount__pay-card-row dd {
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
}
.myaccount__pay-card-due {
  color: #ff6b6b !important;
}
.myaccount__pay-card-amount {
  color: #ffffff;
  font-weight: 700;
  margin-right: 0.4rem;
}
.myaccount__pay-card-note {
  color: #b3b3b3;
  font-size: 0.78rem;
  font-weight: 400;
}
.myaccount__pay-card-status {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: center;
  justify-self: center;
}
.myaccount__pay-card-status i {
  font-size: 1.6rem;
  line-height: 1;
  color: #ffffff;
}
.myaccount__pay-card-status--success {
  background: #22c55e;
}
.myaccount__pay-card-status--warning {
  background: #F47923;
}
.myaccount__pay-card-status--danger {
  background: #ef4444;
}
@media (max-width: 768px) {
  .myaccount__pay-card-status {
    justify-self: flex-start;
  }
}
@media (max-width: 480px) {
  .myaccount__pay-card-status {
    display: none;
  }
}
.myaccount__pay-card-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .myaccount__pay-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
}
.myaccount__pay-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 0.95rem;
  border-radius: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
@media (max-width: 480px) {
  .myaccount__pay-action {
    padding: 0.5rem 0.5rem;
    font-size: 0.76rem;
    white-space: normal;
    min-width: 0;
    text-align: center;
  }
}
.myaccount__pay-action i {
  font-size: 1rem;
  line-height: 1;
}
.myaccount__pay-action--success-soft {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.4);
}
.myaccount__pay-action--accent-soft {
  color: #F47923;
  background: rgba(244, 121, 35, 0.12);
  border: 1px solid rgba(244, 121, 35, 0.45);
}
.myaccount__pay-action--accent-soft:hover {
  background: rgba(244, 121, 35, 0.18);
}
.myaccount__pay-action--accent-filled {
  color: #ffffff;
  background: #F47923;
  border: 1px solid #F47923;
}
.myaccount__pay-action--accent-filled:hover {
  background: rgb(96.162464986%, 53.251846193%, 23.2492997199%);
}
.myaccount__pay-action--danger-soft {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.4);
}
.myaccount__pay-action--muted {
  color: #b3b3b3;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: default;
  pointer-events: none;
}

.myaccount__subscription-card {
  position: relative;
  width: 65%;
  background-color: rgba(23, 23, 27, 0.62);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  background-image: radial-gradient(ellipse 70% 55% at 50% -10%, rgba(249, 115, 22, 0.12), transparent 65%), linear-gradient(90deg, transparent 0%, rgba(249, 115, 22, 0.1) 15%, rgba(249, 115, 22, 0.5) 30%, #f97316 50%, rgba(249, 115, 22, 0.5) 70%, rgba(249, 115, 22, 0.1) 85%, transparent 100%);
  background-size: 100% 100%, 42% 2px;
  background-position: 50% 0, 50% 0;
  background-repeat: no-repeat, no-repeat;
  border: 1px solid #26262b;
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 1.25rem;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}
@media (max-width: 992px) {
  .myaccount__subscription-card {
    width: 100%;
  }
}
.myaccount__subscription-card .myaccount__pay-card-actions {
  margin-top: 1rem;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.myaccount__subscription .myaccount__pay-section-title i {
  color: #f97316;
}
.myaccount__subscription .myaccount__pay-section-head {
  width: 100%;
}
.myaccount__subscription-upsell {
  position: relative;
  overflow: hidden;
  width: 65%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #fb8c3e 0%, #f97316 55%, #ea6a0a 100%);
  border: none;
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 1.25rem;
  animation: sna-premium-glow 2.6s ease-in-out infinite;
}
@media (max-width: 992px) {
  .myaccount__subscription-upsell {
    width: 100%;
  }
}
.myaccount__subscription-upsell::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -60%;
  width: 45%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  animation: sna-premium-sheen 2.6s ease-in-out infinite;
  pointer-events: none;
}
.myaccount__subscription-upsell .myaccount__pay-action--accent-filled {
  background: #ffffff;
  color: #ea6a0a;
}
.myaccount__subscription-upsell-text h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px;
}
.myaccount__subscription-upsell-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  margin: 0;
}

.myaccount__profile-badge--premium {
  gap: 5px;
  background: linear-gradient(135deg, #fb8c3e 0%, #f97316 55%, #ea6a0a 100%);
  color: #ffffff;
  overflow: hidden;
  animation: sna-premium-glow 2.6s ease-in-out infinite;
}
.myaccount__profile-badge--premium::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -60%;
  width: 45%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-20deg);
  animation: sna-premium-sheen 2.6s ease-in-out infinite;
  pointer-events: none;
}

.myaccount__pay-card--subscription,
.myaccount__pay-card--compact {
  grid-template-columns: 1fr;
  gap: 1rem;
}

.myaccount__pay-card--subscription {
  border-left: 3px solid rgba(249, 115, 22, 0.65);
}
.myaccount__pay-card--subscription .myaccount__pay-card-main {
  width: 100%;
}
.myaccount__pay-card--subscription .myaccount__pay-card-actions {
  margin-top: 0.75rem;
}

.myaccount__pay-card-subtitle {
  display: block;
  color: #b3b3b3;
  font-size: 0.78rem;
  font-weight: 400;
  margin-top: 2px;
}

.myaccount__pay-section-empty {
  color: #b3b3b3;
  font-size: 0.85rem;
  margin: 0 0 1rem;
}

.myaccount__rf-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.myaccount__rf-header-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1 1 auto;
  min-width: 0;
}
.myaccount__rf-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.1;
}
@media (max-width: 480px) {
  .myaccount__rf-title {
    font-size: 1.2rem;
  }
}
.myaccount__rf-subtitle {
  font-size: 0.88rem;
  color: #b3b3b3;
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 480px) {
  .myaccount__rf-subtitle {
    font-size: 0.82rem;
  }
}
.myaccount__rf-redeem {
  appearance: none;
  background: linear-gradient(135deg, #f47923, #d96210);
  border: none;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.6rem 1.25rem;
  border-radius: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(244, 121, 35, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.myaccount__rf-redeem i {
  font-size: 1.1rem;
  line-height: 1;
  color: #ffffff;
}
.myaccount__rf-redeem:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 25px rgba(244, 121, 35, 0.5);
}
.myaccount__rf-redeem:active {
  transform: translateY(0) scale(0.98);
}
@media (max-width: 768px) {
  .myaccount__rf-redeem {
    align-self: flex-start;
  }
}
.myaccount__rf-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1024px) {
  .myaccount__rf-grid {
    grid-template-columns: 1fr;
  }
}
.myaccount__rf-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}
.myaccount__rf-card {
  background: rgba(23, 23, 27, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.25rem 1.4rem;
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.myaccount__rf-card:hover {
  border-color: rgba(244, 121, 35, 0.35);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(244, 121, 35, 0.15);
  transform: translateY(-2px);
}
@media (max-width: 480px) {
  .myaccount__rf-card {
    padding: 1rem 1.1rem;
  }
}
.myaccount__rf-card-label {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.myaccount__rf-card-value {
  color: #f47923;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 0 15px rgba(244, 121, 35, 0.3);
}
.myaccount__rf-stats {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
}
@media (max-width: 768px) {
  .myaccount__rf-stats {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    grid-template-areas: "code points" "code referral";
  }
}
@media (max-width: 480px) {
  .myaccount__rf-stats {
    grid-template-columns: 1fr;
    grid-template-areas: "code" "points" "referral";
  }
}
@media (max-width: 768px) {
  .myaccount__rf-card--code {
    grid-area: code;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.myaccount__rf-card--stat {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 110px;
}
@media (max-width: 768px) {
  .myaccount__rf-card--stat[data-rf-stat=points] {
    grid-area: points;
  }
}
@media (max-width: 768px) {
  .myaccount__rf-card--stat[data-rf-stat=referrals] {
    grid-area: referral;
  }
}
.myaccount__rf-code-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(10, 10, 15, 0.6);
  border: 1px dashed rgba(244, 121, 35, 0.4);
  border-radius: 12px;
  padding: 0.45rem 0.45rem 0.45rem 0.85rem;
  margin-bottom: 0.85rem;
  transition: border-color 0.2s ease;
}
.myaccount__rf-code-row:hover {
  border-color: #f47923;
}
.myaccount__rf-code-value {
  flex: 1 1 auto;
  min-width: 0;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.myaccount__rf-copy {
  appearance: none;
  background: #f47923;
  color: #ffffff;
  border: 0;
  border-radius: 8px;
  padding: 0.45rem 0.85rem;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(244, 121, 35, 0.3);
}
.myaccount__rf-copy:hover {
  background: #e06816;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(244, 121, 35, 0.45);
}
.myaccount__rf-copy.is-copied {
  background: #22c55e;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.4);
}
.myaccount__rf-invite {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.myaccount__rf-invite-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  font-weight: 500;
}
.myaccount__rf-socials {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.5rem;
}
.myaccount__rf-social {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.myaccount__rf-social i {
  line-height: 1;
}
.myaccount__rf-social:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  filter: brightness(1.15);
}
.myaccount__rf-social--facebook {
  background: #1877f2;
}
.myaccount__rf-social--twitter {
  background: #1da1f2;
}
.myaccount__rf-social--whatsapp {
  background: #25d366;
}
.myaccount__rf-social--linkedin {
  background: #0a66c2;
}
.myaccount__rf-benefits-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}
.myaccount__rf-benefits-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}
.myaccount__rf-benefits-count {
  color: #f47923;
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(244, 121, 35, 0.12);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(244, 121, 35, 0.3);
}
.myaccount__rf-benefits-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.6;
}
.myaccount__rf-howitworks-title {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}
.myaccount__rf-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.myaccount__rf-step {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  position: relative;
}
.myaccount__rf-step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: -1.25rem;
  left: 13px;
  width: 2px;
  background: linear-gradient(180deg, #f47923 0%, rgba(244, 121, 35, 0.2) 100%);
  border-radius: 2px;
}
.myaccount__rf-step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(244, 121, 35, 0.15);
  border: 1.5px solid #f47923;
  color: #f47923;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 15px rgba(244, 121, 35, 0.3);
}
.myaccount__rf-step-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.myaccount__rf-step-text strong {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
}
.myaccount__rf-step-text span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.84rem;
  line-height: 1.45;
}
.myaccount__rf-history-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.4rem;
}
.myaccount__rf-history-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}
.myaccount__rf-history-subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin: 0 0 1rem;
}
.myaccount__rf-history-tablewrap {
  margin: 0 -0.4rem;
  overflow-x: auto;
}
.myaccount__rf-history-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.myaccount__rf-history-table th {
  text-align: left;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.75rem 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.myaccount__rf-history-table td {
  color: rgba(255, 255, 255, 0.85);
  padding: 0.95rem 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.myaccount__rf-history-table tbody tr {
  transition: background 0.2s ease;
}
.myaccount__rf-history-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}
.myaccount__rf-history-table tbody tr:last-child td {
  border-bottom: 0;
}
.myaccount__rf-history-empty td {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  padding: 2.5rem 1rem !important;
  border-bottom: 0 !important;
}
.myaccount__rf-history-empty td {
  text-align: center;
  color: #b3b3b3;
  padding: 2.5rem 1rem !important;
  border-bottom: 0 !important;
}

.myaccount__cert-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.myaccount__cert-header-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1 1 auto;
  min-width: 0;
}
.myaccount__cert-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
@media (max-width: 480px) {
  .myaccount__cert-title {
    font-size: 1.25rem;
  }
}
.myaccount__cert-title-accent {
  color: #F47923;
}
.myaccount__cert-subtitle {
  font-size: 0.88rem;
  color: #b3b3b3;
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 480px) {
  .myaccount__cert-subtitle {
    font-size: 0.82rem;
  }
}
.myaccount__cert-stats {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .myaccount__cert-stats {
    width: 100%;
  }
}
.myaccount__cert-stat {
  background: #191919;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.55rem;
  padding: 0.55rem 0.95rem;
  min-width: 110px;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
@media (max-width: 768px) {
  .myaccount__cert-stat {
    flex: 1 1 0;
    min-width: 0;
  }
}
.myaccount__cert-stat-label {
  color: #b3b3b3;
  font-size: 0.78rem;
}
.myaccount__cert-stat-value {
  color: #F47923;
  font-size: 1rem;
  font-weight: 700;
}
.myaccount__cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(0, 1fr));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .myaccount__cert-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .myaccount__cert-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.myaccount__cert-card {
  background: #191919;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.myaccount__cert-card:hover {
  border-color: rgba(244, 121, 35, 0.18);
  transform: translateY(-2px);
}
.myaccount__cert-card-image {
  position: relative;
  aspect-ratio: 16/10;
  background: #cccccc;
  margin: 0.85rem 0.85rem 0;
  border-radius: 0.55rem;
  overflow: hidden;
}
.myaccount__cert-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.myaccount__cert-card-status {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  border: 0;
  color: #ffffff;
}
.myaccount__cert-card-status i {
  font-size: 1rem;
  line-height: 1;
}
.myaccount__cert-card-status--completed {
  background: #0c3a25;
}
.myaccount__cert-card-status--completed i {
  color: #22c55e;
}
.myaccount__cert-card-status--in-progress {
  background: #2a2a2a;
}
.myaccount__cert-card-status--in-progress i {
  color: #ffffff;
}
.myaccount__cert-card-body {
  padding: 0.95rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.myaccount__cert-card-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
}
.myaccount__cert-card-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.myaccount__cert-card-tags li {
  font-size: 0.72rem;
  color: #b3b3b3;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.25rem 0.55rem;
  border-radius: 0.35rem;
  white-space: nowrap;
}
.myaccount__cert-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1rem;
  border-radius: 0.5rem;
  background: #F47923;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  margin-top: 0.25rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.myaccount__cert-card-cta i {
  font-size: 1rem;
  line-height: 1;
}
.myaccount__cert-card-cta:hover {
  background: rgb(96.162464986%, 53.251846193%, 23.2492997199%);
  transform: translateY(-1px);
}
.myaccount button.myaccount__cert-card-cta {
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.myaccount__cert-card-cta--loading, .myaccount__cert-card-cta:disabled {
  opacity: 0.6;
  cursor: default;
  pointer-events: none;
  transform: none;
}
.myaccount__cert-generate {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.myaccount__cert-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 3rem 1rem;
  color: #b3b3b3;
  text-align: center;
}
.myaccount__cert-empty i {
  font-size: 2.5rem;
  opacity: 0.4;
}
.myaccount__cert-empty p {
  margin: 0;
  font-size: 0.95rem;
}
.myaccount__cert-verify {
  margin-top: 2.5rem;
}
.myaccount__cert-verify .certify {
  padding: 0;
  margin: 0;
}
.myaccount__cert-verify .certify__section {
  padding: 0;
}
.myaccount__cert-verify .certify__card {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.myaccount__cert-verify .certify__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 0.25rem;
  text-align: left;
}
@media (max-width: 480px) {
  .myaccount__cert-verify .certify__title {
    font-size: 1.25rem;
  }
}
.myaccount__cert-verify .certify__title {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #ffffff;
  color: #ffffff;
}
.myaccount__cert-verify .certify__title .highlight {
  color: #F47923;
  background: none;
}
.myaccount__cert-verify .certify__subtitle {
  font-size: 0.85rem;
  color: #b3b3b3;
  margin: 0 0 2rem;
  text-align: left;
}

/* Home-page free-trial banner (shown below the hero for logged-in
   students whose one-time trial is still unclaimed). Uses the premium
   glass tokens from _premium.scss. */
.trial-banner {
  display: flex;
  justify-content: center;
  padding: 0 1.5rem;
  margin: 0 auto 2.5rem;
  max-width: 1200px;
}
.trial-banner__card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  padding: 1.35rem 1.75rem;
  border-radius: 18px;
  background: var(--sna-glass-strong, rgba(23, 23, 27, 0.78));
  border: 1px solid rgba(249, 115, 22, 0.35);
  box-shadow: var(--sna-glow, 0 12px 40px rgba(249, 115, 22, 0.22));
  -webkit-backdrop-filter: var(--sna-blur, blur(16px));
  backdrop-filter: var(--sna-blur, blur(16px));
}
.trial-banner__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(249, 115, 22, 0.14);
}
.trial-banner__icon i {
  font-size: 1.9rem;
  color: var(--sna-accent, #f47923);
}
.trial-banner__info {
  flex: 1;
  min-width: 0;
}
.trial-banner__title {
  margin: 0 0 0.3rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}
.trial-banner__title span {
  color: var(--sna-accent, #f47923);
}
.trial-banner__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}
.trial-banner__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  background: var(--sna-grad, linear-gradient(135deg, #fb8c3e 0%, #f97316 55%, #ea6a0a 100%));
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.trial-banner__cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--sna-glow, 0 12px 40px rgba(249, 115, 22, 0.22));
}
@media (max-width: 767px) {
  .trial-banner__card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .trial-banner__cta {
    width: 100%;
    justify-content: center;
  }
}

/* On a phone the hero alone is taller than the viewport, so a banner placed
   after it is invisible until you scroll — the offer may as well not exist.
   Hoist it above the hero for small screens only; .section-main is an
   unstyled wrapper and .bg-img is absolutely positioned, so nothing else
   moves. Desktop keeps the hero first. */
@media (max-width: 767px) {
  .section-main {
    display: flex;
    flex-direction: column;
  }
  .section-main > .trial-banner {
    order: -1;
    margin-top: 1.5rem;
  }
}

.contact {
  padding: 64px 0 80px 0 !important;
  min-height: 100vh;
  background-color: #0a0a0a;
}
.contact__container {
  width: 100%;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px;
}
@media (max-width: 768px) {
  .contact__container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.contact__container {
  max-width: 1800px;
}
@media (min-width: 1024px) {
  .contact__container {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
.contact__header {
  margin-bottom: 50px;
}
.contact__title {
  font-size: 3.2rem;
  font-weight: 400;
  color: #e8e6e5;
  margin: 0 0 16px 0;
  line-height: 1.2;
}
.contact__title-highlight {
  color: #F47923;
}
.contact__subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-weight: 400;
}
.contact__content {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 50px;
  align-items: stretch;
}
.contact__info-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}
.contact__info-card {
  background: rgba(18, 18, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.contact__info-card:hover {
  border-color: rgba(244, 121, 35, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(244, 121, 35, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.contact__info-icon {
  margin-bottom: 10px;
  align-self: center;
}
.contact__info-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.9;
}
.contact__info-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #e8e6e5;
  margin: 0 0 4px 0;
}
.contact__info-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
.contact__form-wrapper {
  background: rgba(18, 18, 24, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 44px;
  width: 100%;
  min-width: 0;
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.contact__form-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 30px 0;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
  margin-bottom: 20px;
}
.contact__form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}
.contact__form-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.contact__form-required {
  color: #ff7b23;
  font-weight: 600;
}
.contact__form-input {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px 18px;
  color: #e8e6e5;
  font-size: 1rem;
  font-family: "Ubuntu", sans-serif;
  outline: none;
  transition: all 0.2s ease;
}
.contact__form-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.contact__form-input:focus {
  border-color: rgba(255, 255, 255, 0.2);
}
.contact__form-input:-webkit-autofill, .contact__form-input:-webkit-autofill:hover, .contact__form-input:-webkit-autofill:focus, .contact__form-input:-webkit-autofill:active {
  -webkit-text-fill-color: #e8e6e5 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  transition: background-color 5000s ease-in-out 0s;
}
.contact__form-input--phone {
  border-radius: 0 12px 12px 0;
  flex: 1;
  border-left: none;
  min-width: 0;
}
.contact__form-input--invalid, .contact__form-input--invalid:focus {
  border-color: #ff4d4f !important;
  box-shadow: 0 0 0 1px rgba(255, 77, 79, 0.25);
}
.contact__form-group--invalid .contact__form-label {
  color: #ff7875;
}
.contact__form-phone {
  display: flex;
  align-items: stretch;
  width: 100%;
  position: relative;
  overflow: visible;
}
.contact__custom-select {
  position: relative;
  width: 100%;
  cursor: pointer;
}
.contact__custom-select--invalid .contact__select-trigger {
  border-color: #ff4d4f !important;
  box-shadow: 0 0 0 1px rgba(255, 77, 79, 0.25);
}
.contact__custom-select.open .contact__select-trigger {
  border-color: rgba(255, 255, 255, 0.2);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.contact__custom-select.open .contact__select-trigger i {
  transform: rotate(180deg);
}
.contact__custom-select.open .contact__options-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.contact__custom-select--country {
  width: 90px;
  flex-shrink: 0;
}
.contact__custom-select--country .contact__select-trigger {
  border-radius: 12px 0 0 12px;
  border-right: none;
  padding: 16px 10px;
}
.contact__custom-select--country .contact__select-trigger span {
  font-size: 0.8rem;
}
.contact__custom-select--country.open .contact__select-trigger {
  border-bottom-left-radius: 0;
}
.contact__custom-select--country .contact__options-list {
  width: 100px;
}
.contact__select-trigger {
  width: 100%;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
  position: relative;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.contact__select-trigger span {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 480px) {
  .contact__select-trigger span {
    font-size: 0.9rem;
  }
}
.contact__select-trigger i {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}
.contact__select-trigger:hover {
  border-color: rgba(244, 121, 35, 0.4);
  background: rgba(255, 255, 255, 0.08);
}
.contact__custom-select.open .contact__select-trigger {
  border-color: #f47923;
  box-shadow: 0 0 15px rgba(244, 121, 35, 0.25);
}
.contact__options-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: rgba(18, 18, 24, 0.94);
  border: 1px solid rgba(244, 121, 35, 0.3);
  border-radius: 12px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 250px;
  overflow-y: auto;
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(244, 121, 35, 0.12);
}
.contact__options-list::-webkit-scrollbar {
  width: 5px;
}
.contact__options-list::-webkit-scrollbar-thumb {
  background: rgba(244, 121, 35, 0.3);
  border-radius: 10px;
}
.contact__option {
  padding: 12px 18px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.15s ease;
  cursor: pointer;
}
@media (max-width: 480px) {
  .contact__option {
    font-size: 0.85rem;
    padding: 10px 15px;
  }
}
.contact__option:hover {
  background-color: rgba(244, 121, 35, 0.15);
  color: #ffffff;
  padding-left: 24px;
}
.contact__option.selected {
  color: #f47923;
  background-color: rgba(244, 121, 35, 0.22);
  font-weight: 600;
}
.contact__option:first-child {
  border-top-left-radius: 11px;
  border-top-right-radius: 11px;
}
.contact__option:last-child {
  border-bottom-left-radius: 11px;
  border-bottom-right-radius: 11px;
}
.contact__option:last-child {
  border-bottom-left-radius: 11px;
  border-bottom-right-radius: 11px;
}
.contact__option--disabled {
  color: rgba(255, 255, 255, 0.35);
  cursor: not-allowed;
  font-style: italic;
}
.contact__option--disabled:hover {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.35);
  padding-left: 18px;
}
.contact__form-status {
  min-height: 1.25rem;
  margin: 12px 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}
.contact__form-status--error {
  color: #ff7875;
}
.contact__form-status--success {
  color: #52c41a;
}
.contact__form-group--recaptcha {
  margin-top: 4px;
}
.contact__form-group--recaptcha .g-recaptcha {
  display: inline-block;
}
@media (max-width: 480px) {
  .contact__form-group--recaptcha .g-recaptcha {
    transform: scale(0.9);
    transform-origin: left top;
  }
}
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.contact__form-submit {
  background-color: #ff7b23;
  border: none;
  border-radius: 12px;
  padding: 18px 24px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Ubuntu", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 12px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.contact__form-submit:hover {
  background-color: rgb(100%, 42.2352941176%, 3.7254901961%);
  box-shadow: 0 4px 20px rgba(255, 123, 35, 0.4);
  transform: translateY(-2px);
}
.contact__form-submit[disabled] {
  cursor: not-allowed;
  opacity: 0.75;
  transform: none;
  box-shadow: none;
}
.contact__form-submit-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  animation: contact-spin 0.8s linear infinite;
}
.contact__form-submit--loading .contact__form-submit-spinner {
  display: inline-block;
}
@media (max-width: 1024px) {
  .contact {
    padding: 50px 0 60px;
  }
  .contact__title {
    font-size: 2.6rem;
  }
  .contact__content {
    grid-template-columns: 220px 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .contact {
    padding: 40px 0 50px;
  }
  .contact__header {
    margin-bottom: 40px;
  }
  .contact__title {
    font-size: 2.2rem;
  }
  .contact__content {
    grid-template-columns: 200px 1fr;
    gap: 30px;
    align-items: stretch;
  }
  .contact__info-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
  }
  .contact__form-wrapper {
    max-width: 100%;
    padding: 24px;
  }
}
@media (max-width: 600px) {
  .contact__title {
    font-size: 1.9rem;
  }
  .contact__content {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .contact__form-wrapper {
    order: 1;
    padding: 20px;
  }
  .contact__info-cards {
    order: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    height: auto;
  }
  .contact__form-row {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .contact {
    padding: 30px 0 40px;
  }
  .contact__title {
    font-size: 1.7rem;
  }
  .contact__subtitle {
    font-size: 0.9rem;
  }
  .contact__form-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }
  .contact__info-card {
    padding: 12px 10px;
  }
  .contact__info-icon {
    margin-bottom: 6px;
  }
  .contact__info-icon img {
    width: 22px;
    height: 22px;
  }
  .contact__info-title {
    font-size: 0.78rem;
  }
  .contact__info-text {
    font-size: 0.68rem;
  }
}

@keyframes contact-spin {
  to {
    transform: rotate(360deg);
  }
}
.certify {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 24px;
}
.certify__section {
  text-align: center;
  margin-bottom: 40px;
}
.certify__badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(244, 121, 35, 0.12);
  border: 1px solid rgba(244, 121, 35, 0.35);
  color: #f47923;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
  box-shadow: 0 0 20px rgba(244, 121, 35, 0.15);
}
.certify__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #ffffff;
  letter-spacing: -0.5px;
}
.certify__title .highlight {
  color: #f47923;
  background: linear-gradient(135deg, #fb8c3e 0%, #f47923 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.certify__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 36px;
}
.certify__card {
  background: rgba(18, 18, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 44px;
  width: 100%;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 30px rgba(244, 121, 35, 0.05);
  position: relative;
  overflow: hidden;
}
.certify__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(244, 121, 35, 0.4) 30%, #f47923 50%, rgba(244, 121, 35, 0.4) 70%, transparent 100%);
}
.certify__label {
  display: block;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
}
.certify__input-group {
  position: relative;
  width: 100%;
  margin-bottom: 24px;
}
.certify__input-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: #f47923;
  pointer-events: none;
}
.certify__input {
  width: 100%;
  padding: 18px 20px 18px 54px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: #ffffff;
  font-size: 1.05rem;
  font-family: "Ubuntu", sans-serif;
  transition: all 0.25s ease;
}
.certify__input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.certify__input:focus {
  outline: none;
  border-color: #f47923;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 24px rgba(244, 121, 35, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.certify__btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #fb8c3e 0%, #f97316 55%, #ea6a0a 100%);
  border: none;
  border-radius: 16px;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: "Ubuntu", sans-serif;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
}
.certify__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.5);
  background: linear-gradient(135deg, #ff974d 0%, #fa7c23 55%, #f07414 100%);
}
.certify__btn[disabled] {
  cursor: not-allowed;
  opacity: 0.75;
  transform: none;
}
.certify__btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  animation: certify-spin 0.8s linear infinite;
}
.certify__btn--loading .certify__btn-spinner {
  display: inline-block;
}
.certify__btn--loading .certify__btn-label {
  opacity: 0.8;
}
.certify__result {
  margin-top: 40px;
}
.certify__result--hidden {
  display: none;
}
.certify__result {
  position: relative;
}
/* ── Confetti Celebration (adapted from codepen.io/zer0kool/pen/KjZWRW) ── */
.certify__confetti {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 9999;
  pointer-events: none;
}
.certify__confetti-piece {
  position: absolute;
  width: 10px;
  height: 30px;
  background: #ffd300;
  top: 0;
  opacity: 0;
}
.certify__result--animated .certify__confetti-piece {
  animation-name: certConfettiRain;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.certify__confetti-piece:nth-child(1) {
  left: 7%;
  transform: rotate(-40deg);
  animation-delay: 182ms;
  animation-duration: 1116ms;
}
.certify__confetti-piece:nth-child(2) {
  left: 14%;
  transform: rotate(4deg);
  animation-delay: 161ms;
  animation-duration: 1076ms;
}
.certify__confetti-piece:nth-child(3) {
  left: 21%;
  transform: rotate(-51deg);
  animation-delay: 481ms;
  animation-duration: 1103ms;
}
.certify__confetti-piece:nth-child(4) {
  left: 28%;
  transform: rotate(61deg);
  animation-delay: 334ms;
  animation-duration: 708ms;
}
.certify__confetti-piece:nth-child(5) {
  left: 35%;
  transform: rotate(-52deg);
  animation-delay: 302ms;
  animation-duration: 776ms;
}
.certify__confetti-piece:nth-child(6) {
  left: 42%;
  transform: rotate(38deg);
  animation-delay: 180ms;
  animation-duration: 1168ms;
}
.certify__confetti-piece:nth-child(7) {
  left: 49%;
  transform: rotate(11deg);
  animation-delay: 395ms;
  animation-duration: 1200ms;
}
.certify__confetti-piece:nth-child(8) {
  left: 56%;
  transform: rotate(49deg);
  animation-delay: 14ms;
  animation-duration: 887ms;
}
.certify__confetti-piece:nth-child(9) {
  left: 63%;
  transform: rotate(-72deg);
  animation-delay: 149ms;
  animation-duration: 805ms;
}
.certify__confetti-piece:nth-child(10) {
  left: 70%;
  transform: rotate(10deg);
  animation-delay: 351ms;
  animation-duration: 1059ms;
}
.certify__confetti-piece:nth-child(11) {
  left: 77%;
  transform: rotate(4deg);
  animation-delay: 307ms;
  animation-duration: 1132ms;
}
.certify__confetti-piece:nth-child(12) {
  left: 84%;
  transform: rotate(42deg);
  animation-delay: 464ms;
  animation-duration: 776ms;
}
.certify__confetti-piece:nth-child(13) {
  left: 91%;
  transform: rotate(-72deg);
  animation-delay: 429ms;
  animation-duration: 818ms;
}
.certify__confetti-piece:nth-child(odd) {
  background: #f47923;
}
.certify__confetti-piece:nth-child(even) {
  z-index: 1;
}
.certify__confetti-piece:nth-child(4n) {
  width: 5px;
  height: 12px;
  animation-duration: 2000ms;
}
.certify__confetti-piece:nth-child(3n) {
  width: 3px;
  height: 10px;
  animation-duration: 2500ms;
  animation-delay: 1000ms;
}
.certify__confetti-piece:nth-child(4n-7) {
  background: #4ade80;
}
@keyframes certConfettiRain {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(100vh); opacity: 0; }
}
.certify__result-card {
  background: rgba(18, 18, 24, 0.82);
  border: 1px solid rgba(244, 121, 35, 0.3);
  border-radius: 24px;
  padding: 44px;
  text-align: left;
  width: 100%;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 40px rgba(244, 121, 35, 0.12);
  position: relative;
  overflow: hidden;
}
.certify__scan-beam {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #f47923 30%, #4ade80 50%, #f47923 70%, transparent 100%);
  box-shadow: 0 0 16px #4ade80, 0 0 32px #f47923;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
}
.certify__success-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.certify__success-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: auto;
}
.certify__checkmark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: block;
  stroke-width: 3;
  stroke: #4ade80;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #4ade80;
  filter: drop-shadow(0 0 12px rgba(74, 222, 128, 0.4));
}
.certify__result--animated .certify__checkmark {
  animation: certCheckmarkFill 0.4s ease-in-out 0.4s forwards, certCheckmarkScale 0.3s ease-in-out 0.8s forwards;
}
.certify__checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 3;
  stroke-miterlimit: 10;
  stroke: #4ade80;
  fill: none;
}
.certify__result--animated .certify__checkmark-circle {
  animation: certCheckmarkStroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.certify__checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #4ade80;
}
.certify__result--animated .certify__checkmark-check {
  animation: certCheckmarkStroke 0.35s cubic-bezier(0.65, 0, 0.45, 1) 0.5s forwards;
}

.certify__result--animated .certify__result-card {
  animation: certCardPop 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.certify__result--animated .certify__scan-beam {
  animation: certScanSweep 0.9s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.certify__result--animated .certify__result-badge {
  animation: certBadgeBounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.12s backwards;
}
.certify__result--animated .certify__result-row:nth-child(1) {
  animation: certRowSlideIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.15s backwards;
}
.certify__result--animated .certify__result-row:nth-child(2) {
  animation: certRowSlideIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.23s backwards;
}
.certify__result--animated .certify__result-row:nth-child(3) {
  animation: certRowSlideIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.31s backwards;
}
.certify__result--animated .certify__result-row:nth-child(4) {
  animation: certRowSlideIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.39s backwards;
}
.certify__result--animated .certify__result-row:nth-child(5) {
  animation: certRowSlideIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.47s backwards;
}
.certify__result-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.4);
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0;
  box-shadow: 0 0 20px rgba(74, 222, 128, 0.2);
}
.certify__result-badge i {
  font-size: 1.2rem;
}
.certify__result-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.certify__result-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  transition: all 0.2s ease;
}
.certify__result-row:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(244, 121, 35, 0.25);
}
.certify__result-key {
  flex: 0 0 190px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.certify__result-key i {
  color: #f47923;
  font-size: 1.1rem;
}
.certify__result-value {
  flex: 1;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  word-break: break-word;
}

@keyframes certCardPop {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes certScanSweep {
  0% {
    top: 0%;
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
@keyframes certBadgeBounce {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  70% {
    transform: scale(1.08);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes certRowSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-16px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.certify__error {
  margin-top: 40px;
}
.certify__error--hidden {
  display: none;
}
.certify__error-card {
  background: rgba(18, 18, 24, 0.82);
  border: 1px solid rgba(255, 77, 79, 0.3);
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  width: 100%;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Responsive Breakpoints for Certificate Verification */
@media (max-width: 768px) {
  .certify {
    padding: 36px 16px;
  }
  .certify__title {
    font-size: 2.2rem;
  }
  .certify__subtitle {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
  .certify__card,
  .certify__result-card,
  .certify__error-card {
    padding: 28px 20px;
    border-radius: 20px;
  }
  .certify__result-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 14px 16px;
  }
  .certify__result-key {
    flex: none;
    width: 100%;
    font-size: 0.85rem;
  }
  .certify__result-value {
    font-size: 0.95rem;
    padding-left: 26px;
  }
}
@media (max-width: 480px) {
  .certify {
    padding: 24px 12px;
  }
  .certify__title {
    font-size: 1.8rem;
  }
  .certify__badge-tag {
    font-size: 0.72rem;
    padding: 5px 12px;
  }
  .certify__input {
    padding: 14px 16px 14px 44px;
    font-size: 0.95rem;
  }
  .certify__input-icon {
    left: 14px;
    font-size: 1.1rem;
  }
  .certify__btn {
    padding: 14px;
    font-size: 0.95rem;
  }
}
.certify__browser {
  width: 160px;
  height: 130px;
  background: linear-gradient(180deg, #2c2c2c 0%, #141414 100%);
  border: 1px solid #3a3a3a;
  border-radius: 1rem;
  margin: 0 auto 30px;
  overflow: hidden;
  position: relative;
}
.certify__browser-dots {
  display: flex;
  gap: 6px;
  padding: 12px 14px;
  justify-content: center;
}
.certify__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #4a4a4a;
}
.certify__error-code {
  font-size: 56px;
  font-weight: 300;
  color: #4a4a4a;
  margin-top: 5px;
}
.certify__error-title {
  font-size: 28px;
  font-weight: 400;
  color: #cfcfcf;
  margin-bottom: 12px;
}
.certify__error-subtitle {
  font-size: 15px;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .certify {
    padding: 30px 16px;
  }
  .certify__title {
    font-size: 32px;
  }
  .certify__subtitle {
    font-size: 16px;
  }
  .certify__card, .certify__error-card, .certify__result-card {
    padding: 20px 16px;
  }
  .certify__error-title {
    font-size: 22px;
  }
  .certify__result-row {
    flex-direction: column;
    gap: 4px;
  }
  .certify__result-key {
    flex: unset;
  }
}
@media (max-width: 480px) {
  .certify__title {
    font-size: 28px;
  }
  .certify__input::placeholder {
    font-size: 13px;
  }
  .certify__browser {
    width: 140px;
    height: 110px;
  }
  .certify__error-code {
    font-size: 44px;
  }
}

@keyframes certify-spin {
  to {
    transform: rotate(360deg);
  }
}
/* ============================================================
   SNA PREMIUM DESIGN SYSTEM
   Site-wide glassmorphic redesign. Loaded last so it refines
   every card / section / control into one premium language.
   ============================================================ */
:root {
  --sna-accent: #f47923;
  --sna-accent-2: #f97316;
  --sna-grad: linear-gradient(135deg, #fb8c3e 0%, #f97316 55%, #ea6a0a 100%);
  --sna-glass: rgba(23, 23, 27, 0.6);
  --sna-glass-strong: rgba(23, 23, 27, 0.78);
  --sna-glass-border: rgba(255, 255, 255, 0.09);
  --sna-glass-hi: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  --sna-blur: blur(16px) saturate(135%);
  --sna-shadow: 0 10px 34px rgba(0, 0, 0, 0.34);
  --sna-shadow-hover: 0 18px 46px rgba(0, 0, 0, 0.44);
  --sna-glow: 0 12px 40px rgba(249, 115, 22, 0.22);
}

/* ---------- 1. Universal glass card recipe ---------- */
.stat-card,
.instructor-card,
.feature-card,
.large-card,
.learning-card,
.img-card,
.review-card,
.dashboard__course-card,
.contact__info-card,
.contact__form-wrapper,
.certify__card,
.certify__result-card,
.certify__error-card,
.footer-card,
.course-idv__mentor-card,
.course-idv__topics-content,
.course-idv__benefits-card {
  background: var(--sna-glass) !important;
  -webkit-backdrop-filter: var(--sna-blur);
  backdrop-filter: var(--sna-blur);
  border: 1px solid var(--sna-glass-border) !important;
  box-shadow: var(--sna-glass-hi), var(--sna-shadow);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.28s ease, box-shadow 0.28s ease;
}

/* Hover lift + orange glow for interactive cards */
.stat-card:hover,
.instructor-card:hover,
.img-card:hover,
.review-card:hover,
.dashboard__course-card:hover,
.contact__info-card:hover,
.certify__card:hover,
.course-idv__mentor-card:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 115, 22, 0.5) !important;
  box-shadow: var(--sna-glass-hi), var(--sna-shadow-hover), var(--sna-glow);
}

/* ---------- 2. Section headings ---------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.35);
  color: var(--sna-accent);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.72rem;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

/* ---------- 3. Stat numbers → gradient text ---------- */
.stat-card h2,
.stat-card h3,
.stat-number,
.review-stats__number {
  background: var(--sna-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- 4. Course-track filter pills ---------- */
.dashboard__filter-btn {
  background: var(--sna-glass);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--sna-glass-border);
  border-radius: 999px;
  transition: all 0.22s ease;
}

.dashboard__filter-btn:hover {
  border-color: rgba(249, 115, 22, 0.55);
}

.dashboard__filter-btn--active {
  background: var(--sna-grad) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.4);
}

/* ---------- 5. Course-card image framing ---------- */
.dashboard__course-image,
.review-card__avatar,
.img-card {
  border-radius: 14px;
  overflow: hidden;
}

.img-card img {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.img-card:hover img {
  transform: scale(1.06);
}

/* ---------- 6. Buttons ---------- */
.cta-btn,
.opportunities__cta .btn,
.course-view-btn,
.dashboard__course-card .view-btn {
  background: var(--sna-grad);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn:hover,
.opportunities__cta .btn:hover,
.course-view-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(249, 115, 22, 0.5);
}

/* ---------- 7. Contact form → matches the enrollment-form field style
   (solid dark field, #333 border, 8px radius, clean orange focus) ---------- */
.contact__form-input,
.contact__form select,
.contact__form textarea {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 8px !important;
  color: #ffffff !important;
  font-size: 14px !important;
  transition: all 0.2s ease !important;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.contact__form-input::placeholder,
.contact__form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}

.contact__form-input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  border-color: #f47923 !important;
  box-shadow: 0 0 15px rgba(244, 121, 35, 0.25) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  outline: none;
}

.contact__form-phone {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
}

.contact__form-phone .contact__select-trigger {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-right: none !important;
  border-radius: 8px 0 0 8px !important;
}

.contact__form-phone .contact__form-input--phone {
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 0 8px 8px 0 !important;
  background: rgba(255, 255, 255, 0.05) !important;
  color: #ffffff !important;
}

.contact__form-phone .contact__form-input--phone:focus {
  border-color: #f47923 !important;
}

select option {
  background-color: #121218 !important;
  color: #ffffff !important;
}

/* ---------- 8. Testimonial quote card ----------
   The slides stack absolutely and mask a bleed element behind them, so they
   must stay near-opaque (a light glass, not a see-through one). */
.quote-1,
.quote-2 {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* ---------- 9. Alumni brand logos: plain, no chip background ---------- */
/* ---------- 10. "Find Your Right Course" CTA banner ----------
   No overflow clipping: the illustration is meant to spill past the edge. */
.opportunities__cta {
  border-radius: 22px;
  box-shadow: var(--sna-glow), var(--sna-shadow);
}

/* ---------- 11. Footer polish ---------- */
.footer-card {
  border-radius: 18px;
}

/* ---------- 12. Motion / accessibility fallbacks ---------- */
@media (prefers-reduced-motion: reduce) {
  .stat-card,
  .feature-card,
  .learning-card,
  .img-card,
  .review-card,
  .dashboard__course-card,
  .opportunities__cta::after,
  .img-card img {
    transition: none !important;
    animation: none !important;
  }
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .stat-card,
  .instructor-card,
  .feature-card,
  .large-card,
  .learning-card,
  .img-card,
  .review-card,
  .dashboard__course-card,
  .contact__info-card,
  .contact__form-wrapper,
  .certify__card,
  .footer-card,
  .quote,
  .quote-1,
  .quote-2 {
    background: #17171b !important;
  }
}
/* ---------- 13. Responsive card grids ---------- */
@media (max-width: 768px) {
  .feature-cards-grid,
  .learning-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }
  .stat-column {
    gap: 12px !important;
  }
}
@media (max-width: 480px) {
  .feature-cards-grid,
  .learning-grid {
    grid-template-columns: 1fr !important;
  }
}
/* ---------- 14. Hero button row wraps on mobile (3 CTAs) ---------- */
@media (max-width: 600px) {
  .hero__btn-container {
    flex-wrap: wrap;
    gap: 10px;
  }
  .hero__btn-container .hero__btn,
  .hero__btn-container button,
  .hero__btn-container .hero__btn--subscription {
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
  }
  .hero__btn-arrow {
    display: none !important;
  }
}
/* ---------- 16. User account dropdown → dark glassmorphic ---------- */
.site-header .main-nav .nav-item .dropdown .dropdown-menu-body,
.site-header .main-nav .nav-item.dropdown .dropdown-menu {
  background: rgba(20, 20, 24, 0.7) !important;
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-top: 2px solid #F47923 !important;
}

.site-header .main-nav .nav-item .dropdown .dropdown-menu-body .d-item:hover,
.site-header .main-nav .nav-item.dropdown .dropdown-menu a:hover {
  background: rgba(249, 115, 22, 0.1) !important;
  color: #f97316 !important;
}

/* ---------- 17. Course-detail "Topics Covered" card ---------- */
.course-idv__topics-content {
  /* Drop the full-bleed band; become a self-contained glass card. */
  box-shadow: var(--sna-glass-hi), var(--sna-shadow) !important;
  clip-path: none !important;
  background: var(--sna-glass) !important;
  -webkit-backdrop-filter: var(--sna-blur);
  backdrop-filter: var(--sna-blur);
  border: 1px solid var(--sna-glass-border) !important;
  border-radius: 18px;
  padding: 1.75rem !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

@media (max-width: 900px) {
  .course-idv__topics-content {
    grid-template-columns: 1fr;
  }
}
.course-idv__topics-content .topic-item {
  align-items: flex-start;
  gap: 0.85rem !important;
  padding: 0.95rem 1.05rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.course-idv__topics-content .topic-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(249, 115, 22, 0.4);
}

.course-idv__topics-content .topic-item::before {
  content: "" !important;
  width: 24px !important;
  height: 24px !important;
  border-radius: 7px !important;
  background-color: #f97316 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 15px !important;
  margin-top: 1px !important;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35);
}

.course-idv__topics-content .topic-item p {
  color: #d7d7db !important;
  line-height: 1.55 !important;
}

/* ---------- 18. Contact custom-selects match the glassmorphic field style ---------- */
.contact__custom-select:not(.contact__custom-select--country) .contact__select-trigger {
  min-height: 54px !important;
  height: 54px !important;
  padding: 0 18px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 8px !important;
  -webkit-backdrop-filter: blur(12px) !important;
  backdrop-filter: blur(12px) !important;
}

.contact__custom-select:not(.contact__custom-select--country).open .contact__select-trigger {
  border-color: #f47923 !important;
  box-shadow: 0 0 15px rgba(244, 121, 35, 0.25) !important;
}

/* ---------- 19. My Account dropdowns: glassmorphic floating options list ---------- */
.myaccount__options-list {
  background: rgba(18, 18, 24, 0.94) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  backdrop-filter: blur(24px) !important;
  border: 1px solid rgba(244, 121, 35, 0.3) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(244, 121, 35, 0.12) !important;
}

.myaccount__panel:has(.myaccount__custom-select.open) {
  position: relative;
  z-index: 60;
}

.myaccount__custom-select.open {
  position: relative;
  z-index: 61;
}

/* ---------- 20. Payment history cards — premium redesign ---------- */
.myaccount__pay-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  padding: 1.25rem 1.4rem !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 10px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

/* Orange accent rail down the left edge */
.myaccount__pay-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #fb8c3e, #f97316);
  opacity: 0.85;
}

.myaccount__pay-card:hover {
  transform: translateY(-3px);
  border-color: rgba(249, 115, 22, 0.4) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 16px 40px rgba(0, 0, 0, 0.42), 0 0 34px rgba(249, 115, 22, 0.14);
}

/* Framed thumbnail */
.myaccount__pay-card-image {
  background: #0e0e10 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
  overflow: hidden;
}

.myaccount__pay-card-image img {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.myaccount__pay-card:hover .myaccount__pay-card-image img {
  transform: scale(1.05);
}

/* Detail rows: a touch more breathing room */
.myaccount__pay-card-row {
  padding: 0.15rem 0;
}

/* Premium Futuristic Glassmorphic Status Badges */
.myaccount__pay-card-status {
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  align-self: center !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.myaccount__pay-card-status:hover {
  transform: scale(1.08);
}
.myaccount__pay-card-status i {
  font-size: 1.5rem !important;
  line-height: 1 !important;
  transition: all 0.3s ease !important;
}

.myaccount__pay-card-status--success {
  background: rgba(34, 197, 94, 0.12) !important;
  border: 1.5px solid rgba(74, 222, 128, 0.5) !important;
  box-shadow: 0 0 25px rgba(74, 222, 128, 0.25), inset 0 0 15px rgba(74, 222, 128, 0.15) !important;
}
.myaccount__pay-card-status--success i {
  color: #4ade80 !important;
  filter: drop-shadow(0 0 8px rgba(74, 222, 128, 0.8));
}
.myaccount__pay-card-status--success:hover {
  box-shadow: 0 0 35px rgba(74, 222, 128, 0.45), inset 0 0 20px rgba(74, 222, 128, 0.25) !important;
  border-color: #4ade80 !important;
}

.myaccount__pay-card-status--warning {
  background: rgba(244, 121, 35, 0.12) !important;
  border: 1.5px solid rgba(244, 121, 35, 0.5) !important;
  box-shadow: 0 0 25px rgba(244, 121, 35, 0.25), inset 0 0 15px rgba(244, 121, 35, 0.15) !important;
}
.myaccount__pay-card-status--warning i {
  color: #f47923 !important;
  filter: drop-shadow(0 0 8px rgba(244, 121, 35, 0.8));
}
.myaccount__pay-card-status--warning:hover {
  box-shadow: 0 0 35px rgba(244, 121, 35, 0.45), inset 0 0 20px rgba(244, 121, 35, 0.25) !important;
  border-color: #f47923 !important;
}

.myaccount__pay-card-status--danger {
  background: rgba(239, 68, 68, 0.12) !important;
  border: 1.5px solid rgba(239, 68, 68, 0.5) !important;
  box-shadow: 0 0 25px rgba(239, 68, 68, 0.25), inset 0 0 15px rgba(239, 68, 68, 0.15) !important;
}
.myaccount__pay-card-status--danger i {
  color: #ef4444 !important;
  filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.8));
}
.myaccount__pay-card-status--danger:hover {
  box-shadow: 0 0 35px rgba(239, 68, 68, 0.45), inset 0 0 20px rgba(239, 68, 68, 0.25) !important;
  border-color: #ef4444 !important;
}

/* Action buttons & status badges → pill style */
.myaccount__pay-action {
  padding: 0.55rem 1.1rem !important;
  border-radius: 9px !important;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

span.myaccount__pay-action {
  cursor: default !important;
  pointer-events: none !important;
  user-select: none !important;
}

.myaccount__pay-action--success-soft {
  background: rgba(52, 199, 89, 0.12) !important;
  border: 1px solid rgba(52, 199, 89, 0.4) !important;
  color: #4ade80 !important;
}

.myaccount__pay-action--danger-soft {
  background: rgba(239, 68, 68, 0.12) !important;
  border: 1px solid rgba(239, 68, 68, 0.45) !important;
  color: #ef4444 !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

button.myaccount__pay-action,
a.myaccount__pay-action,
.myaccount__pay-action[role="button"] {
  cursor: pointer !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

button.myaccount__pay-action:hover,
a.myaccount__pay-action:hover,
.myaccount__pay-action[role="button"]:hover {
  transform: translateY(-2px);
}

button.myaccount__pay-action:active,
a.myaccount__pay-action:active,
.myaccount__pay-action[role="button"]:active {
  transform: translateY(0) scale(0.97);
}

button.myaccount__pay-action--danger-soft:hover,
a.myaccount__pay-action--danger-soft:hover,
.myaccount__pay-action--danger-soft[role="button"]:hover {
  background: rgba(239, 68, 68, 0.25) !important;
  border-color: rgba(239, 68, 68, 0.8) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.35) !important;
}

.myaccount__pay-action--accent-soft {
  background: rgba(249, 115, 22, 0.12) !important;
  border: 1px solid rgba(249, 115, 22, 0.45) !important;
  color: #f9a25a !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

a.myaccount__pay-action--accent-soft:hover,
button.myaccount__pay-action--accent-soft:hover,
.myaccount__pay-action--accent-soft[role="button"]:hover {
  background: rgba(249, 115, 22, 0.25) !important;
  border-color: rgba(249, 115, 22, 0.8) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35) !important;
}

/* ---------- 21. Unified glass modal design with original orange corner hairlines ---------- */
.enrollment-popup,
.login-popup,
.sna-modal__card {
  position: relative !important;
  background-color: rgba(20, 20, 24, 0.86) !important;
  background-image:
    linear-gradient(90deg, transparent 0%, rgba(249, 115, 22, 0.1) 15%, rgba(249, 115, 22, 0.5) 30%, #f97316 50%, rgba(249, 115, 22, 0.5) 70%, rgba(249, 115, 22, 0.1) 85%, transparent 100%),
    linear-gradient(90deg, transparent 0%, rgba(249, 115, 22, 0.1) 15%, rgba(249, 115, 22, 0.5) 30%, #f97316 50%, rgba(249, 115, 22, 0.5) 70%, rgba(249, 115, 22, 0.1) 85%, transparent 100%) !important;
  background-size: 20% 2px, 20% 2px !important;
  background-position: 10% 0, 90% 100% !important;
  background-repeat: no-repeat, no-repeat !important;
  -webkit-backdrop-filter: blur(20px) saturate(140%) !important;
  backdrop-filter: blur(20px) saturate(140%) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 24px !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 64px rgba(0, 0, 0, 0.6) !important;
  animation: sna-modal-in 0.28s cubic-bezier(0.34, 1.4, 0.64, 1) !important;
}

.enrollment-popup__close,
.login-popup__close,
.sna-modal__close {
  background: transparent !important;
  border: none !important;
  color: #f97316 !important;
  font-size: 24px !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 4px !important;
  transition: transform 0.2s ease !important;
}

.enrollment-popup__close:hover,
.login-popup__close:hover,
.sna-modal__close:hover {
  background: transparent !important;
  color: #fb8c3e !important;
  transform: scale(1.15) !important;
  box-shadow: none !important;
}

.enrollment-popup-overlay,
.login-popup-overlay,
.sna-modal {
  background: rgba(0, 0, 0, 0.65) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  backdrop-filter: blur(10px) !important;
}

@media (max-width: 600px) {
  .enrollment-popup,
  .login-popup,
  .sna-modal__card {
    border-radius: 18px !important;
  }
}
/* ---------- 22. Plans preview (shown above the enrollment gate) ---------- */
.subscribe-page__preview {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 1.75rem;
  text-align: center;
}

.subscribe-page__preview-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}

.subscribe-page__preview-sub {
  font-size: 0.95rem;
  color: #9a9aa2;
  margin: 0 0 1.5rem;
}

.subscribe-page__preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.1rem;
  text-align: left;
}

.subscribe-page__preview-card {
  position: relative;
  background: rgba(23, 23, 27, 0.6);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
  backdrop-filter: blur(16px) saturate(135%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 1.5rem 1.4rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.subscribe-page__preview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(249, 115, 22, 0.14);
}

.subscribe-page__preview-card--featured {
  border-color: rgba(249, 115, 22, 0.55);
  background-image: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(249, 115, 22, 0.1), transparent 70%);
}

/* Folded corner-ribbon banner (top-left), with a dark fold tucking
   behind the card edge — like an award/streak ribbon, but glossier. */
.subscribe-page__preview-badge {
  position: absolute;
  top: -12px;
  left: -7px;
  z-index: 2;
  background: linear-gradient(135deg, #ffb64f 0%, #f97316 58%, #e0620a 100%);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 7px 15px 7px 13px;
  border-radius: 3px 7px 7px 3px;
  box-shadow: 0 8px 18px rgba(249, 115, 22, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}

/* glossy top sheen across the ribbon */
.subscribe-page__preview-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 55%);
  pointer-events: none;
}

/* dark triangular fold under the left edge (the ribbon wrapping the corner) */
.subscribe-page__preview-badge::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  border-top: 7px solid #a5480a;
  border-left: 7px solid transparent;
}

.subscribe-page__preview-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0.2rem 0 0.6rem;
}

.subscribe-page__preview-price {
  font-size: 1.9rem;
  font-weight: 800;
  color: #f97316;
  line-height: 1.1;
}

.subscribe-page__preview-from {
  font-size: 0.8rem;
  font-weight: 500;
  color: #9a9aa2;
  margin-right: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.subscribe-page__preview-cycle {
  font-size: 0.85rem;
  font-weight: 500;
  color: #9a9aa2;
}

.subscribe-page__preview-plannote {
  font-size: 0.82rem;
  color: #f9a25a;
  margin: 0.35rem 0 1rem;
}

.subscribe-page__preview-features {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0 0 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.subscribe-page__preview-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  color: #d7d7db;
  padding: 5px 0;
}

.subscribe-page__preview-features i {
  color: #f97316;
  font-size: 1rem;
  flex-shrink: 0;
}

.subscribe-page__preview-tiers {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.subscribe-page__preview-tiers td {
  padding: 5px 0;
  color: #cfcfcf;
  vertical-align: middle;
}

.subscribe-page__preview-tiers td:first-child {
  color: #9a9aa2;
}

.subscribe-page__preview-tier-strike s {
  color: #77777d;
}

.subscribe-page__preview-off {
  color: #34c759;
  font-weight: 600;
  font-size: 0.74rem;
  white-space: nowrap;
}

.subscribe-page__preview-tier-pay {
  text-align: right;
}

.subscribe-page__preview-tier-pay strong {
  color: #fff;
}

@media (max-width: 600px) {
  .subscribe-page__preview-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1024px) {
  .core-team-hero .container,
  .core-team-sections .container {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
.core-team-hero {
  text-align: left;
}
@media (max-width: 768px) {
  .core-team-hero {
    text-align: center;
  }
}
.core-team-hero .hero-title {
  font-size: 64px;
  font-weight: 600;
  margin: 0;
  color: #ffffff;
  line-height: 1.1;
}
.core-team-hero .hero-title .title-normal {
  display: block;
}
.core-team-hero .hero-title .title-highlight {
  display: block;
  color: #F47923;
}
@media (max-width: 768px) {
  .core-team-hero .hero-title {
    font-size: 48px;
  }
}
@media (max-width: 480px) {
  .core-team-hero .hero-title {
    font-size: 36px;
  }
}

.team-section {
  margin-bottom: 80px;
}
.team-section .section-header {
  margin-bottom: 40px;
  position: relative;
}
.team-section .section-header .section-title {
  font-size: 32px;
  color: #F47923;
  margin-bottom: 15px;
  font-weight: 500;
}
.team-section .section-header .section-line {
  width: 100%;
  height: 1px;
  background: rgba(244, 121, 35, 0.3);
  position: relative;
}
.team-section .section-header .section-line .line-dot {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: #F47923;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.team-card {
  background: #141414;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  transition: transform 0.3s ease;
}
.team-card:hover {
  transform: translateY(-10px);
}
.team-card .card-inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.team-card .member-image {
  width: 100%;
  height: 100%;
}
.team-card .member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.team-card:hover .member-image img {
  filter: grayscale(0%);
}
.team-card .member-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  z-index: 2;
}
.team-card .member-info .member-name {
  font-size: 24px;
  color: #ffffff;
  margin: 0;
  font-weight: 600;
}
.team-card .member-info .member-role {
  font-size: 12px;
  color: #F47923;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-top: 5px;
}

.terms-top-banner {
  background: linear-gradient(to right, #F47923, #9d3cff);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1400px) {
  .terms-top-banner {
    height: 80px;
  }
}
.terms-top-banner .terms-banner-text {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
}
@media (min-width: 1400px) {
  .terms-top-banner .terms-banner-text {
    font-size: 32px;
  }
}

.terms-body .terms-title-wrapper {
  display: flex;
  position: relative;
}
.terms-body .terms-title-wrapper .terms-title {
  width: 60%;
  white-space: normal;
  color: #F47923;
}
@media (min-width: 1200px) {
  .terms-body .terms-title-wrapper .terms-title {
    margin-top: 24px;
  }
}
.terms-body .terms-title-wrapper .terms-extra-count {
  font-size: 72px;
  font-weight: 700;
  opacity: 0.3;
  position: absolute;
  bottom: 20px;
  right: 0;
}
@media (min-width: 768px) {
  .terms-body .terms-title-wrapper .terms-extra-count {
    font-size: 100px;
  }
}
@media (min-width: 1200px) {
  .terms-body .terms-title-wrapper .terms-extra-count {
    font-size: 140px;
  }
}
@media (min-width: 1400px) {
  .terms-body .terms-title-wrapper .terms-extra-count {
    font-size: 160px;
  }
}
@media (min-width: 1600px) {
  .terms-body .terms-title-wrapper .terms-extra-count {
    font-size: 180px;
  }
}
.terms-body .terms-items {
  list-style: none;
  padding: 0;
}
.terms-body .terms-items .terms-item {
  margin-bottom: 16px;
  color: #ffffff;
}
@media (min-width: 768px) {
  .terms-body .terms-items .terms-item {
    width: 90%;
  }
}
.terms-body .terms-items .terms-item::before {
  content: "•";
  color: #F47923;
  font-weight: bold;
  font-size: 20px;
  margin-right: 6px;
}

.policy-top-banner {
  background: linear-gradient(to right, #F47923, #9d3cff);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1400px) {
  .policy-top-banner {
    height: 80px;
  }
}
.policy-top-banner .policy-banner-text {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
}
@media (min-width: 1400px) {
  .policy-top-banner .policy-banner-text {
    font-size: 32px;
  }
}

.policy-body .policy-body-title {
  color: #F47923;
  font-size: 21px;
  font-weight: 600;
  text-align: left;
  width: 60%;
  white-space: normal;
  margin-left: 0;
  margin-right: auto;
}
.policy-body .policy-body-subtitle {
  color: #F47923;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  width: 60%;
  white-space: normal;
  margin-left: 2ch;
  margin-right: auto;
}
.policy-body .policy-text {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  margin-bottom: 16px;
}
.policy-body .policy-subtext {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  margin-bottom: 16px;
  margin-left: 5ch;
}

.error-404 {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: #1A1A1A;
  position: relative;
  overflow: hidden;
}
.error-404__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}
.error-404__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.error-404__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}
.error-404__code {
  font-size: clamp(8rem, 20vw, 15rem);
  font-weight: 800;
  line-height: 1;
  margin: 0;
  color: #F47923;
  opacity: 0.1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.error-404__title {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
  color: #ffffff;
}
.error-404__title .highlight {
  color: #F47923;
}
.error-404__desc {
  font-size: 1.1rem;
  color: #cfcfcf;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.error-404__btn-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.error-404__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: linear-gradient(135deg, #ff7b23 0%, #ff9544 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 8px 24px rgba(255, 123, 35, 0.25);
}
.error-404__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 123, 35, 0.35);
  color: #ffffff;
}
.error-404__btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 123, 35, 0.1);
  border: 1px solid rgba(255, 123, 35, 0.3);
  transition: 0.3s ease;
}
.error-404__btn-arrow img {
  width: 20px;
  filter: brightness(1);
}
.error-404__btn-arrow:hover {
  background: rgba(255, 123, 35, 0.15);
  border-color: rgba(255, 123, 35, 0.5);
  transform: scale(1.1);
}

/*# sourceMappingURL=styles.css.map */
/* ============================================================================
   Site-wide horizontal-overflow guard (appended override). Root cause: the
   header used max-width:100vw, which includes the vertical scrollbar gutter and
   forced a horizontal scroll on every page. Fixed to 100%; html clips any other
   stray overflow (clip preserves the sticky header, unlike hidden).
   ============================================================================ */
html { overflow-x: clip; }
body { overflow-x: clip; }
.site-header { max-width: 100%; }

/* ============================================================================
   Subscribe page — ELITE polish layer (appended last; overrides by source order)
   Fixes tablet-range horizontal overflow and elevates the visual hierarchy.
   Scoped to .subscribe-page. Plain-CSS literals (mirrors compiled styles.css).
   Cross-browser: -webkit- prefixes, prefers-reduced-motion, backdrop fallbacks.
   ============================================================================ */

/* ---- 1. No horizontal page scroll at any width -------------------------- */
.subscribe-page {
  max-width: 1140px;
  padding-left: 4px;
  padding-right: 4px;
}
/* Perks wrapped gracefully instead of overflowing the viewport in the
   769–992px tablet band (the old rule only wrapped at <=768). */
.subscribe-page__perks {
  flex-wrap: wrap;
  max-width: 100%;
}
.subscribe-page__hero,
.subscribe-page__checkout,
.subscribe-page__card,
.subscribe-page__trial-section {
  max-width: 100%;
}

/* ---- 2. Hero: refined type + living badge ------------------------------- */
.subscribe-page__title {
  font-size: clamp(1.7rem, 1.1rem + 2.6vw, 2.45rem);
  letter-spacing: -0.02em;
  line-height: 1.12;
}
.subscribe-page__subtitle {
  font-size: clamp(13.5px, 12px + 0.4vw, 15.5px);
  max-width: 40ch;
  margin-left: auto;
  margin-right: auto;
}
.subscribe-page__hero-badge {
  animation: sub-badge-float 3.4s ease-in-out infinite;
}
@keyframes sub-badge-float {
  0%, 100% { transform: translateY(0); box-shadow: 0 0 18px 3px rgba(249,115,22,.16); }
  50%      { transform: translateY(-4px); box-shadow: 0 0 26px 5px rgba(249,115,22,.24); }
}
.subscribe-page__perks li {
  font-size: 12.5px;
  padding: 8px 15px;
}

/* ---- 3. Plan cards: sharper hierarchy, elite selected state ------------- */
.subscribe-page__plan-card {
  position: relative;
  padding: 20px 22px;
  border-radius: 18px;
  overflow: hidden;
  will-change: transform;
}
.subscribe-page__plan-card .enrollment-popup__payment-info .payment-name {
  font-size: 17px;
  letter-spacing: -0.01em;
  color: #fff;
  flex-wrap: wrap;
}
.subscribe-page__plan-card .enrollment-popup__payment-info .payment-amount {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin: 2px 0 1px;
}
.subscribe-page__plan-card .enrollment-popup__payment-info .payment-amount small {
  font-size: 12.5px;
  color: #9a9aa2;
}
.subscribe-page__price-original {
  font-size: 14px;
  color: #7d7d84;
  margin-right: 2px;
}
.subscribe-page__plan-meta {
  font-size: 12.5px;
  color: #9a9aa2;
  letter-spacing: 0.1px;
}
.subscribe-page__plan-desc {
  font-size: 12.5px;
  color: #7d7d84;
  line-height: 1.5;
}
/* Selected: a single thin border plus a top accent line. No orange ring or
   glow — one restrained accent per card keeps the screen from over-saturating. */
.subscribe-page__plan-card.active {
  border-color: rgba(249,115,22,.55);
  background:
    linear-gradient(180deg, rgba(249,115,22,.07) 0%, rgba(249,115,22,.015) 60%, transparent 100%),
    rgba(23,23,27,.72);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 12px 30px rgba(0,0,0,.35);
}
.subscribe-page__plan-card.active::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f97316 40%, #f97316 60%, transparent);
}
.subscribe-page__plan-card:hover:not(.active) {
  border-color: rgba(249,115,22,.5);
  transform: translateY(-2px);
}
/* Larger tap target for the radio + brand-clean dot */
.subscribe-page__plan-card .enrollment-popup__payment-radio {
  margin-top: 2px;
}

/* ---- 3b. "BEST VALUE" ribbon on the top-discount plan ------------------- */
.subscribe-page__plan-card--popular {
  padding-top: 24px;
}
.subscribe-page__plan-card--popular::after {
  content: "\2605 BEST VALUE";
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: #141417;
  background: linear-gradient(135deg, #fb8c3e 0%, #f97316 100%);
  border-radius: 999px;
  padding: 4px 11px;
  box-shadow: 0 4px 14px rgba(249,115,22,.45);
  z-index: 2;
}

/* ---- 4. Order summary: premium panel ----------------------------------- */
.subscribe-page__order {
  border-radius: 22px;
  padding: 26px;
}
.subscribe-page__summary-row--total {
  margin-top: 2px;
  padding-top: 15px;
}
.subscribe-page__summary-row--total .value {
  font-size: 19px;
}
.subscribe-page__summary-row--total .label {
  color: #d6d6db;
}
.subscribe-page__autopay {
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(249,115,22,.05), transparent),
    rgba(255,255,255,.02);
}
.subscribe-page__cta--block {
  padding: 15px 36px;
  font-size: 16px;
  border-radius: 13px;
  position: relative;
  overflow: hidden;
}
/* Subtle moving sheen on the primary CTA */
.subscribe-page__cta--block::after {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-18deg);
  animation: sub-cta-sheen 4.5s ease-in-out infinite;
}
@keyframes sub-cta-sheen {
  0%, 62% { left: -60%; }
  92%, 100% { left: 130%; }
}

/* ---- 5. Trial card: inviting, elevated --------------------------------- */
.subscribe-page__trial-section .subscribe-page__card,
.subscribe-page__trial-section {
  border-color: rgba(249,115,22,.4);
}
.subscribe-page__trial-section .subscribe-page__card-title {
  font-size: clamp(1.2rem, 1rem + 1vw, 1.5rem);
}

/* ---- 6. Responsive refinements ----------------------------------------- */
/* Tablet: keep single column comfortable, tighten the plan grid */
@media (max-width: 992px) {
  .subscribe-page {
    gap: 1.5rem;
  }
  .subscribe-page__checkout {
    gap: 20px;
  }
  .subscribe-page__perks {
    gap: 9px;
  }
}
/* Small tablets / large phones */
@media (max-width: 680px) {
  .subscribe-page__perks li {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
    min-width: 0;
  }
  .subscribe-page__plan-card {
    padding: 18px 16px;
  }
  .subscribe-page__plan-card .enrollment-popup__payment-info .payment-amount {
    font-size: 20px;
  }
  .subscribe-page__order {
    padding: 20px 16px;
  }
  .subscribe-page__summary-row {
    flex-wrap: wrap;
    gap: 4px 12px;
  }
  .subscribe-page__summary-row .value {
    text-align: left;
  }
}
/* Phones: full-width comfortable touch targets */
@media (max-width: 480px) {
  .subscribe-page__perks li {
    flex-basis: 100%;
    font-size: 13px;
    padding: 10px 14px;
  }
  .subscribe-page__cta {
    width: 100%;
  }
  .subscribe-page__plan-card--popular::after {
    top: 10px;
    right: 12px;
  }
}

/* ---- 7. Cross-browser & accessibility ---------------------------------- */
.subscribe-page__cta:focus-visible,
.subscribe-page__plan-card:focus-within,
.subscribe-page__coupon-input:focus-visible {
  outline: 2px solid rgba(249,115,22,.9);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .subscribe-page__hero-badge,
  .subscribe-page__cta--block::after {
    animation: none !important;
  }
  .subscribe-page__plan-card,
  .subscribe-page__plan-card:hover {
    transition: none !important;
    transform: none !important;
  }
}
/* No backdrop-filter support (older Firefox/Safari): solid, never mush */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .subscribe-page__order,
  .subscribe-page__plan-card,
  .subscribe-page__plan-card.active {
    background-color: #17171b !important;
  }
}

/* ============================================================================
   Header: collapse the desktop nav to the hamburger through the tablet band.
   The desktop nav needs ~1031px, but the off-canvas menu only engaged at
   <=768px, so 769-1080px overflowed and clipped the user menu. This extends
   the existing mobile-collapse behaviour up to 1080px. Append-only override
   (the deployed styles.css carries hand-edits absent from the SASS source, so
   a full recompile is unsafe). Mirrors the <=768 rules in _header.scss.
   ============================================================================ */
@media (min-width: 769px) and (max-width: 1080px) {
  .site-header .desktop-only { display: none !important; }
  .site-header .mobile-only { display: flex !important; }
  .site-header .mobile-only.social-icons { display: block !important; }
  .site-header .nav-toggle { display: flex !important; }
  .site-header .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .site-header .main-nav {
    position: fixed;
    left: -100%;
    top: 0;
    bottom: 0;
    width: 340px;
    max-width: 82vw;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, #0b0b0b 0%, #141414 100%) !important;
    z-index: 10001 !important;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 88px 22px 28px;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.8);
  }
  .site-header .main-nav.open { left: 0; }
  .site-header .main-nav > ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    width: 100%;
  }
  .site-header .main-nav > ul > li { width: 100%; }
  .site-header .main-nav > ul > li > a,
  .site-header .main-nav > ul > li > .d-link,
  .site-header .main-nav > ul > li > .nav-btn {
    width: 100%;
    padding: 13px 6px;
  }
}

/* ---- Fix: "View Reviews" button (was position:absolute + translate 29rem, muted brown) ---- */
.learning-section .review .button { position: static !important; transform: none !important; }
@media (max-width: 768px) { .learning-section .review .button { align-self: flex-start; } }
.learning-section .review .button .btn {
  background: linear-gradient(180deg, #fb8c3e 0%, #f97316 100%) !important;
  color: #fff !important;
  border: 1px solid transparent !important;
  font-weight: 600;
}
.learning-section .review .button .btn:hover { background: #F47923 !important; color: #000 !important; }

/* ---- Fix: off-canvas menu must be viewport-fixed, not pinned to page top ----
   The header's backdrop-filter created a containing block for the fixed
   .main-nav, so opening the menu after scrolling showed it above the fold.
   The header background is opaque, so dropping the blur is invisible. ---- */
.site-header { -webkit-backdrop-filter: none !important; backdrop-filter: none !important; }

/* ---- Premium hero card (mobile): glass surface + orange top accent + glow ---- */
@media (max-width: 480px) {
  .hero .hero__content {
    background-color: rgba(23, 23, 27, 0.72) !important;
    background-image:
      radial-gradient(ellipse 85% 55% at 50% -12%, rgba(249,115,22,0.16), transparent 62%),
      linear-gradient(90deg, transparent 0%, rgba(249,115,22,0.12) 18%, rgba(249,115,22,0.55) 34%, #f97316 50%, rgba(249,115,22,0.55) 66%, rgba(249,115,22,0.12) 82%, transparent 100%) !important;
    background-size: 100% 100%, 62% 2px !important;
    background-position: 50% 0, 50% 0 !important;
    background-repeat: no-repeat, no-repeat !important;
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    backdrop-filter: blur(16px) saturate(140%);
    border: 1px solid rgba(255,255,255,0.10) !important;
    border-radius: 22px !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.07), 0 20px 48px rgba(0,0,0,0.5) !important;
    padding: 2.1rem 1.5rem !important;
  }
}
/* No-backdrop-filter fallback: keep it solid, never transparent */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  @media (max-width: 480px) { .hero .hero__content { background-color: #17171b !important; } }
}

/* ---- Frosted-glass side nav (mobile + tablet off-canvas) ----
   Blur lives on the panel itself (safe — it's viewport-fixed and has no fixed
   descendants), not the header, so the menu still opens at the viewport. The
   overlay dims the page so the frost reads as dark glass. ---- */
@media (max-width: 1080px) {
  .site-header .main-nav {
    background: rgba(13, 13, 16, 0.72) !important;
    -webkit-backdrop-filter: blur(22px) saturate(140%);
    backdrop-filter: blur(22px) saturate(140%);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 12px 0 40px rgba(0, 0, 0, 0.55);
  }
  .site-header .nav-overlay { background: rgba(0, 0, 0, 0.55) !important; }
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  @media (max-width: 1080px) { .site-header .main-nav { background: #0f0f12 !important; } }
}



/* ============================================================================
   Learning Path (/learning-path).

   Track chooser (poster-overlay cards) and a per-track horizontal roadmap.
   Tone accents are driven by CSS custom properties (--lp-accent / --lp-glow)
   set on the tone modifier classes. Animation uses transform and opacity only
   and is disabled under prefers-reduced-motion.

   This block mirrors the same rules in the compiled htdocs/css/styles.css.
   ============================================================================ */

.lp {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem 4.5rem;
  isolation: isolate;

  /* Tone palette — each modifier sets the accent + glow triplet. */
  --lp-accent: #94a3b8;
  --lp-glow: 148, 163, 184;
}
.lp__choice--red,    .lp__flow--red,    .lp__stage--red,    .lp__stage-chip--red    { --lp-accent: #f87171; --lp-glow: 248,113,113; }
.lp__choice--green,  .lp__flow--green,  .lp__stage--green,  .lp__stage-chip--green  { --lp-accent: #4ade80; --lp-glow: 74,222,128; }
.lp__choice--blue,   .lp__flow--blue,   .lp__stage--blue,   .lp__stage-chip--blue   { --lp-accent: #60a5fa; --lp-glow: 96,165,250; }
.lp__choice--purple, .lp__flow--purple, .lp__stage--purple, .lp__stage-chip--purple { --lp-accent: #c084fc; --lp-glow: 192,132,252; }
.lp__choice--pink,   .lp__flow--pink,   .lp__stage--pink,   .lp__stage-chip--pink   { --lp-accent: #f472b6; --lp-glow: 244,114,182; }
.lp__choice--orange, .lp__flow--orange, .lp__stage--orange, .lp__stage-chip--orange { --lp-accent: #fb8c3e; --lp-glow: 251,140,62; }
.lp__choice--teal,   .lp__flow--teal,   .lp__stage--teal,   .lp__stage-chip--teal   { --lp-accent: #2dd4bf; --lp-glow: 45,212,191; }
.lp__choice--slate,  .lp__flow--slate,  .lp__stage--slate,  .lp__stage-chip--slate  { --lp-accent: #94a3b8; --lp-glow: 148,163,184; }

/* ---- Ambient aura ------------------------------------------------------- */
.lp__aura {
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 620px;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 42%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 42%, transparent 100%);
}
.lp__aura-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  will-change: transform;
}
.lp__aura-blob--1 { top: -80px; left: 8%;  width: 360px; height: 360px; background: radial-gradient(circle, rgba(251,140,62,0.55), transparent 70%); animation: lp-drift 20s ease-in-out infinite; }
.lp__aura-blob--2 { top: -40px; right: 10%; width: 340px; height: 340px; background: radial-gradient(circle, rgba(192,132,252,0.5), transparent 70%);  animation: lp-drift 26s ease-in-out infinite reverse; }
.lp__aura-blob--3 { top: 40px;  left: 42%;  width: 300px; height: 300px; background: radial-gradient(circle, rgba(45,212,191,0.4), transparent 70%);    animation: lp-drift 30s ease-in-out infinite; }
@keyframes lp-drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  33%      { transform: translate3d(40px, 26px, 0) scale(1.08); }
  66%      { transform: translate3d(-30px, 12px, 0) scale(0.95); }
}

/* ---- Header ------------------------------------------------------------- */
.lp__header { text-align: center; margin-bottom: 2.75rem; }
.lp__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #cbd0dc;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.lp__eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #fb8c3e;
  box-shadow: 0 0 0 0 rgba(251, 140, 62, 0.6);
  animation: lp-pulse 2.4s ease-out infinite;
}
@keyframes lp-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(251, 140, 62, 0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(251, 140, 62, 0); }
  100% { box-shadow: 0 0 0 0 rgba(251, 140, 62, 0); }
}
.lp__title {
  font-size: clamp(2.1rem, 1.4rem + 3vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.06;
  margin: 16px 0 0.7rem;
  background: linear-gradient(100deg, #ffffff 0%, #ffe9d4 28%, #ffffff 52%, #d8c7ff 76%, #ffffff 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #fff;
  animation: lp-shimmer 8s linear infinite;
}
@keyframes lp-shimmer { to { background-position: 220% center; } }
.lp__subtitle {
  color: #9a9aa2;
  font-size: clamp(14px, 12px + 0.5vw, 16.5px);
  max-width: 62ch;
  margin: 0 auto;
  line-height: 1.65;
}
.lp__stats {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(23, 23, 27, 0.55);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.lp__stat { font-size: 13px; color: #9a9aa2; }
.lp__stat b { color: #fff; font-weight: 700; margin-right: 3px; }
.lp__stat-sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(255, 255, 255, 0.25); }

/* ---- Track chooser ------------------------------------------------------ */
.lp__chooser {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
  gap: 22px;
}
/* Poster-overlay card: the poster image fills the card, a bottom gradient keeps
   the text legible, and the content is anchored to the bottom. Each layer has an
   explicit z-index and the body stacks as block elements. */
.lp__choice {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 380px;
  text-align: left;
  cursor: pointer;
  padding: 0;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #141418;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 44px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, box-shadow 0.35s ease;
  /* Entrance */
  opacity: 0;
  transform: translateY(20px);
  animation: lp-rise 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--i, 0) * 90ms + 80ms);
}
@keyframes lp-rise { to { opacity: 1; transform: none; } }
.lp__choice:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--lp-glow), 0.6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 26px 58px rgba(var(--lp-glow), 0.25);
}
/* Poster image — full-bleed background layer */
.lp__choice-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.lp__choice:hover .lp__choice-img { transform: scale(1.05); }
/* Readability gradient */
.lp__choice-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 8, 11, 0.05) 0%, rgba(8, 8, 11, 0.35) 42%, rgba(8, 8, 11, 0.86) 72%, rgba(6, 6, 9, 0.97) 100%);
}
/* Tone accent line along the top */
.lp__choice-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 2;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--lp-accent) 45%, var(--lp-accent) 55%, transparent);
}
/* Hover sheen border */
.lp__choice-sheen {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(var(--lp-glow), 0.6), transparent 45%, transparent 70%, rgba(var(--lp-glow), 0.35));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.lp__choice:hover .lp__choice-sheen { opacity: 1; }
.lp__choice-count {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  font-size: 11.5px;
  font-weight: 600;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 4px 11px;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
/* Body — anchored to the bottom, always a vertical block stack */
.lp__choice-body {
  position: relative;
  z-index: 2;
  padding: 20px 22px 22px;
}
.lp__choice-body > * { display: block; }
.lp__choice-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: var(--lp-accent);
  margin-bottom: 7px;
}
.lp__choice-title {
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.22;
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}
.lp__choice-summary {
  color: #c2c2ca;
  font-size: 13px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lp__choice-cta {
  width: -webkit-fit-content;
  width: fit-content;
  margin-top: 16px;
  padding: 9px 17px;
  border-radius: 999px;
  border: 1px solid rgba(var(--lp-glow), 0.5);
  background: rgba(var(--lp-glow), 0.16);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.lp__choice-cta > span { display: inline; }
.lp__choice:hover .lp__choice-cta { background: rgba(var(--lp-glow), 0.3); border-color: rgba(var(--lp-glow), 0.8); }
.lp__choice-arrow { display: inline-block; margin-left: 6px; transition: transform 0.25s ease; }
.lp__choice:hover .lp__choice-arrow { transform: translateX(5px); }

/* ---- Flow (one per track; toggled by JS via [hidden]) ------------------- */
.lp__flow[hidden] { display: none; }
.lp__flow { animation: lp-fade 0.4s ease; }
@keyframes lp-fade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.lp__flow-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.lp__back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #e8e8ea;
  border-radius: 999px;
  padding: 9px 17px;
  font-size: 13.5px;
  font-weight: 600;
  transition: 0.22s ease;
}
.lp__back:hover { border-color: var(--lp-accent); color: var(--lp-accent); transform: translateX(-2px); }
.lp__flow-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.lp__flow-token {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  font-size: 20px;
  border-radius: 12px;
  border: 1px solid rgba(var(--lp-glow), 0.35);
  background: linear-gradient(160deg, rgba(var(--lp-glow), 0.2), rgba(255, 255, 255, 0.02));
}
.lp__flow-hint {
  margin-left: auto;
  color: #8a8a90;
  font-size: 12.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lp__flow-hint i { color: var(--lp-accent); }

/* Scroll progress */
.lp__progress {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
  margin-bottom: 20px;
}
.lp__progress-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lp-accent), rgba(var(--lp-glow), 0.55));
  box-shadow: 0 0 12px rgba(var(--lp-glow), 0.6);
  transition: width 0.1s linear;
}

/* Horizontal scroll viewport */
.lp__track {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 26px 2px 24px;
  scrollbar-width: none;      /* Firefox — hide scrollbar; progress bar is the cue */
  -ms-overflow-style: none;   /* legacy Edge */
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  cursor: grab;
}
.lp__track.is-grabbing { cursor: grabbing; scroll-behavior: auto; }
.lp__track::-webkit-scrollbar { display: none; }   /* WebKit — hide scrollbar */
.lp__track:focus-visible { outline: 2px solid var(--lp-accent); outline-offset: 3px; border-radius: 16px; }

.lp__rail {
  position: relative;
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  min-width: min-content;
  padding: 0 8px;
}
/* Timeline spine behind the node row */
.lp__spine {
  position: absolute;
  top: 12px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(var(--lp-glow), 0.28) 8%, rgba(var(--lp-glow), 0.28) 92%, transparent);
  z-index: 0;
}

/* Connector between stages */
.lp__connector {
  position: relative;
  flex: 0 0 52px;
  min-width: 52px;
  align-self: flex-start;
  margin-top: 11px;
  height: 3px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, rgba(var(--lp-glow), 0.5) 0 9px, transparent 9px 17px);
  z-index: 1;
}
.lp__connector::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 7px solid rgba(var(--lp-glow), 0.7);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.lp__connector-pulse {
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lp-accent);
  box-shadow: 0 0 12px 2px rgba(var(--lp-glow), 0.8);
  transform: translate(-50%, -50%);
  animation: lp-travel 2.6s ease-in-out infinite;
}
@keyframes lp-travel {
  0%   { left: 0;   opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}
.lp__connector--end { flex-basis: 44px; min-width: 44px; }

/* Stage card */
.lp__stage {
  position: relative;
  flex: 0 0 300px;
  width: 300px;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background-color: rgba(21, 21, 25, 0.78);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 16px 38px rgba(0, 0, 0, 0.42);
  z-index: 1;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.55s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  /* Reveal-on-scroll initial state */
  opacity: 0;
  transform: translateY(22px) scale(0.97);
}
.lp__stage.is-in { opacity: 1; transform: none; }
.lp__stage:hover {
  border-color: rgba(var(--lp-glow), 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 22px 48px rgba(var(--lp-glow), 0.22);
}
.lp__stage.is-in:hover { transform: translateY(-4px); }
.lp__stage-node {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #141417;
  background: var(--lp-accent);
  border: 3px solid #141417;
  box-shadow: 0 0 0 1px rgba(var(--lp-glow), 0.6), 0 6px 16px rgba(var(--lp-glow), 0.5);
  z-index: 4;
}
/* Course thumbnail */
.lp__stage-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 19px 19px 0 0;
  border-bottom: 1px solid rgba(var(--lp-glow), 0.25);
  background: linear-gradient(160deg, rgba(var(--lp-glow), 0.28), rgba(18, 18, 22, 0.8));
}
.lp__stage-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.lp__stage:hover .lp__stage-img { transform: scale(1.06); }
.lp__stage-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 12, 15, 0) 45%, rgba(21, 21, 25, 0.55) 78%, rgba(21, 21, 25, 0.95) 100%);
}
.lp__stage-emoji {
  position: absolute;
  left: 12px;
  bottom: 9px;
  z-index: 2;
  font-size: 22px;
  line-height: 1;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.6));
}
.lp__stage-delta {
  position: absolute;
  top: 11px;
  right: 11px;
  z-index: 2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(var(--lp-glow), 0.6);
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 3px 10px;
}
.lp__stage-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 16px 20px 20px;
}
.lp__stage-title {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}
.lp__stage-blurb {
  color: #9a9aa2;
  font-size: 13px;
  line-height: 1.58;
  margin: 0;
  flex: 1;
}
.lp__stage-meta { display: flex; flex-wrap: wrap; gap: 7px; }
.lp__stage-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: #d6d6db;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  padding: 4px 10px;
}
.lp__stage-chip i { opacity: 0.8; }
.lp__stage-chip--green, .lp__stage-chip--teal, .lp__stage-chip--blue,
.lp__stage-chip--red, .lp__stage-chip--purple, .lp__stage-chip--orange, .lp__stage-chip--pink {
  color: var(--lp-accent);
  border-color: rgba(var(--lp-glow), 0.4);
  background: rgba(var(--lp-glow), 0.1);
}
.lp__stage-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  margin-top: 2px;
  padding: 8px 15px;
  font-size: 13px;
  font-weight: 700;
  color: var(--lp-accent);
  text-decoration: none;
  border: 1px solid rgba(var(--lp-glow), 0.35);
  border-radius: 999px;
  background: rgba(var(--lp-glow), 0.08);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.lp__stage-link:hover {
  background: rgba(var(--lp-glow), 0.18);
  border-color: rgba(var(--lp-glow), 0.6);
  text-decoration: none;
  color: var(--lp-accent);
}
.lp__stage-link-arrow { transition: transform 0.25s ease; }
.lp__stage-link:hover .lp__stage-link-arrow { transform: translateX(4px); }

/* Certification finish card */
.lp__finish {
  position: relative;
  overflow: hidden;
  flex: 0 0 220px;
  width: 220px;
  align-self: center;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 30px 20px;
  border-radius: 20px;
  border: 1px solid rgba(251, 191, 36, 0.4);
  background: linear-gradient(160deg, rgba(251, 191, 36, 0.14), rgba(249, 115, 22, 0.06));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 16px 40px rgba(249, 115, 22, 0.18);
  z-index: 1;
  opacity: 0;
  transform: translateY(22px) scale(0.97);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.55s ease;
}
.lp__finish.is-in { opacity: 1; transform: none; }
.lp__finish-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.22) 48%, transparent 62%);
  transform: translateX(-120%);
  animation: lp-sweep 4.5s ease-in-out infinite;
  animation-delay: 1s;
  pointer-events: none;
}
@keyframes lp-sweep { 0%, 55% { transform: translateX(-120%); } 80%, 100% { transform: translateX(120%); } }
.lp__finish-icon { font-size: 40px; filter: drop-shadow(0 6px 14px rgba(251, 191, 36, 0.55)); animation: lp-float 3s ease-in-out infinite; }
.lp__finish-label { color: #fff; font-size: 16px; font-weight: 800; letter-spacing: 0.2px; }
.lp__finish-sub { color: #cbb48f; font-size: 12px; line-height: 1.5; }
.lp__finish-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: #fbbf24;
  text-decoration: none;
}
.lp__finish-link:hover { color: #fbbf24; text-decoration: underline; }

/* ---- Responsive --------------------------------------------------------- */
@media (max-width: 900px) {
  .lp__chooser { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
}
@media (max-width: 600px) {
  .lp { padding: 2rem 0.85rem 3rem; }
  .lp__aura { height: 460px; }
  .lp__chooser { grid-template-columns: 1fr; gap: 16px; }
  .lp__stage { flex-basis: 84vw; width: 84vw; max-width: 330px; }
  .lp__connector { flex-basis: 38px; min-width: 38px; }
  .lp__connector--end { flex-basis: 30px; min-width: 30px; }
  .lp__flow-hint { display: none; }
  .lp__spine { left: 16px; right: 16px; }
}

/* Fallback for browsers without backdrop-filter: use solid card surfaces. */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .lp__choice, .lp__stage { background-color: #17171b; }
  .lp__eyebrow, .lp__stats { background-color: #17171b; }
}

/* Reduced motion: disable drift, shimmer, reveal offsets, and image zoom. */
@media (prefers-reduced-motion: reduce) {
  .lp__aura-blob, .lp__title, .lp__eyebrow-dot, .lp__connector-pulse,
  .lp__finish-shine, .lp__finish-icon, .lp__choice-icon { animation: none !important; }
  .lp__flow, .lp__choice { animation: none !important; }
  .lp__choice { opacity: 1; transform: none; }
  .lp__stage, .lp__finish { opacity: 1; transform: none; transition: none !important; }
  .lp__choice-img, .lp__stage-img { transition: none !important; }
  .lp__track { scroll-behavior: auto; }
}

/* ============================================================================
   Global premium theme layer.

   App-wide visual polish applied through shared component classes: refined
   scrollbar / selection / focus styling, frosted-glass surfaces, dialog
   styling, and a scroll-reveal animation driven by the inline script in
   _master.php.

   This partial mirrors a block appended to the compiled htdocs/css/styles.css;
   the two must be edited together. Declarations are additive and use the
   lowest specificity that works, with !important only where an existing rule
   must be overridden.
   ============================================================================ */

/* ---- Global chrome ------------------------------------------------------- */
html { scroll-behavior: smooth; }
* { -webkit-tap-highlight-color: rgba(244, 121, 35, 0.18); }
::selection { background: rgba(244, 121, 35, 0.32); color: #fff; }
::-moz-selection { background: rgba(244, 121, 35, 0.32); color: #fff; }

/* Document scrollbar (WebKit and Firefox). */
html { scrollbar-width: thin; scrollbar-color: rgba(244, 121, 35, 0.65) rgba(255, 255, 255, 0.05); }
html::-webkit-scrollbar, body::-webkit-scrollbar { width: 12px; height: 12px; }
html::-webkit-scrollbar-track, body::-webkit-scrollbar-track { background: #0b0b10; }
html::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb {
  background: linear-gradient(#f47923, #c85a12);
  border-radius: 999px;
  border: 3px solid #0b0b10;
}
html::-webkit-scrollbar-thumb:hover, body::-webkit-scrollbar-thumb:hover { background: #f47923; }

/* Keyboard focus ring for links and buttons. Form controls are excluded
   because they define their own focus styling. */
a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid rgba(244, 121, 35, 0.9);
  outline-offset: 2px;
  border-radius: 6px;
}

/* Opt-in frosted-glass surface utility. */
.glass, .glass-card {
  background: rgba(22, 22, 28, 0.55) !important;
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

/* Card hover uses border and shadow only, never a transform: several card
   variants sit inside overflow:hidden carousels where a translateY would clip
   the top edge. Buttons are left untouched so their own animations apply. */

/* ---- My Account panels --------------------------------------------------- */
/* Frosted surface matching the contact form cards, with a title accent bar
   and a hover border glow. */
.myaccount__panel {
  background: rgba(18, 18, 24, 0.72) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: border-color .3s ease, box-shadow .3s ease;
}
.myaccount__panel:hover {
  border-color: rgba(244, 121, 35, 0.4);
  box-shadow: 0 12px 36px rgba(244, 121, 35, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.myaccount__panel-head {
  background: rgba(255, 255, 255, 0.03) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}
.myaccount__panel-title { display: inline-flex; align-items: center; }
.myaccount__panel-title::before {
  content: "";
  width: 3px;
  height: 15px;
  margin-right: 10px;
  border-radius: 2px;
  background: linear-gradient(#fb8c3e, #f47923);
  box-shadow: 0 0 10px rgba(244, 121, 35, 0.5);
}

/* Certificate verifier embedded in the account tab: title and subtitle
   left-aligned (the badge keeps the section's centred alignment), and the base
   1200px cap on .certify removed so the card spans the panel width. */
.myaccount__cert-verify .certify { max-width: none !important; }
.myaccount__cert-verify .certify__title,
.myaccount__cert-verify .certify__subtitle { text-align: left !important; }
.myaccount__cert-verify .certify__card {
  max-width: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ---- Shared content cards ------------------------------------------------ */
/* Frosted-glass background and hover glow for the main marketing cards. */
.feature-card, .opp-card, .testimonial-card, .learning-card,
.stat-card, .stats-card, .instructor-card {
  background: rgba(20, 20, 26, 0.55) !important;
  -webkit-backdrop-filter: blur(15px) saturate(135%);
  backdrop-filter: blur(15px) saturate(135%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color .3s ease, box-shadow .3s ease;
}
.feature-card:hover, .opp-card:hover, .testimonial-card:hover,
.learning-card:hover, .stat-card:hover, .stats-card:hover, .instructor-card:hover {
  border-color: rgba(244, 121, 35, 0.45);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(244, 121, 35, 0.12);
}

/* User account dropdown menu. */
.dropdown-menu-body {
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
}

/* ---- Navigation ---------------------------------------------------------- */
/* Learning Path link styled as an outlined button matching
   .nav-item.cta .btn-outline. Applied to the desktop horizontal nav only
   (>= 1081px); below that the off-canvas menu keeps its own link styling. */
@media (min-width: 1081px) {
  .site-header .main-nav .nav-item a[href="/learning-path"] {
    border: 1.5px solid #f47923 !important;
    padding: 8px 20px !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.45);
    display: inline-flex;
    align-items: center;
    transition: background-color 0.2s ease;
  }
  .site-header .main-nav .nav-item a[href="/learning-path"]:hover {
    background-color: #f47923;
    cursor: pointer;
  }
}
/* The nav's sliding underline is suppressed on the Learning Path item, which
   is styled as a button above. */
.site-header .main-nav ul .d-link:has(a[href="/learning-path"])::after { display: none !important; }

/* Active nav item: the current page's link is shown in orange, on desktop and
   in the off-canvas menu. Set from the `active` class the template adds to the
   matching item (replacing the previous permanent highlight of one link). */
.site-header .main-nav ul .d-link.active > a,
.site-header .main-nav ul .d-link.active > a span { color: #f47923 !important; }

/* ---- My Account payments ------------------------------------------------- */
/* Hide the payment status badge on mobile, where the stacked card makes it
   redundant. !important overrides the later badge rule that always shows it. */
@media (max-width: 768px) {
  .myaccount__pay-card-status { display: none !important; }
}

/* ---- Sticky header ------------------------------------------------------- */
/* Frosted header. The backdrop-filter is applied to a ::before layer rather
   than to .site-header itself, because a filter on the header would establish
   the containing block for the fixed off-canvas menu and offset it. */
.site-header { background: transparent !important; }
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(10, 10, 15, 0.5);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  backdrop-filter: blur(22px) saturate(140%);
  pointer-events: none;
}
/* Profile dropdown, matching the header glass. */
.site-header .main-nav .nav-item .dropdown .dropdown-menu-body {
  background: rgba(16, 16, 22, 0.6) !important;
  -webkit-backdrop-filter: blur(20px) saturate(150%) !important;
  backdrop-filter: blur(20px) saturate(150%) !important;
}

/* ---- Courses page -------------------------------------------------------- */
/* Constrain the courses dashboard width. As a flex-column child of
   .section-main its width follows its content; on narrow viewports the filter
   bar and grid expand it past the viewport, so width:100% forces a reflow. */
@media (max-width: 1024px) {
  .section-main .dashboard { width: 100%; max-width: 100%; }
}

/* ---- Enrollment / subscription form -------------------------------------- */
/* Shared .enrollment-popup modal: frosted-glass panel and dark input fields.
   The autofill rule keeps filled fields dark instead of the WebKit default. */
.enrollment-popup-overlay { background: rgba(0, 0, 0, 0.5) !important; }
.enrollment-popup {
  background-color: rgba(18, 18, 24, 0.72) !important;
  -webkit-backdrop-filter: blur(26px) saturate(140%) !important;
  backdrop-filter: blur(26px) saturate(140%) !important;
}
.enrollment-popup__group input[type=text],
.enrollment-popup__group input[type=email],
.enrollment-popup__group input[type=tel],
.enrollment-popup__group select,
.enrollment-popup__select-trigger {
  background: #14141a !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  color: #ffffff !important;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}
.enrollment-popup__group input[type=text]:focus,
.enrollment-popup__group input[type=email]:focus,
.enrollment-popup__group input[type=tel]:focus,
.enrollment-popup__group select:focus,
.enrollment-popup__select-trigger:focus {
  border-color: #f38533 !important;
}
/* Override the WebKit autofill background so filled fields keep the dark fill. */
.enrollment-popup__group input:-webkit-autofill,
.enrollment-popup__group input:-webkit-autofill:hover,
.enrollment-popup__group input:-webkit-autofill:focus,
.enrollment-popup__group input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #14141a inset !important;
  box-shadow: 0 0 0 1000px #14141a inset !important;
  -webkit-text-fill-color: #ffffff !important;
  caret-color: #ffffff !important;
  transition: background-color 5000s ease-in-out 0s !important;
}

/* ---- Modal dialogs ------------------------------------------------------- */
/* Shared frosted-glass styling for every modal: the login prompt, the
   sna-modal confirmation dialogs, the course quick-view, and the enrollment
   form. Overlays are translucent so the blurred page shows through; card
   backgrounds are translucent and keep their own accent line. */
.enrollment-popup-overlay,
.login-popup-overlay,
.sna-modal {
  background: rgba(0, 0, 0, 0.5) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  backdrop-filter: blur(12px) !important;
}
.sna-modal__card,
.login-popup,
.course-popup {
  background-color: rgba(18, 18, 24, 0.72) !important;
  -webkit-backdrop-filter: blur(24px) saturate(140%) !important;
  backdrop-filter: blur(24px) saturate(140%) !important;
}

/* ---- Coupon feedback ----------------------------------------------------- */
/* An invalid coupon code shows in red (the icon inherits the text colour) so
   the error reads at a glance; the success message stays green. */
.subscribe-page__coupon-msg--ok,
.subscribe-page__coupon-msg--error { display: inline-flex; align-items: center; gap: 6px; }
.subscribe-page__coupon-msg--error { color: #ef4444 !important; }

/* ---- Scroll-reveal ------------------------------------------------------- */
/* Initial state applied by the _master.php script to below-the-fold sections;
   .is-revealed transitions them in. Disabled under reduced-motion. */
.reveal-init { opacity: 0; transform: translateY(30px); will-change: opacity, transform; }
.reveal-init.is-revealed {
  opacity: 1;
  transform: none;
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal-init { opacity: 1 !important; transform: none !important; }
}
